{
  "snapshot_id": "approved-static-d7ed373c115d60d0",
  "schema_version": "immigrationdb-mcp-web-catalog-v2",
  "generated_at": "2026-09-12",
  "server_identity": {
    "product": "immigrationdb",
    "name": "immigrationdb",
    "version": "0.3.0",
    "protocol": "2026-07-28",
    "retained_legacy_protocol": "2025-11-25"
  },
  "transport": {
    "type": "stdio",
    "read_only": true,
    "remote_endpoint": "https://immigrationdb.com/mcp",
    "setup_path": "/data/mcp/",
    "index_path": "/mcp/index.json",
    "city_shards": "/mcp/cities/{country}.json",
    "query_index": "/mcp/query/index.json",
    "query_facts": "/mcp/query/facts.ndjson",
    "remote": {
      "type": "streamable-http",
      "protocol": "MCP Streamable HTTP",
      "route": "/mcp",
      "readiness": "live_streamable_http_read_only",
      "public": true,
      "read_only": true,
      "public_remote_endpoint": "https://immigrationdb.com/mcp",
      "owner_approved_deploy_required": true,
      "server_name": "immigrationdb",
      "server_version": "0.3.0"
    }
  },
  "web_surfaces": {
    "dictionaries": {
      "metrics": "/data/metrics.json",
      "sources": "/data/sources/index.json"
    },
    "templates": {
      "city_html": "/cities/{country}/{slug}/",
      "city_json": "/data/cities/{country}/{slug}.json",
      "city_markdown": "/data/cities/{country}/{slug}.md",
      "city_shard_json": "/data/cities/{country}.json",
      "country_html": "/countries/{country_slug}/",
      "country_json": "/data/countries/{country}.json",
      "country_markdown": "/data/countries/{country}.md",
      "report_html": "/reports/{slug}/",
      "report_json": "/data/reports/{slug}.json",
      "report_markdown": "/data/reports/{slug}.md",
      "passport_html": "/visas/passport/{passport}/",
      "passport_json": "/data/visa/passport/{passport}.json",
      "passport_markdown": "/data/visa/passport/{passport}.md",
      "mcp_city_resource": "immigrationdb://city/{country}/{slug}",
      "mcp_country_resource": "immigrationdb://country/{country}",
      "mcp_query_country_index": "/mcp/query/countries/{country}.json",
      "mcp_query_metric_index": "/mcp/query/metrics/{metric_id}.json",
      "mcp_query_facts": "/mcp/query/facts.ndjson"
    },
    "directories": {
      "cities_root": "/cities/",
      "city_country": "/cities/{country}/",
      "city_country_page": "/cities/{country}/page/{page}/",
      "city_country_index": "/data/cities/{country}.json"
    },
    "conventions": [
      "{country} is a lowercase ISO 3166-1 alpha-2 code; {slug} is the published city slug.",
      "Every HTML page links its JSON and Markdown twin with <link rel=\"alternate\">.",
      "The Markdown twin opens with YAML front matter carrying the entity id, sibling URLs, snapshot id and fact count.",
      "Values are never imputed: an absent metric means the entity does not publish it."
    ],
    "license": "https://creativecommons.org/licenses/by/4.0/",
    "license_name": "CC BY 4.0",
    "license_url": "https://immigrationdb.com/about/copyright/",
    "attribution": "ImmigrationDB (https://immigrationdb.com), CC BY 4.0, compiled from the cited official sources",
    "llms_txt": "/llms.txt",
    "mcp_docs": "/data/mcp/",
    "mcp_metadata": {
      "product_id": "immigrationdb",
      "server_name": "immigrationdb",
      "server_version": "0.3.0",
      "protocol": "2026-07-28",
      "transport": "streamable-http",
      "route": "/mcp",
      "public_endpoint": "https://immigrationdb.com/mcp",
      "public_status": "live_streamable_http_read_only",
      "registry_server_name": "io.github.gospodindark-stack/immigrationdb"
    }
  },
  "tools": [
    "search_destinations",
    "get_city",
    "get_country",
    "search_visa_routes",
    "get_legal_route",
    "search_entry_rules",
    "get_entry_rule",
    "list_reports",
    "get_report",
    "resolve_city",
    "get_city_fact",
    "list_metrics",
    "list_blocks",
    "compare_cities",
    "search_facts"
  ],
  "tool_schemas": {
    "search_destinations": {
      "required": [
        "query"
      ],
      "properties": {
        "query": "string",
        "limit": "integer 1..100",
        "cursor": "string"
      }
    },
    "get_city": {
      "required": [
        "country",
        "slug"
      ],
      "properties": {
        "country": "ISO 3166-1 alpha-2",
        "slug": "canonical city slug"
      }
    },
    "get_country": {
      "required": [
        "cc"
      ],
      "properties": {
        "cc": "ISO 3166-1 alpha-2"
      }
    },
    "search_visa_routes": {
      "required": [
        "destination"
      ],
      "properties": {
        "destination": "ISO 3166-1 alpha-2",
        "purpose": "route purpose or family",
        "limit": "integer 1..100",
        "cursor": "string"
      }
    },
    "get_legal_route": {
      "required": [
        "destination",
        "route_id"
      ],
      "properties": {
        "destination": "ISO 3166-1 alpha-2",
        "route_id": "canonical route id or URI alias"
      }
    },
    "search_entry_rules": {
      "required": [],
      "properties": {
        "passport": "ISO 3166-1 alpha-2",
        "destination": "ISO 3166-1 alpha-2",
        "purpose": "entry purpose",
        "limit": "integer 1..100",
        "cursor": "string"
      }
    },
    "get_entry_rule": {
      "required": [
        "passport"
      ],
      "properties": {
        "passport": "ISO 3166-1 alpha-2",
        "destination": "optional ISO 3166-1 alpha-2"
      }
    },
    "list_reports": {
      "required": [],
      "properties": {
        "category": "report category",
        "limit": "integer 1..100",
        "cursor": "string"
      }
    },
    "get_report": {
      "required": [
        "report_id"
      ],
      "properties": {
        "report_id": "canonical report slug"
      }
    },
    "resolve_city": {
      "required": [
        "query"
      ],
      "properties": {
        "query": "string",
        "limit": "integer 1..5"
      }
    },
    "get_city_fact": {
      "required": [
        "country",
        "slug",
        "metric_id"
      ],
      "properties": {
        "country": "ISO 3166-1 alpha-2",
        "slug": "canonical city slug",
        "metric_id": "canonical metric id"
      }
    },
    "list_metrics": {
      "required": [],
      "properties": {
        "country": "optional ISO 3166-1 alpha-2",
        "block": "optional stable block id",
        "query": "optional metric search",
        "comparison_eligible": "optional boolean",
        "limit": "integer 1..100",
        "cursor": "string"
      }
    },
    "list_blocks": {
      "required": [],
      "properties": {
        "limit": "integer 1..100",
        "cursor": "string"
      }
    },
    "compare_cities": {
      "required": [
        "cities",
        "metric_ids"
      ],
      "properties": {
        "cities": "array of 2..10 {country,slug} references",
        "metric_ids": "array of 1..20 canonical metric ids"
      }
    },
    "search_facts": {
      "required": [],
      "properties": {
        "countries": "array of ISO 3166-1 alpha-2",
        "filters": "array of at most 10 metric predicates",
        "sort_metric": "one canonical metric id",
        "sort_order": "asc or desc",
        "limit": "integer 1..100",
        "cursor": "string",
        "diagnostic": "optional boolean"
      }
    }
  },
  "tool_catalog": [
    {
      "name": "search_destinations",
      "status": "current",
      "title": "Search destinations",
      "description": "Search admitted ImmigrationDB country and city identities with bounded cursor pagination.",
      "input_schema": {
        "required": [
          "query"
        ],
        "properties": {
          "query": "string",
          "limit": "integer 1..100",
          "cursor": "string"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Search destinations result"
      },
      "example": {
        "query": "Berlin, Germany",
        "limit": 5
      },
      "boundary": "Returns ranked public identities; it does not guess a missing country or expose data-only records."
    },
    {
      "name": "get_city",
      "status": "current",
      "title": "Get city",
      "description": "Get one admitted city with canonical URL, claim-level facts and source metadata.",
      "input_schema": {
        "required": [
          "country",
          "slug"
        ],
        "properties": {
          "country": "ISO 3166-1 alpha-2",
          "slug": "canonical city slug"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Get city result"
      },
      "example": {
        "country": "de",
        "slug": "berlin"
      },
      "boundary": "Returns the backwards-compatible full city record by default; use get_city_fact for one metric."
    },
    {
      "name": "get_country",
      "status": "current",
      "title": "Get country",
      "description": "Get one admitted country page record and official visa-route handoffs.",
      "input_schema": {
        "required": [
          "cc"
        ],
        "properties": {
          "cc": "ISO 3166-1 alpha-2"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Get country result"
      },
      "example": {
        "cc": "de"
      },
      "boundary": "Only public country records and their published handoffs are returned."
    },
    {
      "name": "search_visa_routes",
      "status": "current",
      "title": "Search visa routes",
      "description": "Search admitted destination visa and residence routes without inventing missing eligibility data.",
      "input_schema": {
        "required": [
          "destination"
        ],
        "properties": {
          "destination": "ISO 3166-1 alpha-2",
          "purpose": "route purpose or family",
          "limit": "integer 1..100",
          "cursor": "string"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Search visa routes result"
      },
      "example": {
        "destination": "de",
        "purpose": "work",
        "limit": 20
      },
      "boundary": "Returns sourced route families; it is reference information, not legal advice or an eligibility decision."
    },
    {
      "name": "get_legal_route",
      "status": "current",
      "title": "Get legal route",
      "description": "Get one admitted legal-route record with its official source.",
      "input_schema": {
        "required": [
          "destination",
          "route_id"
        ],
        "properties": {
          "destination": "ISO 3166-1 alpha-2",
          "route_id": "canonical route id or URI alias"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Get legal route result"
      },
      "example": {
        "destination": "de",
        "route_id": "highly-skilled"
      },
      "boundary": "Missing or incomplete route fields remain explicit; the response does not infer a legal outcome."
    },
    {
      "name": "search_entry_rules",
      "status": "current",
      "title": "Search entry rules",
      "description": "Search passport entry rules from the published record; unknown and unavailable decisions remain explicit.",
      "input_schema": {
        "required": [],
        "properties": {
          "passport": "ISO 3166-1 alpha-2",
          "destination": "ISO 3166-1 alpha-2",
          "purpose": "entry purpose",
          "limit": "integer 1..100",
          "cursor": "string"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Search entry rules result"
      },
      "example": {
        "passport": "lv",
        "destination": "us",
        "limit": 20
      },
      "boundary": "Only accepted public entry answers are returned; verify the responsible authority before travel."
    },
    {
      "name": "get_entry_rule",
      "status": "current",
      "title": "Get entry rule",
      "description": "Get one passport entry rule using the canonical legal/entry URI identity.",
      "input_schema": {
        "required": [
          "passport"
        ],
        "properties": {
          "passport": "ISO 3166-1 alpha-2",
          "destination": "optional ISO 3166-1 alpha-2"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Get entry rule result"
      },
      "example": {
        "passport": "lv",
        "destination": "us"
      },
      "boundary": "A missing answer is returned explicitly and is never replaced with an assumption."
    },
    {
      "name": "list_reports",
      "status": "current",
      "title": "List reports",
      "description": "List public ImmigrationDB reports by optional category with bounded cursor pagination.",
      "input_schema": {
        "required": [],
        "properties": {
          "category": "report category",
          "limit": "integer 1..100",
          "cursor": "string"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "List reports result"
      },
      "example": {
        "category": "Population",
        "limit": 20
      },
      "boundary": "Lists published reports only; report rows retain their own source and method metadata."
    },
    {
      "name": "get_report",
      "status": "current",
      "title": "Get report",
      "description": "Get one public report envelope with canonical and machine-resource URLs.",
      "input_schema": {
        "required": [
          "report_id"
        ],
        "properties": {
          "report_id": "canonical report slug"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Get report result"
      },
      "example": {
        "report_id": "warmest-published-cities-across-current-coverage"
      },
      "boundary": "The report response is bounded by the published report contract and does not expose review-only rows."
    },
    {
      "name": "resolve_city",
      "status": "current",
      "title": "Resolve city",
      "description": "Resolve a natural-language city query to bounded ranked public candidates without silently selecting an ambiguous country.",
      "input_schema": {
        "required": [
          "query"
        ],
        "properties": {
          "query": "string",
          "limit": "integer 1..5"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Resolve city result"
      },
      "example": {
        "query": "Berlin, Germany",
        "limit": 5
      },
      "boundary": "A bare or ambiguous city name returns candidates and ambiguity; it must not auto-select a non-exact country."
    },
    {
      "name": "get_city_fact",
      "status": "current",
      "title": "Get city fact",
      "description": "Return exactly one public city fact with value, unit, geographic grain, dates, source and snapshot provenance.",
      "input_schema": {
        "required": [
          "country",
          "slug",
          "metric_id"
        ],
        "properties": {
          "country": "ISO 3166-1 alpha-2",
          "slug": "canonical city slug",
          "metric_id": "canonical metric id"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Get city fact result"
      },
      "example": {
        "country": "de",
        "slug": "berlin",
        "metric_id": "population_total"
      },
      "boundary": "Returns not_available or ambiguous_metric_version instead of guessing across units, periods, definitions or geographic grains."
    },
    {
      "name": "list_metrics",
      "status": "current",
      "title": "List metrics",
      "description": "List reviewed metric definitions and observed public snapshot coverage with bounded filters and pagination.",
      "input_schema": {
        "required": [],
        "properties": {
          "country": "optional ISO 3166-1 alpha-2",
          "block": "optional stable block id",
          "query": "optional metric search",
          "comparison_eligible": "optional boolean",
          "limit": "integer 1..100",
          "cursor": "string"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "List metrics result"
      },
      "example": {
        "query": "population",
        "country": "de",
        "limit": 20
      },
      "boundary": "Descriptions and units come from the reviewed registry; missing ontology is reported as a contract gap, not generated from a label."
    },
    {
      "name": "list_blocks",
      "status": "current",
      "title": "List blocks",
      "description": "List stable reviewed metric blocks with observed metric, fact and country coverage.",
      "input_schema": {
        "required": [],
        "properties": {
          "limit": "integer 1..100",
          "cursor": "string"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "List blocks result"
      },
      "example": {
        "limit": 20
      },
      "boundary": "Block order and IDs are deterministic; coverage counts describe the current public snapshot only."
    },
    {
      "name": "compare_cities",
      "status": "current",
      "title": "Compare cities",
      "description": "Compare canonical public cities on compatible metric definitions with provenance for every cell.",
      "input_schema": {
        "required": [
          "cities",
          "metric_ids"
        ],
        "properties": {
          "cities": "array of 2..10 {country,slug} references",
          "metric_ids": "array of 1..20 canonical metric ids"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Compare cities result"
      },
      "example": {
        "cities": [
          {
            "country": "de",
            "slug": "berlin"
          },
          {
            "country": "de",
            "slug": "munich"
          }
        ],
        "metric_ids": [
          "population_total"
        ]
      },
      "boundary": "Incompatible units, periods, definitions or grains are omitted with reasons; no implicit currency, period or geography conversion occurs."
    },
    {
      "name": "search_facts",
      "status": "current",
      "title": "Search facts",
      "description": "Run bounded deterministic numeric filters over eligible public city facts with explicit counts and provenance.",
      "input_schema": {
        "required": [],
        "properties": {
          "countries": "array of ISO 3166-1 alpha-2",
          "filters": "array of at most 10 metric predicates",
          "sort_metric": "one canonical metric id",
          "sort_order": "asc or desc",
          "limit": "integer 1..100",
          "cursor": "string",
          "diagnostic": "optional boolean"
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "schema_version",
          "snapshot_id",
          "generated_at",
          "canonical_origin",
          "status",
          "citations",
          "resource_links"
        ],
        "properties": {
          "schema_version": {
            "type": "string",
            "minLength": 1
          },
          "snapshot_id": {
            "type": "string",
            "minLength": 1
          },
          "generated_at": {
            "type": "string",
            "minLength": 1
          },
          "canonical_origin": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1
          },
          "citations": {
            "type": "object",
            "required": [
              "canonical",
              "sources"
            ],
            "properties": {
              "canonical": {
                "type": "object",
                "required": [
                  "entity_id",
                  "url",
                  "label"
                ],
                "properties": {
                  "entity_id": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri"
                  },
                  "label": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "sources": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "source_id",
                    "title",
                    "url",
                    "native_period",
                    "scope",
                    "attribution"
                  ],
                  "properties": {
                    "source_id": {
                      "type": "string",
                      "minLength": 1
                    },
                    "title": {
                      "type": "string",
                      "minLength": 1
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "native_period": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "scope": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "observed_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "verified_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "attribution": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "resource_links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "type",
                "uri",
                "name"
              ],
              "properties": {
                "type": {
                  "const": "resource_link"
                },
                "uri": {
                  "type": "string",
                  "pattern": "^(https://immigrationdb\\.com|immigrationdb://)"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": true,
        "title": "Search facts result"
      },
      "example": {
        "countries": [
          "de"
        ],
        "filters": [
          {
            "metric_id": "population_total",
            "op": ">",
            "value": 100000
          }
        ],
        "sort_metric": "population_total",
        "sort_order": "desc",
        "limit": 20
      },
      "boundary": "Filters are ANDed, results are capped and tie-broken by canonical entity ID; wrong-grain or non-comparable facts are excluded unless diagnostic mode is explicit."
    }
  ],
  "contract_tools": [],
  "contract_tool_schemas": {},
  "resource_templates": [
    "immigrationdb://city/{country}/{slug}",
    "immigrationdb://legal/routes/{country}/{route_id}",
    "immigrationdb://legal/entry/{passport}",
    "immigrationdb://legal/entry/{passport}/{destination}"
  ],
  "resource_domains": {
    "countries": 39,
    "cities": 29964,
    "reports": 79,
    "visa_routes": 354,
    "entry_rules": 7528,
    "passport_shards": 199
  },
  "entry_rule_shards": [
    {
      "passport": "ad",
      "count": 38,
      "data_path": "/data/visa/passport/ad.json",
      "resource_uri": "immigrationdb://legal/entry/ad"
    },
    {
      "passport": "ae",
      "count": 37,
      "data_path": "/data/visa/passport/ae.json",
      "resource_uri": "immigrationdb://legal/entry/ae"
    },
    {
      "passport": "af",
      "count": 38,
      "data_path": "/data/visa/passport/af.json",
      "resource_uri": "immigrationdb://legal/entry/af"
    },
    {
      "passport": "ag",
      "count": 38,
      "data_path": "/data/visa/passport/ag.json",
      "resource_uri": "immigrationdb://legal/entry/ag"
    },
    {
      "passport": "al",
      "count": 38,
      "data_path": "/data/visa/passport/al.json",
      "resource_uri": "immigrationdb://legal/entry/al"
    },
    {
      "passport": "am",
      "count": 38,
      "data_path": "/data/visa/passport/am.json",
      "resource_uri": "immigrationdb://legal/entry/am"
    },
    {
      "passport": "ao",
      "count": 38,
      "data_path": "/data/visa/passport/ao.json",
      "resource_uri": "immigrationdb://legal/entry/ao"
    },
    {
      "passport": "ar",
      "count": 38,
      "data_path": "/data/visa/passport/ar.json",
      "resource_uri": "immigrationdb://legal/entry/ar"
    },
    {
      "passport": "at",
      "count": 38,
      "data_path": "/data/visa/passport/at.json",
      "resource_uri": "immigrationdb://legal/entry/at"
    },
    {
      "passport": "au",
      "count": 38,
      "data_path": "/data/visa/passport/au.json",
      "resource_uri": "immigrationdb://legal/entry/au"
    },
    {
      "passport": "az",
      "count": 38,
      "data_path": "/data/visa/passport/az.json",
      "resource_uri": "immigrationdb://legal/entry/az"
    },
    {
      "passport": "ba",
      "count": 38,
      "data_path": "/data/visa/passport/ba.json",
      "resource_uri": "immigrationdb://legal/entry/ba"
    },
    {
      "passport": "bb",
      "count": 38,
      "data_path": "/data/visa/passport/bb.json",
      "resource_uri": "immigrationdb://legal/entry/bb"
    },
    {
      "passport": "bd",
      "count": 38,
      "data_path": "/data/visa/passport/bd.json",
      "resource_uri": "immigrationdb://legal/entry/bd"
    },
    {
      "passport": "be",
      "count": 38,
      "data_path": "/data/visa/passport/be.json",
      "resource_uri": "immigrationdb://legal/entry/be"
    },
    {
      "passport": "bf",
      "count": 38,
      "data_path": "/data/visa/passport/bf.json",
      "resource_uri": "immigrationdb://legal/entry/bf"
    },
    {
      "passport": "bg",
      "count": 38,
      "data_path": "/data/visa/passport/bg.json",
      "resource_uri": "immigrationdb://legal/entry/bg"
    },
    {
      "passport": "bh",
      "count": 38,
      "data_path": "/data/visa/passport/bh.json",
      "resource_uri": "immigrationdb://legal/entry/bh"
    },
    {
      "passport": "bi",
      "count": 38,
      "data_path": "/data/visa/passport/bi.json",
      "resource_uri": "immigrationdb://legal/entry/bi"
    },
    {
      "passport": "bj",
      "count": 38,
      "data_path": "/data/visa/passport/bj.json",
      "resource_uri": "immigrationdb://legal/entry/bj"
    },
    {
      "passport": "bn",
      "count": 38,
      "data_path": "/data/visa/passport/bn.json",
      "resource_uri": "immigrationdb://legal/entry/bn"
    },
    {
      "passport": "bo",
      "count": 38,
      "data_path": "/data/visa/passport/bo.json",
      "resource_uri": "immigrationdb://legal/entry/bo"
    },
    {
      "passport": "br",
      "count": 38,
      "data_path": "/data/visa/passport/br.json",
      "resource_uri": "immigrationdb://legal/entry/br"
    },
    {
      "passport": "bs",
      "count": 38,
      "data_path": "/data/visa/passport/bs.json",
      "resource_uri": "immigrationdb://legal/entry/bs"
    },
    {
      "passport": "bt",
      "count": 38,
      "data_path": "/data/visa/passport/bt.json",
      "resource_uri": "immigrationdb://legal/entry/bt"
    },
    {
      "passport": "bw",
      "count": 38,
      "data_path": "/data/visa/passport/bw.json",
      "resource_uri": "immigrationdb://legal/entry/bw"
    },
    {
      "passport": "by",
      "count": 38,
      "data_path": "/data/visa/passport/by.json",
      "resource_uri": "immigrationdb://legal/entry/by"
    },
    {
      "passport": "bz",
      "count": 38,
      "data_path": "/data/visa/passport/bz.json",
      "resource_uri": "immigrationdb://legal/entry/bz"
    },
    {
      "passport": "ca",
      "count": 38,
      "data_path": "/data/visa/passport/ca.json",
      "resource_uri": "immigrationdb://legal/entry/ca"
    },
    {
      "passport": "cd",
      "count": 38,
      "data_path": "/data/visa/passport/cd.json",
      "resource_uri": "immigrationdb://legal/entry/cd"
    },
    {
      "passport": "cf",
      "count": 38,
      "data_path": "/data/visa/passport/cf.json",
      "resource_uri": "immigrationdb://legal/entry/cf"
    },
    {
      "passport": "cg",
      "count": 38,
      "data_path": "/data/visa/passport/cg.json",
      "resource_uri": "immigrationdb://legal/entry/cg"
    },
    {
      "passport": "ch",
      "count": 38,
      "data_path": "/data/visa/passport/ch.json",
      "resource_uri": "immigrationdb://legal/entry/ch"
    },
    {
      "passport": "ci",
      "count": 38,
      "data_path": "/data/visa/passport/ci.json",
      "resource_uri": "immigrationdb://legal/entry/ci"
    },
    {
      "passport": "cl",
      "count": 38,
      "data_path": "/data/visa/passport/cl.json",
      "resource_uri": "immigrationdb://legal/entry/cl"
    },
    {
      "passport": "cm",
      "count": 38,
      "data_path": "/data/visa/passport/cm.json",
      "resource_uri": "immigrationdb://legal/entry/cm"
    },
    {
      "passport": "cn",
      "count": 38,
      "data_path": "/data/visa/passport/cn.json",
      "resource_uri": "immigrationdb://legal/entry/cn"
    },
    {
      "passport": "co",
      "count": 38,
      "data_path": "/data/visa/passport/co.json",
      "resource_uri": "immigrationdb://legal/entry/co"
    },
    {
      "passport": "cr",
      "count": 38,
      "data_path": "/data/visa/passport/cr.json",
      "resource_uri": "immigrationdb://legal/entry/cr"
    },
    {
      "passport": "cu",
      "count": 38,
      "data_path": "/data/visa/passport/cu.json",
      "resource_uri": "immigrationdb://legal/entry/cu"
    },
    {
      "passport": "cv",
      "count": 38,
      "data_path": "/data/visa/passport/cv.json",
      "resource_uri": "immigrationdb://legal/entry/cv"
    },
    {
      "passport": "cy",
      "count": 38,
      "data_path": "/data/visa/passport/cy.json",
      "resource_uri": "immigrationdb://legal/entry/cy"
    },
    {
      "passport": "cz",
      "count": 38,
      "data_path": "/data/visa/passport/cz.json",
      "resource_uri": "immigrationdb://legal/entry/cz"
    },
    {
      "passport": "de",
      "count": 38,
      "data_path": "/data/visa/passport/de.json",
      "resource_uri": "immigrationdb://legal/entry/de"
    },
    {
      "passport": "dj",
      "count": 38,
      "data_path": "/data/visa/passport/dj.json",
      "resource_uri": "immigrationdb://legal/entry/dj"
    },
    {
      "passport": "dk",
      "count": 38,
      "data_path": "/data/visa/passport/dk.json",
      "resource_uri": "immigrationdb://legal/entry/dk"
    },
    {
      "passport": "dm",
      "count": 38,
      "data_path": "/data/visa/passport/dm.json",
      "resource_uri": "immigrationdb://legal/entry/dm"
    },
    {
      "passport": "do",
      "count": 38,
      "data_path": "/data/visa/passport/do.json",
      "resource_uri": "immigrationdb://legal/entry/do"
    },
    {
      "passport": "dz",
      "count": 38,
      "data_path": "/data/visa/passport/dz.json",
      "resource_uri": "immigrationdb://legal/entry/dz"
    },
    {
      "passport": "ec",
      "count": 38,
      "data_path": "/data/visa/passport/ec.json",
      "resource_uri": "immigrationdb://legal/entry/ec"
    },
    {
      "passport": "ee",
      "count": 38,
      "data_path": "/data/visa/passport/ee.json",
      "resource_uri": "immigrationdb://legal/entry/ee"
    },
    {
      "passport": "eg",
      "count": 38,
      "data_path": "/data/visa/passport/eg.json",
      "resource_uri": "immigrationdb://legal/entry/eg"
    },
    {
      "passport": "er",
      "count": 38,
      "data_path": "/data/visa/passport/er.json",
      "resource_uri": "immigrationdb://legal/entry/er"
    },
    {
      "passport": "es",
      "count": 38,
      "data_path": "/data/visa/passport/es.json",
      "resource_uri": "immigrationdb://legal/entry/es"
    },
    {
      "passport": "et",
      "count": 38,
      "data_path": "/data/visa/passport/et.json",
      "resource_uri": "immigrationdb://legal/entry/et"
    },
    {
      "passport": "eu",
      "count": 6,
      "data_path": "/data/visa/passport/eu.json",
      "resource_uri": "immigrationdb://legal/entry/eu"
    },
    {
      "passport": "fi",
      "count": 38,
      "data_path": "/data/visa/passport/fi.json",
      "resource_uri": "immigrationdb://legal/entry/fi"
    },
    {
      "passport": "fj",
      "count": 38,
      "data_path": "/data/visa/passport/fj.json",
      "resource_uri": "immigrationdb://legal/entry/fj"
    },
    {
      "passport": "fm",
      "count": 38,
      "data_path": "/data/visa/passport/fm.json",
      "resource_uri": "immigrationdb://legal/entry/fm"
    },
    {
      "passport": "fr",
      "count": 38,
      "data_path": "/data/visa/passport/fr.json",
      "resource_uri": "immigrationdb://legal/entry/fr"
    },
    {
      "passport": "ga",
      "count": 38,
      "data_path": "/data/visa/passport/ga.json",
      "resource_uri": "immigrationdb://legal/entry/ga"
    },
    {
      "passport": "gb",
      "count": 38,
      "data_path": "/data/visa/passport/gb.json",
      "resource_uri": "immigrationdb://legal/entry/gb"
    },
    {
      "passport": "gd",
      "count": 38,
      "data_path": "/data/visa/passport/gd.json",
      "resource_uri": "immigrationdb://legal/entry/gd"
    },
    {
      "passport": "ge",
      "count": 38,
      "data_path": "/data/visa/passport/ge.json",
      "resource_uri": "immigrationdb://legal/entry/ge"
    },
    {
      "passport": "gh",
      "count": 38,
      "data_path": "/data/visa/passport/gh.json",
      "resource_uri": "immigrationdb://legal/entry/gh"
    },
    {
      "passport": "gm",
      "count": 38,
      "data_path": "/data/visa/passport/gm.json",
      "resource_uri": "immigrationdb://legal/entry/gm"
    },
    {
      "passport": "gn",
      "count": 38,
      "data_path": "/data/visa/passport/gn.json",
      "resource_uri": "immigrationdb://legal/entry/gn"
    },
    {
      "passport": "gq",
      "count": 38,
      "data_path": "/data/visa/passport/gq.json",
      "resource_uri": "immigrationdb://legal/entry/gq"
    },
    {
      "passport": "gr",
      "count": 38,
      "data_path": "/data/visa/passport/gr.json",
      "resource_uri": "immigrationdb://legal/entry/gr"
    },
    {
      "passport": "gt",
      "count": 38,
      "data_path": "/data/visa/passport/gt.json",
      "resource_uri": "immigrationdb://legal/entry/gt"
    },
    {
      "passport": "gw",
      "count": 38,
      "data_path": "/data/visa/passport/gw.json",
      "resource_uri": "immigrationdb://legal/entry/gw"
    },
    {
      "passport": "gy",
      "count": 38,
      "data_path": "/data/visa/passport/gy.json",
      "resource_uri": "immigrationdb://legal/entry/gy"
    },
    {
      "passport": "hk",
      "count": 38,
      "data_path": "/data/visa/passport/hk.json",
      "resource_uri": "immigrationdb://legal/entry/hk"
    },
    {
      "passport": "hn",
      "count": 38,
      "data_path": "/data/visa/passport/hn.json",
      "resource_uri": "immigrationdb://legal/entry/hn"
    },
    {
      "passport": "hr",
      "count": 38,
      "data_path": "/data/visa/passport/hr.json",
      "resource_uri": "immigrationdb://legal/entry/hr"
    },
    {
      "passport": "ht",
      "count": 38,
      "data_path": "/data/visa/passport/ht.json",
      "resource_uri": "immigrationdb://legal/entry/ht"
    },
    {
      "passport": "hu",
      "count": 38,
      "data_path": "/data/visa/passport/hu.json",
      "resource_uri": "immigrationdb://legal/entry/hu"
    },
    {
      "passport": "id",
      "count": 38,
      "data_path": "/data/visa/passport/id.json",
      "resource_uri": "immigrationdb://legal/entry/id"
    },
    {
      "passport": "ie",
      "count": 38,
      "data_path": "/data/visa/passport/ie.json",
      "resource_uri": "immigrationdb://legal/entry/ie"
    },
    {
      "passport": "il",
      "count": 38,
      "data_path": "/data/visa/passport/il.json",
      "resource_uri": "immigrationdb://legal/entry/il"
    },
    {
      "passport": "in",
      "count": 38,
      "data_path": "/data/visa/passport/in.json",
      "resource_uri": "immigrationdb://legal/entry/in"
    },
    {
      "passport": "iq",
      "count": 38,
      "data_path": "/data/visa/passport/iq.json",
      "resource_uri": "immigrationdb://legal/entry/iq"
    },
    {
      "passport": "ir",
      "count": 38,
      "data_path": "/data/visa/passport/ir.json",
      "resource_uri": "immigrationdb://legal/entry/ir"
    },
    {
      "passport": "is",
      "count": 38,
      "data_path": "/data/visa/passport/is.json",
      "resource_uri": "immigrationdb://legal/entry/is"
    },
    {
      "passport": "it",
      "count": 38,
      "data_path": "/data/visa/passport/it.json",
      "resource_uri": "immigrationdb://legal/entry/it"
    },
    {
      "passport": "jm",
      "count": 38,
      "data_path": "/data/visa/passport/jm.json",
      "resource_uri": "immigrationdb://legal/entry/jm"
    },
    {
      "passport": "jo",
      "count": 38,
      "data_path": "/data/visa/passport/jo.json",
      "resource_uri": "immigrationdb://legal/entry/jo"
    },
    {
      "passport": "jp",
      "count": 37,
      "data_path": "/data/visa/passport/jp.json",
      "resource_uri": "immigrationdb://legal/entry/jp"
    },
    {
      "passport": "ke",
      "count": 38,
      "data_path": "/data/visa/passport/ke.json",
      "resource_uri": "immigrationdb://legal/entry/ke"
    },
    {
      "passport": "kg",
      "count": 38,
      "data_path": "/data/visa/passport/kg.json",
      "resource_uri": "immigrationdb://legal/entry/kg"
    },
    {
      "passport": "kh",
      "count": 38,
      "data_path": "/data/visa/passport/kh.json",
      "resource_uri": "immigrationdb://legal/entry/kh"
    },
    {
      "passport": "ki",
      "count": 38,
      "data_path": "/data/visa/passport/ki.json",
      "resource_uri": "immigrationdb://legal/entry/ki"
    },
    {
      "passport": "km",
      "count": 38,
      "data_path": "/data/visa/passport/km.json",
      "resource_uri": "immigrationdb://legal/entry/km"
    },
    {
      "passport": "kn",
      "count": 38,
      "data_path": "/data/visa/passport/kn.json",
      "resource_uri": "immigrationdb://legal/entry/kn"
    },
    {
      "passport": "kp",
      "count": 38,
      "data_path": "/data/visa/passport/kp.json",
      "resource_uri": "immigrationdb://legal/entry/kp"
    },
    {
      "passport": "kr",
      "count": 39,
      "data_path": "/data/visa/passport/kr.json",
      "resource_uri": "immigrationdb://legal/entry/kr"
    },
    {
      "passport": "kw",
      "count": 38,
      "data_path": "/data/visa/passport/kw.json",
      "resource_uri": "immigrationdb://legal/entry/kw"
    },
    {
      "passport": "kz",
      "count": 38,
      "data_path": "/data/visa/passport/kz.json",
      "resource_uri": "immigrationdb://legal/entry/kz"
    },
    {
      "passport": "la",
      "count": 38,
      "data_path": "/data/visa/passport/la.json",
      "resource_uri": "immigrationdb://legal/entry/la"
    },
    {
      "passport": "lb",
      "count": 38,
      "data_path": "/data/visa/passport/lb.json",
      "resource_uri": "immigrationdb://legal/entry/lb"
    },
    {
      "passport": "lc",
      "count": 38,
      "data_path": "/data/visa/passport/lc.json",
      "resource_uri": "immigrationdb://legal/entry/lc"
    },
    {
      "passport": "li",
      "count": 38,
      "data_path": "/data/visa/passport/li.json",
      "resource_uri": "immigrationdb://legal/entry/li"
    },
    {
      "passport": "lk",
      "count": 38,
      "data_path": "/data/visa/passport/lk.json",
      "resource_uri": "immigrationdb://legal/entry/lk"
    },
    {
      "passport": "lr",
      "count": 38,
      "data_path": "/data/visa/passport/lr.json",
      "resource_uri": "immigrationdb://legal/entry/lr"
    },
    {
      "passport": "ls",
      "count": 38,
      "data_path": "/data/visa/passport/ls.json",
      "resource_uri": "immigrationdb://legal/entry/ls"
    },
    {
      "passport": "lt",
      "count": 38,
      "data_path": "/data/visa/passport/lt.json",
      "resource_uri": "immigrationdb://legal/entry/lt"
    },
    {
      "passport": "lu",
      "count": 38,
      "data_path": "/data/visa/passport/lu.json",
      "resource_uri": "immigrationdb://legal/entry/lu"
    },
    {
      "passport": "lv",
      "count": 38,
      "data_path": "/data/visa/passport/lv.json",
      "resource_uri": "immigrationdb://legal/entry/lv"
    },
    {
      "passport": "ly",
      "count": 38,
      "data_path": "/data/visa/passport/ly.json",
      "resource_uri": "immigrationdb://legal/entry/ly"
    },
    {
      "passport": "ma",
      "count": 38,
      "data_path": "/data/visa/passport/ma.json",
      "resource_uri": "immigrationdb://legal/entry/ma"
    },
    {
      "passport": "mc",
      "count": 38,
      "data_path": "/data/visa/passport/mc.json",
      "resource_uri": "immigrationdb://legal/entry/mc"
    },
    {
      "passport": "md",
      "count": 38,
      "data_path": "/data/visa/passport/md.json",
      "resource_uri": "immigrationdb://legal/entry/md"
    },
    {
      "passport": "me",
      "count": 38,
      "data_path": "/data/visa/passport/me.json",
      "resource_uri": "immigrationdb://legal/entry/me"
    },
    {
      "passport": "mg",
      "count": 38,
      "data_path": "/data/visa/passport/mg.json",
      "resource_uri": "immigrationdb://legal/entry/mg"
    },
    {
      "passport": "mh",
      "count": 38,
      "data_path": "/data/visa/passport/mh.json",
      "resource_uri": "immigrationdb://legal/entry/mh"
    },
    {
      "passport": "mk",
      "count": 38,
      "data_path": "/data/visa/passport/mk.json",
      "resource_uri": "immigrationdb://legal/entry/mk"
    },
    {
      "passport": "ml",
      "count": 38,
      "data_path": "/data/visa/passport/ml.json",
      "resource_uri": "immigrationdb://legal/entry/ml"
    },
    {
      "passport": "mm",
      "count": 38,
      "data_path": "/data/visa/passport/mm.json",
      "resource_uri": "immigrationdb://legal/entry/mm"
    },
    {
      "passport": "mn",
      "count": 38,
      "data_path": "/data/visa/passport/mn.json",
      "resource_uri": "immigrationdb://legal/entry/mn"
    },
    {
      "passport": "mo",
      "count": 38,
      "data_path": "/data/visa/passport/mo.json",
      "resource_uri": "immigrationdb://legal/entry/mo"
    },
    {
      "passport": "mr",
      "count": 38,
      "data_path": "/data/visa/passport/mr.json",
      "resource_uri": "immigrationdb://legal/entry/mr"
    },
    {
      "passport": "mt",
      "count": 38,
      "data_path": "/data/visa/passport/mt.json",
      "resource_uri": "immigrationdb://legal/entry/mt"
    },
    {
      "passport": "mu",
      "count": 38,
      "data_path": "/data/visa/passport/mu.json",
      "resource_uri": "immigrationdb://legal/entry/mu"
    },
    {
      "passport": "mv",
      "count": 38,
      "data_path": "/data/visa/passport/mv.json",
      "resource_uri": "immigrationdb://legal/entry/mv"
    },
    {
      "passport": "mw",
      "count": 38,
      "data_path": "/data/visa/passport/mw.json",
      "resource_uri": "immigrationdb://legal/entry/mw"
    },
    {
      "passport": "mx",
      "count": 38,
      "data_path": "/data/visa/passport/mx.json",
      "resource_uri": "immigrationdb://legal/entry/mx"
    },
    {
      "passport": "my",
      "count": 38,
      "data_path": "/data/visa/passport/my.json",
      "resource_uri": "immigrationdb://legal/entry/my"
    },
    {
      "passport": "mz",
      "count": 38,
      "data_path": "/data/visa/passport/mz.json",
      "resource_uri": "immigrationdb://legal/entry/mz"
    },
    {
      "passport": "na",
      "count": 38,
      "data_path": "/data/visa/passport/na.json",
      "resource_uri": "immigrationdb://legal/entry/na"
    },
    {
      "passport": "ne",
      "count": 38,
      "data_path": "/data/visa/passport/ne.json",
      "resource_uri": "immigrationdb://legal/entry/ne"
    },
    {
      "passport": "ng",
      "count": 38,
      "data_path": "/data/visa/passport/ng.json",
      "resource_uri": "immigrationdb://legal/entry/ng"
    },
    {
      "passport": "ni",
      "count": 38,
      "data_path": "/data/visa/passport/ni.json",
      "resource_uri": "immigrationdb://legal/entry/ni"
    },
    {
      "passport": "nl",
      "count": 38,
      "data_path": "/data/visa/passport/nl.json",
      "resource_uri": "immigrationdb://legal/entry/nl"
    },
    {
      "passport": "no",
      "count": 38,
      "data_path": "/data/visa/passport/no.json",
      "resource_uri": "immigrationdb://legal/entry/no"
    },
    {
      "passport": "np",
      "count": 38,
      "data_path": "/data/visa/passport/np.json",
      "resource_uri": "immigrationdb://legal/entry/np"
    },
    {
      "passport": "nr",
      "count": 38,
      "data_path": "/data/visa/passport/nr.json",
      "resource_uri": "immigrationdb://legal/entry/nr"
    },
    {
      "passport": "nz",
      "count": 38,
      "data_path": "/data/visa/passport/nz.json",
      "resource_uri": "immigrationdb://legal/entry/nz"
    },
    {
      "passport": "om",
      "count": 38,
      "data_path": "/data/visa/passport/om.json",
      "resource_uri": "immigrationdb://legal/entry/om"
    },
    {
      "passport": "pa",
      "count": 38,
      "data_path": "/data/visa/passport/pa.json",
      "resource_uri": "immigrationdb://legal/entry/pa"
    },
    {
      "passport": "pe",
      "count": 38,
      "data_path": "/data/visa/passport/pe.json",
      "resource_uri": "immigrationdb://legal/entry/pe"
    },
    {
      "passport": "pg",
      "count": 38,
      "data_path": "/data/visa/passport/pg.json",
      "resource_uri": "immigrationdb://legal/entry/pg"
    },
    {
      "passport": "ph",
      "count": 38,
      "data_path": "/data/visa/passport/ph.json",
      "resource_uri": "immigrationdb://legal/entry/ph"
    },
    {
      "passport": "pk",
      "count": 38,
      "data_path": "/data/visa/passport/pk.json",
      "resource_uri": "immigrationdb://legal/entry/pk"
    },
    {
      "passport": "pl",
      "count": 38,
      "data_path": "/data/visa/passport/pl.json",
      "resource_uri": "immigrationdb://legal/entry/pl"
    },
    {
      "passport": "ps",
      "count": 38,
      "data_path": "/data/visa/passport/ps.json",
      "resource_uri": "immigrationdb://legal/entry/ps"
    },
    {
      "passport": "pt",
      "count": 38,
      "data_path": "/data/visa/passport/pt.json",
      "resource_uri": "immigrationdb://legal/entry/pt"
    },
    {
      "passport": "pw",
      "count": 38,
      "data_path": "/data/visa/passport/pw.json",
      "resource_uri": "immigrationdb://legal/entry/pw"
    },
    {
      "passport": "py",
      "count": 38,
      "data_path": "/data/visa/passport/py.json",
      "resource_uri": "immigrationdb://legal/entry/py"
    },
    {
      "passport": "qa",
      "count": 38,
      "data_path": "/data/visa/passport/qa.json",
      "resource_uri": "immigrationdb://legal/entry/qa"
    },
    {
      "passport": "ro",
      "count": 38,
      "data_path": "/data/visa/passport/ro.json",
      "resource_uri": "immigrationdb://legal/entry/ro"
    },
    {
      "passport": "rs",
      "count": 38,
      "data_path": "/data/visa/passport/rs.json",
      "resource_uri": "immigrationdb://legal/entry/rs"
    },
    {
      "passport": "ru",
      "count": 38,
      "data_path": "/data/visa/passport/ru.json",
      "resource_uri": "immigrationdb://legal/entry/ru"
    },
    {
      "passport": "rw",
      "count": 38,
      "data_path": "/data/visa/passport/rw.json",
      "resource_uri": "immigrationdb://legal/entry/rw"
    },
    {
      "passport": "sa",
      "count": 38,
      "data_path": "/data/visa/passport/sa.json",
      "resource_uri": "immigrationdb://legal/entry/sa"
    },
    {
      "passport": "sb",
      "count": 38,
      "data_path": "/data/visa/passport/sb.json",
      "resource_uri": "immigrationdb://legal/entry/sb"
    },
    {
      "passport": "sc",
      "count": 38,
      "data_path": "/data/visa/passport/sc.json",
      "resource_uri": "immigrationdb://legal/entry/sc"
    },
    {
      "passport": "sd",
      "count": 38,
      "data_path": "/data/visa/passport/sd.json",
      "resource_uri": "immigrationdb://legal/entry/sd"
    },
    {
      "passport": "se",
      "count": 38,
      "data_path": "/data/visa/passport/se.json",
      "resource_uri": "immigrationdb://legal/entry/se"
    },
    {
      "passport": "sg",
      "count": 38,
      "data_path": "/data/visa/passport/sg.json",
      "resource_uri": "immigrationdb://legal/entry/sg"
    },
    {
      "passport": "si",
      "count": 38,
      "data_path": "/data/visa/passport/si.json",
      "resource_uri": "immigrationdb://legal/entry/si"
    },
    {
      "passport": "sk",
      "count": 38,
      "data_path": "/data/visa/passport/sk.json",
      "resource_uri": "immigrationdb://legal/entry/sk"
    },
    {
      "passport": "sl",
      "count": 38,
      "data_path": "/data/visa/passport/sl.json",
      "resource_uri": "immigrationdb://legal/entry/sl"
    },
    {
      "passport": "sm",
      "count": 38,
      "data_path": "/data/visa/passport/sm.json",
      "resource_uri": "immigrationdb://legal/entry/sm"
    },
    {
      "passport": "sn",
      "count": 38,
      "data_path": "/data/visa/passport/sn.json",
      "resource_uri": "immigrationdb://legal/entry/sn"
    },
    {
      "passport": "so",
      "count": 38,
      "data_path": "/data/visa/passport/so.json",
      "resource_uri": "immigrationdb://legal/entry/so"
    },
    {
      "passport": "sr",
      "count": 38,
      "data_path": "/data/visa/passport/sr.json",
      "resource_uri": "immigrationdb://legal/entry/sr"
    },
    {
      "passport": "ss",
      "count": 38,
      "data_path": "/data/visa/passport/ss.json",
      "resource_uri": "immigrationdb://legal/entry/ss"
    },
    {
      "passport": "st",
      "count": 38,
      "data_path": "/data/visa/passport/st.json",
      "resource_uri": "immigrationdb://legal/entry/st"
    },
    {
      "passport": "sv",
      "count": 38,
      "data_path": "/data/visa/passport/sv.json",
      "resource_uri": "immigrationdb://legal/entry/sv"
    },
    {
      "passport": "sy",
      "count": 38,
      "data_path": "/data/visa/passport/sy.json",
      "resource_uri": "immigrationdb://legal/entry/sy"
    },
    {
      "passport": "sz",
      "count": 38,
      "data_path": "/data/visa/passport/sz.json",
      "resource_uri": "immigrationdb://legal/entry/sz"
    },
    {
      "passport": "td",
      "count": 38,
      "data_path": "/data/visa/passport/td.json",
      "resource_uri": "immigrationdb://legal/entry/td"
    },
    {
      "passport": "tg",
      "count": 38,
      "data_path": "/data/visa/passport/tg.json",
      "resource_uri": "immigrationdb://legal/entry/tg"
    },
    {
      "passport": "th",
      "count": 38,
      "data_path": "/data/visa/passport/th.json",
      "resource_uri": "immigrationdb://legal/entry/th"
    },
    {
      "passport": "tj",
      "count": 38,
      "data_path": "/data/visa/passport/tj.json",
      "resource_uri": "immigrationdb://legal/entry/tj"
    },
    {
      "passport": "tl",
      "count": 38,
      "data_path": "/data/visa/passport/tl.json",
      "resource_uri": "immigrationdb://legal/entry/tl"
    },
    {
      "passport": "tm",
      "count": 38,
      "data_path": "/data/visa/passport/tm.json",
      "resource_uri": "immigrationdb://legal/entry/tm"
    },
    {
      "passport": "tn",
      "count": 38,
      "data_path": "/data/visa/passport/tn.json",
      "resource_uri": "immigrationdb://legal/entry/tn"
    },
    {
      "passport": "to",
      "count": 38,
      "data_path": "/data/visa/passport/to.json",
      "resource_uri": "immigrationdb://legal/entry/to"
    },
    {
      "passport": "tr",
      "count": 38,
      "data_path": "/data/visa/passport/tr.json",
      "resource_uri": "immigrationdb://legal/entry/tr"
    },
    {
      "passport": "tt",
      "count": 38,
      "data_path": "/data/visa/passport/tt.json",
      "resource_uri": "immigrationdb://legal/entry/tt"
    },
    {
      "passport": "tv",
      "count": 37,
      "data_path": "/data/visa/passport/tv.json",
      "resource_uri": "immigrationdb://legal/entry/tv"
    },
    {
      "passport": "tw",
      "count": 38,
      "data_path": "/data/visa/passport/tw.json",
      "resource_uri": "immigrationdb://legal/entry/tw"
    },
    {
      "passport": "tz",
      "count": 38,
      "data_path": "/data/visa/passport/tz.json",
      "resource_uri": "immigrationdb://legal/entry/tz"
    },
    {
      "passport": "ua",
      "count": 38,
      "data_path": "/data/visa/passport/ua.json",
      "resource_uri": "immigrationdb://legal/entry/ua"
    },
    {
      "passport": "ug",
      "count": 38,
      "data_path": "/data/visa/passport/ug.json",
      "resource_uri": "immigrationdb://legal/entry/ug"
    },
    {
      "passport": "us",
      "count": 38,
      "data_path": "/data/visa/passport/us.json",
      "resource_uri": "immigrationdb://legal/entry/us"
    },
    {
      "passport": "uy",
      "count": 38,
      "data_path": "/data/visa/passport/uy.json",
      "resource_uri": "immigrationdb://legal/entry/uy"
    },
    {
      "passport": "uz",
      "count": 38,
      "data_path": "/data/visa/passport/uz.json",
      "resource_uri": "immigrationdb://legal/entry/uz"
    },
    {
      "passport": "va",
      "count": 38,
      "data_path": "/data/visa/passport/va.json",
      "resource_uri": "immigrationdb://legal/entry/va"
    },
    {
      "passport": "vc",
      "count": 38,
      "data_path": "/data/visa/passport/vc.json",
      "resource_uri": "immigrationdb://legal/entry/vc"
    },
    {
      "passport": "ve",
      "count": 38,
      "data_path": "/data/visa/passport/ve.json",
      "resource_uri": "immigrationdb://legal/entry/ve"
    },
    {
      "passport": "vn",
      "count": 38,
      "data_path": "/data/visa/passport/vn.json",
      "resource_uri": "immigrationdb://legal/entry/vn"
    },
    {
      "passport": "vu",
      "count": 38,
      "data_path": "/data/visa/passport/vu.json",
      "resource_uri": "immigrationdb://legal/entry/vu"
    },
    {
      "passport": "ws",
      "count": 38,
      "data_path": "/data/visa/passport/ws.json",
      "resource_uri": "immigrationdb://legal/entry/ws"
    },
    {
      "passport": "ye",
      "count": 38,
      "data_path": "/data/visa/passport/ye.json",
      "resource_uri": "immigrationdb://legal/entry/ye"
    },
    {
      "passport": "za",
      "count": 38,
      "data_path": "/data/visa/passport/za.json",
      "resource_uri": "immigrationdb://legal/entry/za"
    },
    {
      "passport": "zm",
      "count": 38,
      "data_path": "/data/visa/passport/zm.json",
      "resource_uri": "immigrationdb://legal/entry/zm"
    },
    {
      "passport": "zw",
      "count": 38,
      "data_path": "/data/visa/passport/zw.json",
      "resource_uri": "immigrationdb://legal/entry/zw"
    }
  ],
  "index_path": "/mcp/index.json",
  "city_shards": [
    {
      "country_code": "AU",
      "path": "cities/au.json",
      "city_count": 100,
      "cities": [
        {
          "entity_id": "city:au:abs_sua:4001",
          "name": "Adelaide",
          "country_code": "AU",
          "slug": "adelaide",
          "canonical_path": "/cities/au/adelaide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5001",
          "name": "Albany",
          "country_code": "AU",
          "slug": "albany",
          "canonical_path": "/cities/au/albany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1001",
          "name": "Albury - Wodonga",
          "country_code": "AU",
          "slug": "albury-wodonga",
          "canonical_path": "/cities/au/albury-wodonga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:7001",
          "name": "Alice Springs",
          "country_code": "AU",
          "slug": "alice-springs",
          "canonical_path": "/cities/au/alice-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1002",
          "name": "Armidale",
          "country_code": "AU",
          "slug": "armidale",
          "canonical_path": "/cities/au/armidale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2001",
          "name": "Bacchus Marsh",
          "country_code": "AU",
          "slug": "bacchus-marsh",
          "canonical_path": "/cities/au/bacchus-marsh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2002",
          "name": "Bairnsdale",
          "country_code": "AU",
          "slug": "bairnsdale",
          "canonical_path": "/cities/au/bairnsdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2003",
          "name": "Ballarat",
          "country_code": "AU",
          "slug": "ballarat",
          "canonical_path": "/cities/au/ballarat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1003",
          "name": "Ballina",
          "country_code": "AU",
          "slug": "ballina",
          "canonical_path": "/cities/au/ballina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1004",
          "name": "Batemans Bay",
          "country_code": "AU",
          "slug": "batemans-bay",
          "canonical_path": "/cities/au/batemans-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1005",
          "name": "Bathurst",
          "country_code": "AU",
          "slug": "bathurst",
          "canonical_path": "/cities/au/bathurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2004",
          "name": "Bendigo",
          "country_code": "AU",
          "slug": "bendigo",
          "canonical_path": "/cities/au/bendigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1006",
          "name": "Bowral - Mittagong",
          "country_code": "AU",
          "slug": "bowral-mittagong",
          "canonical_path": "/cities/au/bowral-mittagong/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3001",
          "name": "Brisbane",
          "country_code": "AU",
          "slug": "brisbane",
          "canonical_path": "/cities/au/brisbane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1007",
          "name": "Broken Hill",
          "country_code": "AU",
          "slug": "broken-hill",
          "canonical_path": "/cities/au/broken-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5002",
          "name": "Broome",
          "country_code": "AU",
          "slug": "broome",
          "canonical_path": "/cities/au/broome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5003",
          "name": "Bunbury",
          "country_code": "AU",
          "slug": "bunbury",
          "canonical_path": "/cities/au/bunbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3002",
          "name": "Bundaberg",
          "country_code": "AU",
          "slug": "bundaberg",
          "canonical_path": "/cities/au/bundaberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:6001",
          "name": "Burnie - Wynyard",
          "country_code": "AU",
          "slug": "burnie-wynyard",
          "canonical_path": "/cities/au/burnie-wynyard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5004",
          "name": "Busselton",
          "country_code": "AU",
          "slug": "busselton",
          "canonical_path": "/cities/au/busselton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3003",
          "name": "Cairns",
          "country_code": "AU",
          "slug": "cairns",
          "canonical_path": "/cities/au/cairns/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1008",
          "name": "Camden Haven",
          "country_code": "AU",
          "slug": "camden-haven",
          "canonical_path": "/cities/au/camden-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:8001",
          "name": "Canberra - Queanbeyan",
          "country_code": "AU",
          "slug": "canberra-queanbeyan",
          "canonical_path": "/cities/au/canberra-queanbeyan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1009",
          "name": "Central Coast",
          "country_code": "AU",
          "slug": "central-coast",
          "canonical_path": "/cities/au/central-coast/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1010",
          "name": "Coffs Harbour",
          "country_code": "AU",
          "slug": "coffs-harbour",
          "canonical_path": "/cities/au/coffs-harbour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2005",
          "name": "Colac",
          "country_code": "AU",
          "slug": "colac",
          "canonical_path": "/cities/au/colac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:7002",
          "name": "Darwin",
          "country_code": "AU",
          "slug": "darwin",
          "canonical_path": "/cities/au/darwin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:6002",
          "name": "Devonport",
          "country_code": "AU",
          "slug": "devonport",
          "canonical_path": "/cities/au/devonport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1011",
          "name": "Dubbo",
          "country_code": "AU",
          "slug": "dubbo",
          "canonical_path": "/cities/au/dubbo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2006",
          "name": "Echuca - Moama",
          "country_code": "AU",
          "slug": "echuca-moama",
          "canonical_path": "/cities/au/echuca-moama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3004",
          "name": "Emerald",
          "country_code": "AU",
          "slug": "emerald",
          "canonical_path": "/cities/au/emerald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5005",
          "name": "Esperance",
          "country_code": "AU",
          "slug": "esperance",
          "canonical_path": "/cities/au/esperance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1012",
          "name": "Forster - Tuncurry",
          "country_code": "AU",
          "slug": "forster-tuncurry",
          "canonical_path": "/cities/au/forster-tuncurry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2007",
          "name": "Geelong",
          "country_code": "AU",
          "slug": "geelong",
          "canonical_path": "/cities/au/geelong/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5006",
          "name": "Geraldton",
          "country_code": "AU",
          "slug": "geraldton",
          "canonical_path": "/cities/au/geraldton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2008",
          "name": "Gisborne - Macedon",
          "country_code": "AU",
          "slug": "gisborne-macedon",
          "canonical_path": "/cities/au/gisborne-macedon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3005",
          "name": "Gladstone - Tannum Sands",
          "country_code": "AU",
          "slug": "gladstone-tannum-sands",
          "canonical_path": "/cities/au/gladstone-tannum-sands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3006",
          "name": "Gold Coast - Tweed Heads",
          "country_code": "AU",
          "slug": "gold-coast-tweed-heads",
          "canonical_path": "/cities/au/gold-coast-tweed-heads/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1013",
          "name": "Goulburn",
          "country_code": "AU",
          "slug": "goulburn",
          "canonical_path": "/cities/au/goulburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1014",
          "name": "Grafton",
          "country_code": "AU",
          "slug": "grafton",
          "canonical_path": "/cities/au/grafton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1015",
          "name": "Griffith",
          "country_code": "AU",
          "slug": "griffith",
          "canonical_path": "/cities/au/griffith/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3007",
          "name": "Gympie",
          "country_code": "AU",
          "slug": "gympie",
          "canonical_path": "/cities/au/gympie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3008",
          "name": "Hervey Bay",
          "country_code": "AU",
          "slug": "hervey-bay",
          "canonical_path": "/cities/au/hervey-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:6003",
          "name": "Hobart",
          "country_code": "AU",
          "slug": "hobart",
          "canonical_path": "/cities/au/hobart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2009",
          "name": "Horsham",
          "country_code": "AU",
          "slug": "horsham",
          "canonical_path": "/cities/au/horsham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5007",
          "name": "Kalgoorlie - Boulder",
          "country_code": "AU",
          "slug": "kalgoorlie-boulder",
          "canonical_path": "/cities/au/kalgoorlie-boulder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5008",
          "name": "Karratha",
          "country_code": "AU",
          "slug": "karratha",
          "canonical_path": "/cities/au/karratha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1016",
          "name": "Kempsey",
          "country_code": "AU",
          "slug": "kempsey",
          "canonical_path": "/cities/au/kempsey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3009",
          "name": "Kingaroy",
          "country_code": "AU",
          "slug": "kingaroy",
          "canonical_path": "/cities/au/kingaroy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:6004",
          "name": "Launceston",
          "country_code": "AU",
          "slug": "launceston",
          "canonical_path": "/cities/au/launceston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1017",
          "name": "Lismore",
          "country_code": "AU",
          "slug": "lismore",
          "canonical_path": "/cities/au/lismore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1018",
          "name": "Lithgow",
          "country_code": "AU",
          "slug": "lithgow",
          "canonical_path": "/cities/au/lithgow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3010",
          "name": "Mackay",
          "country_code": "AU",
          "slug": "mackay",
          "canonical_path": "/cities/au/mackay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3011",
          "name": "Maryborough",
          "country_code": "AU",
          "slug": "maryborough",
          "canonical_path": "/cities/au/maryborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2010",
          "name": "Melbourne",
          "country_code": "AU",
          "slug": "melbourne",
          "canonical_path": "/cities/au/melbourne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2011",
          "name": "Melton",
          "country_code": "AU",
          "slug": "melton",
          "canonical_path": "/cities/au/melton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2012",
          "name": "Mildura - Wentworth",
          "country_code": "AU",
          "slug": "mildura-wentworth",
          "canonical_path": "/cities/au/mildura-wentworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2013",
          "name": "Moe - Newborough",
          "country_code": "AU",
          "slug": "moe-newborough",
          "canonical_path": "/cities/au/moe-newborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1019",
          "name": "Morisset - Cooranbong",
          "country_code": "AU",
          "slug": "morisset-cooranbong",
          "canonical_path": "/cities/au/morisset-cooranbong/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:4002",
          "name": "Mount Gambier",
          "country_code": "AU",
          "slug": "mount-gambier",
          "canonical_path": "/cities/au/mount-gambier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3012",
          "name": "Mount Isa",
          "country_code": "AU",
          "slug": "mount-isa",
          "canonical_path": "/cities/au/mount-isa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1020",
          "name": "Mudgee",
          "country_code": "AU",
          "slug": "mudgee",
          "canonical_path": "/cities/au/mudgee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:4003",
          "name": "Murray Bridge",
          "country_code": "AU",
          "slug": "murray-bridge",
          "canonical_path": "/cities/au/murray-bridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1021",
          "name": "Muswellbrook",
          "country_code": "AU",
          "slug": "muswellbrook",
          "canonical_path": "/cities/au/muswellbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1022",
          "name": "Nelson Bay",
          "country_code": "AU",
          "slug": "nelson-bay",
          "canonical_path": "/cities/au/nelson-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1023",
          "name": "Newcastle - Maitland",
          "country_code": "AU",
          "slug": "newcastle-maitland",
          "canonical_path": "/cities/au/newcastle-maitland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1024",
          "name": "Nowra - Bomaderry",
          "country_code": "AU",
          "slug": "nowra-bomaderry",
          "canonical_path": "/cities/au/nowra-bomaderry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1025",
          "name": "Orange",
          "country_code": "AU",
          "slug": "orange",
          "canonical_path": "/cities/au/orange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1026",
          "name": "Parkes",
          "country_code": "AU",
          "slug": "parkes",
          "canonical_path": "/cities/au/parkes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5009",
          "name": "Perth",
          "country_code": "AU",
          "slug": "perth",
          "canonical_path": "/cities/au/perth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:4004",
          "name": "Port Augusta",
          "country_code": "AU",
          "slug": "port-augusta",
          "canonical_path": "/cities/au/port-augusta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:5010",
          "name": "Port Hedland",
          "country_code": "AU",
          "slug": "port-hedland",
          "canonical_path": "/cities/au/port-hedland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:4005",
          "name": "Port Lincoln",
          "country_code": "AU",
          "slug": "port-lincoln",
          "canonical_path": "/cities/au/port-lincoln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1027",
          "name": "Port Macquarie",
          "country_code": "AU",
          "slug": "port-macquarie",
          "canonical_path": "/cities/au/port-macquarie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:4006",
          "name": "Port Pirie",
          "country_code": "AU",
          "slug": "port-pirie",
          "canonical_path": "/cities/au/port-pirie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2014",
          "name": "Portland",
          "country_code": "AU",
          "slug": "portland",
          "canonical_path": "/cities/au/portland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3013",
          "name": "Rockhampton",
          "country_code": "AU",
          "slug": "rockhampton",
          "canonical_path": "/cities/au/rockhampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2015",
          "name": "Sale",
          "country_code": "AU",
          "slug": "sale",
          "canonical_path": "/cities/au/sale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2016",
          "name": "Shepparton - Mooroopna",
          "country_code": "AU",
          "slug": "shepparton-mooroopna",
          "canonical_path": "/cities/au/shepparton-mooroopna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1028",
          "name": "Singleton",
          "country_code": "AU",
          "slug": "singleton",
          "canonical_path": "/cities/au/singleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1029",
          "name": "St Georges Basin - Sanctuary Point",
          "country_code": "AU",
          "slug": "st-georges-basin-sanctuary-point",
          "canonical_path": "/cities/au/st-georges-basin-sanctuary-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3014",
          "name": "Sunshine Coast",
          "country_code": "AU",
          "slug": "sunshine-coast",
          "canonical_path": "/cities/au/sunshine-coast/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2017",
          "name": "Swan Hill",
          "country_code": "AU",
          "slug": "swan-hill",
          "canonical_path": "/cities/au/swan-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1030",
          "name": "Sydney",
          "country_code": "AU",
          "slug": "sydney",
          "canonical_path": "/cities/au/sydney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1031",
          "name": "Tamworth",
          "country_code": "AU",
          "slug": "tamworth",
          "canonical_path": "/cities/au/tamworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1032",
          "name": "Taree",
          "country_code": "AU",
          "slug": "taree",
          "canonical_path": "/cities/au/taree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3015",
          "name": "Toowoomba",
          "country_code": "AU",
          "slug": "toowoomba",
          "canonical_path": "/cities/au/toowoomba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3016",
          "name": "Townsville",
          "country_code": "AU",
          "slug": "townsville",
          "canonical_path": "/cities/au/townsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2018",
          "name": "Traralgon - Morwell",
          "country_code": "AU",
          "slug": "traralgon-morwell",
          "canonical_path": "/cities/au/traralgon-morwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1033",
          "name": "Ulladulla",
          "country_code": "AU",
          "slug": "ulladulla",
          "canonical_path": "/cities/au/ulladulla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:6005",
          "name": "Ulverstone",
          "country_code": "AU",
          "slug": "ulverstone",
          "canonical_path": "/cities/au/ulverstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:4007",
          "name": "Victor Harbor - Goolwa",
          "country_code": "AU",
          "slug": "victor-harbor-goolwa",
          "canonical_path": "/cities/au/victor-harbor-goolwa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1034",
          "name": "Wagga Wagga",
          "country_code": "AU",
          "slug": "wagga-wagga",
          "canonical_path": "/cities/au/wagga-wagga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2019",
          "name": "Wangaratta",
          "country_code": "AU",
          "slug": "wangaratta",
          "canonical_path": "/cities/au/wangaratta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2020",
          "name": "Warragul - Drouin",
          "country_code": "AU",
          "slug": "warragul-drouin",
          "canonical_path": "/cities/au/warragul-drouin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:2021",
          "name": "Warrnambool",
          "country_code": "AU",
          "slug": "warrnambool",
          "canonical_path": "/cities/au/warrnambool/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3017",
          "name": "Warwick",
          "country_code": "AU",
          "slug": "warwick",
          "canonical_path": "/cities/au/warwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:4008",
          "name": "Whyalla",
          "country_code": "AU",
          "slug": "whyalla",
          "canonical_path": "/cities/au/whyalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:1035",
          "name": "Wollongong",
          "country_code": "AU",
          "slug": "wollongong",
          "canonical_path": "/cities/au/wollongong/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:au:abs_sua:3018",
          "name": "Yeppoon",
          "country_code": "AU",
          "slug": "yeppoon",
          "canonical_path": "/cities/au/yeppoon/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "AT",
      "path": "cities/at.json",
      "city_count": 269,
      "cities": [
        {
          "entity_id": "city:at:slug:absam",
          "name": "Absam",
          "country_code": "AT",
          "slug": "absam",
          "canonical_path": "/cities/at/absam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:abtenau",
          "name": "Abtenau",
          "country_code": "AT",
          "slug": "abtenau",
          "canonical_path": "/cities/at/abtenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:alkoven",
          "name": "Alkoven",
          "country_code": "AT",
          "slug": "alkoven",
          "canonical_path": "/cities/at/alkoven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:altach",
          "name": "Altach",
          "country_code": "AT",
          "slug": "altach",
          "canonical_path": "/cities/at/altach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:altheim",
          "name": "Altheim",
          "country_code": "AT",
          "slug": "altheim",
          "canonical_path": "/cities/at/altheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:altmunster",
          "name": "Altmünster",
          "country_code": "AT",
          "slug": "altmunster",
          "canonical_path": "/cities/at/altmunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:amstetten",
          "name": "Amstetten",
          "country_code": "AT",
          "slug": "amstetten",
          "canonical_path": "/cities/at/amstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:andorf",
          "name": "Andorf",
          "country_code": "AT",
          "slug": "andorf",
          "canonical_path": "/cities/at/andorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ansfelden",
          "name": "Ansfelden",
          "country_code": "AT",
          "slug": "ansfelden",
          "canonical_path": "/cities/at/ansfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:arnoldstein",
          "name": "Arnoldstein",
          "country_code": "AT",
          "slug": "arnoldstein",
          "canonical_path": "/cities/at/arnoldstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:asten",
          "name": "Asten",
          "country_code": "AT",
          "slug": "asten",
          "canonical_path": "/cities/at/asten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:attnang-puchheim",
          "name": "Attnang-Puchheim",
          "country_code": "AT",
          "slug": "attnang-puchheim",
          "canonical_path": "/cities/at/attnang-puchheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:axams",
          "name": "Axams",
          "country_code": "AT",
          "slug": "axams",
          "canonical_path": "/cities/at/axams/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bad-gleichenberg",
          "name": "Bad Gleichenberg",
          "country_code": "AT",
          "slug": "bad-gleichenberg",
          "canonical_path": "/cities/at/bad-gleichenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bad-goisern-am-hallstattersee",
          "name": "Bad Goisern am Hallstättersee",
          "country_code": "AT",
          "slug": "bad-goisern-am-hallstattersee",
          "canonical_path": "/cities/at/bad-goisern-am-hallstattersee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bad-hall",
          "name": "Bad Hall",
          "country_code": "AT",
          "slug": "bad-hall",
          "canonical_path": "/cities/at/bad-hall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bad-hofgastein",
          "name": "Bad Hofgastein",
          "country_code": "AT",
          "slug": "bad-hofgastein",
          "canonical_path": "/cities/at/bad-hofgastein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bad-ischl",
          "name": "Bad Ischl",
          "country_code": "AT",
          "slug": "bad-ischl",
          "canonical_path": "/cities/at/bad-ischl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bad-voslau",
          "name": "Bad Vöslau",
          "country_code": "AT",
          "slug": "bad-voslau",
          "canonical_path": "/cities/at/bad-voslau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:baden",
          "name": "Baden",
          "country_code": "AT",
          "slug": "baden",
          "canonical_path": "/cities/at/baden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:barnbach",
          "name": "Bärnbach",
          "country_code": "AT",
          "slug": "barnbach",
          "canonical_path": "/cities/at/barnbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bergheim",
          "name": "Bergheim",
          "country_code": "AT",
          "slug": "bergheim",
          "canonical_path": "/cities/at/bergheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:berndorf",
          "name": "Berndorf",
          "country_code": "AT",
          "slug": "berndorf",
          "canonical_path": "/cities/at/berndorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bischofshofen",
          "name": "Bischofshofen",
          "country_code": "AT",
          "slug": "bischofshofen",
          "canonical_path": "/cities/at/bischofshofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bludenz",
          "name": "Bludenz",
          "country_code": "AT",
          "slug": "bludenz",
          "canonical_path": "/cities/at/bludenz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:boheimkirchen",
          "name": "Böheimkirchen",
          "country_code": "AT",
          "slug": "boheimkirchen",
          "canonical_path": "/cities/at/boheimkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:braunau-am-inn",
          "name": "Braunau am Inn",
          "country_code": "AT",
          "slug": "braunau-am-inn",
          "canonical_path": "/cities/at/braunau-am-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bregenz",
          "name": "Bregenz",
          "country_code": "AT",
          "slug": "bregenz",
          "canonical_path": "/cities/at/bregenz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:breitenfurt-bei-wien",
          "name": "Breitenfurt bei Wien",
          "country_code": "AT",
          "slug": "breitenfurt-bei-wien",
          "canonical_path": "/cities/at/breitenfurt-bei-wien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bruck-an-der-leitha",
          "name": "Bruck an der Leitha",
          "country_code": "AT",
          "slug": "bruck-an-der-leitha",
          "canonical_path": "/cities/at/bruck-an-der-leitha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:bruck-an-der-mur",
          "name": "Bruck an der Mur",
          "country_code": "AT",
          "slug": "bruck-an-der-mur",
          "canonical_path": "/cities/at/bruck-an-der-mur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:brunn-am-gebirge",
          "name": "Brunn am Gebirge",
          "country_code": "AT",
          "slug": "brunn-am-gebirge",
          "canonical_path": "/cities/at/brunn-am-gebirge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:burmoos",
          "name": "Bürmoos",
          "country_code": "AT",
          "slug": "burmoos",
          "canonical_path": "/cities/at/burmoos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:deutsch-wagram",
          "name": "Deutsch-Wagram",
          "country_code": "AT",
          "slug": "deutsch-wagram",
          "canonical_path": "/cities/at/deutsch-wagram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:deutschlandsberg",
          "name": "Deutschlandsberg",
          "country_code": "AT",
          "slug": "deutschlandsberg",
          "canonical_path": "/cities/at/deutschlandsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:dornbirn",
          "name": "Dornbirn",
          "country_code": "AT",
          "slug": "dornbirn",
          "canonical_path": "/cities/at/dornbirn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ebbs",
          "name": "Ebbs",
          "country_code": "AT",
          "slug": "ebbs",
          "canonical_path": "/cities/at/ebbs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ebensee-am-traunsee",
          "name": "Ebensee am Traunsee",
          "country_code": "AT",
          "slug": "ebensee-am-traunsee",
          "canonical_path": "/cities/at/ebensee-am-traunsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2780544",
          "name": "Ebenthal",
          "country_code": "AT",
          "slug": "ebenthal",
          "canonical_path": "/cities/at/ebenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ebenthal-in-karnten",
          "name": "Ebenthal in Kärnten",
          "country_code": "AT",
          "slug": "ebenthal-in-karnten",
          "canonical_path": "/cities/at/ebenthal-in-karnten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ebreichsdorf",
          "name": "Ebreichsdorf",
          "country_code": "AT",
          "slug": "ebreichsdorf",
          "canonical_path": "/cities/at/ebreichsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:eggendorf",
          "name": "Eggendorf",
          "country_code": "AT",
          "slug": "eggendorf",
          "canonical_path": "/cities/at/eggendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:eggersdorf-bei-graz",
          "name": "Eggersdorf bei Graz",
          "country_code": "AT",
          "slug": "eggersdorf-bei-graz",
          "canonical_path": "/cities/at/eggersdorf-bei-graz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:eibiswald",
          "name": "Eibiswald",
          "country_code": "AT",
          "slug": "eibiswald",
          "canonical_path": "/cities/at/eibiswald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:eisenstadt",
          "name": "Eisenstadt",
          "country_code": "AT",
          "slug": "eisenstadt",
          "canonical_path": "/cities/at/eisenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2780180",
          "name": "Eisenzicken",
          "country_code": "AT",
          "slug": "eisenzicken",
          "canonical_path": "/cities/at/eisenzicken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:elsbethen",
          "name": "Elsbethen",
          "country_code": "AT",
          "slug": "elsbethen",
          "canonical_path": "/cities/at/elsbethen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:engerwitzdorf",
          "name": "Engerwitzdorf",
          "country_code": "AT",
          "slug": "engerwitzdorf",
          "canonical_path": "/cities/at/engerwitzdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:enns",
          "name": "Enns",
          "country_code": "AT",
          "slug": "enns",
          "canonical_path": "/cities/at/enns/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:eugendorf",
          "name": "Eugendorf",
          "country_code": "AT",
          "slug": "eugendorf",
          "canonical_path": "/cities/at/eugendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:fehring",
          "name": "Fehring",
          "country_code": "AT",
          "slug": "fehring",
          "canonical_path": "/cities/at/fehring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:feldkirch",
          "name": "Feldkirch",
          "country_code": "AT",
          "slug": "feldkirch",
          "canonical_path": "/cities/at/feldkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:feldkirchen-an-der-donau",
          "name": "Feldkirchen an der Donau",
          "country_code": "AT",
          "slug": "feldkirchen-an-der-donau",
          "canonical_path": "/cities/at/feldkirchen-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:feldkirchen-bei-graz",
          "name": "Feldkirchen bei Graz",
          "country_code": "AT",
          "slug": "feldkirchen-bei-graz",
          "canonical_path": "/cities/at/feldkirchen-bei-graz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:feldkirchen-in-karnten",
          "name": "Feldkirchen in Kärnten",
          "country_code": "AT",
          "slug": "feldkirchen-in-karnten",
          "canonical_path": "/cities/at/feldkirchen-in-karnten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ferlach",
          "name": "Ferlach",
          "country_code": "AT",
          "slug": "ferlach",
          "canonical_path": "/cities/at/ferlach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:finkenstein-am-faaker-see",
          "name": "Finkenstein am Faaker See",
          "country_code": "AT",
          "slug": "finkenstein-am-faaker-see",
          "canonical_path": "/cities/at/finkenstein-am-faaker-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:fischamend",
          "name": "Fischamend",
          "country_code": "AT",
          "slug": "fischamend",
          "canonical_path": "/cities/at/fischamend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:frastanz",
          "name": "Frastanz",
          "country_code": "AT",
          "slug": "frastanz",
          "canonical_path": "/cities/at/frastanz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:freistadt",
          "name": "Freistadt",
          "country_code": "AT",
          "slug": "freistadt",
          "canonical_path": "/cities/at/freistadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:frohnleiten",
          "name": "Frohnleiten",
          "country_code": "AT",
          "slug": "frohnleiten",
          "canonical_path": "/cities/at/frohnleiten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gablitz",
          "name": "Gablitz",
          "country_code": "AT",
          "slug": "gablitz",
          "canonical_path": "/cities/at/gablitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gallneukirchen",
          "name": "Gallneukirchen",
          "country_code": "AT",
          "slug": "gallneukirchen",
          "canonical_path": "/cities/at/gallneukirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ganserndorf",
          "name": "Gänserndorf",
          "country_code": "AT",
          "slug": "ganserndorf",
          "canonical_path": "/cities/at/ganserndorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:garsten",
          "name": "Garsten",
          "country_code": "AT",
          "slug": "garsten",
          "canonical_path": "/cities/at/garsten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gerasdorf-bei-wien",
          "name": "Gerasdorf bei Wien",
          "country_code": "AT",
          "slug": "gerasdorf-bei-wien",
          "canonical_path": "/cities/at/gerasdorf-bei-wien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2778601",
          "name": "Gfangen",
          "country_code": "AT",
          "slug": "gfangen",
          "canonical_path": "/cities/at/gfangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gleisdorf",
          "name": "Gleisdorf",
          "country_code": "AT",
          "slug": "gleisdorf",
          "canonical_path": "/cities/at/gleisdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gmunden",
          "name": "Gmunden",
          "country_code": "AT",
          "slug": "gmunden",
          "canonical_path": "/cities/at/gmunden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gnas",
          "name": "Gnas",
          "country_code": "AT",
          "slug": "gnas",
          "canonical_path": "/cities/at/gnas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gotzis",
          "name": "Götzis",
          "country_code": "AT",
          "slug": "gotzis",
          "canonical_path": "/cities/at/gotzis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gramastetten",
          "name": "Gramastetten",
          "country_code": "AT",
          "slug": "gramastetten",
          "canonical_path": "/cities/at/gramastetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gratkorn",
          "name": "Gratkorn",
          "country_code": "AT",
          "slug": "gratkorn",
          "canonical_path": "/cities/at/gratkorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gratwein-strassengel",
          "name": "Gratwein-Straßengel",
          "country_code": "AT",
          "slug": "gratwein-strassengel",
          "canonical_path": "/cities/at/gratwein-strassengel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:graz",
          "name": "Graz",
          "country_code": "AT",
          "slug": "graz",
          "canonical_path": "/cities/at/graz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:grieskirchen",
          "name": "Grieskirchen",
          "country_code": "AT",
          "slug": "grieskirchen",
          "canonical_path": "/cities/at/grieskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:grodig",
          "name": "Grödig",
          "country_code": "AT",
          "slug": "grodig",
          "canonical_path": "/cities/at/grodig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gross-enzersdorf",
          "name": "Groß-Enzersdorf",
          "country_code": "AT",
          "slug": "gross-enzersdorf",
          "canonical_path": "/cities/at/gross-enzersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:gunskirchen",
          "name": "Gunskirchen",
          "country_code": "AT",
          "slug": "gunskirchen",
          "canonical_path": "/cities/at/gunskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:guntramsdorf",
          "name": "Guntramsdorf",
          "country_code": "AT",
          "slug": "guntramsdorf",
          "canonical_path": "/cities/at/guntramsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:haag",
          "name": "Haag",
          "country_code": "AT",
          "slug": "haag",
          "canonical_path": "/cities/at/haag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2777038",
          "name": "Haid",
          "country_code": "AT",
          "slug": "haid",
          "canonical_path": "/cities/at/haid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hainburg-a-d-donau",
          "name": "Hainburg a.d. Donau",
          "country_code": "AT",
          "slug": "hainburg-a-d-donau",
          "canonical_path": "/cities/at/hainburg-a-d-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2776988",
          "name": "Hainburg an der Donau",
          "country_code": "AT",
          "slug": "hainburg-an-der-donau",
          "canonical_path": "/cities/at/hainburg-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hall-in-tirol",
          "name": "Hall in Tirol",
          "country_code": "AT",
          "slug": "hall-in-tirol",
          "canonical_path": "/cities/at/hall-in-tirol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hallein",
          "name": "Hallein",
          "country_code": "AT",
          "slug": "hallein",
          "canonical_path": "/cities/at/hallein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hard",
          "name": "Hard",
          "country_code": "AT",
          "slug": "hard",
          "canonical_path": "/cities/at/hard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hart-bei-graz",
          "name": "Hart bei Graz",
          "country_code": "AT",
          "slug": "hart-bei-graz",
          "canonical_path": "/cities/at/hart-bei-graz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hartberg",
          "name": "Hartberg",
          "country_code": "AT",
          "slug": "hartberg",
          "canonical_path": "/cities/at/hartberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:henndorf-am-wallersee",
          "name": "Henndorf am Wallersee",
          "country_code": "AT",
          "slug": "henndorf-am-wallersee",
          "canonical_path": "/cities/at/henndorf-am-wallersee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hermagor-pressegger-see",
          "name": "Hermagor-Pressegger See",
          "country_code": "AT",
          "slug": "hermagor-pressegger-see",
          "canonical_path": "/cities/at/hermagor-pressegger-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:herzogenburg",
          "name": "Herzogenburg",
          "country_code": "AT",
          "slug": "herzogenburg",
          "canonical_path": "/cities/at/herzogenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:himberg",
          "name": "Himberg",
          "country_code": "AT",
          "slug": "himberg",
          "canonical_path": "/cities/at/himberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hitzendorf",
          "name": "Hitzendorf",
          "country_code": "AT",
          "slug": "hitzendorf",
          "canonical_path": "/cities/at/hitzendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hochst",
          "name": "Höchst",
          "country_code": "AT",
          "slug": "hochst",
          "canonical_path": "/cities/at/hochst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hohenems",
          "name": "Hohenems",
          "country_code": "AT",
          "slug": "hohenems",
          "canonical_path": "/cities/at/hohenems/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hollabrunn",
          "name": "Hollabrunn",
          "country_code": "AT",
          "slug": "hollabrunn",
          "canonical_path": "/cities/at/hollabrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:hopfgarten-im-brixental",
          "name": "Hopfgarten im Brixental",
          "country_code": "AT",
          "slug": "hopfgarten-im-brixental",
          "canonical_path": "/cities/at/hopfgarten-im-brixental/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:horbranz",
          "name": "Hörbranz",
          "country_code": "AT",
          "slug": "horbranz",
          "canonical_path": "/cities/at/horbranz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:horn",
          "name": "Horn",
          "country_code": "AT",
          "slug": "horn",
          "canonical_path": "/cities/at/horn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:horsching",
          "name": "Hörsching",
          "country_code": "AT",
          "slug": "horsching",
          "canonical_path": "/cities/at/horsching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:imst",
          "name": "Imst",
          "country_code": "AT",
          "slug": "imst",
          "canonical_path": "/cities/at/imst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:innsbruck",
          "name": "Innsbruck",
          "country_code": "AT",
          "slug": "innsbruck",
          "canonical_path": "/cities/at/innsbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:jenbach",
          "name": "Jenbach",
          "country_code": "AT",
          "slug": "jenbach",
          "canonical_path": "/cities/at/jenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:judenburg",
          "name": "Judenburg",
          "country_code": "AT",
          "slug": "judenburg",
          "canonical_path": "/cities/at/judenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kalsdorf-bei-graz",
          "name": "Kalsdorf bei Graz",
          "country_code": "AT",
          "slug": "kalsdorf-bei-graz",
          "canonical_path": "/cities/at/kalsdorf-bei-graz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kapfenberg",
          "name": "Kapfenberg",
          "country_code": "AT",
          "slug": "kapfenberg",
          "canonical_path": "/cities/at/kapfenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kindberg",
          "name": "Kindberg",
          "country_code": "AT",
          "slug": "kindberg",
          "canonical_path": "/cities/at/kindberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kirchberg-in-tirol",
          "name": "Kirchberg in Tirol",
          "country_code": "AT",
          "slug": "kirchberg-in-tirol",
          "canonical_path": "/cities/at/kirchberg-in-tirol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kirchbichl",
          "name": "Kirchbichl",
          "country_code": "AT",
          "slug": "kirchbichl",
          "canonical_path": "/cities/at/kirchbichl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kirchdorf-an-der-krems",
          "name": "Kirchdorf an der Krems",
          "country_code": "AT",
          "slug": "kirchdorf-an-der-krems",
          "canonical_path": "/cities/at/kirchdorf-an-der-krems/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kitzbuhel",
          "name": "Kitzbühel",
          "country_code": "AT",
          "slug": "kitzbuhel",
          "canonical_path": "/cities/at/kitzbuhel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:klagenfurt-am-worthersee",
          "name": "Klagenfurt am Wörthersee",
          "country_code": "AT",
          "slug": "klagenfurt-am-worthersee",
          "canonical_path": "/cities/at/klagenfurt-am-worthersee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:klosterneuburg",
          "name": "Klosterneuburg",
          "country_code": "AT",
          "slug": "klosterneuburg",
          "canonical_path": "/cities/at/klosterneuburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:knittelfeld",
          "name": "Knittelfeld",
          "country_code": "AT",
          "slug": "knittelfeld",
          "canonical_path": "/cities/at/knittelfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:koflach",
          "name": "Köflach",
          "country_code": "AT",
          "slug": "koflach",
          "canonical_path": "/cities/at/koflach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:korneuburg",
          "name": "Korneuburg",
          "country_code": "AT",
          "slug": "korneuburg",
          "canonical_path": "/cities/at/korneuburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kottingbrunn",
          "name": "Kottingbrunn",
          "country_code": "AT",
          "slug": "kottingbrunn",
          "canonical_path": "/cities/at/kottingbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kramsach",
          "name": "Kramsach",
          "country_code": "AT",
          "slug": "kramsach",
          "canonical_path": "/cities/at/kramsach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:krems-an-der-donau",
          "name": "Krems an der Donau",
          "country_code": "AT",
          "slug": "krems-an-der-donau",
          "canonical_path": "/cities/at/krems-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kremsmunster",
          "name": "Kremsmünster",
          "country_code": "AT",
          "slug": "kremsmunster",
          "canonical_path": "/cities/at/kremsmunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kuchl",
          "name": "Kuchl",
          "country_code": "AT",
          "slug": "kuchl",
          "canonical_path": "/cities/at/kuchl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kufstein",
          "name": "Kufstein",
          "country_code": "AT",
          "slug": "kufstein",
          "canonical_path": "/cities/at/kufstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:kundl",
          "name": "Kundl",
          "country_code": "AT",
          "slug": "kundl",
          "canonical_path": "/cities/at/kundl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:laakirchen",
          "name": "Laakirchen",
          "country_code": "AT",
          "slug": "laakirchen",
          "canonical_path": "/cities/at/laakirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:landeck",
          "name": "Landeck",
          "country_code": "AT",
          "slug": "landeck",
          "canonical_path": "/cities/at/landeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:langenlois",
          "name": "Langenlois",
          "country_code": "AT",
          "slug": "langenlois",
          "canonical_path": "/cities/at/langenlois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:langenzersdorf",
          "name": "Langenzersdorf",
          "country_code": "AT",
          "slug": "langenzersdorf",
          "canonical_path": "/cities/at/langenzersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:lauterach",
          "name": "Lauterach",
          "country_code": "AT",
          "slug": "lauterach",
          "canonical_path": "/cities/at/lauterach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:leibnitz",
          "name": "Leibnitz",
          "country_code": "AT",
          "slug": "leibnitz",
          "canonical_path": "/cities/at/leibnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:lenzing",
          "name": "Lenzing",
          "country_code": "AT",
          "slug": "lenzing",
          "canonical_path": "/cities/at/lenzing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:leoben",
          "name": "Leoben",
          "country_code": "AT",
          "slug": "leoben",
          "canonical_path": "/cities/at/leoben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:leobendorf",
          "name": "Leobendorf",
          "country_code": "AT",
          "slug": "leobendorf",
          "canonical_path": "/cities/at/leobendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:leobersdorf",
          "name": "Leobersdorf",
          "country_code": "AT",
          "slug": "leobersdorf",
          "canonical_path": "/cities/at/leobersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:leonding",
          "name": "Leonding",
          "country_code": "AT",
          "slug": "leonding",
          "canonical_path": "/cities/at/leonding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:leopoldsdorf",
          "name": "Leopoldsdorf",
          "country_code": "AT",
          "slug": "leopoldsdorf",
          "canonical_path": "/cities/at/leopoldsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2772537",
          "name": "Lichtenegg",
          "country_code": "AT",
          "slug": "lichtenegg",
          "canonical_path": "/cities/at/lichtenegg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:lieboch",
          "name": "Lieboch",
          "country_code": "AT",
          "slug": "lieboch",
          "canonical_path": "/cities/at/lieboch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:lienz",
          "name": "Lienz",
          "country_code": "AT",
          "slug": "lienz",
          "canonical_path": "/cities/at/lienz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:liezen",
          "name": "Liezen",
          "country_code": "AT",
          "slug": "liezen",
          "canonical_path": "/cities/at/liezen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:linz",
          "name": "Linz",
          "country_code": "AT",
          "slug": "linz",
          "canonical_path": "/cities/at/linz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:lochau",
          "name": "Lochau",
          "country_code": "AT",
          "slug": "lochau",
          "canonical_path": "/cities/at/lochau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:lustenau",
          "name": "Lustenau",
          "country_code": "AT",
          "slug": "lustenau",
          "canonical_path": "/cities/at/lustenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:marchtrenk",
          "name": "Marchtrenk",
          "country_code": "AT",
          "slug": "marchtrenk",
          "canonical_path": "/cities/at/marchtrenk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:maria-enzersdorf",
          "name": "Maria Enzersdorf",
          "country_code": "AT",
          "slug": "maria-enzersdorf",
          "canonical_path": "/cities/at/maria-enzersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:mattersburg",
          "name": "Mattersburg",
          "country_code": "AT",
          "slug": "mattersburg",
          "canonical_path": "/cities/at/mattersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:mattighofen",
          "name": "Mattighofen",
          "country_code": "AT",
          "slug": "mattighofen",
          "canonical_path": "/cities/at/mattighofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:melk",
          "name": "Melk",
          "country_code": "AT",
          "slug": "melk",
          "canonical_path": "/cities/at/melk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:micheldorf-in-oberosterreich",
          "name": "Micheldorf in Oberösterreich",
          "country_code": "AT",
          "slug": "micheldorf-in-oberosterreich",
          "canonical_path": "/cities/at/micheldorf-in-oberosterreich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:mistelbach",
          "name": "Mistelbach",
          "country_code": "AT",
          "slug": "mistelbach",
          "canonical_path": "/cities/at/mistelbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:mittelberg",
          "name": "Mittelberg",
          "country_code": "AT",
          "slug": "mittelberg",
          "canonical_path": "/cities/at/mittelberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:modling",
          "name": "Mödling",
          "country_code": "AT",
          "slug": "modling",
          "canonical_path": "/cities/at/modling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2771133",
          "name": "Mühlau",
          "country_code": "AT",
          "slug": "muhlau",
          "canonical_path": "/cities/at/muhlau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:murzzuschlag",
          "name": "Mürzzuschlag",
          "country_code": "AT",
          "slug": "murzzuschlag",
          "canonical_path": "/cities/at/murzzuschlag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:nenzing",
          "name": "Nenzing",
          "country_code": "AT",
          "slug": "nenzing",
          "canonical_path": "/cities/at/nenzing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2601384",
          "name": "Neu-Guntramsdorf",
          "country_code": "AT",
          "slug": "neu-guntramsdorf",
          "canonical_path": "/cities/at/neu-guntramsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:neudorfl",
          "name": "Neudörfl",
          "country_code": "AT",
          "slug": "neudorfl",
          "canonical_path": "/cities/at/neudorfl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:neuhofen-an-der-krems",
          "name": "Neuhofen an der Krems",
          "country_code": "AT",
          "slug": "neuhofen-an-der-krems",
          "canonical_path": "/cities/at/neuhofen-an-der-krems/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:neulengbach",
          "name": "Neulengbach",
          "country_code": "AT",
          "slug": "neulengbach",
          "canonical_path": "/cities/at/neulengbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:neumarkt-am-wallersee",
          "name": "Neumarkt am Wallersee",
          "country_code": "AT",
          "slug": "neumarkt-am-wallersee",
          "canonical_path": "/cities/at/neumarkt-am-wallersee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:neunkirchen",
          "name": "Neunkirchen",
          "country_code": "AT",
          "slug": "neunkirchen",
          "canonical_path": "/cities/at/neunkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:neusiedl-am-see",
          "name": "Neusiedl am See",
          "country_code": "AT",
          "slug": "neusiedl-am-see",
          "canonical_path": "/cities/at/neusiedl-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:neustift-im-stubaital",
          "name": "Neustift im Stubaital",
          "country_code": "AT",
          "slug": "neustift-im-stubaital",
          "canonical_path": "/cities/at/neustift-im-stubaital/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:oberndorf-bei-salzburg",
          "name": "Oberndorf bei Salzburg",
          "country_code": "AT",
          "slug": "oberndorf-bei-salzburg",
          "canonical_path": "/cities/at/oberndorf-bei-salzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:obertrum-am-see",
          "name": "Obertrum am See",
          "country_code": "AT",
          "slug": "obertrum-am-see",
          "canonical_path": "/cities/at/obertrum-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:oberwaltersdorf",
          "name": "Oberwaltersdorf",
          "country_code": "AT",
          "slug": "oberwaltersdorf",
          "canonical_path": "/cities/at/oberwaltersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:oberwart",
          "name": "Oberwart",
          "country_code": "AT",
          "slug": "oberwart",
          "canonical_path": "/cities/at/oberwart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ohlsdorf",
          "name": "Ohlsdorf",
          "country_code": "AT",
          "slug": "ohlsdorf",
          "canonical_path": "/cities/at/ohlsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:parndorf",
          "name": "Parndorf",
          "country_code": "AT",
          "slug": "parndorf",
          "canonical_path": "/cities/at/parndorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:pasching",
          "name": "Pasching",
          "country_code": "AT",
          "slug": "pasching",
          "canonical_path": "/cities/at/pasching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:paternion",
          "name": "Paternion",
          "country_code": "AT",
          "slug": "paternion",
          "canonical_path": "/cities/at/paternion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:perchtoldsdorf",
          "name": "Perchtoldsdorf",
          "country_code": "AT",
          "slug": "perchtoldsdorf",
          "canonical_path": "/cities/at/perchtoldsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:perg",
          "name": "Perg",
          "country_code": "AT",
          "slug": "perg",
          "canonical_path": "/cities/at/perg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:pettenbach",
          "name": "Pettenbach",
          "country_code": "AT",
          "slug": "pettenbach",
          "canonical_path": "/cities/at/pettenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:pinkafeld",
          "name": "Pinkafeld",
          "country_code": "AT",
          "slug": "pinkafeld",
          "canonical_path": "/cities/at/pinkafeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:pollau",
          "name": "Pöllau",
          "country_code": "AT",
          "slug": "pollau",
          "canonical_path": "/cities/at/pollau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:pottendorf",
          "name": "Pottendorf",
          "country_code": "AT",
          "slug": "pottendorf",
          "canonical_path": "/cities/at/pottendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:pregarten",
          "name": "Pregarten",
          "country_code": "AT",
          "slug": "pregarten",
          "canonical_path": "/cities/at/pregarten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:premstatten",
          "name": "Premstätten",
          "country_code": "AT",
          "slug": "premstatten",
          "canonical_path": "/cities/at/premstatten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:pressbaum",
          "name": "Pressbaum",
          "country_code": "AT",
          "slug": "pressbaum",
          "canonical_path": "/cities/at/pressbaum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:purgstall-an-der-erlauf",
          "name": "Purgstall an der Erlauf",
          "country_code": "AT",
          "slug": "purgstall-an-der-erlauf",
          "canonical_path": "/cities/at/purgstall-an-der-erlauf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:purkersdorf",
          "name": "Purkersdorf",
          "country_code": "AT",
          "slug": "purkersdorf",
          "canonical_path": "/cities/at/purkersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:raaba-grambach",
          "name": "Raaba-Grambach",
          "country_code": "AT",
          "slug": "raaba-grambach",
          "canonical_path": "/cities/at/raaba-grambach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:rankweil",
          "name": "Rankweil",
          "country_code": "AT",
          "slug": "rankweil",
          "canonical_path": "/cities/at/rankweil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:regau",
          "name": "Regau",
          "country_code": "AT",
          "slug": "regau",
          "canonical_path": "/cities/at/regau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:reutte",
          "name": "Reutte",
          "country_code": "AT",
          "slug": "reutte",
          "canonical_path": "/cities/at/reutte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ried-im-innkreis",
          "name": "Ried im Innkreis",
          "country_code": "AT",
          "slug": "ried-im-innkreis",
          "canonical_path": "/cities/at/ried-im-innkreis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:rum",
          "name": "Rum",
          "country_code": "AT",
          "slug": "rum",
          "canonical_path": "/cities/at/rum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:saalfelden-am-steinernen-meer",
          "name": "Saalfelden am Steinernen Meer",
          "country_code": "AT",
          "slug": "saalfelden-am-steinernen-meer",
          "canonical_path": "/cities/at/saalfelden-am-steinernen-meer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:salzburg",
          "name": "Salzburg",
          "country_code": "AT",
          "slug": "salzburg",
          "canonical_path": "/cities/at/salzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2766429",
          "name": "Sankt Pölten",
          "country_code": "AT",
          "slug": "sankt-polten",
          "canonical_path": "/cities/at/sankt-polten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:sankt-ruprecht-an-der-raab",
          "name": "Sankt Ruprecht an der Raab",
          "country_code": "AT",
          "slug": "sankt-ruprecht-an-der-raab",
          "canonical_path": "/cities/at/sankt-ruprecht-an-der-raab/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2766359",
          "name": "Sankt Veit an der Glan",
          "country_code": "AT",
          "slug": "sankt-veit-an-der-glan",
          "canonical_path": "/cities/at/sankt-veit-an-der-glan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:scharding",
          "name": "Schärding",
          "country_code": "AT",
          "slug": "scharding",
          "canonical_path": "/cities/at/scharding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:schwaz",
          "name": "Schwaz",
          "country_code": "AT",
          "slug": "schwaz",
          "canonical_path": "/cities/at/schwaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:schwechat",
          "name": "Schwechat",
          "country_code": "AT",
          "slug": "schwechat",
          "canonical_path": "/cities/at/schwechat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:schwertberg",
          "name": "Schwertberg",
          "country_code": "AT",
          "slug": "schwertberg",
          "canonical_path": "/cities/at/schwertberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:seekirchen-am-wallersee",
          "name": "Seekirchen am Wallersee",
          "country_code": "AT",
          "slug": "seekirchen-am-wallersee",
          "canonical_path": "/cities/at/seekirchen-am-wallersee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:seewalchen-am-attersee",
          "name": "Seewalchen am Attersee",
          "country_code": "AT",
          "slug": "seewalchen-am-attersee",
          "canonical_path": "/cities/at/seewalchen-am-attersee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2765207",
          "name": "Seiersberg",
          "country_code": "AT",
          "slug": "seiersberg",
          "canonical_path": "/cities/at/seiersberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:seiersberg-pirka",
          "name": "Seiersberg-Pirka",
          "country_code": "AT",
          "slug": "seiersberg-pirka",
          "canonical_path": "/cities/at/seiersberg-pirka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:sieghartskirchen",
          "name": "Sieghartskirchen",
          "country_code": "AT",
          "slug": "sieghartskirchen",
          "canonical_path": "/cities/at/sieghartskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:sierning",
          "name": "Sierning",
          "country_code": "AT",
          "slug": "sierning",
          "canonical_path": "/cities/at/sierning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:sollenau",
          "name": "Sollenau",
          "country_code": "AT",
          "slug": "sollenau",
          "canonical_path": "/cities/at/sollenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:spittal-an-der-drau",
          "name": "Spittal an der Drau",
          "country_code": "AT",
          "slug": "spittal-an-der-drau",
          "canonical_path": "/cities/at/spittal-an-der-drau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:st-andra",
          "name": "St. Andrä",
          "country_code": "AT",
          "slug": "st-andra",
          "canonical_path": "/cities/at/st-andra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:st-andra-wordern",
          "name": "St. Andrä-Wördern",
          "country_code": "AT",
          "slug": "st-andra-wordern",
          "canonical_path": "/cities/at/st-andra-wordern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:st-florian",
          "name": "St. Florian",
          "country_code": "AT",
          "slug": "st-florian",
          "canonical_path": "/cities/at/st-florian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:st-johann-im-pongau",
          "name": "St. Johann im Pongau",
          "country_code": "AT",
          "slug": "st-johann-im-pongau",
          "canonical_path": "/cities/at/st-johann-im-pongau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:st-marien",
          "name": "St. Marien",
          "country_code": "AT",
          "slug": "st-marien",
          "canonical_path": "/cities/at/st-marien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:st-peter-in-der-au",
          "name": "St. Peter in der Au",
          "country_code": "AT",
          "slug": "st-peter-in-der-au",
          "canonical_path": "/cities/at/st-peter-in-der-au/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:st-polten",
          "name": "St. Pölten",
          "country_code": "AT",
          "slug": "st-polten",
          "canonical_path": "/cities/at/st-polten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:st-valentin",
          "name": "St. Valentin",
          "country_code": "AT",
          "slug": "st-valentin",
          "canonical_path": "/cities/at/st-valentin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:st-veit-an-der-glan",
          "name": "St. Veit an der Glan",
          "country_code": "AT",
          "slug": "st-veit-an-der-glan",
          "canonical_path": "/cities/at/st-veit-an-der-glan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:stadl-paura",
          "name": "Stadl-Paura",
          "country_code": "AT",
          "slug": "stadl-paura",
          "canonical_path": "/cities/at/stadl-paura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:stainz",
          "name": "Stainz",
          "country_code": "AT",
          "slug": "stainz",
          "canonical_path": "/cities/at/stainz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:steyr",
          "name": "Steyr",
          "country_code": "AT",
          "slug": "steyr",
          "canonical_path": "/cities/at/steyr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:steyregg",
          "name": "Steyregg",
          "country_code": "AT",
          "slug": "steyregg",
          "canonical_path": "/cities/at/steyregg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:stockerau",
          "name": "Stockerau",
          "country_code": "AT",
          "slug": "stockerau",
          "canonical_path": "/cities/at/stockerau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:strass-in-steiermark",
          "name": "Straß in Steiermark",
          "country_code": "AT",
          "slug": "strass-in-steiermark",
          "canonical_path": "/cities/at/strass-in-steiermark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:strasshof-an-der-nordbahn",
          "name": "Strasshof an der Nordbahn",
          "country_code": "AT",
          "slug": "strasshof-an-der-nordbahn",
          "canonical_path": "/cities/at/strasshof-an-der-nordbahn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:strasswalchen",
          "name": "Straßwalchen",
          "country_code": "AT",
          "slug": "strasswalchen",
          "canonical_path": "/cities/at/strasswalchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:tamsweg",
          "name": "Tamsweg",
          "country_code": "AT",
          "slug": "tamsweg",
          "canonical_path": "/cities/at/tamsweg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:telfs",
          "name": "Telfs",
          "country_code": "AT",
          "slug": "telfs",
          "canonical_path": "/cities/at/telfs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ternitz",
          "name": "Ternitz",
          "country_code": "AT",
          "slug": "ternitz",
          "canonical_path": "/cities/at/ternitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:thalgau",
          "name": "Thalgau",
          "country_code": "AT",
          "slug": "thalgau",
          "canonical_path": "/cities/at/thalgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:thalheim-bei-wels",
          "name": "Thalheim bei Wels",
          "country_code": "AT",
          "slug": "thalheim-bei-wels",
          "canonical_path": "/cities/at/thalheim-bei-wels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:timelkam",
          "name": "Timelkam",
          "country_code": "AT",
          "slug": "timelkam",
          "canonical_path": "/cities/at/timelkam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:traiskirchen",
          "name": "Traiskirchen",
          "country_code": "AT",
          "slug": "traiskirchen",
          "canonical_path": "/cities/at/traiskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:traismauer",
          "name": "Traismauer",
          "country_code": "AT",
          "slug": "traismauer",
          "canonical_path": "/cities/at/traismauer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:traun",
          "name": "Traun",
          "country_code": "AT",
          "slug": "traun",
          "canonical_path": "/cities/at/traun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:trofaiach",
          "name": "Trofaiach",
          "country_code": "AT",
          "slug": "trofaiach",
          "canonical_path": "/cities/at/trofaiach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2763266",
          "name": "Tulln",
          "country_code": "AT",
          "slug": "tulln",
          "canonical_path": "/cities/at/tulln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:tulln-an-der-donau",
          "name": "Tulln an der Donau",
          "country_code": "AT",
          "slug": "tulln-an-der-donau",
          "canonical_path": "/cities/at/tulln-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:velden-am-worther-see",
          "name": "Velden am Wörther See",
          "country_code": "AT",
          "slug": "velden-am-worther-see",
          "canonical_path": "/cities/at/velden-am-worther-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2761369",
          "name": "Vienna",
          "country_code": "AT",
          "slug": "vienna",
          "canonical_path": "/cities/at/vienna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2762375",
          "name": "Viktring",
          "country_code": "AT",
          "slug": "viktring",
          "canonical_path": "/cities/at/viktring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:villach",
          "name": "Villach",
          "country_code": "AT",
          "slug": "villach",
          "canonical_path": "/cities/at/villach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:vocklabruck",
          "name": "Vöcklabruck",
          "country_code": "AT",
          "slug": "vocklabruck",
          "canonical_path": "/cities/at/vocklabruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:vocklamarkt",
          "name": "Vöcklamarkt",
          "country_code": "AT",
          "slug": "vocklamarkt",
          "canonical_path": "/cities/at/vocklamarkt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:voitsberg",
          "name": "Voitsberg",
          "country_code": "AT",
          "slug": "voitsberg",
          "canonical_path": "/cities/at/voitsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:volkermarkt",
          "name": "Völkermarkt",
          "country_code": "AT",
          "slug": "volkermarkt",
          "canonical_path": "/cities/at/volkermarkt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:vols",
          "name": "Völs",
          "country_code": "AT",
          "slug": "vols",
          "canonical_path": "/cities/at/vols/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:vomp",
          "name": "Vomp",
          "country_code": "AT",
          "slug": "vomp",
          "canonical_path": "/cities/at/vomp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:vorchdorf",
          "name": "Vorchdorf",
          "country_code": "AT",
          "slug": "vorchdorf",
          "canonical_path": "/cities/at/vorchdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:vosendorf",
          "name": "Vösendorf",
          "country_code": "AT",
          "slug": "vosendorf",
          "canonical_path": "/cities/at/vosendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wagna",
          "name": "Wagna",
          "country_code": "AT",
          "slug": "wagna",
          "canonical_path": "/cities/at/wagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:waidhofen-an-der-ybbs",
          "name": "Waidhofen an der Ybbs",
          "country_code": "AT",
          "slug": "waidhofen-an-der-ybbs",
          "canonical_path": "/cities/at/waidhofen-an-der-ybbs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2762059",
          "name": "Walbersdorf",
          "country_code": "AT",
          "slug": "walbersdorf",
          "canonical_path": "/cities/at/walbersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wals-siezenheim",
          "name": "Wals-Siezenheim",
          "country_code": "AT",
          "slug": "wals-siezenheim",
          "canonical_path": "/cities/at/wals-siezenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wattens",
          "name": "Wattens",
          "country_code": "AT",
          "slug": "wattens",
          "canonical_path": "/cities/at/wattens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:weiz",
          "name": "Weiz",
          "country_code": "AT",
          "slug": "weiz",
          "canonical_path": "/cities/at/weiz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wels",
          "name": "Wels",
          "country_code": "AT",
          "slug": "wels",
          "canonical_path": "/cities/at/wels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wernberg",
          "name": "Wernberg",
          "country_code": "AT",
          "slug": "wernberg",
          "canonical_path": "/cities/at/wernberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wiener-neudorf",
          "name": "Wiener Neudorf",
          "country_code": "AT",
          "slug": "wiener-neudorf",
          "canonical_path": "/cities/at/wiener-neudorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wiener-neustadt",
          "name": "Wiener Neustadt",
          "country_code": "AT",
          "slug": "wiener-neustadt",
          "canonical_path": "/cities/at/wiener-neustadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wildon",
          "name": "Wildon",
          "country_code": "AT",
          "slug": "wildon",
          "canonical_path": "/cities/at/wildon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wilhelmsburg",
          "name": "Wilhelmsburg",
          "country_code": "AT",
          "slug": "wilhelmsburg",
          "canonical_path": "/cities/at/wilhelmsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wilhering",
          "name": "Wilhering",
          "country_code": "AT",
          "slug": "wilhering",
          "canonical_path": "/cities/at/wilhering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:geonames:2760924",
          "name": "Wölfnitz",
          "country_code": "AT",
          "slug": "wolfnitz",
          "canonical_path": "/cities/at/wolfnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wolfsberg",
          "name": "Wolfsberg",
          "country_code": "AT",
          "slug": "wolfsberg",
          "canonical_path": "/cities/at/wolfsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wolfurt",
          "name": "Wolfurt",
          "country_code": "AT",
          "slug": "wolfurt",
          "canonical_path": "/cities/at/wolfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wolkersdorf-im-weinviertel",
          "name": "Wolkersdorf im Weinviertel",
          "country_code": "AT",
          "slug": "wolkersdorf-im-weinviertel",
          "canonical_path": "/cities/at/wolkersdorf-im-weinviertel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:wollersdorf-steinabruckl",
          "name": "Wöllersdorf-Steinabrückl",
          "country_code": "AT",
          "slug": "wollersdorf-steinabruckl",
          "canonical_path": "/cities/at/wollersdorf-steinabruckl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:worgl",
          "name": "Wörgl",
          "country_code": "AT",
          "slug": "worgl",
          "canonical_path": "/cities/at/worgl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:ybbs-an-der-donau",
          "name": "Ybbs an der Donau",
          "country_code": "AT",
          "slug": "ybbs-an-der-donau",
          "canonical_path": "/cities/at/ybbs-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:zell-am-see",
          "name": "Zell am See",
          "country_code": "AT",
          "slug": "zell-am-see",
          "canonical_path": "/cities/at/zell-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:zeltweg",
          "name": "Zeltweg",
          "country_code": "AT",
          "slug": "zeltweg",
          "canonical_path": "/cities/at/zeltweg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:at:slug:zirl",
          "name": "Zirl",
          "country_code": "AT",
          "slug": "zirl",
          "canonical_path": "/cities/at/zirl/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "BE",
      "path": "cities/be.json",
      "city_count": 679,
      "cities": [
        {
          "entity_id": "city:be:geonames:2786792",
          "name": "'s-Gravenwezel",
          "country_code": "BE",
          "slug": "s-gravenwezel",
          "canonical_path": "/cities/be/s-gravenwezel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2803448",
          "name": "Aalst",
          "country_code": "BE",
          "slug": "aalst",
          "canonical_path": "/cities/be/aalst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44084",
          "name": "Aalter",
          "country_code": "BE",
          "slug": "aalter",
          "canonical_path": "/cities/be/aalter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24001",
          "name": "Aarschot",
          "country_code": "BE",
          "slug": "aarschot",
          "canonical_path": "/cities/be/aarschot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11001",
          "name": "Aartselaar",
          "country_code": "BE",
          "slug": "aartselaar",
          "canonical_path": "/cities/be/aartselaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2803391",
          "name": "Achel",
          "country_code": "BE",
          "slug": "achel",
          "canonical_path": "/cities/be/achel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2803347",
          "name": "Adegem",
          "country_code": "BE",
          "slug": "adegem",
          "canonical_path": "/cities/be/adegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23105",
          "name": "Affligem",
          "country_code": "BE",
          "slug": "affligem",
          "canonical_path": "/cities/be/affligem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2803323",
          "name": "Aiseau",
          "country_code": "BE",
          "slug": "aiseau",
          "canonical_path": "/cities/be/aiseau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52074",
          "name": "Aiseau-Presles",
          "country_code": "BE",
          "slug": "aiseau-presles",
          "canonical_path": "/cities/be/aiseau-presles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:73001",
          "name": "Alken",
          "country_code": "BE",
          "slug": "alken",
          "canonical_path": "/cities/be/alken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2803278",
          "name": "Alleur",
          "country_code": "BE",
          "slug": "alleur",
          "canonical_path": "/cities/be/alleur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2803266",
          "name": "Alsemberg",
          "country_code": "BE",
          "slug": "alsemberg",
          "canonical_path": "/cities/be/alsemberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61003",
          "name": "Amay",
          "country_code": "BE",
          "slug": "amay",
          "canonical_path": "/cities/be/amay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63001",
          "name": "Amblève",
          "country_code": "BE",
          "slug": "ambleve",
          "canonical_path": "/cities/be/ambleve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92003",
          "name": "Andenne",
          "country_code": "BE",
          "slug": "andenne",
          "canonical_path": "/cities/be/andenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21001",
          "name": "Anderlecht",
          "country_code": "BE",
          "slug": "anderlecht",
          "canonical_path": "/cities/be/anderlecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:56001",
          "name": "Anderlues",
          "country_code": "BE",
          "slug": "anderlues",
          "canonical_path": "/cities/be/anderlues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2803187",
          "name": "Andrimont",
          "country_code": "BE",
          "slug": "andrimont",
          "canonical_path": "/cities/be/andrimont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91005",
          "name": "Anhée",
          "country_code": "BE",
          "slug": "anhee",
          "canonical_path": "/cities/be/anhee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62003",
          "name": "Ans",
          "country_code": "BE",
          "slug": "ans",
          "canonical_path": "/cities/be/ans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:57003",
          "name": "Antoing",
          "country_code": "BE",
          "slug": "antoing",
          "canonical_path": "/cities/be/antoing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2803138",
          "name": "Antwerp",
          "country_code": "BE",
          "slug": "antwerp",
          "canonical_path": "/cities/be/antwerp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:34002",
          "name": "Anzegem",
          "country_code": "BE",
          "slug": "anzegem",
          "canonical_path": "/cities/be/anzegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:37020",
          "name": "Ardooie",
          "country_code": "BE",
          "slug": "ardooie",
          "canonical_path": "/cities/be/ardooie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13001",
          "name": "Arendonk",
          "country_code": "BE",
          "slug": "arendonk",
          "canonical_path": "/cities/be/arendonk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71002",
          "name": "As",
          "country_code": "BE",
          "slug": "as",
          "canonical_path": "/cities/be/as/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23002",
          "name": "Asse",
          "country_code": "BE",
          "slug": "asse",
          "canonical_path": "/cities/be/asse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:43002",
          "name": "Assenede",
          "country_code": "BE",
          "slug": "assenede",
          "canonical_path": "/cities/be/assenede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92006",
          "name": "Assesse",
          "country_code": "BE",
          "slug": "assesse",
          "canonical_path": "/cities/be/assesse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:51004",
          "name": "Ath",
          "country_code": "BE",
          "slug": "ath",
          "canonical_path": "/cities/be/ath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2803005",
          "name": "Athus",
          "country_code": "BE",
          "slug": "athus",
          "canonical_path": "/cities/be/athus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:81003",
          "name": "Attert",
          "country_code": "BE",
          "slug": "attert",
          "canonical_path": "/cities/be/attert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:81004",
          "name": "Aubange",
          "country_code": "BE",
          "slug": "aubange",
          "canonical_path": "/cities/be/aubange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21002",
          "name": "Auderghem",
          "country_code": "BE",
          "slug": "auderghem",
          "canonical_path": "/cities/be/auderghem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802902",
          "name": "Auvelais",
          "country_code": "BE",
          "slug": "auvelais",
          "canonical_path": "/cities/be/auvelais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:34003",
          "name": "Avelgem",
          "country_code": "BE",
          "slug": "avelgem",
          "canonical_path": "/cities/be/avelgem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62006",
          "name": "Awans",
          "country_code": "BE",
          "slug": "awans",
          "canonical_path": "/cities/be/awans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62009",
          "name": "Aywaille",
          "country_code": "BE",
          "slug": "aywaille",
          "canonical_path": "/cities/be/aywaille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802828",
          "name": "Baal",
          "country_code": "BE",
          "slug": "baal",
          "canonical_path": "/cities/be/baal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13003",
          "name": "Balen",
          "country_code": "BE",
          "slug": "balen",
          "canonical_path": "/cities/be/balen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802610",
          "name": "Basse Lasne",
          "country_code": "BE",
          "slug": "basse-lasne",
          "canonical_path": "/cities/be/basse-lasne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62011",
          "name": "Bassenge",
          "country_code": "BE",
          "slug": "bassenge",
          "canonical_path": "/cities/be/bassenge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:82039",
          "name": "Bastogne",
          "country_code": "BE",
          "slug": "bastogne",
          "canonical_path": "/cities/be/bastogne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802570",
          "name": "Battice",
          "country_code": "BE",
          "slug": "battice",
          "canonical_path": "/cities/be/battice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802557",
          "name": "Baudour",
          "country_code": "BE",
          "slug": "baudour",
          "canonical_path": "/cities/be/baudour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802529",
          "name": "Bazel",
          "country_code": "BE",
          "slug": "bazel",
          "canonical_path": "/cities/be/bazel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802518",
          "name": "Beaufays",
          "country_code": "BE",
          "slug": "beaufays",
          "canonical_path": "/cities/be/beaufays/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:56005",
          "name": "Beaumont",
          "country_code": "BE",
          "slug": "beaumont",
          "canonical_path": "/cities/be/beaumont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91013",
          "name": "Beauraing",
          "country_code": "BE",
          "slug": "beauraing",
          "canonical_path": "/cities/be/beauraing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25005",
          "name": "Beauvechain",
          "country_code": "BE",
          "slug": "beauvechain",
          "canonical_path": "/cities/be/beauvechain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:31003",
          "name": "Beernem",
          "country_code": "BE",
          "slug": "beernem",
          "canonical_path": "/cities/be/beernem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13004",
          "name": "Beerse",
          "country_code": "BE",
          "slug": "beerse",
          "canonical_path": "/cities/be/beerse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23003",
          "name": "Beersel",
          "country_code": "BE",
          "slug": "beersel",
          "canonical_path": "/cities/be/beersel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802422",
          "name": "Beerzel",
          "country_code": "BE",
          "slug": "beerzel",
          "canonical_path": "/cities/be/beerzel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24007",
          "name": "Begijnendijk",
          "country_code": "BE",
          "slug": "begijnendijk",
          "canonical_path": "/cities/be/begijnendijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24008",
          "name": "Bekkevoort",
          "country_code": "BE",
          "slug": "bekkevoort",
          "canonical_path": "/cities/be/bekkevoort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:51008",
          "name": "Beloeil",
          "country_code": "BE",
          "slug": "beloeil",
          "canonical_path": "/cities/be/beloeil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21003",
          "name": "Berchem-Sainte-Agathe",
          "country_code": "BE",
          "slug": "berchem-sainte-agathe",
          "canonical_path": "/cities/be/berchem-sainte-agathe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71004",
          "name": "Beringen",
          "country_code": "BE",
          "slug": "beringen",
          "canonical_path": "/cities/be/beringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12002",
          "name": "Berlaar",
          "country_code": "BE",
          "slug": "berlaar",
          "canonical_path": "/cities/be/berlaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:42003",
          "name": "Berlare",
          "country_code": "BE",
          "slug": "berlare",
          "canonical_path": "/cities/be/berlare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:51009",
          "name": "Bernissart",
          "country_code": "BE",
          "slug": "bernissart",
          "canonical_path": "/cities/be/bernissart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24009",
          "name": "Bertem",
          "country_code": "BE",
          "slug": "bertem",
          "canonical_path": "/cities/be/bertem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:84009",
          "name": "Bertrix",
          "country_code": "BE",
          "slug": "bertrix",
          "canonical_path": "/cities/be/bertrix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802034",
          "name": "Beveren-Leie",
          "country_code": "BE",
          "slug": "beveren-leie",
          "canonical_path": "/cities/be/beveren-leie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802025",
          "name": "Beverlo",
          "country_code": "BE",
          "slug": "beverlo",
          "canonical_path": "/cities/be/beverlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2802021",
          "name": "Beverst",
          "country_code": "BE",
          "slug": "beverst",
          "canonical_path": "/cities/be/beverst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62015",
          "name": "Beyne-Heusay",
          "country_code": "BE",
          "slug": "beyne-heusay",
          "canonical_path": "/cities/be/beyne-heusay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24011",
          "name": "Bierbeek",
          "country_code": "BE",
          "slug": "bierbeek",
          "canonical_path": "/cities/be/bierbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2801924",
          "name": "Bilzen",
          "country_code": "BE",
          "slug": "bilzen",
          "canonical_path": "/cities/be/bilzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:58002",
          "name": "Binche",
          "country_code": "BE",
          "slug": "binche",
          "canonical_path": "/cities/be/binche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:31004",
          "name": "Blankenberge",
          "country_code": "BE",
          "slug": "blankenberge",
          "canonical_path": "/cities/be/blankenberge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62119",
          "name": "Blegny",
          "country_code": "BE",
          "slug": "blegny",
          "canonical_path": "/cities/be/blegny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72003",
          "name": "Bocholt",
          "country_code": "BE",
          "slug": "bocholt",
          "canonical_path": "/cities/be/bocholt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11004",
          "name": "Boechout",
          "country_code": "BE",
          "slug": "boechout",
          "canonical_path": "/cities/be/boechout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2801550",
          "name": "Boncelles",
          "country_code": "BE",
          "slug": "boncelles",
          "canonical_path": "/cities/be/boncelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12005",
          "name": "Bonheiden",
          "country_code": "BE",
          "slug": "bonheiden",
          "canonical_path": "/cities/be/bonheiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2801500",
          "name": "Booischot",
          "country_code": "BE",
          "slug": "booischot",
          "canonical_path": "/cities/be/booischot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11005",
          "name": "Boom",
          "country_code": "BE",
          "slug": "boom",
          "canonical_path": "/cities/be/boom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24014",
          "name": "Boortmeerbeek",
          "country_code": "BE",
          "slug": "boortmeerbeek",
          "canonical_path": "/cities/be/boortmeerbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2801467",
          "name": "Borgloon",
          "country_code": "BE",
          "slug": "borgloon",
          "canonical_path": "/cities/be/borgloon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12007",
          "name": "Bornem",
          "country_code": "BE",
          "slug": "bornem",
          "canonical_path": "/cities/be/bornem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2801438",
          "name": "Borsbeek",
          "country_code": "BE",
          "slug": "borsbeek",
          "canonical_path": "/cities/be/borsbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:84010",
          "name": "Bouillon",
          "country_code": "BE",
          "slug": "bouillon",
          "canonical_path": "/cities/be/bouillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53014",
          "name": "Boussu",
          "country_code": "BE",
          "slug": "boussu",
          "canonical_path": "/cities/be/boussu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24016",
          "name": "Boutersem",
          "country_code": "BE",
          "slug": "boutersem",
          "canonical_path": "/cities/be/boutersem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2801161",
          "name": "Bracquegnies",
          "country_code": "BE",
          "slug": "bracquegnies",
          "canonical_path": "/cities/be/bracquegnies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25015",
          "name": "Braine-le-Château",
          "country_code": "BE",
          "slug": "braine-le-chateau",
          "canonical_path": "/cities/be/braine-le-chateau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:55004",
          "name": "Braine-le-Comte",
          "country_code": "BE",
          "slug": "braine-le-comte",
          "canonical_path": "/cities/be/braine-le-comte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:64015",
          "name": "Braives",
          "country_code": "BE",
          "slug": "braives",
          "canonical_path": "/cities/be/braives/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:45059",
          "name": "Brakel",
          "country_code": "BE",
          "slug": "brakel",
          "canonical_path": "/cities/be/brakel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11008",
          "name": "Brasschaat",
          "country_code": "BE",
          "slug": "brasschaat",
          "canonical_path": "/cities/be/brasschaat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11009",
          "name": "Brecht",
          "country_code": "BE",
          "slug": "brecht",
          "canonical_path": "/cities/be/brecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:35002",
          "name": "Bredene",
          "country_code": "BE",
          "slug": "bredene",
          "canonical_path": "/cities/be/bredene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72004",
          "name": "Bree",
          "country_code": "BE",
          "slug": "bree",
          "canonical_path": "/cities/be/bree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2800931",
          "name": "Brugge",
          "country_code": "BE",
          "slug": "brugge-vlg-vwv",
          "canonical_path": "/cities/be/brugge-vlg-vwv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2800883",
          "name": "Brunehault",
          "country_code": "BE",
          "slug": "brunehault",
          "canonical_path": "/cities/be/brunehault/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:57093",
          "name": "Brunehaut",
          "country_code": "BE",
          "slug": "brunehaut",
          "canonical_path": "/cities/be/brunehaut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:42004",
          "name": "Buggenhout",
          "country_code": "BE",
          "slug": "buggenhout",
          "canonical_path": "/cities/be/buggenhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63012",
          "name": "Bullange",
          "country_code": "BE",
          "slug": "bullange",
          "canonical_path": "/cities/be/bullange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2800765",
          "name": "Burcht",
          "country_code": "BE",
          "slug": "burcht",
          "canonical_path": "/cities/be/burcht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63013",
          "name": "Butgenbach",
          "country_code": "BE",
          "slug": "butgenbach",
          "canonical_path": "/cities/be/butgenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2800637",
          "name": "Carnières",
          "country_code": "BE",
          "slug": "carnieres",
          "canonical_path": "/cities/be/carnieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:57018",
          "name": "Celles (Tournai)",
          "country_code": "BE",
          "slug": "celles-tournai",
          "canonical_path": "/cities/be/celles-tournai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:93010",
          "name": "Cerfontaine",
          "country_code": "BE",
          "slug": "cerfontaine",
          "canonical_path": "/cities/be/cerfontaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2800584",
          "name": "Céroux-Mousty",
          "country_code": "BE",
          "slug": "ceroux-mousty",
          "canonical_path": "/cities/be/ceroux-mousty/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52010",
          "name": "Chapelle-lez-Herlaimont",
          "country_code": "BE",
          "slug": "chapelle-lez-herlaimont",
          "canonical_path": "/cities/be/chapelle-lez-herlaimont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52011",
          "name": "Charleroi",
          "country_code": "BE",
          "slug": "charleroi",
          "canonical_path": "/cities/be/charleroi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25117",
          "name": "Chastre",
          "country_code": "BE",
          "slug": "chastre",
          "canonical_path": "/cities/be/chastre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2800457",
          "name": "Chastre-Villeroux-Blanmont",
          "country_code": "BE",
          "slug": "chastre-villeroux-blanmont",
          "canonical_path": "/cities/be/chastre-villeroux-blanmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52012",
          "name": "Châtelet",
          "country_code": "BE",
          "slug": "chatelet",
          "canonical_path": "/cities/be/chatelet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2800445",
          "name": "Châtelineau",
          "country_code": "BE",
          "slug": "chatelineau",
          "canonical_path": "/cities/be/chatelineau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62022",
          "name": "Chaudfontaine",
          "country_code": "BE",
          "slug": "chaudfontaine",
          "canonical_path": "/cities/be/chaudfontaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25018",
          "name": "Chaumont-Gistoux",
          "country_code": "BE",
          "slug": "chaumont-gistoux",
          "canonical_path": "/cities/be/chaumont-gistoux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:51014",
          "name": "Chièvres",
          "country_code": "BE",
          "slug": "chievres",
          "canonical_path": "/cities/be/chievres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:56016",
          "name": "Chimay",
          "country_code": "BE",
          "slug": "chimay",
          "canonical_path": "/cities/be/chimay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:85007",
          "name": "Chiny",
          "country_code": "BE",
          "slug": "chiny",
          "canonical_path": "/cities/be/chiny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91030",
          "name": "Ciney",
          "country_code": "BE",
          "slug": "ciney",
          "canonical_path": "/cities/be/ciney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61012",
          "name": "Clavier",
          "country_code": "BE",
          "slug": "clavier",
          "canonical_path": "/cities/be/clavier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53082",
          "name": "Colfontaine",
          "country_code": "BE",
          "slug": "colfontaine",
          "canonical_path": "/cities/be/colfontaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62026",
          "name": "Comblain-au-Pont",
          "country_code": "BE",
          "slug": "comblain-au-pont",
          "canonical_path": "/cities/be/comblain-au-pont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2800073",
          "name": "Couillet",
          "country_code": "BE",
          "slug": "couillet",
          "canonical_path": "/cities/be/couillet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52015",
          "name": "Courcelles",
          "country_code": "BE",
          "slug": "courcelles",
          "canonical_path": "/cities/be/courcelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25023",
          "name": "Court-Saint-Etienne",
          "country_code": "BE",
          "slug": "court-saint-etienne",
          "canonical_path": "/cities/be/court-saint-etienne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:93014",
          "name": "Couvin",
          "country_code": "BE",
          "slug": "couvin",
          "canonical_path": "/cities/be/couvin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62027",
          "name": "Dalhem",
          "country_code": "BE",
          "slug": "dalhem",
          "canonical_path": "/cities/be/dalhem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:31006",
          "name": "Damme",
          "country_code": "BE",
          "slug": "damme",
          "canonical_path": "/cities/be/damme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799880",
          "name": "Dampremy",
          "country_code": "BE",
          "slug": "dampremy",
          "canonical_path": "/cities/be/dampremy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:35029",
          "name": "De Haan",
          "country_code": "BE",
          "slug": "de-haan",
          "canonical_path": "/cities/be/de-haan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799577",
          "name": "De Panne",
          "country_code": "BE",
          "slug": "de-panne",
          "canonical_path": "/cities/be/de-panne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799570",
          "name": "De Pinte",
          "country_code": "BE",
          "slug": "de-pinte",
          "canonical_path": "/cities/be/de-pinte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:34009",
          "name": "Deerlijk",
          "country_code": "BE",
          "slug": "deerlijk",
          "canonical_path": "/cities/be/deerlijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44083",
          "name": "Deinze",
          "country_code": "BE",
          "slug": "deinze",
          "canonical_path": "/cities/be/deinze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799649",
          "name": "Denderhoutem",
          "country_code": "BE",
          "slug": "denderhoutem",
          "canonical_path": "/cities/be/denderhoutem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:41011",
          "name": "Denderleeuw",
          "country_code": "BE",
          "slug": "denderleeuw",
          "canonical_path": "/cities/be/denderleeuw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799645",
          "name": "Dendermonde",
          "country_code": "BE",
          "slug": "dendermonde-vlg-vov",
          "canonical_path": "/cities/be/dendermonde-vlg-vov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:37002",
          "name": "Dentergem",
          "country_code": "BE",
          "slug": "dentergem",
          "canonical_path": "/cities/be/dentergem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13006",
          "name": "Dessel",
          "country_code": "BE",
          "slug": "dessel",
          "canonical_path": "/cities/be/dessel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799509",
          "name": "Desselgem",
          "country_code": "BE",
          "slug": "desselgem",
          "canonical_path": "/cities/be/desselgem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44013",
          "name": "Destelbergen",
          "country_code": "BE",
          "slug": "destelbergen",
          "canonical_path": "/cities/be/destelbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71011",
          "name": "Diepenbeek",
          "country_code": "BE",
          "slug": "diepenbeek",
          "canonical_path": "/cities/be/diepenbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24020",
          "name": "Diest",
          "country_code": "BE",
          "slug": "diest",
          "canonical_path": "/cities/be/diest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799369",
          "name": "Diksmuide",
          "country_code": "BE",
          "slug": "diksmuide-vlg-vwv",
          "canonical_path": "/cities/be/diksmuide-vlg-vwv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23016",
          "name": "Dilbeek",
          "country_code": "BE",
          "slug": "dilbeek",
          "canonical_path": "/cities/be/dilbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799362",
          "name": "Dilsen",
          "country_code": "BE",
          "slug": "dilsen",
          "canonical_path": "/cities/be/dilsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72041",
          "name": "Dilsen-Stokkem",
          "country_code": "BE",
          "slug": "dilsen-stokkem",
          "canonical_path": "/cities/be/dilsen-stokkem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91034",
          "name": "Dinant",
          "country_code": "BE",
          "slug": "dinant",
          "canonical_path": "/cities/be/dinant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63020",
          "name": "Dison",
          "country_code": "BE",
          "slug": "dison",
          "canonical_path": "/cities/be/dison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53020",
          "name": "Dour",
          "country_code": "BE",
          "slug": "dour",
          "canonical_path": "/cities/be/dour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23098",
          "name": "Drogenbos",
          "country_code": "BE",
          "slug": "drogenbos",
          "canonical_path": "/cities/be/drogenbos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12009",
          "name": "Duffel",
          "country_code": "BE",
          "slug": "duffel",
          "canonical_path": "/cities/be/duffel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:83012",
          "name": "Durbuy",
          "country_code": "BE",
          "slug": "durbuy",
          "canonical_path": "/cities/be/durbuy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799034",
          "name": "Dworp",
          "country_code": "BE",
          "slug": "dworp",
          "canonical_path": "/cities/be/dworp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:55050",
          "name": "Ecaussinnes",
          "country_code": "BE",
          "slug": "ecaussinnes",
          "canonical_path": "/cities/be/ecaussinnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2799024",
          "name": "Écaussinnes-d'Enghien",
          "country_code": "BE",
          "slug": "ecaussinnes-d-enghien",
          "canonical_path": "/cities/be/ecaussinnes-d-enghien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11013",
          "name": "Edegem",
          "country_code": "BE",
          "slug": "edegem",
          "canonical_path": "/cities/be/edegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:43005",
          "name": "Eeklo",
          "country_code": "BE",
          "slug": "eeklo",
          "canonical_path": "/cities/be/eeklo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798973",
          "name": "Eernegem",
          "country_code": "BE",
          "slug": "eernegem",
          "canonical_path": "/cities/be/eernegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92035",
          "name": "Eghezée",
          "country_code": "BE",
          "slug": "eghezee",
          "canonical_path": "/cities/be/eghezee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798887",
          "name": "Eisden",
          "country_code": "BE",
          "slug": "eisden",
          "canonical_path": "/cities/be/eisden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798882",
          "name": "Eke",
          "country_code": "BE",
          "slug": "eke",
          "canonical_path": "/cities/be/eke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798868",
          "name": "Eksaarde",
          "country_code": "BE",
          "slug": "eksaarde",
          "canonical_path": "/cities/be/eksaarde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798866",
          "name": "Eksel",
          "country_code": "BE",
          "slug": "eksel",
          "canonical_path": "/cities/be/eksel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798847",
          "name": "Elewijt",
          "country_code": "BE",
          "slug": "elewijt",
          "canonical_path": "/cities/be/elewijt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:51017",
          "name": "Ellezelles",
          "country_code": "BE",
          "slug": "ellezelles",
          "canonical_path": "/cities/be/ellezelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798784",
          "name": "Embourg",
          "country_code": "BE",
          "slug": "embourg",
          "canonical_path": "/cities/be/embourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61080",
          "name": "Engis",
          "country_code": "BE",
          "slug": "engis",
          "canonical_path": "/cities/be/engis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798678",
          "name": "Erpe",
          "country_code": "BE",
          "slug": "erpe",
          "canonical_path": "/cities/be/erpe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:41082",
          "name": "Erpe-Mere",
          "country_code": "BE",
          "slug": "erpe-mere",
          "canonical_path": "/cities/be/erpe-mere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798668",
          "name": "Erps-Kwerps",
          "country_code": "BE",
          "slug": "erps-kwerps",
          "canonical_path": "/cities/be/erps-kwerps/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:56022",
          "name": "Erquelinnes",
          "country_code": "BE",
          "slug": "erquelinnes",
          "canonical_path": "/cities/be/erquelinnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798652",
          "name": "Ertvelde",
          "country_code": "BE",
          "slug": "ertvelde",
          "canonical_path": "/cities/be/ertvelde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62032",
          "name": "Esneux",
          "country_code": "BE",
          "slug": "esneux",
          "canonical_path": "/cities/be/esneux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11016",
          "name": "Essen",
          "country_code": "BE",
          "slug": "essen",
          "canonical_path": "/cities/be/essen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:57027",
          "name": "Estaimpuis",
          "country_code": "BE",
          "slug": "estaimpuis",
          "canonical_path": "/cities/be/estaimpuis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:58003",
          "name": "Estinnes",
          "country_code": "BE",
          "slug": "estinnes",
          "canonical_path": "/cities/be/estinnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798597",
          "name": "Estinnes-au-Val",
          "country_code": "BE",
          "slug": "estinnes-au-val",
          "canonical_path": "/cities/be/estinnes-au-val/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:85009",
          "name": "Etalle",
          "country_code": "BE",
          "slug": "etalle",
          "canonical_path": "/cities/be/etalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21005",
          "name": "Etterbeek",
          "country_code": "BE",
          "slug": "etterbeek",
          "canonical_path": "/cities/be/etterbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63023",
          "name": "Eupen",
          "country_code": "BE",
          "slug": "eupen",
          "canonical_path": "/cities/be/eupen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21006",
          "name": "Evere",
          "country_code": "BE",
          "slug": "evere",
          "canonical_path": "/cities/be/evere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44019",
          "name": "Evergem",
          "country_code": "BE",
          "slug": "evergem",
          "canonical_path": "/cities/be/evergem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52018",
          "name": "Farciennes",
          "country_code": "BE",
          "slug": "farciennes",
          "canonical_path": "/cities/be/farciennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798400",
          "name": "Fayt-lez-Manage",
          "country_code": "BE",
          "slug": "fayt-lez-manage",
          "canonical_path": "/cities/be/fayt-lez-manage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92138",
          "name": "Fernelmont",
          "country_code": "BE",
          "slug": "fernelmont",
          "canonical_path": "/cities/be/fernelmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61019",
          "name": "Ferrières",
          "country_code": "BE",
          "slug": "ferrieres",
          "canonical_path": "/cities/be/ferrieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62120",
          "name": "Flémalle",
          "country_code": "BE",
          "slug": "flemalle",
          "canonical_path": "/cities/be/flemalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798309",
          "name": "Flémalle-Grande",
          "country_code": "BE",
          "slug": "flemalle-grande",
          "canonical_path": "/cities/be/flemalle-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798307",
          "name": "Flémalle-Haute",
          "country_code": "BE",
          "slug": "flemalle-haute",
          "canonical_path": "/cities/be/flemalle-haute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62038",
          "name": "Fléron",
          "country_code": "BE",
          "slug": "fleron",
          "canonical_path": "/cities/be/fleron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52021",
          "name": "Fleurus",
          "country_code": "BE",
          "slug": "fleurus",
          "canonical_path": "/cities/be/fleurus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92045",
          "name": "Floreffe",
          "country_code": "BE",
          "slug": "floreffe",
          "canonical_path": "/cities/be/floreffe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:93022",
          "name": "Florennes",
          "country_code": "BE",
          "slug": "florennes",
          "canonical_path": "/cities/be/florennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:85011",
          "name": "Florenville",
          "country_code": "BE",
          "slug": "florenville",
          "canonical_path": "/cities/be/florenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798145",
          "name": "Forchies-la-Marche",
          "country_code": "BE",
          "slug": "forchies-la-marche",
          "canonical_path": "/cities/be/forchies-la-marche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798139",
          "name": "Forest",
          "country_code": "BE",
          "slug": "forest",
          "canonical_path": "/cities/be/forest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2798134",
          "name": "Forêt",
          "country_code": "BE",
          "slug": "foret",
          "canonical_path": "/cities/be/foret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92048",
          "name": "Fosses-la-Ville",
          "country_code": "BE",
          "slug": "fosses-la-ville",
          "canonical_path": "/cities/be/fosses-la-ville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53028",
          "name": "Frameries",
          "country_code": "BE",
          "slug": "frameries",
          "canonical_path": "/cities/be/frameries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:51065",
          "name": "Frasnes-lez-Anvaing",
          "country_code": "BE",
          "slug": "frasnes-lez-anvaing",
          "canonical_path": "/cities/be/frasnes-lez-anvaing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797851",
          "name": "Galmaarden",
          "country_code": "BE",
          "slug": "galmaarden",
          "canonical_path": "/cities/be/galmaarden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21008",
          "name": "Ganshoren",
          "country_code": "BE",
          "slug": "ganshoren",
          "canonical_path": "/cities/be/ganshoren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44020",
          "name": "Gavere",
          "country_code": "BE",
          "slug": "gavere",
          "canonical_path": "/cities/be/gavere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13008",
          "name": "Geel",
          "country_code": "BE",
          "slug": "geel",
          "canonical_path": "/cities/be/geel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24028",
          "name": "Geetbets",
          "country_code": "BE",
          "slug": "geetbets",
          "canonical_path": "/cities/be/geetbets/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797719",
          "name": "Geluwe",
          "country_code": "BE",
          "slug": "geluwe",
          "canonical_path": "/cities/be/geluwe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92142",
          "name": "Gembloux",
          "country_code": "BE",
          "slug": "gembloux",
          "canonical_path": "/cities/be/gembloux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25031",
          "name": "Genappe",
          "country_code": "BE",
          "slug": "genappe",
          "canonical_path": "/cities/be/genappe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71016",
          "name": "Genk",
          "country_code": "BE",
          "slug": "genk",
          "canonical_path": "/cities/be/genk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797656",
          "name": "Gent",
          "country_code": "BE",
          "slug": "gent-vlg-vov",
          "canonical_path": "/cities/be/gent-vlg-vov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797641",
          "name": "Genval",
          "country_code": "BE",
          "slug": "genval",
          "canonical_path": "/cities/be/genval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797638",
          "name": "Geraardsbergen",
          "country_code": "BE",
          "slug": "geraardsbergen",
          "canonical_path": "/cities/be/geraardsbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52025",
          "name": "Gerpinnes",
          "country_code": "BE",
          "slug": "gerpinnes",
          "canonical_path": "/cities/be/gerpinnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92054",
          "name": "Gesves",
          "country_code": "BE",
          "slug": "gesves",
          "canonical_path": "/cities/be/gesves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797532",
          "name": "Gilly",
          "country_code": "BE",
          "slug": "gilly",
          "canonical_path": "/cities/be/gilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71017",
          "name": "Gingelom",
          "country_code": "BE",
          "slug": "gingelom",
          "canonical_path": "/cities/be/gingelom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:35005",
          "name": "Gistel",
          "country_code": "BE",
          "slug": "gistel",
          "canonical_path": "/cities/be/gistel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24137",
          "name": "Glabbeek",
          "country_code": "BE",
          "slug": "glabbeek",
          "canonical_path": "/cities/be/glabbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797417",
          "name": "Gooik",
          "country_code": "BE",
          "slug": "gooik",
          "canonical_path": "/cities/be/gooik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797376",
          "name": "Gosselies",
          "country_code": "BE",
          "slug": "gosselies",
          "canonical_path": "/cities/be/gosselies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:82037",
          "name": "Gouvy",
          "country_code": "BE",
          "slug": "gouvy",
          "canonical_path": "/cities/be/gouvy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797336",
          "name": "Grâce-Berleur",
          "country_code": "BE",
          "slug": "grace-berleur",
          "canonical_path": "/cities/be/grace-berleur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62118",
          "name": "Grâce-Hollogne",
          "country_code": "BE",
          "slug": "grace-hollogne",
          "canonical_path": "/cities/be/grace-hollogne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25037",
          "name": "Grez-Doiceau",
          "country_code": "BE",
          "slug": "grez-doiceau",
          "canonical_path": "/cities/be/grez-doiceau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23025",
          "name": "Grimbergen",
          "country_code": "BE",
          "slug": "grimbergen",
          "canonical_path": "/cities/be/grimbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13010",
          "name": "Grobbendonk",
          "country_code": "BE",
          "slug": "grobbendonk",
          "canonical_path": "/cities/be/grobbendonk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2797051",
          "name": "Groot-Bijgaarden",
          "country_code": "BE",
          "slug": "groot-bijgaarden",
          "canonical_path": "/cities/be/groot-bijgaarden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796854",
          "name": "Gullegem",
          "country_code": "BE",
          "slug": "gullegem",
          "canonical_path": "/cities/be/gullegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24033",
          "name": "Haacht",
          "country_code": "BE",
          "slug": "haacht",
          "canonical_path": "/cities/be/haacht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:41024",
          "name": "Haaltert",
          "country_code": "BE",
          "slug": "haaltert",
          "canonical_path": "/cities/be/haaltert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:85046",
          "name": "Habay",
          "country_code": "BE",
          "slug": "habay",
          "canonical_path": "/cities/be/habay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796737",
          "name": "Haine-Saint-Paul",
          "country_code": "BE",
          "slug": "haine-saint-paul",
          "canonical_path": "/cities/be/haine-saint-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796735",
          "name": "Haine-Saint-Pierre",
          "country_code": "BE",
          "slug": "haine-saint-pierre",
          "canonical_path": "/cities/be/haine-saint-pierre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71020",
          "name": "Halen",
          "country_code": "BE",
          "slug": "halen",
          "canonical_path": "/cities/be/halen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796695",
          "name": "Halle",
          "country_code": "BE",
          "slug": "halle",
          "canonical_path": "/cities/be/halle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:56086",
          "name": "Ham-sur-Heure-Nalinnes",
          "country_code": "BE",
          "slug": "ham-sur-heure-nalinnes",
          "canonical_path": "/cities/be/ham-sur-heure-nalinnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796637",
          "name": "Hamme",
          "country_code": "BE",
          "slug": "hamme",
          "canonical_path": "/cities/be/hamme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91059",
          "name": "Hamois",
          "country_code": "BE",
          "slug": "hamois",
          "canonical_path": "/cities/be/hamois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796625",
          "name": "Hamont",
          "country_code": "BE",
          "slug": "hamont",
          "canonical_path": "/cities/be/hamont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72037",
          "name": "Hamont-Achel",
          "country_code": "BE",
          "slug": "hamont-achel",
          "canonical_path": "/cities/be/hamont-achel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:64034",
          "name": "Hannut",
          "country_code": "BE",
          "slug": "hannut",
          "canonical_path": "/cities/be/hannut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:34013",
          "name": "Harelbeke",
          "country_code": "BE",
          "slug": "harelbeke",
          "canonical_path": "/cities/be/harelbeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71072",
          "name": "Hasselt",
          "country_code": "BE",
          "slug": "hasselt",
          "canonical_path": "/cities/be/hasselt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91142",
          "name": "Hastière",
          "country_code": "BE",
          "slug": "hastiere",
          "canonical_path": "/cities/be/hastiere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796482",
          "name": "Hastière-Lavaux",
          "country_code": "BE",
          "slug": "hastiere-lavaux",
          "canonical_path": "/cities/be/hastiere-lavaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91064",
          "name": "Havelange",
          "country_code": "BE",
          "slug": "havelange",
          "canonical_path": "/cities/be/havelange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796319",
          "name": "Hechtel",
          "country_code": "BE",
          "slug": "hechtel",
          "canonical_path": "/cities/be/hechtel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72038",
          "name": "Hechtel-Eksel",
          "country_code": "BE",
          "slug": "hechtel-eksel",
          "canonical_path": "/cities/be/hechtel-eksel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:73022",
          "name": "Heers",
          "country_code": "BE",
          "slug": "heers",
          "canonical_path": "/cities/be/heers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796157",
          "name": "Heist",
          "country_code": "BE",
          "slug": "heist",
          "canonical_path": "/cities/be/heist/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12014",
          "name": "Heist-op-den-Berg",
          "country_code": "BE",
          "slug": "heist-op-den-berg",
          "canonical_path": "/cities/be/heist-op-den-berg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796144",
          "name": "Hekelgem",
          "country_code": "BE",
          "slug": "hekelgem",
          "canonical_path": "/cities/be/hekelgem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2796132",
          "name": "Helchteren",
          "country_code": "BE",
          "slug": "helchteren",
          "canonical_path": "/cities/be/helchteren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11018",
          "name": "Hemiksem",
          "country_code": "BE",
          "slug": "hemiksem",
          "canonical_path": "/cities/be/hemiksem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53039",
          "name": "Hensies",
          "country_code": "BE",
          "slug": "hensies",
          "canonical_path": "/cities/be/hensies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24038",
          "name": "Herent",
          "country_code": "BE",
          "slug": "herent",
          "canonical_path": "/cities/be/herent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13011",
          "name": "Herentals",
          "country_code": "BE",
          "slug": "herentals",
          "canonical_path": "/cities/be/herentals/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13012",
          "name": "Herenthout",
          "country_code": "BE",
          "slug": "herenthout",
          "canonical_path": "/cities/be/herenthout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795985",
          "name": "Herk-de-Stad",
          "country_code": "BE",
          "slug": "herk-de-stad",
          "canonical_path": "/cities/be/herk-de-stad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795956",
          "name": "Herne",
          "country_code": "BE",
          "slug": "herne",
          "canonical_path": "/cities/be/herne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61028",
          "name": "Héron",
          "country_code": "BE",
          "slug": "heron",
          "canonical_path": "/cities/be/heron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13013",
          "name": "Herselt",
          "country_code": "BE",
          "slug": "herselt",
          "canonical_path": "/cities/be/herselt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62051",
          "name": "Herstal",
          "country_code": "BE",
          "slug": "herstal",
          "canonical_path": "/cities/be/herstal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63035",
          "name": "Herve",
          "country_code": "BE",
          "slug": "herve",
          "canonical_path": "/cities/be/herve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:41027",
          "name": "Herzele",
          "country_code": "BE",
          "slug": "herzele",
          "canonical_path": "/cities/be/herzele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795800",
          "name": "Heusden",
          "country_code": "BE",
          "slug": "heusden",
          "canonical_path": "/cities/be/heusden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795801",
          "name": "Heusden",
          "country_code": "BE",
          "slug": "heusden-vlg-vov",
          "canonical_path": "/cities/be/heusden-vlg-vov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71070",
          "name": "Heusden-Zolder",
          "country_code": "BE",
          "slug": "heusden-zolder",
          "canonical_path": "/cities/be/heusden-zolder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795795",
          "name": "Heusy",
          "country_code": "BE",
          "slug": "heusy",
          "canonical_path": "/cities/be/heusy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:33039",
          "name": "Heuvelland",
          "country_code": "BE",
          "slug": "heuvelland",
          "canonical_path": "/cities/be/heuvelland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795785",
          "name": "Hever",
          "country_code": "BE",
          "slug": "hever",
          "canonical_path": "/cities/be/hever/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795740",
          "name": "Hingene",
          "country_code": "BE",
          "slug": "hingene",
          "canonical_path": "/cities/be/hingene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24041",
          "name": "Hoegaarden",
          "country_code": "BE",
          "slug": "hoegaarden",
          "canonical_path": "/cities/be/hoegaarden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23033",
          "name": "Hoeilaart",
          "country_code": "BE",
          "slug": "hoeilaart",
          "canonical_path": "/cities/be/hoeilaart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795648",
          "name": "Hoeselt",
          "country_code": "BE",
          "slug": "hoeselt",
          "canonical_path": "/cities/be/hoeselt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795634",
          "name": "Hoevenen",
          "country_code": "BE",
          "slug": "hoevenen",
          "canonical_path": "/cities/be/hoevenen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795516",
          "name": "Hollogne-aux-Pierres",
          "country_code": "BE",
          "slug": "hollogne-aux-pierres",
          "canonical_path": "/cities/be/hollogne-aux-pierres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24043",
          "name": "Holsbeek",
          "country_code": "BE",
          "slug": "holsbeek",
          "canonical_path": "/cities/be/holsbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53083",
          "name": "Honnelles",
          "country_code": "BE",
          "slug": "honnelles",
          "canonical_path": "/cities/be/honnelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:36006",
          "name": "Hooglede",
          "country_code": "BE",
          "slug": "hooglede",
          "canonical_path": "/cities/be/hooglede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13014",
          "name": "Hoogstraten",
          "country_code": "BE",
          "slug": "hoogstraten",
          "canonical_path": "/cities/be/hoogstraten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795361",
          "name": "Hornu",
          "country_code": "BE",
          "slug": "hornu",
          "canonical_path": "/cities/be/hornu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:83028",
          "name": "Hotton",
          "country_code": "BE",
          "slug": "hotton",
          "canonical_path": "/cities/be/hotton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795331",
          "name": "Houdeng-Aimeries",
          "country_code": "BE",
          "slug": "houdeng-aimeries",
          "canonical_path": "/cities/be/houdeng-aimeries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795329",
          "name": "Houdeng-Goegnies",
          "country_code": "BE",
          "slug": "houdeng-goegnies",
          "canonical_path": "/cities/be/houdeng-goegnies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:82014",
          "name": "Houffalize",
          "country_code": "BE",
          "slug": "houffalize",
          "canonical_path": "/cities/be/houffalize/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795261",
          "name": "Houthalen",
          "country_code": "BE",
          "slug": "houthalen",
          "canonical_path": "/cities/be/houthalen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72039",
          "name": "Houthalen-Helchteren",
          "country_code": "BE",
          "slug": "houthalen-helchteren",
          "canonical_path": "/cities/be/houthalen-helchteren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:32006",
          "name": "Houthulst",
          "country_code": "BE",
          "slug": "houthulst",
          "canonical_path": "/cities/be/houthulst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91072",
          "name": "Houyet",
          "country_code": "BE",
          "slug": "houyet",
          "canonical_path": "/cities/be/houyet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795232",
          "name": "Hove",
          "country_code": "BE",
          "slug": "hove",
          "canonical_path": "/cities/be/hove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24045",
          "name": "Huldenberg",
          "country_code": "BE",
          "slug": "huldenberg",
          "canonical_path": "/cities/be/huldenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13016",
          "name": "Hulshout",
          "country_code": "BE",
          "slug": "hulshout",
          "canonical_path": "/cities/be/hulshout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61031",
          "name": "Huy",
          "country_code": "BE",
          "slug": "huy",
          "canonical_path": "/cities/be/huy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:35006",
          "name": "Ichtegem",
          "country_code": "BE",
          "slug": "ichtegem",
          "canonical_path": "/cities/be/ichtegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795100",
          "name": "Ieper",
          "country_code": "BE",
          "slug": "ieper",
          "canonical_path": "/cities/be/ieper/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25043",
          "name": "Incourt",
          "country_code": "BE",
          "slug": "incourt",
          "canonical_path": "/cities/be/incourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:36007",
          "name": "Ingelmunster",
          "country_code": "BE",
          "slug": "ingelmunster",
          "canonical_path": "/cities/be/ingelmunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795024",
          "name": "Itegem",
          "country_code": "BE",
          "slug": "itegem",
          "canonical_path": "/cities/be/itegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25044",
          "name": "Ittre",
          "country_code": "BE",
          "slug": "ittre",
          "canonical_path": "/cities/be/ittre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2795013",
          "name": "Ivoz-Ramet",
          "country_code": "BE",
          "slug": "ivoz-ramet",
          "canonical_path": "/cities/be/ivoz-ramet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21009",
          "name": "Ixelles",
          "country_code": "BE",
          "slug": "ixelles",
          "canonical_path": "/cities/be/ixelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:36008",
          "name": "Izegem",
          "country_code": "BE",
          "slug": "izegem",
          "canonical_path": "/cities/be/izegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:31012",
          "name": "Jabbeke",
          "country_code": "BE",
          "slug": "jabbeke",
          "canonical_path": "/cities/be/jabbeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63038",
          "name": "Jalhay",
          "country_code": "BE",
          "slug": "jalhay",
          "canonical_path": "/cities/be/jalhay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794929",
          "name": "Jemeppe-sur-Meuse",
          "country_code": "BE",
          "slug": "jemeppe-sur-meuse",
          "canonical_path": "/cities/be/jemeppe-sur-meuse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92140",
          "name": "Jemeppe-sur-Sambre",
          "country_code": "BE",
          "slug": "jemeppe-sur-sambre",
          "canonical_path": "/cities/be/jemeppe-sur-sambre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21010",
          "name": "Jette",
          "country_code": "BE",
          "slug": "jette",
          "canonical_path": "/cities/be/jette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25048",
          "name": "Jodoigne",
          "country_code": "BE",
          "slug": "jodoigne",
          "canonical_path": "/cities/be/jodoigne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794860",
          "name": "Jumet",
          "country_code": "BE",
          "slug": "jumet",
          "canonical_path": "/cities/be/jumet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62060",
          "name": "Juprelle",
          "country_code": "BE",
          "slug": "juprelle",
          "canonical_path": "/cities/be/juprelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53044",
          "name": "Jurbise",
          "country_code": "BE",
          "slug": "jurbise",
          "canonical_path": "/cities/be/jurbise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794802",
          "name": "Kalken",
          "country_code": "BE",
          "slug": "kalken",
          "canonical_path": "/cities/be/kalken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11022",
          "name": "Kalmthout",
          "country_code": "BE",
          "slug": "kalmthout",
          "canonical_path": "/cities/be/kalmthout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23038",
          "name": "Kampenhout",
          "country_code": "BE",
          "slug": "kampenhout",
          "canonical_path": "/cities/be/kampenhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23039",
          "name": "Kapelle-op-den-Bos",
          "country_code": "BE",
          "slug": "kapelle-op-den-bos",
          "canonical_path": "/cities/be/kapelle-op-den-bos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794730",
          "name": "Kapellen",
          "country_code": "BE",
          "slug": "kapellen",
          "canonical_path": "/cities/be/kapellen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:43007",
          "name": "Kaprijke",
          "country_code": "BE",
          "slug": "kaprijke",
          "canonical_path": "/cities/be/kaprijke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13017",
          "name": "Kasterlee",
          "country_code": "BE",
          "slug": "kasterlee",
          "canonical_path": "/cities/be/kasterlee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24048",
          "name": "Keerbergen",
          "country_code": "BE",
          "slug": "keerbergen",
          "canonical_path": "/cities/be/keerbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794510",
          "name": "Kessel",
          "country_code": "BE",
          "slug": "kessel",
          "canonical_path": "/cities/be/kessel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72018",
          "name": "Kinrooi",
          "country_code": "BE",
          "slug": "kinrooi",
          "canonical_path": "/cities/be/kinrooi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794277",
          "name": "Klemskerke",
          "country_code": "BE",
          "slug": "klemskerke",
          "canonical_path": "/cities/be/klemskerke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:45060",
          "name": "Kluisbergen",
          "country_code": "BE",
          "slug": "kluisbergen",
          "canonical_path": "/cities/be/kluisbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794223",
          "name": "Knesselare",
          "country_code": "BE",
          "slug": "knesselare",
          "canonical_path": "/cities/be/knesselare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794212",
          "name": "Knokke",
          "country_code": "BE",
          "slug": "knokke",
          "canonical_path": "/cities/be/knokke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:31043",
          "name": "Knokke-Heist",
          "country_code": "BE",
          "slug": "knokke-heist",
          "canonical_path": "/cities/be/knokke-heist/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:32010",
          "name": "Koekelare",
          "country_code": "BE",
          "slug": "koekelare",
          "canonical_path": "/cities/be/koekelare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21011",
          "name": "Koekelberg",
          "country_code": "BE",
          "slug": "koekelberg",
          "canonical_path": "/cities/be/koekelberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794179",
          "name": "Koersel",
          "country_code": "BE",
          "slug": "koersel",
          "canonical_path": "/cities/be/koersel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:38014",
          "name": "Koksijde",
          "country_code": "BE",
          "slug": "koksijde",
          "canonical_path": "/cities/be/koksijde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11024",
          "name": "Kontich",
          "country_code": "BE",
          "slug": "kontich",
          "canonical_path": "/cities/be/kontich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:32011",
          "name": "Kortemark",
          "country_code": "BE",
          "slug": "kortemark",
          "canonical_path": "/cities/be/kortemark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24054",
          "name": "Kortenaken",
          "country_code": "BE",
          "slug": "kortenaken",
          "canonical_path": "/cities/be/kortenaken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24055",
          "name": "Kortenberg",
          "country_code": "BE",
          "slug": "kortenberg",
          "canonical_path": "/cities/be/kortenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2794063",
          "name": "Kortessem",
          "country_code": "BE",
          "slug": "kortessem",
          "canonical_path": "/cities/be/kortessem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23099",
          "name": "Kraainem",
          "country_code": "BE",
          "slug": "kraainem",
          "canonical_path": "/cities/be/kraainem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2793940",
          "name": "Kruibeke",
          "country_code": "BE",
          "slug": "kruibeke",
          "canonical_path": "/cities/be/kruibeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:45068",
          "name": "Kruisem",
          "country_code": "BE",
          "slug": "kruisem",
          "canonical_path": "/cities/be/kruisem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2793907",
          "name": "Kruishoutem",
          "country_code": "BE",
          "slug": "kruishoutem",
          "canonical_path": "/cities/be/kruishoutem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2793863",
          "name": "Kuringen",
          "country_code": "BE",
          "slug": "kuringen",
          "canonical_path": "/cities/be/kuringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:34023",
          "name": "Kuurne",
          "country_code": "BE",
          "slug": "kuurne",
          "canonical_path": "/cities/be/kuurne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2793747",
          "name": "La Bouverie",
          "country_code": "BE",
          "slug": "la-bouverie",
          "canonical_path": "/cities/be/la-bouverie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92141",
          "name": "La Bruyère",
          "country_code": "BE",
          "slug": "la-bruyere",
          "canonical_path": "/cities/be/la-bruyere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63040",
          "name": "La Calamine",
          "country_code": "BE",
          "slug": "kelmis",
          "canonical_path": "/cities/be/kelmis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25050",
          "name": "La Hulpe",
          "country_code": "BE",
          "slug": "la-hulpe",
          "canonical_path": "/cities/be/la-hulpe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:58001",
          "name": "La Louvière",
          "country_code": "BE",
          "slug": "la-louviere",
          "canonical_path": "/cities/be/la-louviere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13053",
          "name": "Laakdal",
          "country_code": "BE",
          "slug": "laakdal",
          "canonical_path": "/cities/be/laakdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:42010",
          "name": "Laarne",
          "country_code": "BE",
          "slug": "laarne",
          "canonical_path": "/cities/be/laarne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:73042",
          "name": "Lanaken",
          "country_code": "BE",
          "slug": "lanaken",
          "canonical_path": "/cities/be/lanaken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24059",
          "name": "Landen",
          "country_code": "BE",
          "slug": "landen",
          "canonical_path": "/cities/be/landen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2793406",
          "name": "Langdorp",
          "country_code": "BE",
          "slug": "langdorp",
          "canonical_path": "/cities/be/langdorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:33040",
          "name": "Langemark-Poelkapelle",
          "country_code": "BE",
          "slug": "langemark-poelkapelle",
          "canonical_path": "/cities/be/langemark-poelkapelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25119",
          "name": "Lasne",
          "country_code": "BE",
          "slug": "lasne",
          "canonical_path": "/cities/be/lasne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:55035",
          "name": "Le Roeulx",
          "country_code": "BE",
          "slug": "le-roeulx",
          "canonical_path": "/cities/be/le-roeulx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:42011",
          "name": "Lebbeke",
          "country_code": "BE",
          "slug": "lebbeke",
          "canonical_path": "/cities/be/lebbeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:41034",
          "name": "Lede",
          "country_code": "BE",
          "slug": "lede",
          "canonical_path": "/cities/be/lede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:36010",
          "name": "Ledegem",
          "country_code": "BE",
          "slug": "ledegem",
          "canonical_path": "/cities/be/ledegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:84033",
          "name": "Léglise",
          "country_code": "BE",
          "slug": "leglise",
          "canonical_path": "/cities/be/leglise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792891",
          "name": "Lemberge",
          "country_code": "BE",
          "slug": "lemberge",
          "canonical_path": "/cities/be/lemberge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:34025",
          "name": "Lendelede",
          "country_code": "BE",
          "slug": "lendelede",
          "canonical_path": "/cities/be/lendelede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23104",
          "name": "Lennik",
          "country_code": "BE",
          "slug": "lennik",
          "canonical_path": "/cities/be/lennik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792856",
          "name": "Leopoldsburg",
          "country_code": "BE",
          "slug": "leopoldsburg",
          "canonical_path": "/cities/be/leopoldsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52075",
          "name": "Les Bons Villers",
          "country_code": "BE",
          "slug": "les-bons-villers",
          "canonical_path": "/cities/be/les-bons-villers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:51069",
          "name": "Lessines",
          "country_code": "BE",
          "slug": "lessines",
          "canonical_path": "/cities/be/lessines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792482",
          "name": "Leuven",
          "country_code": "BE",
          "slug": "leuven-vlg-vbr",
          "canonical_path": "/cities/be/leuven-vlg-vbr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:57094",
          "name": "Leuze-en-Hainaut",
          "country_code": "BE",
          "slug": "leuze-en-hainaut",
          "canonical_path": "/cities/be/leuze-en-hainaut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792466",
          "name": "Leval-Trahegnies",
          "country_code": "BE",
          "slug": "leval-trahegnies",
          "canonical_path": "/cities/be/leval-trahegnies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:84035",
          "name": "Libin",
          "country_code": "BE",
          "slug": "libin",
          "canonical_path": "/cities/be/libin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:84077",
          "name": "Libramont-Chevigny",
          "country_code": "BE",
          "slug": "libramont-chevigny",
          "canonical_path": "/cities/be/libramont-chevigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792435",
          "name": "Lichtaart",
          "country_code": "BE",
          "slug": "lichtaart",
          "canonical_path": "/cities/be/lichtaart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:36011",
          "name": "Lichtervelde",
          "country_code": "BE",
          "slug": "lichtervelde",
          "canonical_path": "/cities/be/lichtervelde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23044",
          "name": "Liedekerke",
          "country_code": "BE",
          "slug": "liedekerke",
          "canonical_path": "/cities/be/liedekerke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792397",
          "name": "Lier",
          "country_code": "BE",
          "slug": "lier-vlg-van",
          "canonical_path": "/cities/be/lier-vlg-van/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:45063",
          "name": "Lierde",
          "country_code": "BE",
          "slug": "lierde",
          "canonical_path": "/cities/be/lierde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44085",
          "name": "Lievegem",
          "country_code": "BE",
          "slug": "lievegem",
          "canonical_path": "/cities/be/lievegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13019",
          "name": "Lille",
          "country_code": "BE",
          "slug": "lille",
          "canonical_path": "/cities/be/lille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63046",
          "name": "Limbourg",
          "country_code": "BE",
          "slug": "limbourg",
          "canonical_path": "/cities/be/limbourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792345",
          "name": "Limelette",
          "country_code": "BE",
          "slug": "limelette",
          "canonical_path": "/cities/be/limelette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792313",
          "name": "Linden",
          "country_code": "BE",
          "slug": "linden",
          "canonical_path": "/cities/be/linden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11025",
          "name": "Lint",
          "country_code": "BE",
          "slug": "lint",
          "canonical_path": "/cities/be/lint/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24133",
          "name": "Linter",
          "country_code": "BE",
          "slug": "linter",
          "canonical_path": "/cities/be/linter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:56044",
          "name": "Lobbes",
          "country_code": "BE",
          "slug": "lobbes",
          "canonical_path": "/cities/be/lobbes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44087",
          "name": "Lochristi",
          "country_code": "BE",
          "slug": "lochristi",
          "canonical_path": "/cities/be/lochristi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792226",
          "name": "Lodelinsart",
          "country_code": "BE",
          "slug": "lodelinsart",
          "canonical_path": "/cities/be/lodelinsart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:46029",
          "name": "Lokeren",
          "country_code": "BE",
          "slug": "lokeren",
          "canonical_path": "/cities/be/lokeren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72020",
          "name": "Lommel",
          "country_code": "BE",
          "slug": "lommel",
          "canonical_path": "/cities/be/lommel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23045",
          "name": "Londerzeel",
          "country_code": "BE",
          "slug": "londerzeel",
          "canonical_path": "/cities/be/londerzeel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63048",
          "name": "Lontzen",
          "country_code": "BE",
          "slug": "lontzen",
          "canonical_path": "/cities/be/lontzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792073",
          "name": "Louvain-la-Neuve",
          "country_code": "BE",
          "slug": "louvain-la-neuve",
          "canonical_path": "/cities/be/louvain-la-neuve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2792057",
          "name": "Lovendegem",
          "country_code": "BE",
          "slug": "lovendegem",
          "canonical_path": "/cities/be/lovendegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24066",
          "name": "Lubbeek",
          "country_code": "BE",
          "slug": "lubbeek",
          "canonical_path": "/cities/be/lubbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71037",
          "name": "Lummen",
          "country_code": "BE",
          "slug": "lummen",
          "canonical_path": "/cities/be/lummen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:45064",
          "name": "Maarkedal",
          "country_code": "BE",
          "slug": "maarkedal",
          "canonical_path": "/cities/be/maarkedal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72021",
          "name": "Maaseik",
          "country_code": "BE",
          "slug": "maaseik",
          "canonical_path": "/cities/be/maaseik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:73107",
          "name": "Maasmechelen",
          "country_code": "BE",
          "slug": "maasmechelen",
          "canonical_path": "/cities/be/maasmechelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791951",
          "name": "Machelen",
          "country_code": "BE",
          "slug": "machelen",
          "canonical_path": "/cities/be/machelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:43010",
          "name": "Maldegem",
          "country_code": "BE",
          "slug": "maldegem",
          "canonical_path": "/cities/be/maldegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11057",
          "name": "Malle",
          "country_code": "BE",
          "slug": "malle",
          "canonical_path": "/cities/be/malle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63049",
          "name": "Malmedy",
          "country_code": "BE",
          "slug": "malmedy",
          "canonical_path": "/cities/be/malmedy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:55086",
          "name": "Manage",
          "country_code": "BE",
          "slug": "manage",
          "canonical_path": "/cities/be/manage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:83034",
          "name": "Marche-en-Famenne",
          "country_code": "BE",
          "slug": "marche-en-famenne",
          "canonical_path": "/cities/be/marche-en-famenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791735",
          "name": "Marchienne-au-Pont",
          "country_code": "BE",
          "slug": "marchienne-au-pont",
          "canonical_path": "/cities/be/marchienne-au-pont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61039",
          "name": "Marchin",
          "country_code": "BE",
          "slug": "marchin",
          "canonical_path": "/cities/be/marchin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791726",
          "name": "Marcinelle",
          "country_code": "BE",
          "slug": "marcinelle",
          "canonical_path": "/cities/be/marcinelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791566",
          "name": "Maurage",
          "country_code": "BE",
          "slug": "maurage",
          "canonical_path": "/cities/be/maurage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791537",
          "name": "Mechelen",
          "country_code": "BE",
          "slug": "mechelen-vlg-van",
          "canonical_path": "/cities/be/mechelen-vlg-van/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791534",
          "name": "Mechelen-aan-de-Maas",
          "country_code": "BE",
          "slug": "mechelen-aan-de-maas",
          "canonical_path": "/cities/be/mechelen-aan-de-maas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791507",
          "name": "Meerbeke",
          "country_code": "BE",
          "slug": "meerbeke",
          "canonical_path": "/cities/be/meerbeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13021",
          "name": "Meerhout",
          "country_code": "BE",
          "slug": "meerhout",
          "canonical_path": "/cities/be/meerhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23050",
          "name": "Meise",
          "country_code": "BE",
          "slug": "meise",
          "canonical_path": "/cities/be/meise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791385",
          "name": "Melle",
          "country_code": "BE",
          "slug": "melle",
          "canonical_path": "/cities/be/melle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791343",
          "name": "Menen",
          "country_code": "BE",
          "slug": "menen",
          "canonical_path": "/cities/be/menen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23052",
          "name": "Merchtem",
          "country_code": "BE",
          "slug": "merchtem",
          "canonical_path": "/cities/be/merchtem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791317",
          "name": "Mere",
          "country_code": "BE",
          "slug": "mere",
          "canonical_path": "/cities/be/mere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791315",
          "name": "Merelbeke",
          "country_code": "BE",
          "slug": "merelbeke",
          "canonical_path": "/cities/be/merelbeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13023",
          "name": "Merksplas",
          "country_code": "BE",
          "slug": "merksplas",
          "canonical_path": "/cities/be/merksplas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:81015",
          "name": "Messancy",
          "country_code": "BE",
          "slug": "messancy",
          "canonical_path": "/cities/be/messancy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92087",
          "name": "Mettet",
          "country_code": "BE",
          "slug": "mettet",
          "canonical_path": "/cities/be/mettet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791255",
          "name": "Meulebeke",
          "country_code": "BE",
          "slug": "meulebeke",
          "canonical_path": "/cities/be/meulebeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:35011",
          "name": "Middelkerke",
          "country_code": "BE",
          "slug": "middelkerke",
          "canonical_path": "/cities/be/middelkerke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2791120",
          "name": "Moerbeke",
          "country_code": "BE",
          "slug": "moerbeke",
          "canonical_path": "/cities/be/moerbeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13025",
          "name": "Mol",
          "country_code": "BE",
          "slug": "mol",
          "canonical_path": "/cities/be/mol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21012",
          "name": "Molenbeek-Saint-Jean",
          "country_code": "BE",
          "slug": "molenbeek-saint-jean",
          "canonical_path": "/cities/be/molenbeek-saint-jean/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:56051",
          "name": "Momignies",
          "country_code": "BE",
          "slug": "momignies",
          "canonical_path": "/cities/be/momignies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790891",
          "name": "Monceau-sur-Sambre",
          "country_code": "BE",
          "slug": "monceau-sur-sambre",
          "canonical_path": "/cities/be/monceau-sur-sambre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25068",
          "name": "Mont-Saint-Guibert",
          "country_code": "BE",
          "slug": "mont-saint-guibert",
          "canonical_path": "/cities/be/mont-saint-guibert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790749",
          "name": "Mont-sur-Marchienne",
          "country_code": "BE",
          "slug": "mont-sur-marchienne",
          "canonical_path": "/cities/be/mont-sur-marchienne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790796",
          "name": "Montignies-sur-Sambre",
          "country_code": "BE",
          "slug": "montignies-sur-sambre",
          "canonical_path": "/cities/be/montignies-sur-sambre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52048",
          "name": "Montigny-le-Tilleul",
          "country_code": "BE",
          "slug": "montigny-le-tilleul",
          "canonical_path": "/cities/be/montigny-le-tilleul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790733",
          "name": "Moorsele",
          "country_code": "BE",
          "slug": "moorsele",
          "canonical_path": "/cities/be/moorsele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:36012",
          "name": "Moorslede",
          "country_code": "BE",
          "slug": "moorslede",
          "canonical_path": "/cities/be/moorslede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:58004",
          "name": "Morlanwelz",
          "country_code": "BE",
          "slug": "morlanwelz",
          "canonical_path": "/cities/be/morlanwelz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790697",
          "name": "Morlanwelz-Mariemont",
          "country_code": "BE",
          "slug": "morlanwelz-mariemont",
          "canonical_path": "/cities/be/morlanwelz-mariemont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11029",
          "name": "Mortsel",
          "country_code": "BE",
          "slug": "mortsel",
          "canonical_path": "/cities/be/mortsel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790479",
          "name": "Nalinnes",
          "country_code": "BE",
          "slug": "nalinnes",
          "canonical_path": "/cities/be/nalinnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61043",
          "name": "Nandrin",
          "country_code": "BE",
          "slug": "nandrin",
          "canonical_path": "/cities/be/nandrin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:83040",
          "name": "Nassogne",
          "country_code": "BE",
          "slug": "nassogne",
          "canonical_path": "/cities/be/nassogne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790433",
          "name": "Nazareth",
          "country_code": "BE",
          "slug": "nazareth",
          "canonical_path": "/cities/be/nazareth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790361",
          "name": "Neeroeteren",
          "country_code": "BE",
          "slug": "neeroeteren",
          "canonical_path": "/cities/be/neeroeteren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790357",
          "name": "Neerpelt",
          "country_code": "BE",
          "slug": "neerpelt",
          "canonical_path": "/cities/be/neerpelt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:12902635",
          "name": "Negenmanneke",
          "country_code": "BE",
          "slug": "negenmanneke",
          "canonical_path": "/cities/be/negenmanneke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790286",
          "name": "Neufchâteau",
          "country_code": "BE",
          "slug": "neufchateau",
          "canonical_path": "/cities/be/neufchateau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:84043",
          "name": "Neufchâteau (Neufchâteau)",
          "country_code": "BE",
          "slug": "neufchateau-neufchateau",
          "canonical_path": "/cities/be/neufchateau-neufchateau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62121",
          "name": "Neupré",
          "country_code": "BE",
          "slug": "neupre",
          "canonical_path": "/cities/be/neupre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790235",
          "name": "Nevele",
          "country_code": "BE",
          "slug": "nevele",
          "canonical_path": "/cities/be/nevele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11030",
          "name": "Niel",
          "country_code": "BE",
          "slug": "niel",
          "canonical_path": "/cities/be/niel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71045",
          "name": "Nieuwerkerken (Hasselt)",
          "country_code": "BE",
          "slug": "nieuwerkerken-hasselt",
          "canonical_path": "/cities/be/nieuwerkerken-hasselt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790150",
          "name": "Nieuwpoort",
          "country_code": "BE",
          "slug": "nieuwpoort",
          "canonical_path": "/cities/be/nieuwpoort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12026",
          "name": "Nijlen",
          "country_code": "BE",
          "slug": "nijlen",
          "canonical_path": "/cities/be/nijlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:41048",
          "name": "Ninove",
          "country_code": "BE",
          "slug": "ninove",
          "canonical_path": "/cities/be/ninove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25072",
          "name": "Nivelles",
          "country_code": "BE",
          "slug": "nivelles",
          "canonical_path": "/cities/be/nivelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2790043",
          "name": "Noorderwijk",
          "country_code": "BE",
          "slug": "noorderwijk",
          "canonical_path": "/cities/be/noorderwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789948",
          "name": "Oedelem",
          "country_code": "BE",
          "slug": "oedelem",
          "canonical_path": "/cities/be/oedelem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789911",
          "name": "Ohain",
          "country_code": "BE",
          "slug": "ohain",
          "canonical_path": "/cities/be/ohain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92097",
          "name": "Ohey",
          "country_code": "BE",
          "slug": "ohey",
          "canonical_path": "/cities/be/ohey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13029",
          "name": "Olen",
          "country_code": "BE",
          "slug": "olen",
          "canonical_path": "/cities/be/olen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789821",
          "name": "Onze-Lieve-Vrouw-Waver",
          "country_code": "BE",
          "slug": "onze-lieve-vrouw-waver",
          "canonical_path": "/cities/be/onze-lieve-vrouw-waver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789794",
          "name": "Oostduinkerke",
          "country_code": "BE",
          "slug": "oostduinkerke",
          "canonical_path": "/cities/be/oostduinkerke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44052",
          "name": "Oosterzele",
          "country_code": "BE",
          "slug": "oosterzele",
          "canonical_path": "/cities/be/oosterzele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:31022",
          "name": "Oostkamp",
          "country_code": "BE",
          "slug": "oostkamp",
          "canonical_path": "/cities/be/oostkamp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789745",
          "name": "Oostmalle",
          "country_code": "BE",
          "slug": "oostmalle",
          "canonical_path": "/cities/be/oostmalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:37010",
          "name": "Oostrozebeke",
          "country_code": "BE",
          "slug": "oostrozebeke",
          "canonical_path": "/cities/be/oostrozebeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789714",
          "name": "Opglabbeek",
          "country_code": "BE",
          "slug": "opglabbeek",
          "canonical_path": "/cities/be/opglabbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23060",
          "name": "Opwijk",
          "country_code": "BE",
          "slug": "opwijk",
          "canonical_path": "/cities/be/opwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25120",
          "name": "Orp-Jauche",
          "country_code": "BE",
          "slug": "orp-jauche",
          "canonical_path": "/cities/be/orp-jauche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789570",
          "name": "Ottignies",
          "country_code": "BE",
          "slug": "ottignies",
          "canonical_path": "/cities/be/ottignies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25121",
          "name": "Ottignies-Louvain-la-Neuve",
          "country_code": "BE",
          "slug": "ottignies-louvain-la-neuve",
          "canonical_path": "/cities/be/ottignies-louvain-la-neuve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24086",
          "name": "Oud-Heverlee",
          "country_code": "BE",
          "slug": "oud-heverlee",
          "canonical_path": "/cities/be/oud-heverlee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13031",
          "name": "Oud-Turnhout",
          "country_code": "BE",
          "slug": "oud-turnhout",
          "canonical_path": "/cities/be/oud-turnhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789529",
          "name": "Oudenaarde",
          "country_code": "BE",
          "slug": "oudenaarde",
          "canonical_path": "/cities/be/oudenaarde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:35014",
          "name": "Oudenburg",
          "country_code": "BE",
          "slug": "oudenburg",
          "canonical_path": "/cities/be/oudenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72042",
          "name": "Oudsbergen",
          "country_code": "BE",
          "slug": "oudsbergen",
          "canonical_path": "/cities/be/oudsbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789475",
          "name": "Ougrée",
          "country_code": "BE",
          "slug": "ougree",
          "canonical_path": "/cities/be/ougree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62079",
          "name": "Oupeye",
          "country_code": "BE",
          "slug": "oupeye",
          "canonical_path": "/cities/be/oupeye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23062",
          "name": "Overijse",
          "country_code": "BE",
          "slug": "overijse",
          "canonical_path": "/cities/be/overijse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789403",
          "name": "Overpelt",
          "country_code": "BE",
          "slug": "overpelt",
          "canonical_path": "/cities/be/overpelt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789388",
          "name": "Paal",
          "country_code": "BE",
          "slug": "paal",
          "canonical_path": "/cities/be/paal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:84050",
          "name": "Paliseul",
          "country_code": "BE",
          "slug": "paliseul",
          "canonical_path": "/cities/be/paliseul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789346",
          "name": "Pamel",
          "country_code": "BE",
          "slug": "pamel",
          "canonical_path": "/cities/be/pamel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789254",
          "name": "Pâturages",
          "country_code": "BE",
          "slug": "paturages",
          "canonical_path": "/cities/be/paturages/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:57062",
          "name": "Pecq",
          "country_code": "BE",
          "slug": "pecq",
          "canonical_path": "/cities/be/pecq/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72030",
          "name": "Peer",
          "country_code": "BE",
          "slug": "peer",
          "canonical_path": "/cities/be/peer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:72043",
          "name": "Pelt",
          "country_code": "BE",
          "slug": "pelt",
          "canonical_path": "/cities/be/pelt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63058",
          "name": "Pepinster",
          "country_code": "BE",
          "slug": "pepinster",
          "canonical_path": "/cities/be/pepinster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:57064",
          "name": "Péruwelz",
          "country_code": "BE",
          "slug": "peruwelz",
          "canonical_path": "/cities/be/peruwelz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25084",
          "name": "Perwez (Nivelles)",
          "country_code": "BE",
          "slug": "perwez-nivelles",
          "canonical_path": "/cities/be/perwez-nivelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2789145",
          "name": "Petegem-aan-de-Leie",
          "country_code": "BE",
          "slug": "petegem-aan-de-leie",
          "canonical_path": "/cities/be/petegem-aan-de-leie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:93056",
          "name": "Philippeville",
          "country_code": "BE",
          "slug": "philippeville",
          "canonical_path": "/cities/be/philippeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:37011",
          "name": "Pittem",
          "country_code": "BE",
          "slug": "pittem",
          "canonical_path": "/cities/be/pittem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63088",
          "name": "Plombières",
          "country_code": "BE",
          "slug": "plombieres",
          "canonical_path": "/cities/be/plombieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:52055",
          "name": "Pont-à-Celles",
          "country_code": "BE",
          "slug": "pont-a-celles",
          "canonical_path": "/cities/be/pont-a-celles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:33021",
          "name": "Poperinge",
          "country_code": "BE",
          "slug": "poperinge",
          "canonical_path": "/cities/be/poperinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2788650",
          "name": "Prayon",
          "country_code": "BE",
          "slug": "prayon",
          "canonical_path": "/cities/be/prayon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92101",
          "name": "Profondeville",
          "country_code": "BE",
          "slug": "profondeville",
          "canonical_path": "/cities/be/profondeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12029",
          "name": "Putte",
          "country_code": "BE",
          "slug": "putte",
          "canonical_path": "/cities/be/putte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2788506",
          "name": "Puurs",
          "country_code": "BE",
          "slug": "puurs",
          "canonical_path": "/cities/be/puurs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12041",
          "name": "Puurs-Sint-Amands",
          "country_code": "BE",
          "slug": "puurs-sint-amands",
          "canonical_path": "/cities/be/puurs-sint-amands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53065",
          "name": "Quaregnon",
          "country_code": "BE",
          "slug": "quaregnon",
          "canonical_path": "/cities/be/quaregnon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53084",
          "name": "Quévy",
          "country_code": "BE",
          "slug": "quevy",
          "canonical_path": "/cities/be/quevy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53068",
          "name": "Quiévrain",
          "country_code": "BE",
          "slug": "quievrain",
          "canonical_path": "/cities/be/quievrain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63061",
          "name": "Raeren",
          "country_code": "BE",
          "slug": "raeren",
          "canonical_path": "/cities/be/raeren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25122",
          "name": "Ramillies",
          "country_code": "BE",
          "slug": "ramillies",
          "canonical_path": "/cities/be/ramillies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2788353",
          "name": "Ransart",
          "country_code": "BE",
          "slug": "ransart",
          "canonical_path": "/cities/be/ransart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11035",
          "name": "Ranst",
          "country_code": "BE",
          "slug": "ranst",
          "canonical_path": "/cities/be/ranst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13035",
          "name": "Ravels",
          "country_code": "BE",
          "slug": "ravels",
          "canonical_path": "/cities/be/ravels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25123",
          "name": "Rebecq",
          "country_code": "BE",
          "slug": "rebecq",
          "canonical_path": "/cities/be/rebecq/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2788299",
          "name": "Rebecq-Rognon",
          "country_code": "BE",
          "slug": "rebecq-rognon",
          "canonical_path": "/cities/be/rebecq-rognon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2788273",
          "name": "Reet",
          "country_code": "BE",
          "slug": "reet",
          "canonical_path": "/cities/be/reet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:64063",
          "name": "Remicourt",
          "country_code": "BE",
          "slug": "remicourt",
          "canonical_path": "/cities/be/remicourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13036",
          "name": "Retie",
          "country_code": "BE",
          "slug": "retie",
          "canonical_path": "/cities/be/retie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:73066",
          "name": "Riemst",
          "country_code": "BE",
          "slug": "riemst",
          "canonical_path": "/cities/be/riemst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13037",
          "name": "Rijkevorsel",
          "country_code": "BE",
          "slug": "rijkevorsel",
          "canonical_path": "/cities/be/rijkevorsel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2788046",
          "name": "Rijmenam",
          "country_code": "BE",
          "slug": "rijmenam",
          "canonical_path": "/cities/be/rijmenam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2788028",
          "name": "Rillaar",
          "country_code": "BE",
          "slug": "rillaar",
          "canonical_path": "/cities/be/rillaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25091",
          "name": "Rixensart",
          "country_code": "BE",
          "slug": "rixensart",
          "canonical_path": "/cities/be/rixensart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91114",
          "name": "Rochefort",
          "country_code": "BE",
          "slug": "rochefort",
          "canonical_path": "/cities/be/rochefort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787889",
          "name": "Roeselare",
          "country_code": "BE",
          "slug": "roeselare-vlg-vwv",
          "canonical_path": "/cities/be/roeselare-vlg-vwv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787769",
          "name": "Ronse",
          "country_code": "BE",
          "slug": "ronse",
          "canonical_path": "/cities/be/ronse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23097",
          "name": "Roosdaal",
          "country_code": "BE",
          "slug": "roosdaal",
          "canonical_path": "/cities/be/roosdaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24094",
          "name": "Rotselaar",
          "country_code": "BE",
          "slug": "rotselaar",
          "canonical_path": "/cities/be/rotselaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787616",
          "name": "Roux",
          "country_code": "BE",
          "slug": "roux",
          "canonical_path": "/cities/be/roux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787572",
          "name": "Ruddervoorde",
          "country_code": "BE",
          "slug": "ruddervoorde",
          "canonical_path": "/cities/be/ruddervoorde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787552",
          "name": "Ruisbroek",
          "country_code": "BE",
          "slug": "ruisbroek",
          "canonical_path": "/cities/be/ruisbroek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787547",
          "name": "Ruiselede",
          "country_code": "BE",
          "slug": "ruiselede",
          "canonical_path": "/cities/be/ruiselede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:57072",
          "name": "Rumes",
          "country_code": "BE",
          "slug": "rumes",
          "canonical_path": "/cities/be/rumes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11037",
          "name": "Rumst",
          "country_code": "BE",
          "slug": "rumst",
          "canonical_path": "/cities/be/rumst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:64065",
          "name": "Saint-Georges-sur-Meuse",
          "country_code": "BE",
          "slug": "saint-georges-sur-meuse",
          "canonical_path": "/cities/be/saint-georges-sur-meuse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:53070",
          "name": "Saint-Ghislain",
          "country_code": "BE",
          "slug": "saint-ghislain",
          "canonical_path": "/cities/be/saint-ghislain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21013",
          "name": "Saint-Gilles",
          "country_code": "BE",
          "slug": "saint-gilles",
          "canonical_path": "/cities/be/saint-gilles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:84059",
          "name": "Saint-Hubert",
          "country_code": "BE",
          "slug": "saint-hubert",
          "canonical_path": "/cities/be/saint-hubert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21014",
          "name": "Saint-Josse-ten-Noode",
          "country_code": "BE",
          "slug": "saint-josse-ten-noode",
          "canonical_path": "/cities/be/saint-josse-ten-noode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787356",
          "name": "Saint-Nicolas",
          "country_code": "BE",
          "slug": "saint-nicolas",
          "canonical_path": "/cities/be/saint-nicolas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787319",
          "name": "Saint-Vaast",
          "country_code": "BE",
          "slug": "saint-vaast",
          "canonical_path": "/cities/be/saint-vaast/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63067",
          "name": "Saint-Vith",
          "country_code": "BE",
          "slug": "sankt-vith",
          "canonical_path": "/cities/be/sankt-vith/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92137",
          "name": "Sambreville",
          "country_code": "BE",
          "slug": "sambreville",
          "canonical_path": "/cities/be/sambreville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787176",
          "name": "Sauvenière",
          "country_code": "BE",
          "slug": "sauveniere",
          "canonical_path": "/cities/be/sauveniere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21015",
          "name": "Schaerbeek",
          "country_code": "BE",
          "slug": "schaerbeek",
          "canonical_path": "/cities/be/schaerbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11038",
          "name": "Schelle",
          "country_code": "BE",
          "slug": "schelle",
          "canonical_path": "/cities/be/schelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2787071",
          "name": "Schepdaal",
          "country_code": "BE",
          "slug": "schepdaal",
          "canonical_path": "/cities/be/schepdaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11039",
          "name": "Schilde",
          "country_code": "BE",
          "slug": "schilde",
          "canonical_path": "/cities/be/schilde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11040",
          "name": "Schoten",
          "country_code": "BE",
          "slug": "schoten",
          "canonical_path": "/cities/be/schoten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786938",
          "name": "Schriek",
          "country_code": "BE",
          "slug": "schriek",
          "canonical_path": "/cities/be/schriek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786873",
          "name": "Seilles",
          "country_code": "BE",
          "slug": "seilles",
          "canonical_path": "/cities/be/seilles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:55085",
          "name": "Seneffe",
          "country_code": "BE",
          "slug": "seneffe",
          "canonical_path": "/cities/be/seneffe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62096",
          "name": "Seraing",
          "country_code": "BE",
          "slug": "seraing",
          "canonical_path": "/cities/be/seraing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786777",
          "name": "Sijsele",
          "country_code": "BE",
          "slug": "sijsele",
          "canonical_path": "/cities/be/sijsele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:51068",
          "name": "Silly",
          "country_code": "BE",
          "slug": "silly",
          "canonical_path": "/cities/be/silly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786746",
          "name": "Sint-Amands",
          "country_code": "BE",
          "slug": "sint-amands",
          "canonical_path": "/cities/be/sint-amands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786700",
          "name": "Sint-Genesius-Rode",
          "country_code": "BE",
          "slug": "sint-genesius-rode",
          "canonical_path": "/cities/be/sint-genesius-rode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:46020",
          "name": "Sint-Gillis-Waas",
          "country_code": "BE",
          "slug": "sint-gillis-waas",
          "canonical_path": "/cities/be/sint-gillis-waas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786659",
          "name": "Sint-Job-in-'t-Goor",
          "country_code": "BE",
          "slug": "sint-job-in-t-goor",
          "canonical_path": "/cities/be/sint-job-in-t-goor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12035",
          "name": "Sint-Katelijne-Waver",
          "country_code": "BE",
          "slug": "sint-katelijne-waver",
          "canonical_path": "/cities/be/sint-katelijne-waver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786638",
          "name": "Sint-Katherina-Lombeek",
          "country_code": "BE",
          "slug": "sint-katherina-lombeek",
          "canonical_path": "/cities/be/sint-katherina-lombeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786630",
          "name": "Sint-Kwintens-Lennik",
          "country_code": "BE",
          "slug": "sint-kwintens-lennik",
          "canonical_path": "/cities/be/sint-kwintens-lennik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:43014",
          "name": "Sint-Laureins",
          "country_code": "BE",
          "slug": "sint-laureins",
          "canonical_path": "/cities/be/sint-laureins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786622",
          "name": "Sint-Lenaarts",
          "country_code": "BE",
          "slug": "sint-lenaarts",
          "canonical_path": "/cities/be/sint-lenaarts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:41063",
          "name": "Sint-Lievens-Houtem",
          "country_code": "BE",
          "slug": "sint-lievens-houtem",
          "canonical_path": "/cities/be/sint-lievens-houtem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786603",
          "name": "Sint-Maria-Lierde",
          "country_code": "BE",
          "slug": "sint-maria-lierde",
          "canonical_path": "/cities/be/sint-maria-lierde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44064",
          "name": "Sint-Martens-Latem",
          "country_code": "BE",
          "slug": "sint-martens-latem",
          "canonical_path": "/cities/be/sint-martens-latem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786587",
          "name": "Sint-Martens-Lennik",
          "country_code": "BE",
          "slug": "sint-martens-lennik",
          "canonical_path": "/cities/be/sint-martens-lennik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786578",
          "name": "Sint-Niklaas",
          "country_code": "BE",
          "slug": "sint-niklaas",
          "canonical_path": "/cities/be/sint-niklaas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23077",
          "name": "Sint-Pieters-Leeuw",
          "country_code": "BE",
          "slug": "sint-pieters-leeuw",
          "canonical_path": "/cities/be/sint-pieters-leeuw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786548",
          "name": "Sint-Stevens-Woluwe",
          "country_code": "BE",
          "slug": "sint-stevens-woluwe",
          "canonical_path": "/cities/be/sint-stevens-woluwe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786545",
          "name": "Sint-Truiden",
          "country_code": "BE",
          "slug": "sint-truiden",
          "canonical_path": "/cities/be/sint-truiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786516",
          "name": "Sleidinge",
          "country_code": "BE",
          "slug": "sleidinge",
          "canonical_path": "/cities/be/sleidinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:55040",
          "name": "Soignies",
          "country_code": "BE",
          "slug": "soignies",
          "canonical_path": "/cities/be/soignies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:92114",
          "name": "Sombreffe",
          "country_code": "BE",
          "slug": "sombreffe",
          "canonical_path": "/cities/be/sombreffe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91120",
          "name": "Somme-Leuze",
          "country_code": "BE",
          "slug": "somme-leuze",
          "canonical_path": "/cities/be/somme-leuze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62099",
          "name": "Soumagne",
          "country_code": "BE",
          "slug": "soumagne",
          "canonical_path": "/cities/be/soumagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63072",
          "name": "Spa",
          "country_code": "BE",
          "slug": "spa",
          "canonical_path": "/cities/be/spa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62100",
          "name": "Sprimont",
          "country_code": "BE",
          "slug": "sprimont",
          "canonical_path": "/cities/be/sprimont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11044",
          "name": "Stabroek",
          "country_code": "BE",
          "slug": "stabroek",
          "canonical_path": "/cities/be/stabroek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:36019",
          "name": "Staden",
          "country_code": "BE",
          "slug": "staden",
          "canonical_path": "/cities/be/staden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63073",
          "name": "Stavelot",
          "country_code": "BE",
          "slug": "stavelot",
          "canonical_path": "/cities/be/stavelot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23081",
          "name": "Steenokkerzeel",
          "country_code": "BE",
          "slug": "steenokkerzeel",
          "canonical_path": "/cities/be/steenokkerzeel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:46024",
          "name": "Stekene",
          "country_code": "BE",
          "slug": "stekene",
          "canonical_path": "/cities/be/stekene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786080",
          "name": "Stembert",
          "country_code": "BE",
          "slug": "stembert",
          "canonical_path": "/cities/be/stembert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2786055",
          "name": "Sterrebeek",
          "country_code": "BE",
          "slug": "sterrebeek",
          "canonical_path": "/cities/be/sterrebeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785962",
          "name": "Strépy-Bracquegnies",
          "country_code": "BE",
          "slug": "strepy-bracquegnies",
          "canonical_path": "/cities/be/strepy-bracquegnies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785949",
          "name": "Strombeek-Bever",
          "country_code": "BE",
          "slug": "strombeek-bever",
          "canonical_path": "/cities/be/strombeek-bever/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785839",
          "name": "Tamines",
          "country_code": "BE",
          "slug": "tamines",
          "canonical_path": "/cities/be/tamines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785778",
          "name": "Temse",
          "country_code": "BE",
          "slug": "temse-vlg-vov",
          "canonical_path": "/cities/be/temse-vlg-vov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23086",
          "name": "Ternat",
          "country_code": "BE",
          "slug": "ternat",
          "canonical_path": "/cities/be/ternat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24104",
          "name": "Tervuren",
          "country_code": "BE",
          "slug": "tervuren",
          "canonical_path": "/cities/be/tervuren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785612",
          "name": "Tessenderlo",
          "country_code": "BE",
          "slug": "tessenderlo",
          "canonical_path": "/cities/be/tessenderlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63076",
          "name": "Theux",
          "country_code": "BE",
          "slug": "theux",
          "canonical_path": "/cities/be/theux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63089",
          "name": "Thimister-Clermont",
          "country_code": "BE",
          "slug": "thimister-clermont",
          "canonical_path": "/cities/be/thimister-clermont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:56078",
          "name": "Thuin",
          "country_code": "BE",
          "slug": "thuin",
          "canonical_path": "/cities/be/thuin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785476",
          "name": "Tielt",
          "country_code": "BE",
          "slug": "tielt",
          "canonical_path": "/cities/be/tielt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785477",
          "name": "Tielt",
          "country_code": "BE",
          "slug": "tielt-vlg-vbr",
          "canonical_path": "/cities/be/tielt-vlg-vbr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:37022",
          "name": "Tielt (Tielt)",
          "country_code": "BE",
          "slug": "tielt-tielt",
          "canonical_path": "/cities/be/tielt-tielt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24135",
          "name": "Tielt-Winge",
          "country_code": "BE",
          "slug": "tielt-winge",
          "canonical_path": "/cities/be/tielt-winge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785470",
          "name": "Tienen",
          "country_code": "BE",
          "slug": "tienen-vlg-vbr",
          "canonical_path": "/cities/be/tienen-vlg-vbr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785449",
          "name": "Tilff",
          "country_code": "BE",
          "slug": "tilff",
          "canonical_path": "/cities/be/tilff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785389",
          "name": "Tongeren",
          "country_code": "BE",
          "slug": "tongeren",
          "canonical_path": "/cities/be/tongeren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785385",
          "name": "Tongerlo",
          "country_code": "BE",
          "slug": "tongerlo",
          "canonical_path": "/cities/be/tongerlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:31033",
          "name": "Torhout",
          "country_code": "BE",
          "slug": "torhout",
          "canonical_path": "/cities/be/torhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785305",
          "name": "Trazegnies",
          "country_code": "BE",
          "slug": "trazegnies",
          "canonical_path": "/cities/be/trazegnies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:24109",
          "name": "Tremelo",
          "country_code": "BE",
          "slug": "tremelo",
          "canonical_path": "/cities/be/tremelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62122",
          "name": "Trooz",
          "country_code": "BE",
          "slug": "trooz",
          "canonical_path": "/cities/be/trooz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25105",
          "name": "Tubize",
          "country_code": "BE",
          "slug": "tubize",
          "canonical_path": "/cities/be/tubize/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13040",
          "name": "Turnhout",
          "country_code": "BE",
          "slug": "turnhout",
          "canonical_path": "/cities/be/turnhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21016",
          "name": "Uccle",
          "country_code": "BE",
          "slug": "uccle",
          "canonical_path": "/cities/be/uccle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785103",
          "name": "Uitkerke",
          "country_code": "BE",
          "slug": "uitkerke",
          "canonical_path": "/cities/be/uitkerke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2785021",
          "name": "Varsenare",
          "country_code": "BE",
          "slug": "varsenare",
          "canonical_path": "/cities/be/varsenare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784996",
          "name": "Vaux-sous-Chèvremont",
          "country_code": "BE",
          "slug": "vaux-sous-chevremont",
          "canonical_path": "/cities/be/vaux-sous-chevremont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:82036",
          "name": "Vaux-sur-Sûre",
          "country_code": "BE",
          "slug": "vaux-sur-sure",
          "canonical_path": "/cities/be/vaux-sur-sure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784957",
          "name": "Veldegem",
          "country_code": "BE",
          "slug": "veldegem",
          "canonical_path": "/cities/be/veldegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63079",
          "name": "Verviers",
          "country_code": "BE",
          "slug": "verviers",
          "canonical_path": "/cities/be/verviers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784804",
          "name": "Veurne",
          "country_code": "BE",
          "slug": "veurne",
          "canonical_path": "/cities/be/veurne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:82032",
          "name": "Vielsalm",
          "country_code": "BE",
          "slug": "vielsalm",
          "canonical_path": "/cities/be/vielsalm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25107",
          "name": "Villers-la-Ville",
          "country_code": "BE",
          "slug": "villers-la-ville",
          "canonical_path": "/cities/be/villers-la-ville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61068",
          "name": "Villers-Le-Bouillet",
          "country_code": "BE",
          "slug": "villers-le-bouillet",
          "canonical_path": "/cities/be/villers-le-bouillet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784604",
          "name": "Vilvoorde",
          "country_code": "BE",
          "slug": "vilvoorde-vlg-vbr",
          "canonical_path": "/cities/be/vilvoorde-vlg-vbr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:93090",
          "name": "Viroinval",
          "country_code": "BE",
          "slug": "viroinval",
          "canonical_path": "/cities/be/viroinval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:85045",
          "name": "Virton",
          "country_code": "BE",
          "slug": "virton",
          "canonical_path": "/cities/be/virton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:62108",
          "name": "Visé",
          "country_code": "BE",
          "slug": "vise",
          "canonical_path": "/cities/be/vise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13044",
          "name": "Vorselaar",
          "country_code": "BE",
          "slug": "vorselaar",
          "canonical_path": "/cities/be/vorselaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784364",
          "name": "Vorst",
          "country_code": "BE",
          "slug": "vorst",
          "canonical_path": "/cities/be/vorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13046",
          "name": "Vosselaar",
          "country_code": "BE",
          "slug": "vosselaar",
          "canonical_path": "/cities/be/vosselaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784333",
          "name": "Vottem",
          "country_code": "BE",
          "slug": "vottem",
          "canonical_path": "/cities/be/vottem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784237",
          "name": "Waarschoot",
          "country_code": "BE",
          "slug": "waarschoot",
          "canonical_path": "/cities/be/waarschoot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:42023",
          "name": "Waasmunster",
          "country_code": "BE",
          "slug": "waasmunster",
          "canonical_path": "/cities/be/waasmunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784227",
          "name": "Wachtebeke",
          "country_code": "BE",
          "slug": "wachtebeke",
          "canonical_path": "/cities/be/wachtebeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63080",
          "name": "Waimes",
          "country_code": "BE",
          "slug": "waimes",
          "canonical_path": "/cities/be/waimes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:93088",
          "name": "Walcourt",
          "country_code": "BE",
          "slug": "walcourt",
          "canonical_path": "/cities/be/walcourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25124",
          "name": "Walhain",
          "country_code": "BE",
          "slug": "walhain",
          "canonical_path": "/cities/be/walhain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784168",
          "name": "Walhain-Saint-Paul",
          "country_code": "BE",
          "slug": "walhain-saint-paul",
          "canonical_path": "/cities/be/walhain-saint-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784111",
          "name": "Wanfercée-Baulet",
          "country_code": "BE",
          "slug": "wanfercee-baulet",
          "canonical_path": "/cities/be/wanfercee-baulet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:61072",
          "name": "Wanze",
          "country_code": "BE",
          "slug": "wanze",
          "canonical_path": "/cities/be/wanze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:34040",
          "name": "Waregem",
          "country_code": "BE",
          "slug": "waregem",
          "canonical_path": "/cities/be/waregem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:64074",
          "name": "Waremme",
          "country_code": "BE",
          "slug": "waremme",
          "canonical_path": "/cities/be/waremme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2784019",
          "name": "Wasmes",
          "country_code": "BE",
          "slug": "wasmes",
          "canonical_path": "/cities/be/wasmes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:25110",
          "name": "Waterloo",
          "country_code": "BE",
          "slug": "waterloo",
          "canonical_path": "/cities/be/waterloo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21017",
          "name": "Watermael-Boitsfort",
          "country_code": "BE",
          "slug": "watermael-boitsfort",
          "canonical_path": "/cities/be/watermael-boitsfort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:63084",
          "name": "Welkenraedt",
          "country_code": "BE",
          "slug": "welkenraedt",
          "canonical_path": "/cities/be/welkenraedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:73098",
          "name": "Wellen",
          "country_code": "BE",
          "slug": "wellen",
          "canonical_path": "/cities/be/wellen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23102",
          "name": "Wemmel",
          "country_code": "BE",
          "slug": "wemmel",
          "canonical_path": "/cities/be/wemmel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:33029",
          "name": "Wervik",
          "country_code": "BE",
          "slug": "wervik",
          "canonical_path": "/cities/be/wervik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783805",
          "name": "Westende",
          "country_code": "BE",
          "slug": "westende",
          "canonical_path": "/cities/be/westende/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:13049",
          "name": "Westerlo",
          "country_code": "BE",
          "slug": "westerlo",
          "canonical_path": "/cities/be/westerlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783786",
          "name": "Westmalle",
          "country_code": "BE",
          "slug": "westmalle",
          "canonical_path": "/cities/be/westmalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:42025",
          "name": "Wetteren",
          "country_code": "BE",
          "slug": "wetteren",
          "canonical_path": "/cities/be/wetteren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:34041",
          "name": "Wevelgem",
          "country_code": "BE",
          "slug": "wevelgem",
          "canonical_path": "/cities/be/wevelgem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23103",
          "name": "Wezembeek-Oppem",
          "country_code": "BE",
          "slug": "wezembeek-oppem",
          "canonical_path": "/cities/be/wezembeek-oppem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:42026",
          "name": "Wichelen",
          "country_code": "BE",
          "slug": "wichelen",
          "canonical_path": "/cities/be/wichelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:37017",
          "name": "Wielsbeke",
          "country_code": "BE",
          "slug": "wielsbeke",
          "canonical_path": "/cities/be/wielsbeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11050",
          "name": "Wijnegem",
          "country_code": "BE",
          "slug": "wijnegem",
          "canonical_path": "/cities/be/wijnegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:12040",
          "name": "Willebroek",
          "country_code": "BE",
          "slug": "willebroek",
          "canonical_path": "/cities/be/willebroek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:37021",
          "name": "Wingene",
          "country_code": "BE",
          "slug": "wingene",
          "canonical_path": "/cities/be/wingene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21018",
          "name": "Woluwe-Saint-Lambert",
          "country_code": "BE",
          "slug": "woluwe-saint-lambert",
          "canonical_path": "/cities/be/woluwe-saint-lambert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:21019",
          "name": "Woluwe-Saint-Pierre",
          "country_code": "BE",
          "slug": "woluwe-saint-pierre",
          "canonical_path": "/cities/be/woluwe-saint-pierre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783464",
          "name": "Wolvertem",
          "country_code": "BE",
          "slug": "wolvertem",
          "canonical_path": "/cities/be/wolvertem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11052",
          "name": "Wommelgem",
          "country_code": "BE",
          "slug": "wommelgem",
          "canonical_path": "/cities/be/wommelgem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:45061",
          "name": "Wortegem-Petegem",
          "country_code": "BE",
          "slug": "wortegem-petegem",
          "canonical_path": "/cities/be/wortegem-petegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11053",
          "name": "Wuustwezel",
          "country_code": "BE",
          "slug": "wuustwezel",
          "canonical_path": "/cities/be/wuustwezel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:91141",
          "name": "Yvoir",
          "country_code": "BE",
          "slug": "yvoir",
          "canonical_path": "/cities/be/yvoir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11054",
          "name": "Zandhoven",
          "country_code": "BE",
          "slug": "zandhoven",
          "canonical_path": "/cities/be/zandhoven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23094",
          "name": "Zaventem",
          "country_code": "BE",
          "slug": "zaventem",
          "canonical_path": "/cities/be/zaventem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:31040",
          "name": "Zedelgem",
          "country_code": "BE",
          "slug": "zedelgem",
          "canonical_path": "/cities/be/zedelgem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:42028",
          "name": "Zele",
          "country_code": "BE",
          "slug": "zele",
          "canonical_path": "/cities/be/zele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783284",
          "name": "Zellik",
          "country_code": "BE",
          "slug": "zellik",
          "canonical_path": "/cities/be/zellik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:43018",
          "name": "Zelzate",
          "country_code": "BE",
          "slug": "zelzate",
          "canonical_path": "/cities/be/zelzate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:23096",
          "name": "Zemst",
          "country_code": "BE",
          "slug": "zemst",
          "canonical_path": "/cities/be/zemst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783215",
          "name": "Zingem",
          "country_code": "BE",
          "slug": "zingem",
          "canonical_path": "/cities/be/zingem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:11055",
          "name": "Zoersel",
          "country_code": "BE",
          "slug": "zoersel",
          "canonical_path": "/cities/be/zoersel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783197",
          "name": "Zolder",
          "country_code": "BE",
          "slug": "zolder",
          "canonical_path": "/cities/be/zolder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783195",
          "name": "Zomergem",
          "country_code": "BE",
          "slug": "zomergem",
          "canonical_path": "/cities/be/zomergem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71066",
          "name": "Zonhoven",
          "country_code": "BE",
          "slug": "zonhoven",
          "canonical_path": "/cities/be/zonhoven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:33037",
          "name": "Zonnebeke",
          "country_code": "BE",
          "slug": "zonnebeke",
          "canonical_path": "/cities/be/zonnebeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:41081",
          "name": "Zottegem",
          "country_code": "BE",
          "slug": "zottegem",
          "canonical_path": "/cities/be/zottegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783170",
          "name": "Zoutleeuw",
          "country_code": "BE",
          "slug": "zoutleeuw",
          "canonical_path": "/cities/be/zoutleeuw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:44081",
          "name": "Zulte",
          "country_code": "BE",
          "slug": "zulte",
          "canonical_path": "/cities/be/zulte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:71067",
          "name": "Zutendaal",
          "country_code": "BE",
          "slug": "zutendaal",
          "canonical_path": "/cities/be/zutendaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:nis5:34042",
          "name": "Zwevegem",
          "country_code": "BE",
          "slug": "zwevegem",
          "canonical_path": "/cities/be/zwevegem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783087",
          "name": "Zwevezele",
          "country_code": "BE",
          "slug": "zwevezele",
          "canonical_path": "/cities/be/zwevezele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:be:geonames:2783081",
          "name": "Zwijndrecht",
          "country_code": "BE",
          "slug": "zwijndrecht",
          "canonical_path": "/cities/be/zwijndrecht/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "BG",
      "path": "cities/bg.json",
      "city_count": 9,
      "cities": [
        {
          "entity_id": "city:bg:geonames:733716",
          "name": "Aksakovo",
          "country_code": "BG",
          "slug": "aksakovo",
          "canonical_path": "/cities/bg/aksakovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:bg:geonames:725213",
          "name": "Beloslav",
          "country_code": "BG",
          "slug": "beloslav",
          "canonical_path": "/cities/bg/beloslav/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:bg:geonames:732627",
          "name": "Chepelare",
          "country_code": "BG",
          "slug": "chepelare",
          "canonical_path": "/cities/bg/chepelare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:bg:geonames:730084",
          "name": "Kostinbrod",
          "country_code": "BG",
          "slug": "kostinbrod",
          "canonical_path": "/cities/bg/kostinbrod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:bg:geonames:728321",
          "name": "Perushtitsa",
          "country_code": "BG",
          "slug": "perushtitsa",
          "canonical_path": "/cities/bg/perushtitsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:bg:geonames:727832",
          "name": "Radomir",
          "country_code": "BG",
          "slug": "radomir",
          "canonical_path": "/cities/bg/radomir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:bg:wikidata:Q472",
          "name": "Sofia",
          "country_code": "BG",
          "slug": "sofia",
          "canonical_path": "/cities/bg/sofia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:bg:geonames:726287",
          "name": "Tryavna",
          "country_code": "BG",
          "slug": "tryavna",
          "canonical_path": "/cities/bg/tryavna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:bg:geonames:725993",
          "name": "Veliko Tŭrnovo",
          "country_code": "BG",
          "slug": "veliko-turnovo",
          "canonical_path": "/cities/bg/veliko-turnovo/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "CA",
      "path": "cities/ca.json",
      "city_count": 485,
      "cities": [
        {
          "entity_id": "city:ca:geonames:5882142",
          "name": "Acton Vale",
          "country_code": "CA",
          "slug": "acton-vale",
          "canonical_path": "/cities/ca/acton-vale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5882534",
          "name": "Agassiz",
          "country_code": "CA",
          "slug": "agassiz",
          "canonical_path": "/cities/ca/agassiz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:airdrie",
          "name": "Airdrie",
          "country_code": "CA",
          "slug": "airdrie",
          "canonical_path": "/cities/ca/airdrie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2124098",
          "name": "Ajax",
          "country_code": "CA",
          "slug": "ajax",
          "canonical_path": "/cities/ca/ajax/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:7669018",
          "name": "Aldergrove",
          "country_code": "CA",
          "slug": "aldergrove",
          "canonical_path": "/cities/ca/aldergrove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5884083",
          "name": "Alma",
          "country_code": "CA",
          "slug": "alma",
          "canonical_path": "/cities/ca/alma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8125781",
          "name": "Almonte",
          "country_code": "CA",
          "slug": "almonte",
          "canonical_path": "/cities/ca/almonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5884467",
          "name": "Amherst",
          "country_code": "CA",
          "slug": "amherst",
          "canonical_path": "/cities/ca/amherst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2094619",
          "name": "Amherstburg",
          "country_code": "CA",
          "slug": "amherstburg",
          "canonical_path": "/cities/ca/amherstburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5884588",
          "name": "Amos",
          "country_code": "CA",
          "slug": "amos",
          "canonical_path": "/cities/ca/amos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6943488",
          "name": "Amqui",
          "country_code": "CA",
          "slug": "amqui",
          "canonical_path": "/cities/ca/amqui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8285452",
          "name": "Ancaster",
          "country_code": "CA",
          "slug": "ancaster",
          "canonical_path": "/cities/ca/ancaster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5886182",
          "name": "Antigonish",
          "country_code": "CA",
          "slug": "antigonish",
          "canonical_path": "/cities/ca/antigonish/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5887048",
          "name": "Armstrong",
          "country_code": "CA",
          "slug": "armstrong",
          "canonical_path": "/cities/ca/armstrong/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5887214",
          "name": "Arnprior",
          "country_code": "CA",
          "slug": "arnprior",
          "canonical_path": "/cities/ca/arnprior/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:aurora",
          "name": "Aurora",
          "country_code": "CA",
          "slug": "aurora",
          "canonical_path": "/cities/ca/aurora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5888716",
          "name": "Aylmer",
          "country_code": "CA",
          "slug": "aylmer",
          "canonical_path": "/cities/ca/aylmer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5888737",
          "name": "Ayr",
          "country_code": "CA",
          "slug": "ayr",
          "canonical_path": "/cities/ca/ayr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5889745",
          "name": "Baie-Comeau",
          "country_code": "CA",
          "slug": "baie-comeau",
          "canonical_path": "/cities/ca/baie-comeau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6690232",
          "name": "Baie-Saint-Paul",
          "country_code": "CA",
          "slug": "baie-saint-paul",
          "canonical_path": "/cities/ca/baie-saint-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5892532",
          "name": "Banff",
          "country_code": "CA",
          "slug": "banff",
          "canonical_path": "/cities/ca/banff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q203169",
          "name": "Barrie",
          "country_code": "CA",
          "slug": "barrie",
          "canonical_path": "/cities/ca/barrie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6696259",
          "name": "Bathurst",
          "country_code": "CA",
          "slug": "bathurst",
          "canonical_path": "/cities/ca/bathurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5895424",
          "name": "Bay Roberts",
          "country_code": "CA",
          "slug": "bay-roberts",
          "canonical_path": "/cities/ca/bay-roberts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5895650",
          "name": "Beaconsfield",
          "country_code": "CA",
          "slug": "beaconsfield",
          "canonical_path": "/cities/ca/beaconsfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592165",
          "name": "Beaubassin East",
          "country_code": "CA",
          "slug": "beaubassin-east",
          "canonical_path": "/cities/ca/beaubassin-east/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6295855",
          "name": "Beauceville",
          "country_code": "CA",
          "slug": "beauceville",
          "canonical_path": "/cities/ca/beauceville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5896495",
          "name": "Beauharnois",
          "country_code": "CA",
          "slug": "beauharnois",
          "canonical_path": "/cities/ca/beauharnois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592157",
          "name": "Beaurivage",
          "country_code": "CA",
          "slug": "beaurivage",
          "canonical_path": "/cities/ca/beaurivage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592161",
          "name": "Beausoleil",
          "country_code": "CA",
          "slug": "beausoleil",
          "canonical_path": "/cities/ca/beausoleil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5897209",
          "name": "Bécancour",
          "country_code": "CA",
          "slug": "becancour",
          "canonical_path": "/cities/ca/becancour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5897865",
          "name": "Belle River",
          "country_code": "CA",
          "slug": "belle-river",
          "canonical_path": "/cities/ca/belle-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592147",
          "name": "Belle-Baie",
          "country_code": "CA",
          "slug": "belle-baie",
          "canonical_path": "/cities/ca/belle-baie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q202858",
          "name": "Belleville",
          "country_code": "CA",
          "slug": "belleville",
          "canonical_path": "/cities/ca/belleville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:beloeil",
          "name": "Beloeil",
          "country_code": "CA",
          "slug": "beloeil",
          "canonical_path": "/cities/ca/beloeil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5899368",
          "name": "Bible Hill",
          "country_code": "CA",
          "slug": "bible-hill",
          "canonical_path": "/cities/ca/bible-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5902599",
          "name": "Blackfalds",
          "country_code": "CA",
          "slug": "blackfalds",
          "canonical_path": "/cities/ca/blackfalds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5903510",
          "name": "Blainville",
          "country_code": "CA",
          "slug": "blainville",
          "canonical_path": "/cities/ca/blainville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5904501",
          "name": "Bluewater",
          "country_code": "CA",
          "slug": "bluewater",
          "canonical_path": "/cities/ca/bluewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5905152",
          "name": "Bois-des-Filion",
          "country_code": "CA",
          "slug": "bois-des-filion",
          "canonical_path": "/cities/ca/bois-des-filion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:boisbriand",
          "name": "Boisbriand",
          "country_code": "CA",
          "slug": "boisbriand",
          "canonical_path": "/cities/ca/boisbriand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6695248",
          "name": "Boischatel",
          "country_code": "CA",
          "slug": "boischatel",
          "canonical_path": "/cities/ca/boischatel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5905616",
          "name": "Bonnyville",
          "country_code": "CA",
          "slug": "bonnyville",
          "canonical_path": "/cities/ca/bonnyville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:boucherville",
          "name": "Boucherville",
          "country_code": "CA",
          "slug": "boucherville",
          "canonical_path": "/cities/ca/boucherville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5907092",
          "name": "Bracebridge",
          "country_code": "CA",
          "slug": "bracebridge",
          "canonical_path": "/cities/ca/bracebridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:bradford-west-gwillimbury",
          "name": "Bradford West Gwillimbury",
          "country_code": "CA",
          "slug": "bradford-west-gwillimbury",
          "canonical_path": "/cities/ca/bradford-west-gwillimbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q5783",
          "name": "Brampton",
          "country_code": "CA",
          "slug": "brampton",
          "canonical_path": "/cities/ca/brampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:brandon",
          "name": "Brandon",
          "country_code": "CA",
          "slug": "brandon",
          "canonical_path": "/cities/ca/brandon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q1995",
          "name": "Brantford",
          "country_code": "CA",
          "slug": "brantford",
          "canonical_path": "/cities/ca/brantford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5908723",
          "name": "Bridgewater",
          "country_code": "CA",
          "slug": "bridgewater",
          "canonical_path": "/cities/ca/bridgewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:brockville",
          "name": "Brockville",
          "country_code": "CA",
          "slug": "brockville",
          "canonical_path": "/cities/ca/brockville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5909514",
          "name": "Brooks",
          "country_code": "CA",
          "slug": "brooks",
          "canonical_path": "/cities/ca/brooks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:brossard",
          "name": "Brossard",
          "country_code": "CA",
          "slug": "brossard",
          "canonical_path": "/cities/ca/brossard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5909969",
          "name": "Brownsburg-Chatham",
          "country_code": "CA",
          "slug": "brownsburg-chatham",
          "canonical_path": "/cities/ca/brownsburg-chatham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2017",
          "name": "Burnaby",
          "country_code": "CA",
          "slug": "burnaby",
          "canonical_path": "/cities/ca/burnaby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592171",
          "name": "Butternut Valley",
          "country_code": "CA",
          "slug": "butternut-valley",
          "canonical_path": "/cities/ca/butternut-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5913934",
          "name": "Camlachie",
          "country_code": "CA",
          "slug": "camlachie",
          "canonical_path": "/cities/ca/camlachie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:campbell-river",
          "name": "Campbell River",
          "country_code": "CA",
          "slug": "campbell-river",
          "canonical_path": "/cities/ca/campbell-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6696258",
          "name": "Campbellton",
          "country_code": "CA",
          "slug": "campbellton",
          "canonical_path": "/cities/ca/campbellton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5914653",
          "name": "Camrose",
          "country_code": "CA",
          "slug": "camrose",
          "canonical_path": "/cities/ca/camrose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:candiac",
          "name": "Candiac",
          "country_code": "CA",
          "slug": "candiac",
          "canonical_path": "/cities/ca/candiac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5914894",
          "name": "Canmore",
          "country_code": "CA",
          "slug": "canmore",
          "canonical_path": "/cities/ca/canmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5915148",
          "name": "Cantley",
          "country_code": "CA",
          "slug": "cantley",
          "canonical_path": "/cities/ca/cantley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5915327",
          "name": "Cap-aux-Meules",
          "country_code": "CA",
          "slug": "cap-aux-meules",
          "canonical_path": "/cities/ca/cap-aux-meules/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5917117",
          "name": "Carignan",
          "country_code": "CA",
          "slug": "carignan",
          "canonical_path": "/cities/ca/carignan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592183",
          "name": "Carleton North",
          "country_code": "CA",
          "slug": "carleton-north",
          "canonical_path": "/cities/ca/carleton-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5917158",
          "name": "Carleton Place",
          "country_code": "CA",
          "slug": "carleton-place",
          "canonical_path": "/cities/ca/carleton-place/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5918118",
          "name": "Castlegar",
          "country_code": "CA",
          "slug": "castlegar",
          "canonical_path": "/cities/ca/castlegar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5919137",
          "name": "Central Saanich",
          "country_code": "CA",
          "slug": "central-saanich",
          "canonical_path": "/cities/ca/central-saanich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592178",
          "name": "Central York",
          "country_code": "CA",
          "slug": "central-york",
          "canonical_path": "/cities/ca/central-york/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592160",
          "name": "Champdoré",
          "country_code": "CA",
          "slug": "champdore",
          "canonical_path": "/cities/ca/champdore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6943811",
          "name": "Chandler",
          "country_code": "CA",
          "slug": "chandler",
          "canonical_path": "/cities/ca/chandler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5920089",
          "name": "Charlemagne",
          "country_code": "CA",
          "slug": "charlemagne",
          "canonical_path": "/cities/ca/charlemagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:charlottetown",
          "name": "Charlottetown",
          "country_code": "CA",
          "slug": "charlottetown",
          "canonical_path": "/cities/ca/charlottetown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:chateauguay",
          "name": "Châteauguay",
          "country_code": "CA",
          "slug": "chateauguay",
          "canonical_path": "/cities/ca/chateauguay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5920457",
          "name": "Chatham",
          "country_code": "CA",
          "slug": "chatham",
          "canonical_path": "/cities/ca/chatham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5920652",
          "name": "Chelsea",
          "country_code": "CA",
          "slug": "chelsea",
          "canonical_path": "/cities/ca/chelsea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:chestermere",
          "name": "Chestermere",
          "country_code": "CA",
          "slug": "chestermere",
          "canonical_path": "/cities/ca/chestermere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5921147",
          "name": "Chibougamau",
          "country_code": "CA",
          "slug": "chibougamau",
          "canonical_path": "/cities/ca/chibougamau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2009",
          "name": "Chilliwack",
          "country_code": "CA",
          "slug": "chilliwack",
          "canonical_path": "/cities/ca/chilliwack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5921588",
          "name": "Chisasibi",
          "country_code": "CA",
          "slug": "chisasibi",
          "canonical_path": "/cities/ca/chisasibi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:clarence-rockland",
          "name": "Clarence-Rockland",
          "country_code": "CA",
          "slug": "clarence-rockland",
          "canonical_path": "/cities/ca/clarence-rockland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5923118",
          "name": "Clarenville",
          "country_code": "CA",
          "slug": "clarenville",
          "canonical_path": "/cities/ca/clarenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5924417",
          "name": "Coaldale",
          "country_code": "CA",
          "slug": "coaldale",
          "canonical_path": "/cities/ca/coaldale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5924500",
          "name": "Coaticook",
          "country_code": "CA",
          "slug": "coaticook",
          "canonical_path": "/cities/ca/coaticook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q202872",
          "name": "Cobourg",
          "country_code": "CA",
          "slug": "cobourg",
          "canonical_path": "/cities/ca/cobourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5925024",
          "name": "Cold Lake",
          "country_code": "CA",
          "slug": "cold-lake",
          "canonical_path": "/cities/ca/cold-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5925058",
          "name": "Coldstream",
          "country_code": "CA",
          "slug": "coldstream",
          "canonical_path": "/cities/ca/coldstream/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:collingwood",
          "name": "Collingwood",
          "country_code": "CA",
          "slug": "collingwood",
          "canonical_path": "/cities/ca/collingwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5926268",
          "name": "Colwood",
          "country_code": "CA",
          "slug": "colwood",
          "canonical_path": "/cities/ca/colwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5926432",
          "name": "Comox",
          "country_code": "CA",
          "slug": "comox",
          "canonical_path": "/cities/ca/comox/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:conception-bay-south",
          "name": "Conception Bay South",
          "country_code": "CA",
          "slug": "conception-bay-south",
          "canonical_path": "/cities/ca/conception-bay-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:contrecoeur",
          "name": "Contrecoeur",
          "country_code": "CA",
          "slug": "contrecoeur",
          "canonical_path": "/cities/ca/contrecoeur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5927235",
          "name": "Cookshire-Eaton",
          "country_code": "CA",
          "slug": "cookshire-eaton",
          "canonical_path": "/cities/ca/cookshire-eaton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:corner-brook",
          "name": "Corner Brook",
          "country_code": "CA",
          "slug": "corner-brook",
          "canonical_path": "/cities/ca/corner-brook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5928202",
          "name": "Corunna",
          "country_code": "CA",
          "slug": "corunna",
          "canonical_path": "/cities/ca/corunna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5928488",
          "name": "Côte-Saint-Luc",
          "country_code": "CA",
          "slug": "cote-saint-luc",
          "canonical_path": "/cities/ca/cote-saint-luc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5928337",
          "name": "Coteau-du-Lac",
          "country_code": "CA",
          "slug": "coteau-du-lac",
          "canonical_path": "/cities/ca/coteau-du-lac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:courtenay",
          "name": "Courtenay",
          "country_code": "CA",
          "slug": "courtenay",
          "canonical_path": "/cities/ca/courtenay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5931074",
          "name": "Cowansville",
          "country_code": "CA",
          "slug": "cowansville",
          "canonical_path": "/cities/ca/cowansville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:cranbrook",
          "name": "Cranbrook",
          "country_code": "CA",
          "slug": "cranbrook",
          "canonical_path": "/cities/ca/cranbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5932311",
          "name": "Creston",
          "country_code": "CA",
          "slug": "creston",
          "canonical_path": "/cities/ca/creston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5935341",
          "name": "Dauphin",
          "country_code": "CA",
          "slug": "dauphin",
          "canonical_path": "/cities/ca/dauphin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5935804",
          "name": "Dawson Creek",
          "country_code": "CA",
          "slug": "dawson-creek",
          "canonical_path": "/cities/ca/dawson-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5937252",
          "name": "Deer Lake",
          "country_code": "CA",
          "slug": "deer-lake",
          "canonical_path": "/cities/ca/deer-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5937612",
          "name": "Delson",
          "country_code": "CA",
          "slug": "delson",
          "canonical_path": "/cities/ca/delson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q1017298",
          "name": "Delta",
          "country_code": "CA",
          "slug": "delta",
          "canonical_path": "/cities/ca/delta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5938513",
          "name": "Deux-Montagnes",
          "country_code": "CA",
          "slug": "deux-montagnes",
          "canonical_path": "/cities/ca/deux-montagnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5938801",
          "name": "Devon",
          "country_code": "CA",
          "slug": "devon",
          "canonical_path": "/cities/ca/devon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5940934",
          "name": "Dolbeau-Mistassini",
          "country_code": "CA",
          "slug": "dolbeau-mistassini",
          "canonical_path": "/cities/ca/dolbeau-mistassini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5940956",
          "name": "Dollard-Des Ormeaux",
          "country_code": "CA",
          "slug": "dollard-des-ormeaux",
          "canonical_path": "/cities/ca/dollard-des-ormeaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:7535690",
          "name": "Donnacona",
          "country_code": "CA",
          "slug": "donnacona",
          "canonical_path": "/cities/ca/donnacona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5941761",
          "name": "Dorchester",
          "country_code": "CA",
          "slug": "dorchester",
          "canonical_path": "/cities/ca/dorchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5941925",
          "name": "Dorval",
          "country_code": "CA",
          "slug": "dorval",
          "canonical_path": "/cities/ca/dorval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5942099",
          "name": "Douglas",
          "country_code": "CA",
          "slug": "douglas",
          "canonical_path": "/cities/ca/douglas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5942547",
          "name": "Drayton Valley",
          "country_code": "CA",
          "slug": "drayton-valley",
          "canonical_path": "/cities/ca/drayton-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5942798",
          "name": "Drumheller",
          "country_code": "CA",
          "slug": "drumheller",
          "canonical_path": "/cities/ca/drumheller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:drummondville",
          "name": "Drummondville",
          "country_code": "CA",
          "slug": "drummondville",
          "canonical_path": "/cities/ca/drummondville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5942913",
          "name": "Dryden",
          "country_code": "CA",
          "slug": "dryden",
          "canonical_path": "/cities/ca/dryden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5943865",
          "name": "Duncan",
          "country_code": "CA",
          "slug": "duncan",
          "canonical_path": "/cities/ca/duncan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5944222",
          "name": "Dunnville",
          "country_code": "CA",
          "slug": "dunnville",
          "canonical_path": "/cities/ca/dunnville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:east-gwillimbury",
          "name": "East Gwillimbury",
          "country_code": "CA",
          "slug": "east-gwillimbury",
          "canonical_path": "/cities/ca/east-gwillimbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592175",
          "name": "Eastern Charlotte",
          "country_code": "CA",
          "slug": "eastern-charlotte",
          "canonical_path": "/cities/ca/eastern-charlotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2096",
          "name": "Edmonton",
          "country_code": "CA",
          "slug": "edmonton",
          "canonical_path": "/cities/ca/edmonton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6545023",
          "name": "Edmundston",
          "country_code": "CA",
          "slug": "edmundston",
          "canonical_path": "/cities/ca/edmundston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5946820",
          "name": "Edson",
          "country_code": "CA",
          "slug": "edson",
          "canonical_path": "/cities/ca/edson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5947866",
          "name": "Elliot Lake",
          "country_code": "CA",
          "slug": "elliot-lake",
          "canonical_path": "/cities/ca/elliot-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8617396",
          "name": "Embrun",
          "country_code": "CA",
          "slug": "embrun",
          "canonical_path": "/cities/ca/embrun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5948805",
          "name": "Enfield",
          "country_code": "CA",
          "slug": "enfield",
          "canonical_path": "/cities/ca/enfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5949247",
          "name": "Erin",
          "country_code": "CA",
          "slug": "erin",
          "canonical_path": "/cities/ca/erin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5949512",
          "name": "Esquimalt",
          "country_code": "CA",
          "slug": "esquimalt",
          "canonical_path": "/cities/ca/esquimalt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:essex",
          "name": "Essex",
          "country_code": "CA",
          "slug": "essex",
          "canonical_path": "/cities/ca/essex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5949568",
          "name": "Estevan",
          "country_code": "CA",
          "slug": "estevan",
          "canonical_path": "/cities/ca/estevan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5951644",
          "name": "Farnham",
          "country_code": "CA",
          "slug": "farnham",
          "canonical_path": "/cities/ca/farnham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:7871320",
          "name": "Fergus",
          "country_code": "CA",
          "slug": "fergus",
          "canonical_path": "/cities/ca/fergus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5952370",
          "name": "Fernie",
          "country_code": "CA",
          "slug": "fernie",
          "canonical_path": "/cities/ca/fernie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5954718",
          "name": "Flin Flon",
          "country_code": "CA",
          "slug": "flin-flon",
          "canonical_path": "/cities/ca/flin-flon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:fort-erie",
          "name": "Fort Erie",
          "country_code": "CA",
          "slug": "fort-erie",
          "canonical_path": "/cities/ca/fort-erie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5955826",
          "name": "Fort Frances",
          "country_code": "CA",
          "slug": "fort-frances",
          "canonical_path": "/cities/ca/fort-frances/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5955895",
          "name": "Fort McMurray",
          "country_code": "CA",
          "slug": "fort-mcmurray",
          "canonical_path": "/cities/ca/fort-mcmurray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:fort-saskatchewan",
          "name": "Fort Saskatchewan",
          "country_code": "CA",
          "slug": "fort-saskatchewan",
          "canonical_path": "/cities/ca/fort-saskatchewan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:fort-st-john",
          "name": "Fort St. John",
          "country_code": "CA",
          "slug": "fort-st-john",
          "canonical_path": "/cities/ca/fort-st-john/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592169",
          "name": "Fundy Albert",
          "country_code": "CA",
          "slug": "fundy-albert",
          "canonical_path": "/cities/ca/fundy-albert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592173",
          "name": "Fundy-St. Martins",
          "country_code": "CA",
          "slug": "fundy-st-martins",
          "canonical_path": "/cities/ca/fundy-st-martins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5959326",
          "name": "Gananoque",
          "country_code": "CA",
          "slug": "gananoque",
          "canonical_path": "/cities/ca/gananoque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5959335",
          "name": "Gander",
          "country_code": "CA",
          "slug": "gander",
          "canonical_path": "/cities/ca/gander/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5959360",
          "name": "Ganges",
          "country_code": "CA",
          "slug": "ganges",
          "canonical_path": "/cities/ca/ganges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5959878",
          "name": "Gaspé",
          "country_code": "CA",
          "slug": "gaspe",
          "canonical_path": "/cities/ca/gaspe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5960971",
          "name": "Gibsons",
          "country_code": "CA",
          "slug": "gibsons",
          "canonical_path": "/cities/ca/gibsons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5962442",
          "name": "Goderich",
          "country_code": "CA",
          "slug": "goderich",
          "canonical_path": "/cities/ca/goderich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:granby",
          "name": "Granby",
          "country_code": "CA",
          "slug": "granby",
          "canonical_path": "/cities/ca/granby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6621033",
          "name": "Grand Falls",
          "country_code": "CA",
          "slug": "grand-falls",
          "canonical_path": "/cities/ca/grand-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5964378",
          "name": "Grand Falls-Windsor",
          "country_code": "CA",
          "slug": "grand-falls-windsor",
          "canonical_path": "/cities/ca/grand-falls-windsor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592177",
          "name": "Grand Lake",
          "country_code": "CA",
          "slug": "grand-lake",
          "canonical_path": "/cities/ca/grand-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:grande-prairie",
          "name": "Grande Prairie",
          "country_code": "CA",
          "slug": "grande-prairie",
          "canonical_path": "/cities/ca/grande-prairie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5965546",
          "name": "Gravenhurst",
          "country_code": "CA",
          "slug": "gravenhurst",
          "canonical_path": "/cities/ca/gravenhurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5965812",
          "name": "Greater Napanee",
          "country_code": "CA",
          "slug": "greater-napanee",
          "canonical_path": "/cities/ca/greater-napanee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5966689",
          "name": "Greenwood",
          "country_code": "CA",
          "slug": "greenwood",
          "canonical_path": "/cities/ca/greenwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:grimsby",
          "name": "Grimsby",
          "country_code": "CA",
          "slug": "grimsby",
          "canonical_path": "/cities/ca/grimsby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2018",
          "name": "Guelph",
          "country_code": "CA",
          "slug": "guelph",
          "canonical_path": "/cities/ca/guelph/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5970014",
          "name": "Hampstead",
          "country_code": "CA",
          "slug": "hampstead",
          "canonical_path": "/cities/ca/hampstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5970063",
          "name": "Hanceville",
          "country_code": "CA",
          "slug": "hanceville",
          "canonical_path": "/cities/ca/hanceville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5970301",
          "name": "Hanover",
          "country_code": "CA",
          "slug": "hanover",
          "canonical_path": "/cities/ca/hanover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:12070760",
          "name": "Hanwell",
          "country_code": "CA",
          "slug": "hanwell",
          "canonical_path": "/cities/ca/hanwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5970458",
          "name": "Happy Valley-Goose Bay",
          "country_code": "CA",
          "slug": "happy-valley-goose-bay",
          "canonical_path": "/cities/ca/happy-valley-goose-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592151",
          "name": "Hautes-Terres",
          "country_code": "CA",
          "slug": "hautes-terres",
          "canonical_path": "/cities/ca/hautes-terres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5972360",
          "name": "Hawkesbury",
          "country_code": "CA",
          "slug": "hawkesbury",
          "canonical_path": "/cities/ca/hawkesbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592146",
          "name": "Heron Bay",
          "country_code": "CA",
          "slug": "heron-bay",
          "canonical_path": "/cities/ca/heron-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5975038",
          "name": "High River",
          "country_code": "CA",
          "slug": "high-river",
          "canonical_path": "/cities/ca/high-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5975503",
          "name": "Hinton",
          "country_code": "CA",
          "slug": "hinton",
          "canonical_path": "/cities/ca/hinton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5976783",
          "name": "Hope",
          "country_code": "CA",
          "slug": "hope",
          "canonical_path": "/cities/ca/hope/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5978126",
          "name": "Hudson",
          "country_code": "CA",
          "slug": "hudson",
          "canonical_path": "/cities/ca/hudson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:huntsville",
          "name": "Huntsville",
          "country_code": "CA",
          "slug": "huntsville",
          "canonical_path": "/cities/ca/huntsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5978831",
          "name": "Huron East",
          "country_code": "CA",
          "slug": "huron-east",
          "canonical_path": "/cities/ca/huron-east/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5983175",
          "name": "Ingersoll",
          "country_code": "CA",
          "slug": "ingersoll",
          "canonical_path": "/cities/ca/ingersoll/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5983430",
          "name": "Innisfail",
          "country_code": "CA",
          "slug": "innisfail",
          "canonical_path": "/cities/ca/innisfail/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:innisfil",
          "name": "Innisfil",
          "country_code": "CA",
          "slug": "innisfil",
          "canonical_path": "/cities/ca/innisfil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5983720",
          "name": "Iqaluit",
          "country_code": "CA",
          "slug": "iqaluit",
          "canonical_path": "/cities/ca/iqaluit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:joliette",
          "name": "Joliette",
          "country_code": "CA",
          "slug": "joliette",
          "canonical_path": "/cities/ca/joliette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:kamloops",
          "name": "Kamloops",
          "country_code": "CA",
          "slug": "kamloops",
          "canonical_path": "/cities/ca/kamloops/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5989403",
          "name": "Kapuskasing",
          "country_code": "CA",
          "slug": "kapuskasing",
          "canonical_path": "/cities/ca/kapuskasing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:kelowna",
          "name": "Kelowna",
          "country_code": "CA",
          "slug": "kelowna",
          "canonical_path": "/cities/ca/kelowna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5991055",
          "name": "Kenora",
          "country_code": "CA",
          "slug": "kenora",
          "canonical_path": "/cities/ca/kenora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5991148",
          "name": "Kentville",
          "country_code": "CA",
          "slug": "kentville",
          "canonical_path": "/cities/ca/kentville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5992059",
          "name": "Kimberley",
          "country_code": "CA",
          "slug": "kimberley",
          "canonical_path": "/cities/ca/kimberley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5992144",
          "name": "Kincardine",
          "country_code": "CA",
          "slug": "kincardine",
          "canonical_path": "/cities/ca/kincardine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:kingsville",
          "name": "Kingsville",
          "country_code": "CA",
          "slug": "kingsville",
          "canonical_path": "/cities/ca/kingsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5992830",
          "name": "Kirkland",
          "country_code": "CA",
          "slug": "kirkland",
          "canonical_path": "/cities/ca/kirkland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5992836",
          "name": "Kirkland Lake",
          "country_code": "CA",
          "slug": "kirkland-lake",
          "canonical_path": "/cities/ca/kirkland-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2155",
          "name": "Kitchener",
          "country_code": "CA",
          "slug": "kitchener",
          "canonical_path": "/cities/ca/kitchener/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5993072",
          "name": "Kitimat",
          "country_code": "CA",
          "slug": "kitimat",
          "canonical_path": "/cities/ca/kitimat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6534203",
          "name": "L'Ancienne-Lorette",
          "country_code": "CA",
          "slug": "l-ancienne-lorette",
          "canonical_path": "/cities/ca/l-ancienne-lorette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:l-assomption",
          "name": "L'Assomption",
          "country_code": "CA",
          "slug": "l-assomption",
          "canonical_path": "/cities/ca/l-assomption/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6053877",
          "name": "L'Île-Perrot",
          "country_code": "CA",
          "slug": "l-ile-perrot",
          "canonical_path": "/cities/ca/l-ile-perrot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6945986",
          "name": "La Malbaie",
          "country_code": "CA",
          "slug": "la-malbaie",
          "canonical_path": "/cities/ca/la-malbaie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:la-prairie",
          "name": "La Prairie",
          "country_code": "CA",
          "slug": "la-prairie",
          "canonical_path": "/cities/ca/la-prairie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6050066",
          "name": "La Ronge",
          "country_code": "CA",
          "slug": "la-ronge",
          "canonical_path": "/cities/ca/la-ronge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6050194",
          "name": "La Sarre",
          "country_code": "CA",
          "slug": "la-sarre",
          "canonical_path": "/cities/ca/la-sarre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6050416",
          "name": "La Tuque",
          "country_code": "CA",
          "slug": "la-tuque",
          "canonical_path": "/cities/ca/la-tuque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5994839",
          "name": "Labrador City",
          "country_code": "CA",
          "slug": "labrador-city",
          "canonical_path": "/cities/ca/labrador-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6002133",
          "name": "Lac-Brome",
          "country_code": "CA",
          "slug": "lac-brome",
          "canonical_path": "/cities/ca/lac-brome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6032673",
          "name": "Lac-Mégantic",
          "country_code": "CA",
          "slug": "lac-megantic",
          "canonical_path": "/cities/ca/lac-megantic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6024829",
          "name": "Lachute",
          "country_code": "CA",
          "slug": "lachute",
          "canonical_path": "/cities/ca/lachute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6035615",
          "name": "Lacombe",
          "country_code": "CA",
          "slug": "lacombe",
          "canonical_path": "/cities/ca/lacombe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6047817",
          "name": "Ladysmith",
          "country_code": "CA",
          "slug": "ladysmith",
          "canonical_path": "/cities/ca/ladysmith/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:12070755",
          "name": "Lake Country",
          "country_code": "CA",
          "slug": "lake-country",
          "canonical_path": "/cities/ca/lake-country/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6049024",
          "name": "Lambton Shores",
          "country_code": "CA",
          "slug": "lambton-shores",
          "canonical_path": "/cities/ca/lambton-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:langford",
          "name": "Langford",
          "country_code": "CA",
          "slug": "langford",
          "canonical_path": "/cities/ca/langford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2582903",
          "name": "LaSalle",
          "country_code": "CA",
          "slug": "lasalle",
          "canonical_path": "/cities/ca/lasalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6050539",
          "name": "Laurentides",
          "country_code": "CA",
          "slug": "laurentides",
          "canonical_path": "/cities/ca/laurentides/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6050650",
          "name": "Lavaltrie",
          "country_code": "CA",
          "slug": "lavaltrie",
          "canonical_path": "/cities/ca/lavaltrie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q990828",
          "name": "Leamington",
          "country_code": "CA",
          "slug": "leamington",
          "canonical_path": "/cities/ca/leamington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:leduc",
          "name": "Leduc",
          "country_code": "CA",
          "slug": "leduc",
          "canonical_path": "/cities/ca/leduc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6052788",
          "name": "Les Coteaux",
          "country_code": "CA",
          "slug": "les-coteaux",
          "canonical_path": "/cities/ca/les-coteaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:lethbridge",
          "name": "Lethbridge",
          "country_code": "CA",
          "slug": "lethbridge",
          "canonical_path": "/cities/ca/lethbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q202894",
          "name": "London",
          "country_code": "CA",
          "slug": "london",
          "canonical_path": "/cities/ca/london/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6060407",
          "name": "Lorraine",
          "country_code": "CA",
          "slug": "lorraine",
          "canonical_path": "/cities/ca/lorraine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6060839",
          "name": "Louiseville",
          "country_code": "CA",
          "slug": "louiseville",
          "canonical_path": "/cities/ca/louiseville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6062163",
          "name": "Lutes Mountain",
          "country_code": "CA",
          "slug": "lutes-mountain",
          "canonical_path": "/cities/ca/lutes-mountain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:magog",
          "name": "Magog",
          "country_code": "CA",
          "slug": "magog",
          "canonical_path": "/cities/ca/magog/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592162",
          "name": "Maple Hills",
          "country_code": "CA",
          "slug": "maple-hills",
          "canonical_path": "/cities/ca/maple-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:maple-ridge",
          "name": "Maple Ridge",
          "country_code": "CA",
          "slug": "maple-ridge",
          "canonical_path": "/cities/ca/maple-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6066350",
          "name": "Marieville",
          "country_code": "CA",
          "slug": "marieville",
          "canonical_path": "/cities/ca/marieville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2150",
          "name": "Markham",
          "country_code": "CA",
          "slug": "markham",
          "canonical_path": "/cities/ca/markham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6067033",
          "name": "Martensville",
          "country_code": "CA",
          "slug": "martensville",
          "canonical_path": "/cities/ca/martensville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6067472",
          "name": "Marystown",
          "country_code": "CA",
          "slug": "marystown",
          "canonical_path": "/cities/ca/marystown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:mascouche",
          "name": "Mascouche",
          "country_code": "CA",
          "slug": "mascouche",
          "canonical_path": "/cities/ca/mascouche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6696260",
          "name": "Matane",
          "country_code": "CA",
          "slug": "matane",
          "canonical_path": "/cities/ca/matane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6070782",
          "name": "McMasterville",
          "country_code": "CA",
          "slug": "mcmasterville",
          "canonical_path": "/cities/ca/mcmasterville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6071421",
          "name": "Meadow Lake",
          "country_code": "CA",
          "slug": "meadow-lake",
          "canonical_path": "/cities/ca/meadow-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:medicine-hat",
          "name": "Medicine Hat",
          "country_code": "CA",
          "slug": "medicine-hat",
          "canonical_path": "/cities/ca/medicine-hat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6071876",
          "name": "Melfort",
          "country_code": "CA",
          "slug": "melfort",
          "canonical_path": "/cities/ca/melfort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6072045",
          "name": "Memramcook",
          "country_code": "CA",
          "slug": "memramcook",
          "canonical_path": "/cities/ca/memramcook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6072206",
          "name": "Mercier",
          "country_code": "CA",
          "slug": "mercier",
          "canonical_path": "/cities/ca/mercier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6072350",
          "name": "Merritt",
          "country_code": "CA",
          "slug": "merritt",
          "canonical_path": "/cities/ca/merritt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6072482",
          "name": "Metchosin",
          "country_code": "CA",
          "slug": "metchosin",
          "canonical_path": "/cities/ca/metchosin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6073363",
          "name": "Midland",
          "country_code": "CA",
          "slug": "midland",
          "canonical_path": "/cities/ca/midland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6073743",
          "name": "Mill Bay",
          "country_code": "CA",
          "slug": "mill-bay",
          "canonical_path": "/cities/ca/mill-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q1002881",
          "name": "Milton",
          "country_code": "CA",
          "slug": "milton",
          "canonical_path": "/cities/ca/milton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6075081",
          "name": "Miramichi",
          "country_code": "CA",
          "slug": "miramichi",
          "canonical_path": "/cities/ca/miramichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:mission",
          "name": "Mission",
          "country_code": "CA",
          "slug": "mission",
          "canonical_path": "/cities/ca/mission/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q5748",
          "name": "Mississauga",
          "country_code": "CA",
          "slug": "mississauga",
          "canonical_path": "/cities/ca/mississauga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6075370",
          "name": "Mississippi Mills",
          "country_code": "CA",
          "slug": "mississippi-mills",
          "canonical_path": "/cities/ca/mississippi-mills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6944113",
          "name": "Mont-Joli",
          "country_code": "CA",
          "slug": "mont-joli",
          "canonical_path": "/cities/ca/mont-joli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6077128",
          "name": "Mont-Laurier",
          "country_code": "CA",
          "slug": "mont-laurier",
          "canonical_path": "/cities/ca/mont-laurier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6077315",
          "name": "Mont-Royal",
          "country_code": "CA",
          "slug": "mont-royal",
          "canonical_path": "/cities/ca/mont-royal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6077340",
          "name": "Mont-Saint-Hilaire",
          "country_code": "CA",
          "slug": "mont-saint-hilaire",
          "canonical_path": "/cities/ca/mont-saint-hilaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6077445",
          "name": "Mont-Tremblant",
          "country_code": "CA",
          "slug": "mont-tremblant",
          "canonical_path": "/cities/ca/mont-tremblant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6325529",
          "name": "Montmagny",
          "country_code": "CA",
          "slug": "montmagny",
          "canonical_path": "/cities/ca/montmagny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6077265",
          "name": "Montréal-Ouest",
          "country_code": "CA",
          "slug": "montreal-ouest",
          "canonical_path": "/cities/ca/montreal-ouest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:moose-jaw",
          "name": "Moose Jaw",
          "country_code": "CA",
          "slug": "moose-jaw",
          "canonical_path": "/cities/ca/moose-jaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6078447",
          "name": "Morden",
          "country_code": "CA",
          "slug": "morden",
          "canonical_path": "/cities/ca/morden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6078636",
          "name": "Morinville",
          "country_code": "CA",
          "slug": "morinville",
          "canonical_path": "/cities/ca/morinville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6080782",
          "name": "Mount Forest",
          "country_code": "CA",
          "slug": "mount-forest",
          "canonical_path": "/cities/ca/mount-forest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:mount-pearl",
          "name": "Mount Pearl",
          "country_code": "CA",
          "slug": "mount-pearl",
          "canonical_path": "/cities/ca/mount-pearl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:nanaimo",
          "name": "Nanaimo",
          "country_code": "CA",
          "slug": "nanaimo",
          "canonical_path": "/cities/ca/nanaimo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8504652",
          "name": "Nanoose Bay",
          "country_code": "CA",
          "slug": "nanoose-bay",
          "canonical_path": "/cities/ca/nanoose-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6085931",
          "name": "Napanee",
          "country_code": "CA",
          "slug": "napanee",
          "canonical_path": "/cities/ca/napanee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6086871",
          "name": "Nelson",
          "country_code": "CA",
          "slug": "nelson",
          "canonical_path": "/cities/ca/nelson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6087579",
          "name": "New Glasgow",
          "country_code": "CA",
          "slug": "new-glasgow",
          "canonical_path": "/cities/ca/new-glasgow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6087591",
          "name": "New Hamburg",
          "country_code": "CA",
          "slug": "new-hamburg",
          "canonical_path": "/cities/ca/new-hamburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:new-westminster",
          "name": "New Westminster",
          "country_code": "CA",
          "slug": "new-westminster",
          "canonical_path": "/cities/ca/new-westminster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2134618",
          "name": "Newmarket",
          "country_code": "CA",
          "slug": "newmarket",
          "canonical_path": "/cities/ca/newmarket/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6087905",
          "name": "Niagara-on-the-Lake",
          "country_code": "CA",
          "slug": "niagara-on-the-lake",
          "canonical_path": "/cities/ca/niagara-on-the-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6088132",
          "name": "Nicolet",
          "country_code": "CA",
          "slug": "nicolet",
          "canonical_path": "/cities/ca/nicolet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6089404",
          "name": "North Battleford",
          "country_code": "CA",
          "slug": "north-battleford",
          "canonical_path": "/cities/ca/north-battleford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2094621",
          "name": "North Bay",
          "country_code": "CA",
          "slug": "north-bay",
          "canonical_path": "/cities/ca/north-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6090405",
          "name": "North Perth",
          "country_code": "CA",
          "slug": "north-perth",
          "canonical_path": "/cities/ca/north-perth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6090579",
          "name": "North Saanich",
          "country_code": "CA",
          "slug": "north-saanich",
          "canonical_path": "/cities/ca/north-saanich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6091369",
          "name": "Notre-Dame-de-l'Île-Perrot",
          "country_code": "CA",
          "slug": "notre-dame-de-l-ile-perrot",
          "canonical_path": "/cities/ca/notre-dame-de-l-ile-perrot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6091422",
          "name": "Notre-Dame-des-Prairies",
          "country_code": "CA",
          "slug": "notre-dame-des-prairies",
          "canonical_path": "/cities/ca/notre-dame-des-prairies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6091919",
          "name": "Oak Bay",
          "country_code": "CA",
          "slug": "oak-bay",
          "canonical_path": "/cities/ca/oak-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q203450",
          "name": "Oakville",
          "country_code": "CA",
          "slug": "oakville",
          "canonical_path": "/cities/ca/oakville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:okotoks",
          "name": "Okotoks",
          "country_code": "CA",
          "slug": "okotoks",
          "canonical_path": "/cities/ca/okotoks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6093347",
          "name": "Olds",
          "country_code": "CA",
          "slug": "olds",
          "canonical_path": "/cities/ca/olds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6093514",
          "name": "Oliver",
          "country_code": "CA",
          "slug": "oliver",
          "canonical_path": "/cities/ca/oliver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:orangeville",
          "name": "Orangeville",
          "country_code": "CA",
          "slug": "orangeville",
          "canonical_path": "/cities/ca/orangeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:orillia",
          "name": "Orillia",
          "country_code": "CA",
          "slug": "orillia",
          "canonical_path": "/cities/ca/orillia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:oro-medonte",
          "name": "Oro-Medonte",
          "country_code": "CA",
          "slug": "oro-medonte",
          "canonical_path": "/cities/ca/oro-medonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6094407",
          "name": "Oromocto",
          "country_code": "CA",
          "slug": "oromocto",
          "canonical_path": "/cities/ca/oromocto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:oshawa",
          "name": "Oshawa",
          "country_code": "CA",
          "slug": "oshawa",
          "canonical_path": "/cities/ca/oshawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6094665",
          "name": "Osoyoos",
          "country_code": "CA",
          "slug": "osoyoos",
          "canonical_path": "/cities/ca/osoyoos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6094884",
          "name": "Otterburn Park",
          "country_code": "CA",
          "slug": "otterburn-park",
          "canonical_path": "/cities/ca/otterburn-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:owen-sound",
          "name": "Owen Sound",
          "country_code": "CA",
          "slug": "owen-sound",
          "canonical_path": "/cities/ca/owen-sound/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2208630",
          "name": "Paradise",
          "country_code": "CA",
          "slug": "paradise",
          "canonical_path": "/cities/ca/paradise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6098642",
          "name": "Parksville",
          "country_code": "CA",
          "slug": "parksville",
          "canonical_path": "/cities/ca/parksville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6098747",
          "name": "Parry Sound",
          "country_code": "CA",
          "slug": "parry-sound",
          "canonical_path": "/cities/ca/parry-sound/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6100069",
          "name": "Peace River",
          "country_code": "CA",
          "slug": "peace-river",
          "canonical_path": "/cities/ca/peace-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6100086",
          "name": "Peachland",
          "country_code": "CA",
          "slug": "peachland",
          "canonical_path": "/cities/ca/peachland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6100832",
          "name": "Pembroke",
          "country_code": "CA",
          "slug": "pembroke",
          "canonical_path": "/cities/ca/pembroke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6100932",
          "name": "Penetanguishene",
          "country_code": "CA",
          "slug": "penetanguishene",
          "canonical_path": "/cities/ca/penetanguishene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:penticton",
          "name": "Penticton",
          "country_code": "CA",
          "slug": "penticton",
          "canonical_path": "/cities/ca/penticton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6101546",
          "name": "Perth",
          "country_code": "CA",
          "slug": "perth",
          "canonical_path": "/cities/ca/perth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6101606",
          "name": "Petawawa",
          "country_code": "CA",
          "slug": "petawawa",
          "canonical_path": "/cities/ca/petawawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q209189",
          "name": "Peterborough",
          "country_code": "CA",
          "slug": "peterborough",
          "canonical_path": "/cities/ca/peterborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6103581",
          "name": "Petrolia",
          "country_code": "CA",
          "slug": "petrolia",
          "canonical_path": "/cities/ca/petrolia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q1002478",
          "name": "Pickering",
          "country_code": "CA",
          "slug": "pickering",
          "canonical_path": "/cities/ca/pickering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6104876",
          "name": "Pincourt",
          "country_code": "CA",
          "slug": "pincourt",
          "canonical_path": "/cities/ca/pincourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6105815",
          "name": "Pitt Meadows",
          "country_code": "CA",
          "slug": "pitt-meadows",
          "canonical_path": "/cities/ca/pitt-meadows/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6106158",
          "name": "Plantagenet",
          "country_code": "CA",
          "slug": "plantagenet",
          "canonical_path": "/cities/ca/plantagenet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6945991",
          "name": "Plessisville",
          "country_code": "CA",
          "slug": "plessisville",
          "canonical_path": "/cities/ca/plessisville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6107272",
          "name": "Pointe-Calumet",
          "country_code": "CA",
          "slug": "pointe-calumet",
          "canonical_path": "/cities/ca/pointe-calumet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6107325",
          "name": "Pointe-Claire",
          "country_code": "CA",
          "slug": "pointe-claire",
          "canonical_path": "/cities/ca/pointe-claire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6107683",
          "name": "Pointe-du-Lac",
          "country_code": "CA",
          "slug": "pointe-du-lac",
          "canonical_path": "/cities/ca/pointe-du-lac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6109273",
          "name": "Ponoka",
          "country_code": "CA",
          "slug": "ponoka",
          "canonical_path": "/cities/ca/ponoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6110611",
          "name": "Pont Rouge",
          "country_code": "CA",
          "slug": "pont-rouge",
          "canonical_path": "/cities/ca/pont-rouge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8379100",
          "name": "Pont-Rouge",
          "country_code": "CA",
          "slug": "pont-rouge-10-03",
          "canonical_path": "/cities/ca/pont-rouge-10-03/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6111632",
          "name": "Port Alberni",
          "country_code": "CA",
          "slug": "port-alberni",
          "canonical_path": "/cities/ca/port-alberni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6111704",
          "name": "Port Colborne",
          "country_code": "CA",
          "slug": "port-colborne",
          "canonical_path": "/cities/ca/port-colborne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:port-coquitlam",
          "name": "Port Coquitlam",
          "country_code": "CA",
          "slug": "port-coquitlam",
          "canonical_path": "/cities/ca/port-coquitlam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6111745",
          "name": "Port Elgin",
          "country_code": "CA",
          "slug": "port-elgin",
          "canonical_path": "/cities/ca/port-elgin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6111882",
          "name": "Port Hope",
          "country_code": "CA",
          "slug": "port-hope",
          "canonical_path": "/cities/ca/port-hope/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:port-moody",
          "name": "Port Moody",
          "country_code": "CA",
          "slug": "port-moody",
          "canonical_path": "/cities/ca/port-moody/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6111696",
          "name": "Port-Cartier",
          "country_code": "CA",
          "slug": "port-cartier",
          "canonical_path": "/cities/ca/port-cartier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6111529",
          "name": "Portage la Prairie",
          "country_code": "CA",
          "slug": "portage-la-prairie",
          "canonical_path": "/cities/ca/portage-la-prairie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6112608",
          "name": "Powell River",
          "country_code": "CA",
          "slug": "powell-river",
          "canonical_path": "/cities/ca/powell-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6113198",
          "name": "Prévost",
          "country_code": "CA",
          "slug": "prevost",
          "canonical_path": "/cities/ca/prevost/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:prince-albert",
          "name": "Prince Albert",
          "country_code": "CA",
          "slug": "prince-albert",
          "canonical_path": "/cities/ca/prince-albert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:prince-george",
          "name": "Prince George",
          "country_code": "CA",
          "slug": "prince-george",
          "canonical_path": "/cities/ca/prince-george/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6113406",
          "name": "Prince Rupert",
          "country_code": "CA",
          "slug": "prince-rupert",
          "canonical_path": "/cities/ca/prince-rupert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6113466",
          "name": "Princeville",
          "country_code": "CA",
          "slug": "princeville",
          "canonical_path": "/cities/ca/princeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8379101",
          "name": "Princeville",
          "country_code": "CA",
          "slug": "princeville-10-17",
          "canonical_path": "/cities/ca/princeville-10-17/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6114862",
          "name": "Qualicum Beach",
          "country_code": "CA",
          "slug": "qualicum-beach",
          "canonical_path": "/cities/ca/qualicum-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6325494",
          "name": "Québec",
          "country_code": "CA",
          "slug": "quebec",
          "canonical_path": "/cities/ca/quebec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6115187",
          "name": "Quesnel",
          "country_code": "CA",
          "slug": "quesnel",
          "canonical_path": "/cities/ca/quesnel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2094627",
          "name": "Quinte West",
          "country_code": "CA",
          "slug": "quinte-west",
          "canonical_path": "/cities/ca/quinte-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6115383",
          "name": "Quispamsis",
          "country_code": "CA",
          "slug": "quispamsis",
          "canonical_path": "/cities/ca/quispamsis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6117611",
          "name": "Rawdon",
          "country_code": "CA",
          "slug": "rawdon",
          "canonical_path": "/cities/ca/rawdon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6117731",
          "name": "Rayside-Balfour",
          "country_code": "CA",
          "slug": "rayside-balfour",
          "canonical_path": "/cities/ca/rayside-balfour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:red-deer",
          "name": "Red Deer",
          "country_code": "CA",
          "slug": "red-deer",
          "canonical_path": "/cities/ca/red-deer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6118091",
          "name": "Redcliff",
          "country_code": "CA",
          "slug": "redcliff",
          "canonical_path": "/cities/ca/redcliff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:regina",
          "name": "Regina",
          "country_code": "CA",
          "slug": "regina",
          "canonical_path": "/cities/ca/regina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6119448",
          "name": "Renfrew",
          "country_code": "CA",
          "slug": "renfrew",
          "canonical_path": "/cities/ca/renfrew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:repentigny",
          "name": "Repentigny",
          "country_code": "CA",
          "slug": "repentigny",
          "canonical_path": "/cities/ca/repentigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6121621",
          "name": "Revelstoke",
          "country_code": "CA",
          "slug": "revelstoke",
          "canonical_path": "/cities/ca/revelstoke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6122037",
          "name": "Richelieu",
          "country_code": "CA",
          "slug": "richelieu",
          "canonical_path": "/cities/ca/richelieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2710",
          "name": "Richmond Hill",
          "country_code": "CA",
          "slug": "richmond-hill",
          "canonical_path": "/cities/ca/richmond-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2094598",
          "name": "Rimouski",
          "country_code": "CA",
          "slug": "rimouski",
          "canonical_path": "/cities/ca/rimouski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:riviere-du-loup",
          "name": "Rivière-du-Loup",
          "country_code": "CA",
          "slug": "riviere-du-loup",
          "canonical_path": "/cities/ca/riviere-du-loup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6125653",
          "name": "Roberval",
          "country_code": "CA",
          "slug": "roberval",
          "canonical_path": "/cities/ca/roberval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6126749",
          "name": "Rocky Mountain House",
          "country_code": "CA",
          "slug": "rocky-mountain-house",
          "canonical_path": "/cities/ca/rocky-mountain-house/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6127681",
          "name": "Rosemère",
          "country_code": "CA",
          "slug": "rosemere",
          "canonical_path": "/cities/ca/rosemere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6128033",
          "name": "Rothesay",
          "country_code": "CA",
          "slug": "rothesay",
          "canonical_path": "/cities/ca/rothesay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:rouyn-noranda",
          "name": "Rouyn-Noranda",
          "country_code": "CA",
          "slug": "rouyn-noranda",
          "canonical_path": "/cities/ca/rouyn-noranda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6136572",
          "name": "Russell",
          "country_code": "CA",
          "slug": "russell",
          "canonical_path": "/cities/ca/russell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2044",
          "name": "Saguenay",
          "country_code": "CA",
          "slug": "saguenay",
          "canonical_path": "/cities/ca/saguenay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137378",
          "name": "Saint-Amable",
          "country_code": "CA",
          "slug": "saint-amable",
          "canonical_path": "/cities/ca/saint-amable/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8604651",
          "name": "Saint-Apollinaire",
          "country_code": "CA",
          "slug": "saint-apollinaire",
          "canonical_path": "/cities/ca/saint-apollinaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:7535681",
          "name": "Saint-Augustin-de-Desmaures",
          "country_code": "CA",
          "slug": "saint-augustin-de-desmaures",
          "canonical_path": "/cities/ca/saint-augustin-de-desmaures/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137489",
          "name": "Saint-Basile-le-Grand",
          "country_code": "CA",
          "slug": "saint-basile-le-grand",
          "canonical_path": "/cities/ca/saint-basile-le-grand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137540",
          "name": "Saint-Bruno-de-Montarville",
          "country_code": "CA",
          "slug": "saint-bruno-de-montarville",
          "canonical_path": "/cities/ca/saint-bruno-de-montarville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137573",
          "name": "Saint-Césaire",
          "country_code": "CA",
          "slug": "saint-cesaire",
          "canonical_path": "/cities/ca/saint-cesaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137579",
          "name": "Saint-Charles-Borromée",
          "country_code": "CA",
          "slug": "saint-charles-borromee",
          "canonical_path": "/cities/ca/saint-charles-borromee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:saint-constant",
          "name": "Saint-Constant",
          "country_code": "CA",
          "slug": "saint-constant",
          "canonical_path": "/cities/ca/saint-constant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:saint-eustache",
          "name": "Saint-Eustache",
          "country_code": "CA",
          "slug": "saint-eustache",
          "canonical_path": "/cities/ca/saint-eustache/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138201",
          "name": "Saint-Félicien",
          "country_code": "CA",
          "slug": "saint-felicien",
          "canonical_path": "/cities/ca/saint-felicien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138210",
          "name": "Saint-Félix-de-Valois",
          "country_code": "CA",
          "slug": "saint-felix-de-valois",
          "canonical_path": "/cities/ca/saint-felix-de-valois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:saint-georges",
          "name": "Saint-Georges",
          "country_code": "CA",
          "slug": "saint-georges",
          "canonical_path": "/cities/ca/saint-georges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8354586",
          "name": "Saint-Henri",
          "country_code": "CA",
          "slug": "saint-henri",
          "canonical_path": "/cities/ca/saint-henri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138352",
          "name": "Saint-Hippolyte",
          "country_code": "CA",
          "slug": "saint-hippolyte",
          "canonical_path": "/cities/ca/saint-hippolyte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138360",
          "name": "Saint-Honoré",
          "country_code": "CA",
          "slug": "saint-honore",
          "canonical_path": "/cities/ca/saint-honore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:saint-hyacinthe",
          "name": "Saint-Hyacinthe",
          "country_code": "CA",
          "slug": "saint-hyacinthe",
          "canonical_path": "/cities/ca/saint-hyacinthe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:saint-jean-sur-richelieu",
          "name": "Saint-Jean-sur-Richelieu",
          "country_code": "CA",
          "slug": "saint-jean-sur-richelieu",
          "canonical_path": "/cities/ca/saint-jean-sur-richelieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:saint-jerome",
          "name": "Saint-Jérôme",
          "country_code": "CA",
          "slug": "saint-jerome",
          "canonical_path": "/cities/ca/saint-jerome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:7535693",
          "name": "Saint-Joseph-de-Beauce",
          "country_code": "CA",
          "slug": "saint-joseph-de-beauce",
          "canonical_path": "/cities/ca/saint-joseph-de-beauce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138573",
          "name": "Saint-Joseph-du-Lac",
          "country_code": "CA",
          "slug": "saint-joseph-du-lac",
          "canonical_path": "/cities/ca/saint-joseph-du-lac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:saint-lazare",
          "name": "Saint-Lazare",
          "country_code": "CA",
          "slug": "saint-lazare",
          "canonical_path": "/cities/ca/saint-lazare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138791",
          "name": "Saint-Michel",
          "country_code": "CA",
          "slug": "saint-michel",
          "canonical_path": "/cities/ca/saint-michel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138908",
          "name": "Saint-Philippe",
          "country_code": "CA",
          "slug": "saint-philippe",
          "canonical_path": "/cities/ca/saint-philippe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138916",
          "name": "Saint-Pie",
          "country_code": "CA",
          "slug": "saint-pie",
          "canonical_path": "/cities/ca/saint-pie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8593826",
          "name": "Saint-Raymond",
          "country_code": "CA",
          "slug": "saint-raymond",
          "canonical_path": "/cities/ca/saint-raymond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138987",
          "name": "Saint-Rémi",
          "country_code": "CA",
          "slug": "saint-remi",
          "canonical_path": "/cities/ca/saint-remi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:11696024",
          "name": "Saint-Roch-de-l'Achigan",
          "country_code": "CA",
          "slug": "saint-roch-de-l-achigan",
          "canonical_path": "/cities/ca/saint-roch-de-l-achigan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6139045",
          "name": "Saint-Sauveur",
          "country_code": "CA",
          "slug": "saint-sauveur",
          "canonical_path": "/cities/ca/saint-sauveur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6139047",
          "name": "Saint-Sauveur-des-Monts",
          "country_code": "CA",
          "slug": "saint-sauveur-des-monts",
          "canonical_path": "/cities/ca/saint-sauveur-des-monts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6139216",
          "name": "Saint-Zotique",
          "country_code": "CA",
          "slug": "saint-zotique",
          "canonical_path": "/cities/ca/saint-zotique/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6639619",
          "name": "Sainte Catherine de la Jacques Cartier",
          "country_code": "CA",
          "slug": "sainte-catherine-de-la-jacques-cartier",
          "canonical_path": "/cities/ca/sainte-catherine-de-la-jacques-cartier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137696",
          "name": "Sainte-Adèle",
          "country_code": "CA",
          "slug": "sainte-adele",
          "canonical_path": "/cities/ca/sainte-adele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137702",
          "name": "Sainte-Agathe-des-Monts",
          "country_code": "CA",
          "slug": "sainte-agathe-des-monts",
          "canonical_path": "/cities/ca/sainte-agathe-des-monts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137733",
          "name": "Sainte-Anne-de-Bellevue",
          "country_code": "CA",
          "slug": "sainte-anne-de-bellevue",
          "canonical_path": "/cities/ca/sainte-anne-de-bellevue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137749",
          "name": "Sainte-Anne-des-Monts",
          "country_code": "CA",
          "slug": "sainte-anne-des-monts",
          "canonical_path": "/cities/ca/sainte-anne-des-monts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137753",
          "name": "Sainte-Anne-des-Plaines",
          "country_code": "CA",
          "slug": "sainte-anne-des-plaines",
          "canonical_path": "/cities/ca/sainte-anne-des-plaines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137780",
          "name": "Sainte-Catherine",
          "country_code": "CA",
          "slug": "sainte-catherine",
          "canonical_path": "/cities/ca/sainte-catherine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6137781",
          "name": "Sainte-Catherine",
          "country_code": "CA",
          "slug": "sainte-catherine-10-04",
          "canonical_path": "/cities/ca/sainte-catherine-10-04/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:sainte-julie",
          "name": "Sainte-Julie",
          "country_code": "CA",
          "slug": "sainte-julie",
          "canonical_path": "/cities/ca/sainte-julie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6945989",
          "name": "Sainte-Marie",
          "country_code": "CA",
          "slug": "sainte-marie",
          "canonical_path": "/cities/ca/sainte-marie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138032",
          "name": "Sainte-Marthe-sur-le-Lac",
          "country_code": "CA",
          "slug": "sainte-marthe-sur-le-lac",
          "canonical_path": "/cities/ca/sainte-marthe-sur-le-lac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6138048",
          "name": "Sainte-Monique",
          "country_code": "CA",
          "slug": "sainte-monique",
          "canonical_path": "/cities/ca/sainte-monique/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:sainte-therese",
          "name": "Sainte-Thérèse",
          "country_code": "CA",
          "slug": "sainte-therese",
          "canonical_path": "/cities/ca/sainte-therese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:salaberry-de-valleyfield",
          "name": "Salaberry-de-Valleyfield",
          "country_code": "CA",
          "slug": "salaberry-de-valleyfield",
          "canonical_path": "/cities/ca/salaberry-de-valleyfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6139417",
          "name": "Salmon Arm",
          "country_code": "CA",
          "slug": "salmon-arm",
          "canonical_path": "/cities/ca/salmon-arm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q202820",
          "name": "Sarnia",
          "country_code": "CA",
          "slug": "sarnia",
          "canonical_path": "/cities/ca/sarnia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:saskatoon",
          "name": "Saskatoon",
          "country_code": "CA",
          "slug": "saskatoon",
          "canonical_path": "/cities/ca/saskatoon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:sault-ste-marie",
          "name": "Sault Ste. Marie",
          "country_code": "CA",
          "slug": "sault-ste-marie",
          "canonical_path": "/cities/ca/sault-ste-marie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6143367",
          "name": "Sechelt",
          "country_code": "CA",
          "slug": "sechelt",
          "canonical_path": "/cities/ca/sechelt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6144054",
          "name": "Selkirk",
          "country_code": "CA",
          "slug": "selkirk",
          "canonical_path": "/cities/ca/selkirk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6144312",
          "name": "Sept-Îles",
          "country_code": "CA",
          "slug": "sept-iles",
          "canonical_path": "/cities/ca/sept-iles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:8354533",
          "name": "Shannon",
          "country_code": "CA",
          "slug": "shannon",
          "canonical_path": "/cities/ca/shannon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:shawinigan",
          "name": "Shawinigan",
          "country_code": "CA",
          "slug": "shawinigan",
          "canonical_path": "/cities/ca/shawinigan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6145668",
          "name": "Shediac",
          "country_code": "CA",
          "slug": "shediac",
          "canonical_path": "/cities/ca/shediac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6145890",
          "name": "Shelburne",
          "country_code": "CA",
          "slug": "shelburne",
          "canonical_path": "/cities/ca/shelburne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6146279",
          "name": "Sherwood Park",
          "country_code": "CA",
          "slug": "sherwood-park",
          "canonical_path": "/cities/ca/sherwood-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6147439",
          "name": "Sidney",
          "country_code": "CA",
          "slug": "sidney",
          "canonical_path": "/cities/ca/sidney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6147962",
          "name": "Simcoe",
          "country_code": "CA",
          "slug": "simcoe",
          "canonical_path": "/cities/ca/simcoe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6148373",
          "name": "Sioux Lookout",
          "country_code": "CA",
          "slug": "sioux-lookout",
          "canonical_path": "/cities/ca/sioux-lookout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6149374",
          "name": "Slave Lake",
          "country_code": "CA",
          "slug": "slave-lake",
          "canonical_path": "/cities/ca/slave-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6149996",
          "name": "Smithers",
          "country_code": "CA",
          "slug": "smithers",
          "canonical_path": "/cities/ca/smithers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6150174",
          "name": "Smiths Falls",
          "country_code": "CA",
          "slug": "smiths-falls",
          "canonical_path": "/cities/ca/smiths-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6151264",
          "name": "Sooke",
          "country_code": "CA",
          "slug": "sooke",
          "canonical_path": "/cities/ca/sooke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:sorel-tracy",
          "name": "Sorel-Tracy",
          "country_code": "CA",
          "slug": "sorel-tracy",
          "canonical_path": "/cities/ca/sorel-tracy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:south-frontenac",
          "name": "South Frontenac",
          "country_code": "CA",
          "slug": "south-frontenac",
          "canonical_path": "/cities/ca/south-frontenac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6152244",
          "name": "South Huron",
          "country_code": "CA",
          "slug": "south-huron",
          "canonical_path": "/cities/ca/south-huron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:12156434",
          "name": "Spallumcheen",
          "country_code": "CA",
          "slug": "spallumcheen",
          "canonical_path": "/cities/ca/spallumcheen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:springwater",
          "name": "Springwater",
          "country_code": "CA",
          "slug": "springwater",
          "canonical_path": "/cities/ca/springwater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:spruce-grove",
          "name": "Spruce Grove",
          "country_code": "CA",
          "slug": "spruce-grove",
          "canonical_path": "/cities/ca/spruce-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6154636",
          "name": "Squamish",
          "country_code": "CA",
          "slug": "squamish",
          "canonical_path": "/cities/ca/squamish/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:st-albert",
          "name": "St. Albert",
          "country_code": "CA",
          "slug": "st-albert",
          "canonical_path": "/cities/ca/st-albert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q209188",
          "name": "St. Catharines",
          "country_code": "CA",
          "slug": "st-catharines",
          "canonical_path": "/cities/ca/st-catharines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:st-john-s",
          "name": "St. John's",
          "country_code": "CA",
          "slug": "st-john-s",
          "canonical_path": "/cities/ca/st-john-s/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6157062",
          "name": "St. Marys",
          "country_code": "CA",
          "slug": "st-marys",
          "canonical_path": "/cities/ca/st-marys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6157795",
          "name": "St. Paul",
          "country_code": "CA",
          "slug": "st-paul",
          "canonical_path": "/cities/ca/st-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2125311",
          "name": "St. Thomas",
          "country_code": "CA",
          "slug": "st-thomas",
          "canonical_path": "/cities/ca/st-thomas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6156102",
          "name": "Steinbach",
          "country_code": "CA",
          "slug": "steinbach",
          "canonical_path": "/cities/ca/steinbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6156244",
          "name": "Stephenville",
          "country_code": "CA",
          "slug": "stephenville",
          "canonical_path": "/cities/ca/stephenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6156307",
          "name": "Stettler",
          "country_code": "CA",
          "slug": "stettler",
          "canonical_path": "/cities/ca/stettler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6157536",
          "name": "Stony Plain",
          "country_code": "CA",
          "slug": "stony-plain",
          "canonical_path": "/cities/ca/stony-plain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6158023",
          "name": "Strathmore",
          "country_code": "CA",
          "slug": "strathmore",
          "canonical_path": "/cities/ca/strathmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6158027",
          "name": "Strathroy",
          "country_code": "CA",
          "slug": "strathroy",
          "canonical_path": "/cities/ca/strathroy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:sturgeon-county",
          "name": "Sturgeon County",
          "country_code": "CA",
          "slug": "sturgeon-county",
          "canonical_path": "/cities/ca/sturgeon-county/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6159232",
          "name": "Summerland",
          "country_code": "CA",
          "slug": "summerland",
          "canonical_path": "/cities/ca/summerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6159244",
          "name": "Summerside",
          "country_code": "CA",
          "slug": "summerside",
          "canonical_path": "/cities/ca/summerside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13592176",
          "name": "Sunbury-York South",
          "country_code": "CA",
          "slug": "sunbury-york-south",
          "canonical_path": "/cities/ca/sunbury-york-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6159980",
          "name": "Sussex",
          "country_code": "CA",
          "slug": "sussex",
          "canonical_path": "/cities/ca/sussex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6160603",
          "name": "Swift Current",
          "country_code": "CA",
          "slug": "swift-current",
          "canonical_path": "/cities/ca/swift-current/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6160806",
          "name": "Sylvan Lake",
          "country_code": "CA",
          "slug": "sylvan-lake",
          "canonical_path": "/cities/ca/sylvan-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6160919",
          "name": "Taber",
          "country_code": "CA",
          "slug": "taber",
          "canonical_path": "/cities/ca/taber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2112010",
          "name": "Tecumseh",
          "country_code": "CA",
          "slug": "tecumseh",
          "canonical_path": "/cities/ca/tecumseh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6162659",
          "name": "Temiskaming Shores",
          "country_code": "CA",
          "slug": "temiskaming-shores",
          "canonical_path": "/cities/ca/temiskaming-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6162949",
          "name": "Terrace",
          "country_code": "CA",
          "slug": "terrace",
          "canonical_path": "/cities/ca/terrace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5904414",
          "name": "The Blue Mountains",
          "country_code": "CA",
          "slug": "the-blue-mountains",
          "canonical_path": "/cities/ca/the-blue-mountains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6164499",
          "name": "The Pas",
          "country_code": "CA",
          "slug": "the-pas",
          "canonical_path": "/cities/ca/the-pas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6943827",
          "name": "Thetford-Mines",
          "country_code": "CA",
          "slug": "thetford-mines",
          "canonical_path": "/cities/ca/thetford-mines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6165406",
          "name": "Thompson",
          "country_code": "CA",
          "slug": "thompson",
          "canonical_path": "/cities/ca/thompson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:thorold",
          "name": "Thorold",
          "country_code": "CA",
          "slug": "thorold",
          "canonical_path": "/cities/ca/thorold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:12495557",
          "name": "Three Rivers",
          "country_code": "CA",
          "slug": "three-rivers",
          "canonical_path": "/cities/ca/three-rivers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:thunder-bay",
          "name": "Thunder Bay",
          "country_code": "CA",
          "slug": "thunder-bay",
          "canonical_path": "/cities/ca/thunder-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6166580",
          "name": "Tillsonburg",
          "country_code": "CA",
          "slug": "tillsonburg",
          "canonical_path": "/cities/ca/tillsonburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:timmins",
          "name": "Timmins",
          "country_code": "CA",
          "slug": "timmins",
          "canonical_path": "/cities/ca/timmins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6167817",
          "name": "Torbay",
          "country_code": "CA",
          "slug": "torbay",
          "canonical_path": "/cities/ca/torbay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6168326",
          "name": "Trail",
          "country_code": "CA",
          "slug": "trail",
          "canonical_path": "/cities/ca/trail/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6169587",
          "name": "Truro",
          "country_code": "CA",
          "slug": "truro",
          "canonical_path": "/cities/ca/truro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13680011",
          "name": "United Townships of Dysart, Dudley, Harcourt, Guilford, Harburn, Bruton, Havelock, Eyre and Clyde",
          "country_code": "CA",
          "slug": "united-townships-of-dysart-dudley-harcourt-guilford-harburn-bruton-havelock-eyre-and-clyde",
          "canonical_path": "/cities/ca/united-townships-of-dysart-dudley-harcourt-guilford-harburn-bruton-havelock-eyre-and-clyde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2285269",
          "name": "Uxbridge",
          "country_code": "CA",
          "slug": "uxbridge",
          "canonical_path": "/cities/ca/uxbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:val-d-or",
          "name": "Val-d'Or",
          "country_code": "CA",
          "slug": "val-d-or",
          "canonical_path": "/cities/ca/val-d-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6173001",
          "name": "Val-David",
          "country_code": "CA",
          "slug": "val-david",
          "canonical_path": "/cities/ca/val-david/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6173012",
          "name": "Val-des-Monts",
          "country_code": "CA",
          "slug": "val-des-monts",
          "canonical_path": "/cities/ca/val-des-monts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:5887470",
          "name": "Val-des-Sources",
          "country_code": "CA",
          "slug": "val-des-sources",
          "canonical_path": "/cities/ca/val-des-sources/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:varennes",
          "name": "Varennes",
          "country_code": "CA",
          "slug": "varennes",
          "canonical_path": "/cities/ca/varennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:vaudreuil-dorion",
          "name": "Vaudreuil-Dorion",
          "country_code": "CA",
          "slug": "vaudreuil-dorion",
          "canonical_path": "/cities/ca/vaudreuil-dorion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6173635",
          "name": "Vegreville",
          "country_code": "CA",
          "slug": "vegreville",
          "canonical_path": "/cities/ca/vegreville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:vernon",
          "name": "Vernon",
          "country_code": "CA",
          "slug": "vernon",
          "canonical_path": "/cities/ca/vernon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:victoriaville",
          "name": "Victoriaville",
          "country_code": "CA",
          "slug": "victoriaville",
          "canonical_path": "/cities/ca/victoriaville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6174232",
          "name": "View Royal",
          "country_code": "CA",
          "slug": "view-royal",
          "canonical_path": "/cities/ca/view-royal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13546317",
          "name": "Ville-Marie",
          "country_code": "CA",
          "slug": "ville-marie",
          "canonical_path": "/cities/ca/ville-marie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6175059",
          "name": "Wainwright",
          "country_code": "CA",
          "slug": "wainwright",
          "canonical_path": "/cities/ca/wainwright/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6176226",
          "name": "Warman",
          "country_code": "CA",
          "slug": "warman",
          "canonical_path": "/cities/ca/warman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:wasaga-beach",
          "name": "Wasaga Beach",
          "country_code": "CA",
          "slug": "wasaga-beach",
          "canonical_path": "/cities/ca/wasaga-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6177869",
          "name": "Welland",
          "country_code": "CA",
          "slug": "welland",
          "canonical_path": "/cities/ca/welland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:west-kelowna",
          "name": "West Kelowna",
          "country_code": "CA",
          "slug": "west-kelowna",
          "canonical_path": "/cities/ca/west-kelowna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6179259",
          "name": "West Nipissing",
          "country_code": "CA",
          "slug": "west-nipissing",
          "canonical_path": "/cities/ca/west-nipissing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:13100188",
          "name": "West St. Paul",
          "country_code": "CA",
          "slug": "west-st-paul",
          "canonical_path": "/cities/ca/west-st-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:west-vancouver",
          "name": "West Vancouver",
          "country_code": "CA",
          "slug": "west-vancouver",
          "canonical_path": "/cities/ca/west-vancouver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6179226",
          "name": "Westmount",
          "country_code": "CA",
          "slug": "westmount",
          "canonical_path": "/cities/ca/westmount/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6179602",
          "name": "Wetaskiwin",
          "country_code": "CA",
          "slug": "wetaskiwin",
          "canonical_path": "/cities/ca/wetaskiwin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6179652",
          "name": "Weyburn",
          "country_code": "CA",
          "slug": "weyburn",
          "canonical_path": "/cities/ca/weyburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6180144",
          "name": "Whistler",
          "country_code": "CA",
          "slug": "whistler",
          "canonical_path": "/cities/ca/whistler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6180961",
          "name": "White Rock",
          "country_code": "CA",
          "slug": "white-rock",
          "canonical_path": "/cities/ca/white-rock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6180285",
          "name": "Whitecourt",
          "country_code": "CA",
          "slug": "whitecourt",
          "canonical_path": "/cities/ca/whitecourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:whitehorse",
          "name": "Whitehorse",
          "country_code": "CA",
          "slug": "whitehorse",
          "canonical_path": "/cities/ca/whitehorse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6182212",
          "name": "Williams Lake",
          "country_code": "CA",
          "slug": "williams-lake",
          "canonical_path": "/cities/ca/williams-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6183204",
          "name": "Winkler",
          "country_code": "CA",
          "slug": "winkler",
          "canonical_path": "/cities/ca/winkler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:wikidata:Q2135",
          "name": "Winnipeg",
          "country_code": "CA",
          "slug": "winnipeg",
          "canonical_path": "/cities/ca/winnipeg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6185217",
          "name": "Yarmouth",
          "country_code": "CA",
          "slug": "yarmouth",
          "canonical_path": "/cities/ca/yarmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:slug:yellowknife",
          "name": "Yellowknife",
          "country_code": "CA",
          "slug": "yellowknife",
          "canonical_path": "/cities/ca/yellowknife/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ca:geonames:6185607",
          "name": "Yorkton",
          "country_code": "CA",
          "slug": "yorkton",
          "canonical_path": "/cities/ca/yorkton/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "HR",
      "path": "cities/hr.json",
      "city_count": 4,
      "cities": [
        {
          "entity_id": "city:hr:lau:HR_03123",
          "name": "Osijek",
          "country_code": "HR",
          "slug": "osijek",
          "canonical_path": "/cities/hr/osijek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hr:lau:HR_03735",
          "name": "Rijeka",
          "country_code": "HR",
          "slug": "rijeka",
          "canonical_path": "/cities/hr/rijeka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hr:lau:HR_04090",
          "name": "Split",
          "country_code": "HR",
          "slug": "split",
          "canonical_path": "/cities/hr/split/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hr:wikidata:Q1435",
          "name": "Zagreb",
          "country_code": "HR",
          "slug": "zagreb",
          "canonical_path": "/cities/hr/zagreb/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "CY",
      "path": "cities/cy.json",
      "city_count": 25,
      "cities": [
        {
          "entity_id": "city:cy:geonames:146732",
          "name": "Ágios Dométios",
          "country_code": "CY",
          "slug": "agios-dometios",
          "canonical_path": "/cities/cy/agios-dometios/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146619",
          "name": "Aglantziá",
          "country_code": "CY",
          "slug": "aglantzia",
          "canonical_path": "/cities/cy/aglantzia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146768",
          "name": "Athíenou",
          "country_code": "CY",
          "slug": "athienou",
          "canonical_path": "/cities/cy/athienou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146490",
          "name": "Chlórakas",
          "country_code": "CY",
          "slug": "chlorakas",
          "canonical_path": "/cities/cy/chlorakas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146666",
          "name": "Dáli",
          "country_code": "CY",
          "slug": "dali",
          "canonical_path": "/cities/cy/dali/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146639",
          "name": "Emba",
          "country_code": "CY",
          "slug": "emba",
          "canonical_path": "/cities/cy/emba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:145964",
          "name": "Géri",
          "country_code": "CY",
          "slug": "geri",
          "canonical_path": "/cities/cy/geri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:145963",
          "name": "Germasógeia",
          "country_code": "CY",
          "slug": "germasogeia",
          "canonical_path": "/cities/cy/germasogeia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:11919534",
          "name": "Geroskipou",
          "country_code": "CY",
          "slug": "geroskipou",
          "canonical_path": "/cities/cy/geroskipou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146523",
          "name": "Káto Lakatámeia",
          "country_code": "CY",
          "slug": "kato-lakatameia",
          "canonical_path": "/cities/cy/kato-lakatameia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146516",
          "name": "Káto Polemídia",
          "country_code": "CY",
          "slug": "kato-polemidia",
          "canonical_path": "/cities/cy/kato-polemidia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146451",
          "name": "Kolossi",
          "country_code": "CY",
          "slug": "kolossi",
          "canonical_path": "/cities/cy/kolossi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146412",
          "name": "Kyrenia",
          "country_code": "CY",
          "slug": "kyrenia",
          "canonical_path": "/cities/cy/kyrenia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:official:cystat:municipality:4000",
          "name": "Larnaka",
          "country_code": "CY",
          "slug": "larnaca",
          "canonical_path": "/cities/cy/larnaca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146392",
          "name": "Léfka",
          "country_code": "CY",
          "slug": "lefka",
          "canonical_path": "/cities/cy/lefka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:official:cystat:municipality:5000",
          "name": "Lemesos",
          "country_code": "CY",
          "slug": "limassol",
          "canonical_path": "/cities/cy/limassol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146384",
          "name": "Limassol",
          "country_code": "CY",
          "slug": "limassol-05",
          "canonical_path": "/cities/cy/limassol-05/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146286",
          "name": "Mórfou",
          "country_code": "CY",
          "slug": "morfou",
          "canonical_path": "/cities/cy/morfou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:wikidata:Q3856",
          "name": "Nicosia",
          "country_code": "CY",
          "slug": "nicosia",
          "canonical_path": "/cities/cy/nicosia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:official:cystat:municipality:6000",
          "name": "Pafos",
          "country_code": "CY",
          "slug": "paphos",
          "canonical_path": "/cities/cy/paphos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146214",
          "name": "Paphos",
          "country_code": "CY",
          "slug": "paphos-06",
          "canonical_path": "/cities/cy/paphos-06/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:official:cystat:municipality:3101",
          "name": "Paralimni",
          "country_code": "CY",
          "slug": "paralimni",
          "canonical_path": "/cities/cy/paralimni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:146054",
          "name": "Stróvolos",
          "country_code": "CY",
          "slug": "strovolos",
          "canonical_path": "/cities/cy/strovolos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:145981",
          "name": "Tséri",
          "country_code": "CY",
          "slug": "tseri",
          "canonical_path": "/cities/cy/tseri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cy:geonames:145952",
          "name": "Ýpsonas",
          "country_code": "CY",
          "slug": "ypsonas",
          "canonical_path": "/cities/cy/ypsonas/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "CZ",
      "path": "cities/cz.json",
      "city_count": 299,
      "cities": [
        {
          "entity_id": "city:cz:geonames:3079751",
          "name": "Aš",
          "country_code": "CZ",
          "slug": "as",
          "canonical_path": "/cities/cz/as/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079685",
          "name": "Bakov nad Jizerou",
          "country_code": "CZ",
          "slug": "bakov-nad-jizerou",
          "canonical_path": "/cities/cz/bakov-nad-jizerou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079514",
          "name": "Benátky nad Jizerou",
          "country_code": "CZ",
          "slug": "benatky-nad-jizerou",
          "canonical_path": "/cities/cz/benatky-nad-jizerou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079508",
          "name": "Benešov",
          "country_code": "CZ",
          "slug": "benesov",
          "canonical_path": "/cities/cz/benesov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079467",
          "name": "Beroun",
          "country_code": "CZ",
          "slug": "beroun",
          "canonical_path": "/cities/cz/beroun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079348",
          "name": "Bílina",
          "country_code": "CZ",
          "slug": "bilina",
          "canonical_path": "/cities/cz/bilina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079336",
          "name": "Bílovec",
          "country_code": "CZ",
          "slug": "bilovec",
          "canonical_path": "/cities/cz/bilovec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079273",
          "name": "Blansko",
          "country_code": "CZ",
          "slug": "blansko",
          "canonical_path": "/cities/cz/blansko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079252",
          "name": "Blatná",
          "country_code": "CZ",
          "slug": "blatna",
          "canonical_path": "/cities/cz/blatna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079129",
          "name": "Bohumín",
          "country_code": "CZ",
          "slug": "bohumin",
          "canonical_path": "/cities/cz/bohumin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3079124",
          "name": "Bohunice",
          "country_code": "CZ",
          "slug": "bohunice",
          "canonical_path": "/cities/cz/bohunice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078910",
          "name": "Boskovice",
          "country_code": "CZ",
          "slug": "boskovice",
          "canonical_path": "/cities/cz/boskovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078837",
          "name": "Brandýs nad Labem-Stará Boleslav",
          "country_code": "CZ",
          "slug": "brandys-nad-labem-stara-boleslav",
          "canonical_path": "/cities/cz/brandys-nad-labem-stara-boleslav/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078773",
          "name": "Břeclav",
          "country_code": "CZ",
          "slug": "breclav",
          "canonical_path": "/cities/cz/breclav/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:slug:brno",
          "name": "Brno",
          "country_code": "CZ",
          "slug": "brno",
          "canonical_path": "/cities/cz/brno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:6694367",
          "name": "Brno střed",
          "country_code": "CZ",
          "slug": "brno-stred",
          "canonical_path": "/cities/cz/brno-stred/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:13562505",
          "name": "Brno-jih",
          "country_code": "CZ",
          "slug": "brno-jih",
          "canonical_path": "/cities/cz/brno-jih/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078577",
          "name": "Broumov",
          "country_code": "CZ",
          "slug": "broumov",
          "canonical_path": "/cities/cz/broumov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:11524295",
          "name": "Brumov-Bylnice",
          "country_code": "CZ",
          "slug": "brumov-bylnice",
          "canonical_path": "/cities/cz/brumov-bylnice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078545",
          "name": "Bruntál",
          "country_code": "CZ",
          "slug": "bruntal",
          "canonical_path": "/cities/cz/bruntal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078503",
          "name": "Bučovice",
          "country_code": "CZ",
          "slug": "bucovice",
          "canonical_path": "/cities/cz/bucovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078308",
          "name": "Bystrc",
          "country_code": "CZ",
          "slug": "bystrc",
          "canonical_path": "/cities/cz/bystrc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078301",
          "name": "Bystřice",
          "country_code": "CZ",
          "slug": "bystrice",
          "canonical_path": "/cities/cz/bystrice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078288",
          "name": "Bystřice nad Pernštejnem",
          "country_code": "CZ",
          "slug": "bystrice-nad-pernstejnem",
          "canonical_path": "/cities/cz/bystrice-nad-pernstejnem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078286",
          "name": "Bystřice pod Hostýnem",
          "country_code": "CZ",
          "slug": "bystrice-pod-hostynem",
          "canonical_path": "/cities/cz/bystrice-pod-hostynem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078234",
          "name": "Čáslav",
          "country_code": "CZ",
          "slug": "caslav",
          "canonical_path": "/cities/cz/caslav/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078160",
          "name": "Čelákovice",
          "country_code": "CZ",
          "slug": "celakovice",
          "canonical_path": "/cities/cz/celakovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078029",
          "name": "Černošice",
          "country_code": "CZ",
          "slug": "cernosice",
          "canonical_path": "/cities/cz/cernosice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3078016",
          "name": "Černovice",
          "country_code": "CZ",
          "slug": "cernovice",
          "canonical_path": "/cities/cz/cernovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077955",
          "name": "Červený Kostelec",
          "country_code": "CZ",
          "slug": "cerveny-kostelec",
          "canonical_path": "/cities/cz/cerveny-kostelec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077932",
          "name": "Česká Kamenice",
          "country_code": "CZ",
          "slug": "ceska-kamenice",
          "canonical_path": "/cities/cz/ceska-kamenice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077929",
          "name": "Česká Lípa",
          "country_code": "CZ",
          "slug": "ceska-lipa",
          "canonical_path": "/cities/cz/ceska-lipa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077921",
          "name": "Česká Skalice",
          "country_code": "CZ",
          "slug": "ceska-skalice",
          "canonical_path": "/cities/cz/ceska-skalice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077920",
          "name": "Česká Třebová",
          "country_code": "CZ",
          "slug": "ceska-trebova",
          "canonical_path": "/cities/cz/ceska-trebova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077916",
          "name": "České Budějovice",
          "country_code": "CZ",
          "slug": "ceske-budejovice",
          "canonical_path": "/cities/cz/ceske-budejovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077898",
          "name": "Český Brod",
          "country_code": "CZ",
          "slug": "cesky-brod",
          "canonical_path": "/cities/cz/cesky-brod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077889",
          "name": "Český Krumlov",
          "country_code": "CZ",
          "slug": "cesky-krumlov",
          "canonical_path": "/cities/cz/cesky-krumlov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077882",
          "name": "Český Těšín",
          "country_code": "CZ",
          "slug": "cesky-tesin",
          "canonical_path": "/cities/cz/cesky-tesin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077835",
          "name": "Cheb",
          "country_code": "CZ",
          "slug": "cheb",
          "canonical_path": "/cities/cz/cheb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077751",
          "name": "Chlumec nad Cidlinou",
          "country_code": "CZ",
          "slug": "chlumec-nad-cidlinou",
          "canonical_path": "/cities/cz/chlumec-nad-cidlinou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077725",
          "name": "Choceň",
          "country_code": "CZ",
          "slug": "chocen",
          "canonical_path": "/cities/cz/chocen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077706",
          "name": "Chodov",
          "country_code": "CZ",
          "slug": "chodov",
          "canonical_path": "/cities/cz/chodov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077685",
          "name": "Chomutov",
          "country_code": "CZ",
          "slug": "chomutov",
          "canonical_path": "/cities/cz/chomutov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077669",
          "name": "Chotěboř",
          "country_code": "CZ",
          "slug": "chotebor",
          "canonical_path": "/cities/cz/chotebor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077584",
          "name": "Chrastava",
          "country_code": "CZ",
          "slug": "chrastava",
          "canonical_path": "/cities/cz/chrastava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077549",
          "name": "Chropyně",
          "country_code": "CZ",
          "slug": "chropyne",
          "canonical_path": "/cities/cz/chropyne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077539",
          "name": "Chrudim",
          "country_code": "CZ",
          "slug": "chrudim",
          "canonical_path": "/cities/cz/chrudim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077403",
          "name": "Čimice",
          "country_code": "CZ",
          "slug": "cimice",
          "canonical_path": "/cities/cz/cimice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077304",
          "name": "Dačice",
          "country_code": "CZ",
          "slug": "dacice",
          "canonical_path": "/cities/cz/dacice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077244",
          "name": "Děčín",
          "country_code": "CZ",
          "slug": "decin",
          "canonical_path": "/cities/cz/decin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077073",
          "name": "Dobřany",
          "country_code": "CZ",
          "slug": "dobrany",
          "canonical_path": "/cities/cz/dobrany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3077024",
          "name": "Dobříš",
          "country_code": "CZ",
          "slug": "dobris",
          "canonical_path": "/cities/cz/dobris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076985",
          "name": "Dobruška",
          "country_code": "CZ",
          "slug": "dobruska",
          "canonical_path": "/cities/cz/dobruska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076972",
          "name": "Doksy",
          "country_code": "CZ",
          "slug": "doksy",
          "canonical_path": "/cities/cz/doksy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076777",
          "name": "Dolní Lutyně",
          "country_code": "CZ",
          "slug": "dolni-lutyne",
          "canonical_path": "/cities/cz/dolni-lutyne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076587",
          "name": "Domažlice",
          "country_code": "CZ",
          "slug": "domazlice",
          "canonical_path": "/cities/cz/domazlice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076346",
          "name": "Dubí",
          "country_code": "CZ",
          "slug": "dubi",
          "canonical_path": "/cities/cz/dubi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076329",
          "name": "Dubňany",
          "country_code": "CZ",
          "slug": "dubnany",
          "canonical_path": "/cities/cz/dubnany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076311",
          "name": "Duchcov",
          "country_code": "CZ",
          "slug": "duchcov",
          "canonical_path": "/cities/cz/duchcov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061284",
          "name": "Dvůr Králové nad Labem",
          "country_code": "CZ",
          "slug": "dvur-kralove-nad-labem",
          "canonical_path": "/cities/cz/dvur-kralove-nad-labem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076136",
          "name": "Františkovy Lázně",
          "country_code": "CZ",
          "slug": "frantiskovy-lazne",
          "canonical_path": "/cities/cz/frantiskovy-lazne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076132",
          "name": "Frenštát pod Radhoštěm",
          "country_code": "CZ",
          "slug": "frenstat-pod-radhostem",
          "canonical_path": "/cities/cz/frenstat-pod-radhostem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076127",
          "name": "Frýdek-Místek",
          "country_code": "CZ",
          "slug": "frydek-mistek",
          "canonical_path": "/cities/cz/frydek-mistek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076124",
          "name": "Frýdlant",
          "country_code": "CZ",
          "slug": "frydlant",
          "canonical_path": "/cities/cz/frydlant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076123",
          "name": "Frýdlant nad Ostravicí",
          "country_code": "CZ",
          "slug": "frydlant-nad-ostravici",
          "canonical_path": "/cities/cz/frydlant-nad-ostravici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076116",
          "name": "Fulnek",
          "country_code": "CZ",
          "slug": "fulnek",
          "canonical_path": "/cities/cz/fulnek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3076076",
          "name": "Habartov",
          "country_code": "CZ",
          "slug": "habartov",
          "canonical_path": "/cities/cz/habartov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075921",
          "name": "Havířov",
          "country_code": "CZ",
          "slug": "havirov",
          "canonical_path": "/cities/cz/havirov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075919",
          "name": "Havlíčkův Brod",
          "country_code": "CZ",
          "slug": "havlickuv-brod",
          "canonical_path": "/cities/cz/havlickuv-brod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075766",
          "name": "Hlinsko",
          "country_code": "CZ",
          "slug": "hlinsko",
          "canonical_path": "/cities/cz/hlinsko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075716",
          "name": "Hlučín",
          "country_code": "CZ",
          "slug": "hlucin",
          "canonical_path": "/cities/cz/hlucin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075654",
          "name": "Hodonín",
          "country_code": "CZ",
          "slug": "hodonin",
          "canonical_path": "/cities/cz/hodonin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075606",
          "name": "Holešov",
          "country_code": "CZ",
          "slug": "holesov",
          "canonical_path": "/cities/cz/holesov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075599",
          "name": "Holice",
          "country_code": "CZ",
          "slug": "holice",
          "canonical_path": "/cities/cz/holice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075522",
          "name": "Horažďovice",
          "country_code": "CZ",
          "slug": "horazdovice",
          "canonical_path": "/cities/cz/horazdovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075493",
          "name": "Hořice",
          "country_code": "CZ",
          "slug": "horice",
          "canonical_path": "/cities/cz/horice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075208",
          "name": "Horní Slavkov",
          "country_code": "CZ",
          "slug": "horni-slavkov",
          "canonical_path": "/cities/cz/horni-slavkov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075119",
          "name": "Hořovice",
          "country_code": "CZ",
          "slug": "horovice",
          "canonical_path": "/cities/cz/horovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3075051",
          "name": "Hostivice",
          "country_code": "CZ",
          "slug": "hostivice",
          "canonical_path": "/cities/cz/hostivice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074967",
          "name": "Hradec Králové",
          "country_code": "CZ",
          "slug": "hradec-kralove",
          "canonical_path": "/cities/cz/hradec-kralove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074975",
          "name": "Hradec nad Moravicí",
          "country_code": "CZ",
          "slug": "hradec-nad-moravici",
          "canonical_path": "/cities/cz/hradec-nad-moravici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074944",
          "name": "Hrádek nad Nisou",
          "country_code": "CZ",
          "slug": "hradek-nad-nisou",
          "canonical_path": "/cities/cz/hradek-nad-nisou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074893",
          "name": "Hranice",
          "country_code": "CZ",
          "slug": "hranice",
          "canonical_path": "/cities/cz/hranice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074805",
          "name": "Hronov",
          "country_code": "CZ",
          "slug": "hronov",
          "canonical_path": "/cities/cz/hronov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074731",
          "name": "Hulín",
          "country_code": "CZ",
          "slug": "hulin",
          "canonical_path": "/cities/cz/hulin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074723",
          "name": "Humpolec",
          "country_code": "CZ",
          "slug": "humpolec",
          "canonical_path": "/cities/cz/humpolec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074677",
          "name": "Hustopeče",
          "country_code": "CZ",
          "slug": "hustopece",
          "canonical_path": "/cities/cz/hustopece/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074615",
          "name": "Ivančice",
          "country_code": "CZ",
          "slug": "ivancice",
          "canonical_path": "/cities/cz/ivancice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074603",
          "name": "Jablonec nad Nisou",
          "country_code": "CZ",
          "slug": "jablonec-nad-nisou",
          "canonical_path": "/cities/cz/jablonec-nad-nisou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074593",
          "name": "Jablunkov",
          "country_code": "CZ",
          "slug": "jablunkov",
          "canonical_path": "/cities/cz/jablunkov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074462",
          "name": "Jaroměř",
          "country_code": "CZ",
          "slug": "jaromer",
          "canonical_path": "/cities/cz/jaromer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074286",
          "name": "Jesenice",
          "country_code": "CZ",
          "slug": "jesenice",
          "canonical_path": "/cities/cz/jesenice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074281",
          "name": "Jeseník",
          "country_code": "CZ",
          "slug": "jesenik",
          "canonical_path": "/cities/cz/jesenik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074204",
          "name": "Jičín",
          "country_code": "CZ",
          "slug": "jicin",
          "canonical_path": "/cities/cz/jicin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074199",
          "name": "Jihlava",
          "country_code": "CZ",
          "slug": "jihlava",
          "canonical_path": "/cities/cz/jihlava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074187",
          "name": "Jilemnice",
          "country_code": "CZ",
          "slug": "jilemnice",
          "canonical_path": "/cities/cz/jilemnice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074181",
          "name": "Jílové",
          "country_code": "CZ",
          "slug": "jilove",
          "canonical_path": "/cities/cz/jilove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074178",
          "name": "Jílové u Prahy",
          "country_code": "CZ",
          "slug": "jilove-u-prahy",
          "canonical_path": "/cities/cz/jilove-u-prahy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074149",
          "name": "Jindřichův Hradec",
          "country_code": "CZ",
          "slug": "jindrichuv-hradec",
          "canonical_path": "/cities/cz/jindrichuv-hradec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074110",
          "name": "Jirkov",
          "country_code": "CZ",
          "slug": "jirkov",
          "canonical_path": "/cities/cz/jirkov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3074020",
          "name": "Kadaň",
          "country_code": "CZ",
          "slug": "kadan",
          "canonical_path": "/cities/cz/kadan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073862",
          "name": "Kaplice",
          "country_code": "CZ",
          "slug": "kaplice",
          "canonical_path": "/cities/cz/kaplice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073803",
          "name": "Karlovy Vary",
          "country_code": "CZ",
          "slug": "karlovy-vary",
          "canonical_path": "/cities/cz/karlovy-vary/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073789",
          "name": "Karviná",
          "country_code": "CZ",
          "slug": "karvina",
          "canonical_path": "/cities/cz/karvina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073699",
          "name": "Kladno",
          "country_code": "CZ",
          "slug": "kladno",
          "canonical_path": "/cities/cz/kladno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073668",
          "name": "Klášterec nad Ohří",
          "country_code": "CZ",
          "slug": "klasterec-nad-ohri",
          "canonical_path": "/cities/cz/klasterec-nad-ohri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073660",
          "name": "Klatovy",
          "country_code": "CZ",
          "slug": "klatovy",
          "canonical_path": "/cities/cz/klatovy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073419",
          "name": "Kohoutovice",
          "country_code": "CZ",
          "slug": "kohoutovice",
          "canonical_path": "/cities/cz/kohoutovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073407",
          "name": "Kojetín",
          "country_code": "CZ",
          "slug": "kojetin",
          "canonical_path": "/cities/cz/kojetin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073371",
          "name": "Kolín",
          "country_code": "CZ",
          "slug": "kolin",
          "canonical_path": "/cities/cz/kolin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073332",
          "name": "Komín",
          "country_code": "CZ",
          "slug": "komin",
          "canonical_path": "/cities/cz/komin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073254",
          "name": "Kopřivnice",
          "country_code": "CZ",
          "slug": "koprivnice",
          "canonical_path": "/cities/cz/koprivnice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3073149",
          "name": "Kostelec nad Orlicí",
          "country_code": "CZ",
          "slug": "kostelec-nad-orlici",
          "canonical_path": "/cities/cz/kostelec-nad-orlici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072934",
          "name": "Královo Pole",
          "country_code": "CZ",
          "slug": "kralovo-pole",
          "canonical_path": "/cities/cz/kralovo-pole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072929",
          "name": "Kralupy nad Vltavou",
          "country_code": "CZ",
          "slug": "kralupy-nad-vltavou",
          "canonical_path": "/cities/cz/kralupy-nad-vltavou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072927",
          "name": "Králův Dvůr",
          "country_code": "CZ",
          "slug": "kraluv-dvur",
          "canonical_path": "/cities/cz/kraluv-dvur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072903",
          "name": "Kraslice",
          "country_code": "CZ",
          "slug": "kraslice",
          "canonical_path": "/cities/cz/kraslice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072841",
          "name": "Kravaře",
          "country_code": "CZ",
          "slug": "kravare",
          "canonical_path": "/cities/cz/kravare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072656",
          "name": "Krnov",
          "country_code": "CZ",
          "slug": "krnov",
          "canonical_path": "/cities/cz/krnov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072649",
          "name": "Kroměříž",
          "country_code": "CZ",
          "slug": "kromeriz",
          "canonical_path": "/cities/cz/kromeriz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072598",
          "name": "Krupka",
          "country_code": "CZ",
          "slug": "krupka",
          "canonical_path": "/cities/cz/krupka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072497",
          "name": "Kunovice",
          "country_code": "CZ",
          "slug": "kunovice",
          "canonical_path": "/cities/cz/kunovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072476",
          "name": "Kuřim",
          "country_code": "CZ",
          "slug": "kurim",
          "canonical_path": "/cities/cz/kurim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072463",
          "name": "Kutná Hora",
          "country_code": "CZ",
          "slug": "kutna-hora",
          "canonical_path": "/cities/cz/kutna-hora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072407",
          "name": "Kyjov",
          "country_code": "CZ",
          "slug": "kyjov",
          "canonical_path": "/cities/cz/kyjov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072332",
          "name": "Lanškroun",
          "country_code": "CZ",
          "slug": "lanskroun",
          "canonical_path": "/cities/cz/lanskroun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072235",
          "name": "Ledeč nad Sázavou",
          "country_code": "CZ",
          "slug": "ledec-nad-sazavou",
          "canonical_path": "/cities/cz/ledec-nad-sazavou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072134",
          "name": "Letohrad",
          "country_code": "CZ",
          "slug": "letohrad",
          "canonical_path": "/cities/cz/letohrad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3072130",
          "name": "Letovice",
          "country_code": "CZ",
          "slug": "letovice",
          "canonical_path": "/cities/cz/letovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:slug:liberec",
          "name": "Liberec",
          "country_code": "CZ",
          "slug": "liberec",
          "canonical_path": "/cities/cz/liberec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071791",
          "name": "Lipník nad Bečvou",
          "country_code": "CZ",
          "slug": "lipnik-nad-becvou",
          "canonical_path": "/cities/cz/lipnik-nad-becvou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071748",
          "name": "Líšeň",
          "country_code": "CZ",
          "slug": "lisen",
          "canonical_path": "/cities/cz/lisen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071677",
          "name": "Litoměřice",
          "country_code": "CZ",
          "slug": "litomerice",
          "canonical_path": "/cities/cz/litomerice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071675",
          "name": "Litomyšl",
          "country_code": "CZ",
          "slug": "litomysl",
          "canonical_path": "/cities/cz/litomysl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071669",
          "name": "Litovel",
          "country_code": "CZ",
          "slug": "litovel",
          "canonical_path": "/cities/cz/litovel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071665",
          "name": "Litvínov",
          "country_code": "CZ",
          "slug": "litvinov",
          "canonical_path": "/cities/cz/litvinov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071606",
          "name": "Lomnice nad Popelkou",
          "country_code": "CZ",
          "slug": "lomnice-nad-popelkou",
          "canonical_path": "/cities/cz/lomnice-nad-popelkou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071507",
          "name": "Louny",
          "country_code": "CZ",
          "slug": "louny",
          "canonical_path": "/cities/cz/louny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071480",
          "name": "Lovosice",
          "country_code": "CZ",
          "slug": "lovosice",
          "canonical_path": "/cities/cz/lovosice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071407",
          "name": "Luhačovice",
          "country_code": "CZ",
          "slug": "luhacovice",
          "canonical_path": "/cities/cz/luhacovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071304",
          "name": "Lysá nad Labem",
          "country_code": "CZ",
          "slug": "lysa-nad-labem",
          "canonical_path": "/cities/cz/lysa-nad-labem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071116",
          "name": "Maloměřice",
          "country_code": "CZ",
          "slug": "malomerice",
          "canonical_path": "/cities/cz/malomerice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071024",
          "name": "Mariánské Lázně",
          "country_code": "CZ",
          "slug": "marianske-lazne",
          "canonical_path": "/cities/cz/marianske-lazne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070893",
          "name": "Medlánky",
          "country_code": "CZ",
          "slug": "medlanky",
          "canonical_path": "/cities/cz/medlanky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070862",
          "name": "Mělník",
          "country_code": "CZ",
          "slug": "melnik",
          "canonical_path": "/cities/cz/melnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070720",
          "name": "Mikulov",
          "country_code": "CZ",
          "slug": "mikulov",
          "canonical_path": "/cities/cz/mikulov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070678",
          "name": "Milevsko",
          "country_code": "CZ",
          "slug": "milevsko",
          "canonical_path": "/cities/cz/milevsko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070628",
          "name": "Milovice",
          "country_code": "CZ",
          "slug": "milovice",
          "canonical_path": "/cities/cz/milovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070622",
          "name": "Mimoň",
          "country_code": "CZ",
          "slug": "mimon",
          "canonical_path": "/cities/cz/mimon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070544",
          "name": "Mladá Boleslav",
          "country_code": "CZ",
          "slug": "mlada-boleslav",
          "canonical_path": "/cities/cz/mlada-boleslav/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070451",
          "name": "Mnichovo Hradiště",
          "country_code": "CZ",
          "slug": "mnichovo-hradiste",
          "canonical_path": "/cities/cz/mnichovo-hradiste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070446",
          "name": "Mníšek pod Brdy",
          "country_code": "CZ",
          "slug": "mnisek-pod-brdy",
          "canonical_path": "/cities/cz/mnisek-pod-brdy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070416",
          "name": "Modřice",
          "country_code": "CZ",
          "slug": "modrice",
          "canonical_path": "/cities/cz/modrice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070409",
          "name": "Mohelnice",
          "country_code": "CZ",
          "slug": "mohelnice",
          "canonical_path": "/cities/cz/mohelnice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070325",
          "name": "Moravská Třebová",
          "country_code": "CZ",
          "slug": "moravska-trebova",
          "canonical_path": "/cities/cz/moravska-trebova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070323",
          "name": "Moravské Budějovice",
          "country_code": "CZ",
          "slug": "moravske-budejovice",
          "canonical_path": "/cities/cz/moravske-budejovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070310",
          "name": "Moravský Krumlov",
          "country_code": "CZ",
          "slug": "moravsky-krumlov",
          "canonical_path": "/cities/cz/moravsky-krumlov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070291",
          "name": "Most",
          "country_code": "CZ",
          "slug": "most",
          "canonical_path": "/cities/cz/most/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070122",
          "name": "Náchod",
          "country_code": "CZ",
          "slug": "nachod",
          "canonical_path": "/cities/cz/nachod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3070045",
          "name": "Napajedla",
          "country_code": "CZ",
          "slug": "napajedla",
          "canonical_path": "/cities/cz/napajedla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069934",
          "name": "Nejdek",
          "country_code": "CZ",
          "slug": "nejdek",
          "canonical_path": "/cities/cz/nejdek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069844",
          "name": "Neratovice",
          "country_code": "CZ",
          "slug": "neratovice",
          "canonical_path": "/cities/cz/neratovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069669",
          "name": "Nová Paka",
          "country_code": "CZ",
          "slug": "nova-paka",
          "canonical_path": "/cities/cz/nova-paka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069465",
          "name": "Nové Město na Moravě",
          "country_code": "CZ",
          "slug": "nove-mesto-na-morave",
          "canonical_path": "/cities/cz/nove-mesto-na-morave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069466",
          "name": "Nové Město nad Metují",
          "country_code": "CZ",
          "slug": "nove-mesto-nad-metuji",
          "canonical_path": "/cities/cz/nove-mesto-nad-metuji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069431",
          "name": "Nové Strašecí",
          "country_code": "CZ",
          "slug": "nove-straseci",
          "canonical_path": "/cities/cz/nove-straseci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069381",
          "name": "Nový Bor",
          "country_code": "CZ",
          "slug": "novy-bor",
          "canonical_path": "/cities/cz/novy-bor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069377",
          "name": "Nový Bydžov",
          "country_code": "CZ",
          "slug": "novy-bydzov",
          "canonical_path": "/cities/cz/novy-bydzov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069305",
          "name": "Nový Jičín",
          "country_code": "CZ",
          "slug": "novy-jicin",
          "canonical_path": "/cities/cz/novy-jicin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069294",
          "name": "Nový Lískovec",
          "country_code": "CZ",
          "slug": "novy-liskovec",
          "canonical_path": "/cities/cz/novy-liskovec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069236",
          "name": "Nymburk",
          "country_code": "CZ",
          "slug": "nymburk",
          "canonical_path": "/cities/cz/nymburk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069232",
          "name": "Nýřany",
          "country_code": "CZ",
          "slug": "nyrany",
          "canonical_path": "/cities/cz/nyrany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069230",
          "name": "Nýrsko",
          "country_code": "CZ",
          "slug": "nyrsko",
          "canonical_path": "/cities/cz/nyrsko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069150",
          "name": "Odolena Voda",
          "country_code": "CZ",
          "slug": "odolena-voda",
          "canonical_path": "/cities/cz/odolena-voda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069136",
          "name": "Odry",
          "country_code": "CZ",
          "slug": "odry",
          "canonical_path": "/cities/cz/odry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3069011",
          "name": "Olomouc",
          "country_code": "CZ",
          "slug": "olomouc",
          "canonical_path": "/cities/cz/olomouc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068927",
          "name": "Opava",
          "country_code": "CZ",
          "slug": "opava",
          "canonical_path": "/cities/cz/opava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068873",
          "name": "Orlová",
          "country_code": "CZ",
          "slug": "orlova",
          "canonical_path": "/cities/cz/orlova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:slug:ostrava",
          "name": "Ostrava",
          "country_code": "CZ",
          "slug": "ostrava",
          "canonical_path": "/cities/cz/ostrava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068766",
          "name": "Ostrov",
          "country_code": "CZ",
          "slug": "ostrov",
          "canonical_path": "/cities/cz/ostrov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068690",
          "name": "Otrokovice",
          "country_code": "CZ",
          "slug": "otrokovice",
          "canonical_path": "/cities/cz/otrokovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068647",
          "name": "Pacov",
          "country_code": "CZ",
          "slug": "pacov",
          "canonical_path": "/cities/cz/pacov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068582",
          "name": "Pardubice",
          "country_code": "CZ",
          "slug": "pardubice",
          "canonical_path": "/cities/cz/pardubice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068445",
          "name": "Pelhřimov",
          "country_code": "CZ",
          "slug": "pelhrimov",
          "canonical_path": "/cities/cz/pelhrimov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068329",
          "name": "Petřvald",
          "country_code": "CZ",
          "slug": "petrvald",
          "canonical_path": "/cities/cz/petrvald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068160",
          "name": "Pilsen",
          "country_code": "CZ",
          "slug": "pilsen",
          "canonical_path": "/cities/cz/pilsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068293",
          "name": "Písek",
          "country_code": "CZ",
          "slug": "pisek",
          "canonical_path": "/cities/cz/pisek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068246",
          "name": "Planá",
          "country_code": "CZ",
          "slug": "plana",
          "canonical_path": "/cities/cz/plana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:slug:plzen",
          "name": "Plzeň",
          "country_code": "CZ",
          "slug": "plzen",
          "canonical_path": "/cities/cz/plzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068119",
          "name": "Podbořany",
          "country_code": "CZ",
          "slug": "podborany",
          "canonical_path": "/cities/cz/podborany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3068107",
          "name": "Poděbrady",
          "country_code": "CZ",
          "slug": "podebrady",
          "canonical_path": "/cities/cz/podebrady/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067953",
          "name": "Pohořelice",
          "country_code": "CZ",
          "slug": "pohorelice",
          "canonical_path": "/cities/cz/pohorelice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067882",
          "name": "Polička",
          "country_code": "CZ",
          "slug": "policka",
          "canonical_path": "/cities/cz/policka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067870",
          "name": "Polná",
          "country_code": "CZ",
          "slug": "polna",
          "canonical_path": "/cities/cz/polna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067713",
          "name": "Prachatice",
          "country_code": "CZ",
          "slug": "prachatice",
          "canonical_path": "/cities/cz/prachatice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:slug:prague",
          "name": "Prague",
          "country_code": "CZ",
          "slug": "prague",
          "canonical_path": "/cities/cz/prague/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067594",
          "name": "Přelouč",
          "country_code": "CZ",
          "slug": "prelouc",
          "canonical_path": "/cities/cz/prelouc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067580",
          "name": "Přerov",
          "country_code": "CZ",
          "slug": "prerov",
          "canonical_path": "/cities/cz/prerov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067553",
          "name": "Přeštice",
          "country_code": "CZ",
          "slug": "prestice",
          "canonical_path": "/cities/cz/prestice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067544",
          "name": "Příbor",
          "country_code": "CZ",
          "slug": "pribor",
          "canonical_path": "/cities/cz/pribor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067542",
          "name": "Příbram",
          "country_code": "CZ",
          "slug": "pribram",
          "canonical_path": "/cities/cz/pribram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067421",
          "name": "Prostějov",
          "country_code": "CZ",
          "slug": "prostejov",
          "canonical_path": "/cities/cz/prostejov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067124",
          "name": "Radotín",
          "country_code": "CZ",
          "slug": "radotin",
          "canonical_path": "/cities/cz/radotin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3067051",
          "name": "Rakovník",
          "country_code": "CZ",
          "slug": "rakovnik",
          "canonical_path": "/cities/cz/rakovnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066965",
          "name": "Řečkovice",
          "country_code": "CZ",
          "slug": "reckovice",
          "canonical_path": "/cities/cz/reckovice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066878",
          "name": "Říčany",
          "country_code": "CZ",
          "slug": "ricany",
          "canonical_path": "/cities/cz/ricany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066794",
          "name": "Rokycany",
          "country_code": "CZ",
          "slug": "rokycany",
          "canonical_path": "/cities/cz/rokycany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066759",
          "name": "Rosice",
          "country_code": "CZ",
          "slug": "rosice",
          "canonical_path": "/cities/cz/rosice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066727",
          "name": "Roudnice nad Labem",
          "country_code": "CZ",
          "slug": "roudnice-nad-labem",
          "canonical_path": "/cities/cz/roudnice-nad-labem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066719",
          "name": "Rousínov",
          "country_code": "CZ",
          "slug": "rousinov",
          "canonical_path": "/cities/cz/rousinov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066651",
          "name": "Rožnov pod Radhoštěm",
          "country_code": "CZ",
          "slug": "roznov-pod-radhostem",
          "canonical_path": "/cities/cz/roznov-pod-radhostem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066636",
          "name": "Roztoky",
          "country_code": "CZ",
          "slug": "roztoky",
          "canonical_path": "/cities/cz/roztoky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066599",
          "name": "Rudná",
          "country_code": "CZ",
          "slug": "rudna",
          "canonical_path": "/cities/cz/rudna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066578",
          "name": "Rumburk",
          "country_code": "CZ",
          "slug": "rumburk",
          "canonical_path": "/cities/cz/rumburk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066503",
          "name": "Rychnov nad Kněžnou",
          "country_code": "CZ",
          "slug": "rychnov-nad-kneznou",
          "canonical_path": "/cities/cz/rychnov-nad-kneznou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066492",
          "name": "Rychvald",
          "country_code": "CZ",
          "slug": "rychvald",
          "canonical_path": "/cities/cz/rychvald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066483",
          "name": "Rýmařov",
          "country_code": "CZ",
          "slug": "rymarov",
          "canonical_path": "/cities/cz/rymarov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066333",
          "name": "Sedlčany",
          "country_code": "CZ",
          "slug": "sedlcany",
          "canonical_path": "/cities/cz/sedlcany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066220",
          "name": "Semily",
          "country_code": "CZ",
          "slug": "semily",
          "canonical_path": "/cities/cz/semily/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066184",
          "name": "Šenov",
          "country_code": "CZ",
          "slug": "senov",
          "canonical_path": "/cities/cz/senov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3066154",
          "name": "Sezimovo Ústí",
          "country_code": "CZ",
          "slug": "sezimovo-usti",
          "canonical_path": "/cities/cz/sezimovo-usti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065921",
          "name": "Skuteč",
          "country_code": "CZ",
          "slug": "skutec",
          "canonical_path": "/cities/cz/skutec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065903",
          "name": "Slaný",
          "country_code": "CZ",
          "slug": "slany",
          "canonical_path": "/cities/cz/slany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065901",
          "name": "Šlapanice",
          "country_code": "CZ",
          "slug": "slapanice",
          "canonical_path": "/cities/cz/slapanice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065876",
          "name": "Slatina",
          "country_code": "CZ",
          "slug": "slatina",
          "canonical_path": "/cities/cz/slatina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065843",
          "name": "Slavičín",
          "country_code": "CZ",
          "slug": "slavicin",
          "canonical_path": "/cities/cz/slavicin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065824",
          "name": "Slavkov u Brna",
          "country_code": "CZ",
          "slug": "slavkov-u-brna",
          "canonical_path": "/cities/cz/slavkov-u-brna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065768",
          "name": "Šluknov",
          "country_code": "CZ",
          "slug": "sluknov",
          "canonical_path": "/cities/cz/sluknov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065644",
          "name": "Soběslav",
          "country_code": "CZ",
          "slug": "sobeslav",
          "canonical_path": "/cities/cz/sobeslav/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065617",
          "name": "Sokolov",
          "country_code": "CZ",
          "slug": "sokolov",
          "canonical_path": "/cities/cz/sokolov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065335",
          "name": "Staré Město",
          "country_code": "CZ",
          "slug": "stare-mesto",
          "canonical_path": "/cities/cz/stare-mesto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3071731",
          "name": "Starý Lískovec",
          "country_code": "CZ",
          "slug": "stary-liskovec",
          "canonical_path": "/cities/cz/stary-liskovec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065249",
          "name": "Starý Plzenec",
          "country_code": "CZ",
          "slug": "stary-plzenec",
          "canonical_path": "/cities/cz/stary-plzenec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065166",
          "name": "Šternberk",
          "country_code": "CZ",
          "slug": "sternberk",
          "canonical_path": "/cities/cz/sternberk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065163",
          "name": "Štětí",
          "country_code": "CZ",
          "slug": "steti",
          "canonical_path": "/cities/cz/steti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065117",
          "name": "Stochov",
          "country_code": "CZ",
          "slug": "stochov",
          "canonical_path": "/cities/cz/stochov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3065067",
          "name": "Strakonice",
          "country_code": "CZ",
          "slug": "strakonice",
          "canonical_path": "/cities/cz/strakonice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064995",
          "name": "Strážnice",
          "country_code": "CZ",
          "slug": "straznice",
          "canonical_path": "/cities/cz/straznice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064919",
          "name": "Stříbro",
          "country_code": "CZ",
          "slug": "stribro",
          "canonical_path": "/cities/cz/stribro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064807",
          "name": "Studénka",
          "country_code": "CZ",
          "slug": "studenka",
          "canonical_path": "/cities/cz/studenka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064673",
          "name": "Šumperk",
          "country_code": "CZ",
          "slug": "sumperk",
          "canonical_path": "/cities/cz/sumperk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064662",
          "name": "Sušice",
          "country_code": "CZ",
          "slug": "susice",
          "canonical_path": "/cities/cz/susice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064510",
          "name": "Světlá nad Sázavou",
          "country_code": "CZ",
          "slug": "svetla-nad-sazavou",
          "canonical_path": "/cities/cz/svetla-nad-sazavou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064454",
          "name": "Svitavy",
          "country_code": "CZ",
          "slug": "svitavy",
          "canonical_path": "/cities/cz/svitavy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064379",
          "name": "Tábor",
          "country_code": "CZ",
          "slug": "tabor",
          "canonical_path": "/cities/cz/tabor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064373",
          "name": "Tachov",
          "country_code": "CZ",
          "slug": "tachov",
          "canonical_path": "/cities/cz/tachov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064358",
          "name": "Tanvald",
          "country_code": "CZ",
          "slug": "tanvald",
          "canonical_path": "/cities/cz/tanvald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064316",
          "name": "Telč",
          "country_code": "CZ",
          "slug": "telc",
          "canonical_path": "/cities/cz/telc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064288",
          "name": "Teplice",
          "country_code": "CZ",
          "slug": "teplice",
          "canonical_path": "/cities/cz/teplice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064211",
          "name": "Tišnov",
          "country_code": "CZ",
          "slug": "tisnov",
          "canonical_path": "/cities/cz/tisnov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064122",
          "name": "Třebechovice pod Orebem",
          "country_code": "CZ",
          "slug": "trebechovice-pod-orebem",
          "canonical_path": "/cities/cz/trebechovice-pod-orebem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064104",
          "name": "Třebíč",
          "country_code": "CZ",
          "slug": "trebic",
          "canonical_path": "/cities/cz/trebic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064079",
          "name": "Třeboň",
          "country_code": "CZ",
          "slug": "trebon",
          "canonical_path": "/cities/cz/trebon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064047",
          "name": "Třemošná",
          "country_code": "CZ",
          "slug": "tremosna",
          "canonical_path": "/cities/cz/tremosna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064029",
          "name": "Třešť",
          "country_code": "CZ",
          "slug": "trest",
          "canonical_path": "/cities/cz/trest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3064000",
          "name": "Třinec",
          "country_code": "CZ",
          "slug": "trinec",
          "canonical_path": "/cities/cz/trinec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063907",
          "name": "Trutnov",
          "country_code": "CZ",
          "slug": "trutnov",
          "canonical_path": "/cities/cz/trutnov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063858",
          "name": "Tuřany",
          "country_code": "CZ",
          "slug": "turany",
          "canonical_path": "/cities/cz/turany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063853",
          "name": "Turnov",
          "country_code": "CZ",
          "slug": "turnov",
          "canonical_path": "/cities/cz/turnov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063794",
          "name": "Týn nad Vltavou",
          "country_code": "CZ",
          "slug": "tyn-nad-vltavou",
          "canonical_path": "/cities/cz/tyn-nad-vltavou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063804",
          "name": "Týnec nad Sázavou",
          "country_code": "CZ",
          "slug": "tynec-nad-sazavou",
          "canonical_path": "/cities/cz/tynec-nad-sazavou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063797",
          "name": "Týniště nad Orlicí",
          "country_code": "CZ",
          "slug": "tyniste-nad-orlici",
          "canonical_path": "/cities/cz/tyniste-nad-orlici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063739",
          "name": "Uherské Hradiště",
          "country_code": "CZ",
          "slug": "uherske-hradiste",
          "canonical_path": "/cities/cz/uherske-hradiste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063736",
          "name": "Uherský Brod",
          "country_code": "CZ",
          "slug": "uhersky-brod",
          "canonical_path": "/cities/cz/uhersky-brod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063599",
          "name": "Unhošť",
          "country_code": "CZ",
          "slug": "unhost",
          "canonical_path": "/cities/cz/unhost/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063596",
          "name": "Uničov",
          "country_code": "CZ",
          "slug": "unicov",
          "canonical_path": "/cities/cz/unicov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063590",
          "name": "Úpice",
          "country_code": "CZ",
          "slug": "upice",
          "canonical_path": "/cities/cz/upice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063548",
          "name": "Ústí nad Labem",
          "country_code": "CZ",
          "slug": "usti-nad-labem",
          "canonical_path": "/cities/cz/usti-nad-labem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063546",
          "name": "Ústí nad Orlicí",
          "country_code": "CZ",
          "slug": "usti-nad-orlici",
          "canonical_path": "/cities/cz/usti-nad-orlici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063502",
          "name": "Úvaly",
          "country_code": "CZ",
          "slug": "uvaly",
          "canonical_path": "/cities/cz/uvaly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063448",
          "name": "Valašské Klobouky",
          "country_code": "CZ",
          "slug": "valasske-klobouky",
          "canonical_path": "/cities/cz/valasske-klobouky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063447",
          "name": "Valašské Meziříčí",
          "country_code": "CZ",
          "slug": "valasske-mezirici",
          "canonical_path": "/cities/cz/valasske-mezirici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063375",
          "name": "Varnsdorf",
          "country_code": "CZ",
          "slug": "varnsdorf",
          "canonical_path": "/cities/cz/varnsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063276",
          "name": "Velká Bíteš",
          "country_code": "CZ",
          "slug": "velka-bites",
          "canonical_path": "/cities/cz/velka-bites/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063196",
          "name": "Velké Meziříčí",
          "country_code": "CZ",
          "slug": "velke-mezirici",
          "canonical_path": "/cities/cz/velke-mezirici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063033",
          "name": "Veselí nad Lužnicí",
          "country_code": "CZ",
          "slug": "veseli-nad-luznici",
          "canonical_path": "/cities/cz/veseli-nad-luznici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3063032",
          "name": "Veselí nad Moravou",
          "country_code": "CZ",
          "slug": "veseli-nad-moravou",
          "canonical_path": "/cities/cz/veseli-nad-moravou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062888",
          "name": "Vimperk",
          "country_code": "CZ",
          "slug": "vimperk",
          "canonical_path": "/cities/cz/vimperk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:6694695",
          "name": "Vinohrady",
          "country_code": "CZ",
          "slug": "vinohrady",
          "canonical_path": "/cities/cz/vinohrady/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062811",
          "name": "Vítkov",
          "country_code": "CZ",
          "slug": "vitkov",
          "canonical_path": "/cities/cz/vitkov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062759",
          "name": "Vlašim",
          "country_code": "CZ",
          "slug": "vlasim",
          "canonical_path": "/cities/cz/vlasim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062642",
          "name": "Vodňany",
          "country_code": "CZ",
          "slug": "vodnany",
          "canonical_path": "/cities/cz/vodnany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062497",
          "name": "Vratimov",
          "country_code": "CZ",
          "slug": "vratimov",
          "canonical_path": "/cities/cz/vratimov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062446",
          "name": "Vrbno pod Pradědem",
          "country_code": "CZ",
          "slug": "vrbno-pod-pradedem",
          "canonical_path": "/cities/cz/vrbno-pod-pradedem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062439",
          "name": "Vrchlabí",
          "country_code": "CZ",
          "slug": "vrchlabi",
          "canonical_path": "/cities/cz/vrchlabi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062339",
          "name": "Vsetín",
          "country_code": "CZ",
          "slug": "vsetin",
          "canonical_path": "/cities/cz/vsetin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062283",
          "name": "Vyškov",
          "country_code": "CZ",
          "slug": "vyskov",
          "canonical_path": "/cities/cz/vyskov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062214",
          "name": "Vysoké Mýto",
          "country_code": "CZ",
          "slug": "vysoke-myto",
          "canonical_path": "/cities/cz/vysoke-myto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062119",
          "name": "Žabovřesky",
          "country_code": "CZ",
          "slug": "zabovresky",
          "canonical_path": "/cities/cz/zabovresky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3062111",
          "name": "Zábřeh",
          "country_code": "CZ",
          "slug": "zabreh",
          "canonical_path": "/cities/cz/zabreh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061888",
          "name": "Žamberk",
          "country_code": "CZ",
          "slug": "zamberk",
          "canonical_path": "/cities/cz/zamberk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061822",
          "name": "Žatec",
          "country_code": "CZ",
          "slug": "zatec",
          "canonical_path": "/cities/cz/zatec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061695",
          "name": "Žďár nad Sázavou",
          "country_code": "CZ",
          "slug": "zdar-nad-sazavou",
          "canonical_path": "/cities/cz/zdar-nad-sazavou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061633",
          "name": "Žebětín",
          "country_code": "CZ",
          "slug": "zebetin",
          "canonical_path": "/cities/cz/zebetin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061562",
          "name": "Železný Brod",
          "country_code": "CZ",
          "slug": "zelezny-brod",
          "canonical_path": "/cities/cz/zelezny-brod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061473",
          "name": "Židenice",
          "country_code": "CZ",
          "slug": "zidenice",
          "canonical_path": "/cities/cz/zidenice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061370",
          "name": "Zlín",
          "country_code": "CZ",
          "slug": "zlin",
          "canonical_path": "/cities/cz/zlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061344",
          "name": "Znojmo",
          "country_code": "CZ",
          "slug": "znojmo",
          "canonical_path": "/cities/cz/znojmo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:cz:geonames:3061327",
          "name": "Zubří",
          "country_code": "CZ",
          "slug": "zubri",
          "canonical_path": "/cities/cz/zubri/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "DK",
      "path": "cities/dk.json",
      "city_count": 169,
      "cities": [
        {
          "entity_id": "city:dk:slug:aabenraa",
          "name": "Aabenraa",
          "country_code": "DK",
          "slug": "aabenraa",
          "canonical_path": "/cities/dk/aabenraa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:aalborg",
          "name": "Aalborg",
          "country_code": "DK",
          "slug": "aalborg",
          "canonical_path": "/cities/dk/aalborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:aarhus",
          "name": "Aarhus",
          "country_code": "DK",
          "slug": "aarhus",
          "canonical_path": "/cities/dk/aarhus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2625037",
          "name": "Åbybro",
          "country_code": "DK",
          "slug": "abybro",
          "canonical_path": "/cities/dk/abybro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:aero",
          "name": "Ærø",
          "country_code": "DK",
          "slug": "aero",
          "canonical_path": "/cities/dk/aero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:albertslund",
          "name": "Albertslund",
          "country_code": "DK",
          "slug": "albertslund",
          "canonical_path": "/cities/dk/albertslund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:allerod",
          "name": "Allerød",
          "country_code": "DK",
          "slug": "allerod",
          "canonical_path": "/cities/dk/allerod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2624784",
          "name": "Ålsgårde",
          "country_code": "DK",
          "slug": "alsgarde",
          "canonical_path": "/cities/dk/alsgarde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2624652",
          "name": "Århus",
          "country_code": "DK",
          "slug": "arhus",
          "canonical_path": "/cities/dk/arhus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:assens",
          "name": "Assens",
          "country_code": "DK",
          "slug": "assens",
          "canonical_path": "/cities/dk/assens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2624427",
          "name": "Avedøre",
          "country_code": "DK",
          "slug": "avedore",
          "canonical_path": "/cities/dk/avedore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:ballerup",
          "name": "Ballerup",
          "country_code": "DK",
          "slug": "ballerup",
          "canonical_path": "/cities/dk/ballerup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2624193",
          "name": "Bellinge",
          "country_code": "DK",
          "slug": "bellinge",
          "canonical_path": "/cities/dk/bellinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:billund",
          "name": "Billund",
          "country_code": "DK",
          "slug": "billund",
          "canonical_path": "/cities/dk/billund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2624112",
          "name": "Birkerød",
          "country_code": "DK",
          "slug": "birkerod",
          "canonical_path": "/cities/dk/birkerod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2624019",
          "name": "Bjerringbro",
          "country_code": "DK",
          "slug": "bjerringbro",
          "canonical_path": "/cities/dk/bjerringbro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:bornholm",
          "name": "Bornholm",
          "country_code": "DK",
          "slug": "bornholm",
          "canonical_path": "/cities/dk/bornholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2623570",
          "name": "Bramming",
          "country_code": "DK",
          "slug": "bramming",
          "canonical_path": "/cities/dk/bramming/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:brondby",
          "name": "Brøndby",
          "country_code": "DK",
          "slug": "brondby",
          "canonical_path": "/cities/dk/brondby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2623341",
          "name": "Brøndby Strand",
          "country_code": "DK",
          "slug": "brondby-strand",
          "canonical_path": "/cities/dk/brondby-strand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2623340",
          "name": "Brøndbyvester",
          "country_code": "DK",
          "slug": "brondbyvester",
          "canonical_path": "/cities/dk/brondbyvester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:bronderslev",
          "name": "Brønderslev",
          "country_code": "DK",
          "slug": "bronderslev",
          "canonical_path": "/cities/dk/bronderslev/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2623188",
          "name": "Charlottenlund",
          "country_code": "DK",
          "slug": "charlottenlund",
          "canonical_path": "/cities/dk/charlottenlund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:christianso",
          "name": "Christiansø",
          "country_code": "DK",
          "slug": "christianso",
          "canonical_path": "/cities/dk/christianso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:copenhagen",
          "name": "Copenhagen",
          "country_code": "DK",
          "slug": "copenhagen",
          "canonical_path": "/cities/dk/copenhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:dragor",
          "name": "Dragør",
          "country_code": "DK",
          "slug": "dragor",
          "canonical_path": "/cities/dk/dragor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:egedal",
          "name": "Egedal",
          "country_code": "DK",
          "slug": "egedal",
          "canonical_path": "/cities/dk/egedal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:esbjerg",
          "name": "Esbjerg",
          "country_code": "DK",
          "slug": "esbjerg",
          "canonical_path": "/cities/dk/esbjerg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2622418",
          "name": "Espergærde",
          "country_code": "DK",
          "slug": "espergaerde",
          "canonical_path": "/cities/dk/espergaerde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:faaborg-midtfyn",
          "name": "Faaborg-Midtfyn",
          "country_code": "DK",
          "slug": "faaborg-midtfyn",
          "canonical_path": "/cities/dk/faaborg-midtfyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:fano",
          "name": "Fanø",
          "country_code": "DK",
          "slug": "fano",
          "canonical_path": "/cities/dk/fano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2622306",
          "name": "Farum",
          "country_code": "DK",
          "slug": "farum",
          "canonical_path": "/cities/dk/farum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:favrskov",
          "name": "Favrskov",
          "country_code": "DK",
          "slug": "favrskov",
          "canonical_path": "/cities/dk/favrskov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:faxe",
          "name": "Faxe",
          "country_code": "DK",
          "slug": "faxe",
          "canonical_path": "/cities/dk/faxe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2622061",
          "name": "Fløng",
          "country_code": "DK",
          "slug": "flong",
          "canonical_path": "/cities/dk/flong/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:fredensborg",
          "name": "Fredensborg",
          "country_code": "DK",
          "slug": "fredensborg",
          "canonical_path": "/cities/dk/fredensborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:fredericia",
          "name": "Fredericia",
          "country_code": "DK",
          "slug": "fredericia",
          "canonical_path": "/cities/dk/fredericia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:frederiksberg",
          "name": "Frederiksberg",
          "country_code": "DK",
          "slug": "frederiksberg",
          "canonical_path": "/cities/dk/frederiksberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:frederikshavn",
          "name": "Frederikshavn",
          "country_code": "DK",
          "slug": "frederikshavn",
          "canonical_path": "/cities/dk/frederikshavn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:frederikssund",
          "name": "Frederikssund",
          "country_code": "DK",
          "slug": "frederikssund",
          "canonical_path": "/cities/dk/frederikssund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:fureso",
          "name": "Furesø",
          "country_code": "DK",
          "slug": "fureso",
          "canonical_path": "/cities/dk/fureso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:gentofte",
          "name": "Gentofte",
          "country_code": "DK",
          "slug": "gentofte",
          "canonical_path": "/cities/dk/gentofte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2621471",
          "name": "Gilleleje",
          "country_code": "DK",
          "slug": "gilleleje",
          "canonical_path": "/cities/dk/gilleleje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2621435",
          "name": "Gjellerup",
          "country_code": "DK",
          "slug": "gjellerup",
          "canonical_path": "/cities/dk/gjellerup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:gladsaxe",
          "name": "Gladsaxe",
          "country_code": "DK",
          "slug": "gladsaxe",
          "canonical_path": "/cities/dk/gladsaxe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:glostrup",
          "name": "Glostrup",
          "country_code": "DK",
          "slug": "glostrup",
          "canonical_path": "/cities/dk/glostrup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:greve",
          "name": "Greve",
          "country_code": "DK",
          "slug": "greve",
          "canonical_path": "/cities/dk/greve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:gribskov",
          "name": "Gribskov",
          "country_code": "DK",
          "slug": "gribskov",
          "canonical_path": "/cities/dk/gribskov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2621193",
          "name": "Grindsted",
          "country_code": "DK",
          "slug": "grindsted",
          "canonical_path": "/cities/dk/grindsted/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:guldborgsund",
          "name": "Guldborgsund",
          "country_code": "DK",
          "slug": "guldborgsund",
          "canonical_path": "/cities/dk/guldborgsund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:haderslev",
          "name": "Haderslev",
          "country_code": "DK",
          "slug": "haderslev",
          "canonical_path": "/cities/dk/haderslev/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2620956",
          "name": "Hadsten",
          "country_code": "DK",
          "slug": "hadsten",
          "canonical_path": "/cities/dk/hadsten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:halsnaes",
          "name": "Halsnæs",
          "country_code": "DK",
          "slug": "halsnaes",
          "canonical_path": "/cities/dk/halsnaes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2620835",
          "name": "Hammel",
          "country_code": "DK",
          "slug": "hammel",
          "canonical_path": "/cities/dk/hammel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2620704",
          "name": "Hasselager",
          "country_code": "DK",
          "slug": "hasselager",
          "canonical_path": "/cities/dk/hasselager/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2620587",
          "name": "Hedehusene",
          "country_code": "DK",
          "slug": "hedehusene",
          "canonical_path": "/cities/dk/hedehusene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:hedensted",
          "name": "Hedensted",
          "country_code": "DK",
          "slug": "hedensted",
          "canonical_path": "/cities/dk/hedensted/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2620528",
          "name": "Hellebæk",
          "country_code": "DK",
          "slug": "hellebaek",
          "canonical_path": "/cities/dk/hellebaek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:helsingor",
          "name": "Helsingør",
          "country_code": "DK",
          "slug": "helsingor",
          "canonical_path": "/cities/dk/helsingor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:herlev",
          "name": "Herlev",
          "country_code": "DK",
          "slug": "herlev",
          "canonical_path": "/cities/dk/herlev/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:herning",
          "name": "Herning",
          "country_code": "DK",
          "slug": "herning",
          "canonical_path": "/cities/dk/herning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:hillerod",
          "name": "Hillerød",
          "country_code": "DK",
          "slug": "hillerod",
          "canonical_path": "/cities/dk/hillerod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2620287",
          "name": "Hinnerup",
          "country_code": "DK",
          "slug": "hinnerup-18-779",
          "canonical_path": "/cities/dk/hinnerup-18-779/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2620288",
          "name": "Hinnerup",
          "country_code": "DK",
          "slug": "hinnerup",
          "canonical_path": "/cities/dk/hinnerup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2620279",
          "name": "Hirtshals",
          "country_code": "DK",
          "slug": "hirtshals",
          "canonical_path": "/cities/dk/hirtshals/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:hjorring",
          "name": "Hjørring",
          "country_code": "DK",
          "slug": "hjorring",
          "canonical_path": "/cities/dk/hjorring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:hoje-taastrup",
          "name": "Høje-Taastrup",
          "country_code": "DK",
          "slug": "hoje-taastrup",
          "canonical_path": "/cities/dk/hoje-taastrup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:holbaek",
          "name": "Holbæk",
          "country_code": "DK",
          "slug": "holbaek",
          "canonical_path": "/cities/dk/holbaek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:holstebro",
          "name": "Holstebro",
          "country_code": "DK",
          "slug": "holstebro",
          "canonical_path": "/cities/dk/holstebro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2619807",
          "name": "Hornbæk",
          "country_code": "DK",
          "slug": "hornbaek",
          "canonical_path": "/cities/dk/hornbaek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2619859",
          "name": "Hørning",
          "country_code": "DK",
          "slug": "horning",
          "canonical_path": "/cities/dk/horning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2619860",
          "name": "Hørning",
          "country_code": "DK",
          "slug": "horning-18-746",
          "canonical_path": "/cities/dk/horning-18-746/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2619787",
          "name": "Hornslet",
          "country_code": "DK",
          "slug": "hornslet",
          "canonical_path": "/cities/dk/hornslet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:horsens",
          "name": "Horsens",
          "country_code": "DK",
          "slug": "horsens",
          "canonical_path": "/cities/dk/horsens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:horsholm",
          "name": "Hørsholm",
          "country_code": "DK",
          "slug": "horsholm",
          "canonical_path": "/cities/dk/horsholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2619669",
          "name": "Humlebæk",
          "country_code": "DK",
          "slug": "humlebaek",
          "canonical_path": "/cities/dk/humlebaek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:hvidovre",
          "name": "Hvidovre",
          "country_code": "DK",
          "slug": "hvidovre",
          "canonical_path": "/cities/dk/hvidovre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:ikast-brande",
          "name": "Ikast-Brande",
          "country_code": "DK",
          "slug": "ikast-brande",
          "canonical_path": "/cities/dk/ikast-brande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:ishoj",
          "name": "Ishøj",
          "country_code": "DK",
          "slug": "ishoj",
          "canonical_path": "/cities/dk/ishoj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:jammerbugt",
          "name": "Jammerbugt",
          "country_code": "DK",
          "slug": "jammerbugt",
          "canonical_path": "/cities/dk/jammerbugt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2619216",
          "name": "Jyllinge",
          "country_code": "DK",
          "slug": "jyllinge",
          "canonical_path": "/cities/dk/jyllinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:kalundborg",
          "name": "Kalundborg",
          "country_code": "DK",
          "slug": "kalundborg",
          "canonical_path": "/cities/dk/kalundborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:kerteminde",
          "name": "Kerteminde",
          "country_code": "DK",
          "slug": "kerteminde",
          "canonical_path": "/cities/dk/kerteminde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2618741",
          "name": "Klinteby Frihed",
          "country_code": "DK",
          "slug": "klinteby-frihed",
          "canonical_path": "/cities/dk/klinteby-frihed/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:koge",
          "name": "Køge",
          "country_code": "DK",
          "slug": "koge",
          "canonical_path": "/cities/dk/koge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:kolding",
          "name": "Kolding",
          "country_code": "DK",
          "slug": "kolding",
          "canonical_path": "/cities/dk/kolding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2618489",
          "name": "Kolt",
          "country_code": "DK",
          "slug": "kolt",
          "canonical_path": "/cities/dk/kolt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2618468",
          "name": "Kongens Lyngby",
          "country_code": "DK",
          "slug": "kongens-lyngby",
          "canonical_path": "/cities/dk/kongens-lyngby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2618361",
          "name": "Korsør",
          "country_code": "DK",
          "slug": "korsor",
          "canonical_path": "/cities/dk/korsor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:laeso",
          "name": "Læsø",
          "country_code": "DK",
          "slug": "laeso",
          "canonical_path": "/cities/dk/laeso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:langeland",
          "name": "Langeland",
          "country_code": "DK",
          "slug": "langeland",
          "canonical_path": "/cities/dk/langeland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:lejre",
          "name": "Lejre",
          "country_code": "DK",
          "slug": "lejre",
          "canonical_path": "/cities/dk/lejre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:lemvig",
          "name": "Lemvig",
          "country_code": "DK",
          "slug": "lemvig",
          "canonical_path": "/cities/dk/lemvig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2617658",
          "name": "Lillerød",
          "country_code": "DK",
          "slug": "lillerod",
          "canonical_path": "/cities/dk/lillerod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2617463",
          "name": "Løgten",
          "country_code": "DK",
          "slug": "logten",
          "canonical_path": "/cities/dk/logten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2617443",
          "name": "Løkken",
          "country_code": "DK",
          "slug": "lokken",
          "canonical_path": "/cities/dk/lokken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:lolland",
          "name": "Lolland",
          "country_code": "DK",
          "slug": "lolland",
          "canonical_path": "/cities/dk/lolland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2617423",
          "name": "Løsning",
          "country_code": "DK",
          "slug": "losning",
          "canonical_path": "/cities/dk/losning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:lyngby-taarbaek",
          "name": "Lyngby-Taarbæk",
          "country_code": "DK",
          "slug": "lyngby-taarbaek",
          "canonical_path": "/cities/dk/lyngby-taarbaek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2617176",
          "name": "Lystrup",
          "country_code": "DK",
          "slug": "lystrup-18-751",
          "canonical_path": "/cities/dk/lystrup-18-751/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2617114",
          "name": "Malling",
          "country_code": "DK",
          "slug": "malling",
          "canonical_path": "/cities/dk/malling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2617112",
          "name": "Måløv",
          "country_code": "DK",
          "slug": "malov",
          "canonical_path": "/cities/dk/malov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:mariagerfjord",
          "name": "Mariagerfjord",
          "country_code": "DK",
          "slug": "mariagerfjord",
          "canonical_path": "/cities/dk/mariagerfjord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2617034",
          "name": "Mårslet",
          "country_code": "DK",
          "slug": "marslet",
          "canonical_path": "/cities/dk/marslet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2616933",
          "name": "Middelfart",
          "country_code": "DK",
          "slug": "middelfart",
          "canonical_path": "/cities/dk/middelfart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:morso",
          "name": "Morsø",
          "country_code": "DK",
          "slug": "morso",
          "canonical_path": "/cities/dk/morso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2616672",
          "name": "Munkebo",
          "country_code": "DK",
          "slug": "munkebo",
          "canonical_path": "/cities/dk/munkebo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:naestved",
          "name": "Næstved",
          "country_code": "DK",
          "slug": "naestved",
          "canonical_path": "/cities/dk/naestved/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2616540",
          "name": "Neder Holluf",
          "country_code": "DK",
          "slug": "neder-holluf",
          "canonical_path": "/cities/dk/neder-holluf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2616483",
          "name": "Nibe",
          "country_code": "DK",
          "slug": "nibe",
          "canonical_path": "/cities/dk/nibe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2616450",
          "name": "Nivå",
          "country_code": "DK",
          "slug": "niva",
          "canonical_path": "/cities/dk/niva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2616176",
          "name": "Nordborg",
          "country_code": "DK",
          "slug": "nordborg",
          "canonical_path": "/cities/dk/nordborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:norddjurs",
          "name": "Norddjurs",
          "country_code": "DK",
          "slug": "norddjurs",
          "canonical_path": "/cities/dk/norddjurs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:nordfyns",
          "name": "Nordfyns",
          "country_code": "DK",
          "slug": "nordfyns",
          "canonical_path": "/cities/dk/nordfyns/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2616235",
          "name": "Nørresundby",
          "country_code": "DK",
          "slug": "norresundby",
          "canonical_path": "/cities/dk/norresundby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:nyborg",
          "name": "Nyborg",
          "country_code": "DK",
          "slug": "nyborg",
          "canonical_path": "/cities/dk/nyborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:odder",
          "name": "Odder",
          "country_code": "DK",
          "slug": "odder",
          "canonical_path": "/cities/dk/odder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:odense",
          "name": "Odense",
          "country_code": "DK",
          "slug": "odense",
          "canonical_path": "/cities/dk/odense/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:odsherred",
          "name": "Odsherred",
          "country_code": "DK",
          "slug": "odsherred",
          "canonical_path": "/cities/dk/odsherred/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2615730",
          "name": "Ølstykke",
          "country_code": "DK",
          "slug": "olstykke",
          "canonical_path": "/cities/dk/olstykke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:randers",
          "name": "Randers",
          "country_code": "DK",
          "slug": "randers",
          "canonical_path": "/cities/dk/randers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:rebild",
          "name": "Rebild",
          "country_code": "DK",
          "slug": "rebild",
          "canonical_path": "/cities/dk/rebild/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2614813",
          "name": "Ribe",
          "country_code": "DK",
          "slug": "ribe",
          "canonical_path": "/cities/dk/ribe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:ringkobing-skjern",
          "name": "Ringkøbing-Skjern",
          "country_code": "DK",
          "slug": "ringkobing-skjern",
          "canonical_path": "/cities/dk/ringkobing-skjern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:ringsted",
          "name": "Ringsted",
          "country_code": "DK",
          "slug": "ringsted",
          "canonical_path": "/cities/dk/ringsted/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2614611",
          "name": "Rødekro",
          "country_code": "DK",
          "slug": "rodekro",
          "canonical_path": "/cities/dk/rodekro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:rodovre",
          "name": "Rødovre",
          "country_code": "DK",
          "slug": "rodovre",
          "canonical_path": "/cities/dk/rodovre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2614553",
          "name": "Rønne",
          "country_code": "DK",
          "slug": "ronne",
          "canonical_path": "/cities/dk/ronne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:roskilde",
          "name": "Roskilde",
          "country_code": "DK",
          "slug": "roskilde",
          "canonical_path": "/cities/dk/roskilde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:rudersdal",
          "name": "Rudersdal",
          "country_code": "DK",
          "slug": "rudersdal",
          "canonical_path": "/cities/dk/rudersdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2614387",
          "name": "Ry",
          "country_code": "DK",
          "slug": "ry",
          "canonical_path": "/cities/dk/ry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2614172",
          "name": "Sæby",
          "country_code": "DK",
          "slug": "saeby",
          "canonical_path": "/cities/dk/saeby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:samso",
          "name": "Samsø",
          "country_code": "DK",
          "slug": "samso",
          "canonical_path": "/cities/dk/samso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:silkeborg",
          "name": "Silkeborg",
          "country_code": "DK",
          "slug": "silkeborg",
          "canonical_path": "/cities/dk/silkeborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2613694",
          "name": "Skælskør",
          "country_code": "DK",
          "slug": "skaelskor",
          "canonical_path": "/cities/dk/skaelskor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2613939",
          "name": "Skagen",
          "country_code": "DK",
          "slug": "skagen",
          "canonical_path": "/cities/dk/skagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:skanderborg",
          "name": "Skanderborg",
          "country_code": "DK",
          "slug": "skanderborg",
          "canonical_path": "/cities/dk/skanderborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:skive",
          "name": "Skive",
          "country_code": "DK",
          "slug": "skive",
          "canonical_path": "/cities/dk/skive/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:slagelse",
          "name": "Slagelse",
          "country_code": "DK",
          "slug": "slagelse",
          "canonical_path": "/cities/dk/slagelse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2613451",
          "name": "Slangerup",
          "country_code": "DK",
          "slug": "slangerup",
          "canonical_path": "/cities/dk/slangerup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2613345",
          "name": "Smørumnedre",
          "country_code": "DK",
          "slug": "smorumnedre",
          "canonical_path": "/cities/dk/smorumnedre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:solrod",
          "name": "Solrød",
          "country_code": "DK",
          "slug": "solrod",
          "canonical_path": "/cities/dk/solrod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:sonderborg",
          "name": "Sønderborg",
          "country_code": "DK",
          "slug": "sonderborg",
          "canonical_path": "/cities/dk/sonderborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:soro",
          "name": "Sorø",
          "country_code": "DK",
          "slug": "soro",
          "canonical_path": "/cities/dk/soro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2612710",
          "name": "Stavnsholt",
          "country_code": "DK",
          "slug": "stavnsholt",
          "canonical_path": "/cities/dk/stavnsholt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2612629",
          "name": "Stenløse",
          "country_code": "DK",
          "slug": "stenlose",
          "canonical_path": "/cities/dk/stenlose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:stevns",
          "name": "Stevns",
          "country_code": "DK",
          "slug": "stevns",
          "canonical_path": "/cities/dk/stevns/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:struer",
          "name": "Struer",
          "country_code": "DK",
          "slug": "struer",
          "canonical_path": "/cities/dk/struer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:svendborg",
          "name": "Svendborg",
          "country_code": "DK",
          "slug": "svendborg",
          "canonical_path": "/cities/dk/svendborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2612021",
          "name": "Svenstrup",
          "country_code": "DK",
          "slug": "svenstrup-19-851",
          "canonical_path": "/cities/dk/svenstrup-19-851/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:syddjurs",
          "name": "Syddjurs",
          "country_code": "DK",
          "slug": "syddjurs",
          "canonical_path": "/cities/dk/syddjurs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2611828",
          "name": "Taastrup",
          "country_code": "DK",
          "slug": "taastrup",
          "canonical_path": "/cities/dk/taastrup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:tarnby",
          "name": "Tårnby",
          "country_code": "DK",
          "slug": "tarnby",
          "canonical_path": "/cities/dk/tarnby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:thisted",
          "name": "Thisted",
          "country_code": "DK",
          "slug": "thisted",
          "canonical_path": "/cities/dk/thisted/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2611720",
          "name": "Tilst",
          "country_code": "DK",
          "slug": "tilst",
          "canonical_path": "/cities/dk/tilst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:tonder",
          "name": "Tønder",
          "country_code": "DK",
          "slug": "tonder",
          "canonical_path": "/cities/dk/tonder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2611316",
          "name": "Tranbjerg",
          "country_code": "DK",
          "slug": "tranbjerg",
          "canonical_path": "/cities/dk/tranbjerg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2611189",
          "name": "Trørød",
          "country_code": "DK",
          "slug": "trorod",
          "canonical_path": "/cities/dk/trorod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2611132",
          "name": "Tune",
          "country_code": "DK",
          "slug": "tune",
          "canonical_path": "/cities/dk/tune/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2617626",
          "name": "Værløse",
          "country_code": "DK",
          "slug": "vaerlose",
          "canonical_path": "/cities/dk/vaerlose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:vallensbaek",
          "name": "Vallensbæk",
          "country_code": "DK",
          "slug": "vallensbaek",
          "canonical_path": "/cities/dk/vallensbaek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:varde",
          "name": "Varde",
          "country_code": "DK",
          "slug": "varde",
          "canonical_path": "/cities/dk/varde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:vejen",
          "name": "Vejen",
          "country_code": "DK",
          "slug": "vejen",
          "canonical_path": "/cities/dk/vejen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:vejle",
          "name": "Vejle",
          "country_code": "DK",
          "slug": "vejle",
          "canonical_path": "/cities/dk/vejle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:vesthimmerlands",
          "name": "Vesthimmerlands",
          "country_code": "DK",
          "slug": "vesthimmerlands",
          "canonical_path": "/cities/dk/vesthimmerlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:viborg",
          "name": "Viborg",
          "country_code": "DK",
          "slug": "viborg",
          "canonical_path": "/cities/dk/viborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2610310",
          "name": "Viby",
          "country_code": "DK",
          "slug": "viby",
          "canonical_path": "/cities/dk/viby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:geonames:2610075",
          "name": "Vojens",
          "country_code": "DK",
          "slug": "vojens",
          "canonical_path": "/cities/dk/vojens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:dk:slug:vordingborg",
          "name": "Vordingborg",
          "country_code": "DK",
          "slug": "vordingborg",
          "canonical_path": "/cities/dk/vordingborg/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "EE",
      "path": "cities/ee.json",
      "city_count": 39,
      "cities": [
        {
          "entity_id": "city:ee:geonames:592279",
          "name": "Elva",
          "country_code": "EE",
          "slug": "elva",
          "canonical_path": "/cities/ee/elva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:592233",
          "name": "Haabneeme",
          "country_code": "EE",
          "slug": "haabneeme",
          "canonical_path": "/cities/ee/haabneeme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:592225",
          "name": "Haapsalu",
          "country_code": "EE",
          "slug": "haapsalu",
          "canonical_path": "/cities/ee/haapsalu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:591902",
          "name": "Jõgeva",
          "country_code": "EE",
          "slug": "jogeva",
          "canonical_path": "/cities/ee/jogeva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q117513",
          "name": "Jõgeva vald",
          "country_code": "EE",
          "slug": "jogeva-vald",
          "canonical_path": "/cities/ee/jogeva-vald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:591893",
          "name": "Jõhvi",
          "country_code": "EE",
          "slug": "johvi",
          "canonical_path": "/cities/ee/johvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q211059",
          "name": "Jõhvi vald",
          "country_code": "EE",
          "slug": "johvi-vald",
          "canonical_path": "/cities/ee/johvi-vald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:591472",
          "name": "Keila",
          "country_code": "EE",
          "slug": "keila",
          "canonical_path": "/cities/ee/keila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q207275",
          "name": "Keila linn",
          "country_code": "EE",
          "slug": "keila-linn",
          "canonical_path": "/cities/ee/keila-linn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:official:ehak:0321",
          "name": "Kohtla-Järve",
          "country_code": "EE",
          "slug": "kohtla-jarve",
          "canonical_path": "/cities/ee/kohtla-jarve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:590888",
          "name": "Kuusalu",
          "country_code": "EE",
          "slug": "kuusalu",
          "canonical_path": "/cities/ee/kuusalu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:794964",
          "name": "Laagri",
          "country_code": "EE",
          "slug": "laagri",
          "canonical_path": "/cities/ee/laagri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:590447",
          "name": "Maardu",
          "country_code": "EE",
          "slug": "maardu",
          "canonical_path": "/cities/ee/maardu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q206555",
          "name": "Maardu linn",
          "country_code": "EE",
          "slug": "maardu-linn",
          "canonical_path": "/cities/ee/maardu-linn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:official:ehak:0511",
          "name": "Narva",
          "country_code": "EE",
          "slug": "narva",
          "canonical_path": "/cities/ee/narva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:589709",
          "name": "Paide",
          "country_code": "EE",
          "slug": "paide",
          "canonical_path": "/cities/ee/paide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q45114",
          "name": "Paide linn",
          "country_code": "EE",
          "slug": "paide-linn",
          "canonical_path": "/cities/ee/paide-linn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q102365",
          "name": "Pärnu",
          "country_code": "EE",
          "slug": "parnu",
          "canonical_path": "/cities/ee/parnu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:589531",
          "name": "Peetri",
          "country_code": "EE",
          "slug": "peetri",
          "canonical_path": "/cities/ee/peetri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:589375",
          "name": "Põlva",
          "country_code": "EE",
          "slug": "polva",
          "canonical_path": "/cities/ee/polva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:589223",
          "name": "Raasiku",
          "country_code": "EE",
          "slug": "raasiku",
          "canonical_path": "/cities/ee/raasiku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:589165",
          "name": "Rakvere",
          "country_code": "EE",
          "slug": "rakvere",
          "canonical_path": "/cities/ee/rakvere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q191889",
          "name": "Rakvere linn",
          "country_code": "EE",
          "slug": "rakvere-linn",
          "canonical_path": "/cities/ee/rakvere-linn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:589116",
          "name": "Rapla",
          "country_code": "EE",
          "slug": "rapla",
          "canonical_path": "/cities/ee/rapla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q215971",
          "name": "Rapla vald",
          "country_code": "EE",
          "slug": "rapla-vald",
          "canonical_path": "/cities/ee/rapla-vald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:588780",
          "name": "Saue",
          "country_code": "EE",
          "slug": "saue",
          "canonical_path": "/cities/ee/saue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:slug:saue-vald",
          "name": "Saue vald",
          "country_code": "EE",
          "slug": "saue-vald",
          "canonical_path": "/cities/ee/saue-vald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:588686",
          "name": "Sillamäe",
          "country_code": "EE",
          "slug": "sillamae",
          "canonical_path": "/cities/ee/sillamae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q1770",
          "name": "Tallinn",
          "country_code": "EE",
          "slug": "tallinn",
          "canonical_path": "/cities/ee/tallinn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:588348",
          "name": "Tapa",
          "country_code": "EE",
          "slug": "tapa",
          "canonical_path": "/cities/ee/tapa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q13972",
          "name": "Tartu linn",
          "country_code": "EE",
          "slug": "tartu-linn",
          "canonical_path": "/cities/ee/tartu-linn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:slug:tartu-vald",
          "name": "Tartu vald",
          "country_code": "EE",
          "slug": "tartu-vald",
          "canonical_path": "/cities/ee/tartu-vald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:588215",
          "name": "Tori",
          "country_code": "EE",
          "slug": "tori",
          "canonical_path": "/cities/ee/tori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:588153",
          "name": "Türi",
          "country_code": "EE",
          "slug": "turi",
          "canonical_path": "/cities/ee/turi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:587876",
          "name": "Valga",
          "country_code": "EE",
          "slug": "valga",
          "canonical_path": "/cities/ee/valga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:587577",
          "name": "Viljandi",
          "country_code": "EE",
          "slug": "viljandi",
          "canonical_path": "/cities/ee/viljandi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:slug:viljandi-linn",
          "name": "Viljandi linn",
          "country_code": "EE",
          "slug": "viljandi-linn",
          "canonical_path": "/cities/ee/viljandi-linn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:geonames:587450",
          "name": "Võru",
          "country_code": "EE",
          "slug": "voru",
          "canonical_path": "/cities/ee/voru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ee:wikidata:Q205271",
          "name": "Võru linn",
          "country_code": "EE",
          "slug": "voru-linn",
          "canonical_path": "/cities/ee/voru-linn/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "FI",
      "path": "cities/fi.json",
      "city_count": 156,
      "cities": [
        {
          "entity_id": "city:fi:wikidata:Q258447",
          "name": "Äänekoski",
          "country_code": "FI",
          "slug": "aanekoski",
          "canonical_path": "/cities/fi/aanekoski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:661896",
          "name": "Ähtäri",
          "country_code": "FI",
          "slug": "ahtari",
          "canonical_path": "/cities/fi/ahtari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:661576",
          "name": "Alajärvi",
          "country_code": "FI",
          "slug": "alajarvi",
          "canonical_path": "/cities/fi/alajarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:661352",
          "name": "Alavus",
          "country_code": "FI",
          "slug": "alavus",
          "canonical_path": "/cities/fi/alavus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:660949",
          "name": "Asikkala",
          "country_code": "FI",
          "slug": "asikkala",
          "canonical_path": "/cities/fi/asikkala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:660294",
          "name": "Elimäki",
          "country_code": "FI",
          "slug": "elimaki",
          "canonical_path": "/cities/fi/elimaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:660242",
          "name": "Eno",
          "country_code": "FI",
          "slug": "eno",
          "canonical_path": "/cities/fi/eno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:660077",
          "name": "Eura",
          "country_code": "FI",
          "slug": "eura",
          "canonical_path": "/cities/fi/eura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:660073",
          "name": "Eurajoki",
          "country_code": "FI",
          "slug": "eurajoki",
          "canonical_path": "/cities/fi/eurajoki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q829842",
          "name": "Forssa",
          "country_code": "FI",
          "slug": "forssa",
          "canonical_path": "/cities/fi/forssa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:659681",
          "name": "Haapajärvi",
          "country_code": "FI",
          "slug": "haapajarvi",
          "canonical_path": "/cities/fi/haapajarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:659554",
          "name": "Haapavesi",
          "country_code": "FI",
          "slug": "haapavesi",
          "canonical_path": "/cities/fi/haapavesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:659350",
          "name": "Halikko",
          "country_code": "FI",
          "slug": "halikko",
          "canonical_path": "/cities/fi/halikko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:659184",
          "name": "Hämeenkyrö",
          "country_code": "FI",
          "slug": "hameenkyro",
          "canonical_path": "/cities/fi/hameenkyro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:659169",
          "name": "Hamina",
          "country_code": "FI",
          "slug": "hamina",
          "canonical_path": "/cities/fi/hamina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:659101",
          "name": "Hanko",
          "country_code": "FI",
          "slug": "hanko",
          "canonical_path": "/cities/fi/hanko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:658921",
          "name": "Harjavalta",
          "country_code": "FI",
          "slug": "harjavalta",
          "canonical_path": "/cities/fi/harjavalta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:658581",
          "name": "Hausjärvi",
          "country_code": "FI",
          "slug": "hausjarvi",
          "canonical_path": "/cities/fi/hausjarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q849934",
          "name": "Heinola",
          "country_code": "FI",
          "slug": "heinola",
          "canonical_path": "/cities/fi/heinola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q990578",
          "name": "Hollola",
          "country_code": "FI",
          "slug": "hollola",
          "canonical_path": "/cities/fi/hollola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:657180",
          "name": "Huittinen",
          "country_code": "FI",
          "slug": "huittinen",
          "canonical_path": "/cities/fi/huittinen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:656851",
          "name": "Ii",
          "country_code": "FI",
          "slug": "ii",
          "canonical_path": "/cities/fi/ii/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q748533",
          "name": "Iisalmi",
          "country_code": "FI",
          "slug": "iisalmi",
          "canonical_path": "/cities/fi/iisalmi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:656807",
          "name": "Iitti",
          "country_code": "FI",
          "slug": "iitti",
          "canonical_path": "/cities/fi/iitti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:656789",
          "name": "Ikaalinen",
          "country_code": "FI",
          "slug": "ikaalinen",
          "canonical_path": "/cities/fi/ikaalinen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:656739",
          "name": "Ilmajoki",
          "country_code": "FI",
          "slug": "ilmajoki",
          "canonical_path": "/cities/fi/ilmajoki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q211020",
          "name": "Imatra",
          "country_code": "FI",
          "slug": "imatra",
          "canonical_path": "/cities/fi/imatra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:656657",
          "name": "Inari",
          "country_code": "FI",
          "slug": "inari",
          "canonical_path": "/cities/fi/inari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:656652",
          "name": "Ingå",
          "country_code": "FI",
          "slug": "inga",
          "canonical_path": "/cities/fi/inga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:656117",
          "name": "Jalasjärvi",
          "country_code": "FI",
          "slug": "jalasjarvi",
          "canonical_path": "/cities/fi/jalasjarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q642696",
          "name": "Jämsä",
          "country_code": "FI",
          "slug": "jamsa",
          "canonical_path": "/cities/fi/jamsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:656076",
          "name": "Jämsänkoski",
          "country_code": "FI",
          "slug": "jamsankoski",
          "canonical_path": "/cities/fi/jamsankoski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:656073",
          "name": "Janakkala",
          "country_code": "FI",
          "slug": "janakkala",
          "canonical_path": "/cities/fi/janakkala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q208293",
          "name": "Järvenpää",
          "country_code": "FI",
          "slug": "jarvenpaa",
          "canonical_path": "/cities/fi/jarvenpaa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q1020037",
          "name": "Joensuu",
          "country_code": "FI",
          "slug": "joensuu",
          "canonical_path": "/cities/fi/joensuu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:655533",
          "name": "Juankoski",
          "country_code": "FI",
          "slug": "juankoski",
          "canonical_path": "/cities/fi/juankoski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:655253",
          "name": "Juva",
          "country_code": "FI",
          "slug": "juva",
          "canonical_path": "/cities/fi/juva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q57166",
          "name": "Jyväskylä",
          "country_code": "FI",
          "slug": "jyvaskyla",
          "canonical_path": "/cities/fi/jyvaskyla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q193180",
          "name": "Kajaani",
          "country_code": "FI",
          "slug": "kajaani",
          "canonical_path": "/cities/fi/kajaani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:654837",
          "name": "Kalajoki",
          "country_code": "FI",
          "slug": "kalajoki",
          "canonical_path": "/cities/fi/kalajoki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q986322",
          "name": "Kangasala",
          "country_code": "FI",
          "slug": "kangasala",
          "canonical_path": "/cities/fi/kangasala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:654405",
          "name": "Kangasniemi",
          "country_code": "FI",
          "slug": "kangasniemi",
          "canonical_path": "/cities/fi/kangasniemi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:654363",
          "name": "Kankaanpää",
          "country_code": "FI",
          "slug": "kankaanpaa",
          "canonical_path": "/cities/fi/kankaanpaa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:654314",
          "name": "Kannus",
          "country_code": "FI",
          "slug": "kannus",
          "canonical_path": "/cities/fi/kannus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:654137",
          "name": "Karhula",
          "country_code": "FI",
          "slug": "karhula",
          "canonical_path": "/cities/fi/karhula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:653960",
          "name": "Karkkila",
          "country_code": "FI",
          "slug": "karkkila",
          "canonical_path": "/cities/fi/karkkila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:653627",
          "name": "Kauhajoki",
          "country_code": "FI",
          "slug": "kauhajoki",
          "canonical_path": "/cities/fi/kauhajoki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q6009",
          "name": "Kauhava",
          "country_code": "FI",
          "slug": "kauhava",
          "canonical_path": "/cities/fi/kauhava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:653559",
          "name": "Kauniainen",
          "country_code": "FI",
          "slug": "kauniainen",
          "canonical_path": "/cities/fi/kauniainen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q203619",
          "name": "Kemi",
          "country_code": "FI",
          "slug": "kemi",
          "canonical_path": "/cities/fi/kemi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:653272",
          "name": "Kemijärvi",
          "country_code": "FI",
          "slug": "kemijarvi",
          "canonical_path": "/cities/fi/kemijarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:653280",
          "name": "Keminmaa",
          "country_code": "FI",
          "slug": "keminmaa",
          "canonical_path": "/cities/fi/keminmaa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q985451",
          "name": "Kempele",
          "country_code": "FI",
          "slug": "kempele",
          "canonical_path": "/cities/fi/kempele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q216900",
          "name": "Kerava",
          "country_code": "FI",
          "slug": "kerava",
          "canonical_path": "/cities/fi/kerava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:652977",
          "name": "Keuruu",
          "country_code": "FI",
          "slug": "keuruu",
          "canonical_path": "/cities/fi/keuruu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q748092",
          "name": "Kirkkonummi",
          "country_code": "FI",
          "slug": "kirkkonummi",
          "canonical_path": "/cities/fi/kirkkonummi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:652615",
          "name": "Kitee",
          "country_code": "FI",
          "slug": "kitee",
          "canonical_path": "/cities/fi/kitee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:652590",
          "name": "Kittilä",
          "country_code": "FI",
          "slug": "kittila",
          "canonical_path": "/cities/fi/kittila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:652559",
          "name": "Kiuruvesi",
          "country_code": "FI",
          "slug": "kiuruvesi",
          "canonical_path": "/cities/fi/kiuruvesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:652305",
          "name": "Klaukkala",
          "country_code": "FI",
          "slug": "klaukkala",
          "canonical_path": "/cities/fi/klaukkala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:651980",
          "name": "Kokemäki",
          "country_code": "FI",
          "slug": "kokemaki",
          "canonical_path": "/cities/fi/kokemaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q207891",
          "name": "Kokkola",
          "country_code": "FI",
          "slug": "kokkola",
          "canonical_path": "/cities/fi/kokkola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q737534",
          "name": "Kontiolahti",
          "country_code": "FI",
          "slug": "kontiolahti",
          "canonical_path": "/cities/fi/kontiolahti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:651350",
          "name": "Korpilahti",
          "country_code": "FI",
          "slug": "korpilahti",
          "canonical_path": "/cities/fi/korpilahti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q192155",
          "name": "Kotka",
          "country_code": "FI",
          "slug": "kotka",
          "canonical_path": "/cities/fi/kotka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q204382",
          "name": "Kouvola",
          "country_code": "FI",
          "slug": "kouvola",
          "canonical_path": "/cities/fi/kouvola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:650754",
          "name": "Kronoby",
          "country_code": "FI",
          "slug": "kronoby",
          "canonical_path": "/cities/fi/kronoby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:650705",
          "name": "Kuhmo",
          "country_code": "FI",
          "slug": "kuhmo",
          "canonical_path": "/cities/fi/kuhmo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q162275",
          "name": "Kuopio",
          "country_code": "FI",
          "slug": "kuopio",
          "canonical_path": "/cities/fi/kuopio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:650095",
          "name": "Kurikka",
          "country_code": "FI",
          "slug": "kurikka",
          "canonical_path": "/cities/fi/kurikka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q207999",
          "name": "Kuusamo",
          "country_code": "FI",
          "slug": "kuusamo",
          "canonical_path": "/cities/fi/kuusamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:649348",
          "name": "Laihia",
          "country_code": "FI",
          "slug": "laihia",
          "canonical_path": "/cities/fi/laihia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:649302",
          "name": "Laitila",
          "country_code": "FI",
          "slug": "laitila",
          "canonical_path": "/cities/fi/laitila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:648953",
          "name": "Lapinlahti",
          "country_code": "FI",
          "slug": "lapinlahti",
          "canonical_path": "/cities/fi/lapinlahti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q6023",
          "name": "Lapua",
          "country_code": "FI",
          "slug": "lapua",
          "canonical_path": "/cities/fi/lapua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:648847",
          "name": "Larsmo",
          "country_code": "FI",
          "slug": "larsmo",
          "canonical_path": "/cities/fi/larsmo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q990553",
          "name": "Laukaa",
          "country_code": "FI",
          "slug": "laukaa",
          "canonical_path": "/cities/fi/laukaa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q1017108",
          "name": "Lempäälä",
          "country_code": "FI",
          "slug": "lempaala",
          "canonical_path": "/cities/fi/lempaala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:648227",
          "name": "Leppävirta",
          "country_code": "FI",
          "slug": "leppavirta",
          "canonical_path": "/cities/fi/leppavirta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:648090",
          "name": "Lieksa",
          "country_code": "FI",
          "slug": "lieksa",
          "canonical_path": "/cities/fi/lieksa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:648056",
          "name": "Lieto",
          "country_code": "FI",
          "slug": "lieto",
          "canonical_path": "/cities/fi/lieto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q608803",
          "name": "Liminka",
          "country_code": "FI",
          "slug": "liminka",
          "canonical_path": "/cities/fi/liminka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:647851",
          "name": "Liperi",
          "country_code": "FI",
          "slug": "liperi",
          "canonical_path": "/cities/fi/liperi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:647751",
          "name": "Lohja",
          "country_code": "FI",
          "slug": "lohja",
          "canonical_path": "/cities/fi/lohja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:647731",
          "name": "Loimaa",
          "country_code": "FI",
          "slug": "loimaa",
          "canonical_path": "/cities/fi/loimaa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:647660",
          "name": "Loppi",
          "country_code": "FI",
          "slug": "loppi",
          "canonical_path": "/cities/fi/loppi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:646875",
          "name": "Malax",
          "country_code": "FI",
          "slug": "malax",
          "canonical_path": "/cities/fi/malax/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:646723",
          "name": "Mäntsälä",
          "country_code": "FI",
          "slug": "mantsala",
          "canonical_path": "/cities/fi/mantsala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:646699",
          "name": "Mäntyharju",
          "country_code": "FI",
          "slug": "mantyharju",
          "canonical_path": "/cities/fi/mantyharju/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:646486",
          "name": "Masku",
          "country_code": "FI",
          "slug": "masku",
          "canonical_path": "/cities/fi/masku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:645765",
          "name": "Muhos",
          "country_code": "FI",
          "slug": "muhos",
          "canonical_path": "/cities/fi/muhos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q613434",
          "name": "Muurame",
          "country_code": "FI",
          "slug": "muurame",
          "canonical_path": "/cities/fi/muurame/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:645243",
          "name": "Mynämäki",
          "country_code": "FI",
          "slug": "mynamaki",
          "canonical_path": "/cities/fi/mynamaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q503862",
          "name": "Naantali",
          "country_code": "FI",
          "slug": "naantali",
          "canonical_path": "/cities/fi/naantali/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:645081",
          "name": "Närpes",
          "country_code": "FI",
          "slug": "narpes",
          "canonical_path": "/cities/fi/narpes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:644632",
          "name": "Nilsiä",
          "country_code": "FI",
          "slug": "nilsia",
          "canonical_path": "/cities/fi/nilsia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:644499",
          "name": "Nivala",
          "country_code": "FI",
          "slug": "nivala",
          "canonical_path": "/cities/fi/nivala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q192870",
          "name": "Nokia",
          "country_code": "FI",
          "slug": "nokia",
          "canonical_path": "/cities/fi/nokia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:644187",
          "name": "Nurmes",
          "country_code": "FI",
          "slug": "nurmes",
          "canonical_path": "/cities/fi/nurmes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:12541545",
          "name": "Nurmijärven kirkonkylä",
          "country_code": "FI",
          "slug": "nurmijarven-kirkonkyla",
          "canonical_path": "/cities/fi/nurmijarven-kirkonkyla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q597156",
          "name": "Nurmijärvi",
          "country_code": "FI",
          "slug": "nurmijarvi",
          "canonical_path": "/cities/fi/nurmijarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:644100",
          "name": "Nykarleby",
          "country_code": "FI",
          "slug": "nykarleby",
          "canonical_path": "/cities/fi/nykarleby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:643644",
          "name": "Orimattila",
          "country_code": "FI",
          "slug": "orimattila",
          "canonical_path": "/cities/fi/orimattila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:643629",
          "name": "Orivesi",
          "country_code": "FI",
          "slug": "orivesi",
          "canonical_path": "/cities/fi/orivesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:643497",
          "name": "Oulainen",
          "country_code": "FI",
          "slug": "oulainen",
          "canonical_path": "/cities/fi/oulainen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:643453",
          "name": "Outokumpu",
          "country_code": "FI",
          "slug": "outokumpu",
          "canonical_path": "/cities/fi/outokumpu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:643153",
          "name": "Paimio",
          "country_code": "FI",
          "slug": "paimio",
          "canonical_path": "/cities/fi/paimio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:642976",
          "name": "Pälkäne",
          "country_code": "FI",
          "slug": "palkane",
          "canonical_path": "/cities/fi/palkane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:642657",
          "name": "Parkano",
          "country_code": "FI",
          "slug": "parkano",
          "canonical_path": "/cities/fi/parkano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:642113",
          "name": "Perniö",
          "country_code": "FI",
          "slug": "pernio",
          "canonical_path": "/cities/fi/pernio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:641869",
          "name": "Pieksämäki",
          "country_code": "FI",
          "slug": "pieksamaki",
          "canonical_path": "/cities/fi/pieksamaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q853628",
          "name": "Pirkkala",
          "country_code": "FI",
          "slug": "pirkkala",
          "canonical_path": "/cities/fi/pirkkala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:660561",
          "name": "Porvoo",
          "country_code": "FI",
          "slug": "porvoo",
          "canonical_path": "/cities/fi/porvoo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:640828",
          "name": "Pöytyä",
          "country_code": "FI",
          "slug": "poytya",
          "canonical_path": "/cities/fi/poytya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:640803",
          "name": "Pudasjärvi",
          "country_code": "FI",
          "slug": "pudasjarvi",
          "canonical_path": "/cities/fi/pudasjarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:640440",
          "name": "Pyhäjärvi",
          "country_code": "FI",
          "slug": "pyhajarvi",
          "canonical_path": "/cities/fi/pyhajarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:640398",
          "name": "Pyhäselkä",
          "country_code": "FI",
          "slug": "pyhaselka",
          "canonical_path": "/cities/fi/pyhaselka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q622592",
          "name": "Raahe",
          "country_code": "FI",
          "slug": "raahe",
          "canonical_path": "/cities/fi/raahe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q1025745",
          "name": "Raisio",
          "country_code": "FI",
          "slug": "raisio",
          "canonical_path": "/cities/fi/raisio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q37013",
          "name": "Rauma",
          "country_code": "FI",
          "slug": "rauma",
          "canonical_path": "/cities/fi/rauma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q429864",
          "name": "Riihimäki",
          "country_code": "FI",
          "slug": "riihimaki",
          "canonical_path": "/cities/fi/riihimaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q1020050",
          "name": "Rovaniemi",
          "country_code": "FI",
          "slug": "rovaniemi",
          "canonical_path": "/cities/fi/rovaniemi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:638670",
          "name": "Rusko",
          "country_code": "FI",
          "slug": "rusko",
          "canonical_path": "/cities/fi/rusko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:638436",
          "name": "Saarenkylä",
          "country_code": "FI",
          "slug": "saarenkyla",
          "canonical_path": "/cities/fi/saarenkyla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:638321",
          "name": "Saarijärvi",
          "country_code": "FI",
          "slug": "saarijarvi",
          "canonical_path": "/cities/fi/saarijarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:638104",
          "name": "Säkylä",
          "country_code": "FI",
          "slug": "sakyla",
          "canonical_path": "/cities/fi/sakyla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:637948",
          "name": "Salo",
          "country_code": "FI",
          "slug": "salo",
          "canonical_path": "/cities/fi/salo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:8198723",
          "name": "Sastamala",
          "country_code": "FI",
          "slug": "sastamala",
          "canonical_path": "/cities/fi/sastamala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q1020043",
          "name": "Seinäjoki",
          "country_code": "FI",
          "slug": "seinajoki",
          "canonical_path": "/cities/fi/seinajoki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:637067",
          "name": "Sibbo",
          "country_code": "FI",
          "slug": "sibbo",
          "canonical_path": "/cities/fi/sibbo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q999210",
          "name": "Siilinjärvi",
          "country_code": "FI",
          "slug": "siilinjarvi",
          "canonical_path": "/cities/fi/siilinjarvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:636608",
          "name": "Siuntio",
          "country_code": "FI",
          "slug": "siuntio",
          "canonical_path": "/cities/fi/siuntio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:636464",
          "name": "Sodankylä",
          "country_code": "FI",
          "slug": "sodankyla",
          "canonical_path": "/cities/fi/sodankyla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:636345",
          "name": "Somero",
          "country_code": "FI",
          "slug": "somero",
          "canonical_path": "/cities/fi/somero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:636173",
          "name": "Sotkamo",
          "country_code": "FI",
          "slug": "sotkamo",
          "canonical_path": "/cities/fi/sotkamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:635745",
          "name": "Suolahti",
          "country_code": "FI",
          "slug": "suolahti",
          "canonical_path": "/cities/fi/suolahti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:635696",
          "name": "Suomussalmi",
          "country_code": "FI",
          "slug": "suomussalmi",
          "canonical_path": "/cities/fi/suomussalmi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:635692",
          "name": "Suonenjoki",
          "country_code": "FI",
          "slug": "suonenjoki",
          "canonical_path": "/cities/fi/suonenjoki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:634992",
          "name": "Tammela",
          "country_code": "FI",
          "slug": "tammela",
          "canonical_path": "/cities/fi/tammela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q40886",
          "name": "Tampere",
          "country_code": "FI",
          "slug": "tampere",
          "canonical_path": "/cities/fi/tampere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q214021",
          "name": "Tornio",
          "country_code": "FI",
          "slug": "tornio",
          "canonical_path": "/cities/fi/tornio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q38587",
          "name": "Turku",
          "country_code": "FI",
          "slug": "turku",
          "canonical_path": "/cities/fi/turku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:633541",
          "name": "Tyrnävä",
          "country_code": "FI",
          "slug": "tyrnava",
          "canonical_path": "/cities/fi/tyrnava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:633395",
          "name": "Ulvila",
          "country_code": "FI",
          "slug": "ulvila",
          "canonical_path": "/cities/fi/ulvila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:633221",
          "name": "Uusikaupunki",
          "country_code": "FI",
          "slug": "uusikaupunki",
          "canonical_path": "/cities/fi/uusikaupunki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q38217",
          "name": "Vaasa",
          "country_code": "FI",
          "slug": "vaasa",
          "canonical_path": "/cities/fi/vaasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:632672",
          "name": "Valkeakoski",
          "country_code": "FI",
          "slug": "valkeakoski",
          "canonical_path": "/cities/fi/valkeakoski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:632542",
          "name": "Vammala",
          "country_code": "FI",
          "slug": "vammala",
          "canonical_path": "/cities/fi/vammala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q1025744",
          "name": "Varkaus",
          "country_code": "FI",
          "slug": "varkaus",
          "canonical_path": "/cities/fi/varkaus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:631707",
          "name": "Vihti",
          "country_code": "FI",
          "slug": "vihti",
          "canonical_path": "/cities/fi/vihti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:631560",
          "name": "Viitasaari",
          "country_code": "FI",
          "slug": "viitasaari",
          "canonical_path": "/cities/fi/viitasaari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:631376",
          "name": "Virrat",
          "country_code": "FI",
          "slug": "virrat",
          "canonical_path": "/cities/fi/virrat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:631254",
          "name": "Vörå",
          "country_code": "FI",
          "slug": "vora",
          "canonical_path": "/cities/fi/vora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:631204",
          "name": "Vuokatti",
          "country_code": "FI",
          "slug": "vuokatti",
          "canonical_path": "/cities/fi/vuokatti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:geonames:630768",
          "name": "Ylivieska",
          "country_code": "FI",
          "slug": "ylivieska",
          "canonical_path": "/cities/fi/ylivieska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fi:wikidata:Q543800",
          "name": "Ylöjärvi",
          "country_code": "FI",
          "slug": "ylojarvi",
          "canonical_path": "/cities/fi/ylojarvi/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "FR",
      "path": "cities/fr.json",
      "city_count": 2346,
      "cities": [
        {
          "entity_id": "city:fr:insee5:80001",
          "name": "Abbeville",
          "country_code": "FR",
          "slug": "abbeville",
          "canonical_path": "/cities/fr/abbeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94001",
          "name": "Ablon-sur-Seine",
          "country_code": "FR",
          "slug": "ablon-sur-seine",
          "canonical_path": "/cities/fr/ablon-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78005",
          "name": "Achères",
          "country_code": "FR",
          "slug": "acheres",
          "canonical_path": "/cities/fr/acheres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62004",
          "name": "Achicourt",
          "country_code": "FR",
          "slug": "achicourt",
          "canonical_path": "/cities/fr/achicourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35001",
          "name": "Acigné",
          "country_code": "FR",
          "slug": "acigne",
          "canonical_path": "/cities/fr/acigne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34003",
          "name": "Agde",
          "country_code": "FR",
          "slug": "agde",
          "canonical_path": "/cities/fr/agde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47001",
          "name": "Agen",
          "country_code": "FR",
          "slug": "agen",
          "canonical_path": "/cities/fr/agen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3038611",
          "name": "Agneaux",
          "country_code": "FR",
          "slug": "agneaux",
          "canonical_path": "/cities/fr/agneaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79003",
          "name": "Aiffres",
          "country_code": "FR",
          "slug": "aiffres",
          "canonical_path": "/cities/fr/aiffres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30003",
          "name": "Aigues-Mortes",
          "country_code": "FR",
          "slug": "aigues-mortes",
          "canonical_path": "/cities/fr/aigues-mortes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30006",
          "name": "Aimargues",
          "country_code": "FR",
          "slug": "aimargues",
          "canonical_path": "/cities/fr/aimargues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40001",
          "name": "Aire-sur-l'Adour",
          "country_code": "FR",
          "slug": "aire-sur-l-adour",
          "canonical_path": "/cities/fr/aire-sur-l-adour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62014",
          "name": "Aire-sur-la-Lys",
          "country_code": "FR",
          "slug": "aire-sur-la-lys",
          "canonical_path": "/cities/fr/aire-sur-la-lys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13001",
          "name": "Aix-en-Provence",
          "country_code": "FR",
          "slug": "aix-en-provence",
          "canonical_path": "/cities/fr/aix-en-provence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73008",
          "name": "Aix-les-Bains",
          "country_code": "FR",
          "slug": "aix-les-bains",
          "canonical_path": "/cities/fr/aix-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87001",
          "name": "Aixe-sur-Vienne",
          "country_code": "FR",
          "slug": "aixe-sur-vienne",
          "canonical_path": "/cities/fr/aixe-sur-vienne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85003",
          "name": "Aizenay",
          "country_code": "FR",
          "slug": "aizenay",
          "canonical_path": "/cities/fr/aizenay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:2A004",
          "name": "Ajaccio",
          "country_code": "FR",
          "slug": "ajaccio",
          "canonical_path": "/cities/fr/ajaccio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:80016",
          "name": "Albert",
          "country_code": "FR",
          "slug": "albert",
          "canonical_path": "/cities/fr/albert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73011",
          "name": "Albertville",
          "country_code": "FR",
          "slug": "albertville",
          "canonical_path": "/cities/fr/albertville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81004",
          "name": "Albi",
          "country_code": "FR",
          "slug": "albi",
          "canonical_path": "/cities/fr/albi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:61001",
          "name": "Alençon",
          "country_code": "FR",
          "slug": "alencon",
          "canonical_path": "/cities/fr/alencon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30007",
          "name": "Alès",
          "country_code": "FR",
          "slug": "ales",
          "canonical_path": "/cities/fr/ales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94002",
          "name": "Alfortville",
          "country_code": "FR",
          "slug": "alfortville",
          "canonical_path": "/cities/fr/alfortville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57012",
          "name": "Algrange",
          "country_code": "FR",
          "slug": "algrange",
          "canonical_path": "/cities/fr/algrange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13002",
          "name": "Allauch",
          "country_code": "FR",
          "slug": "allauch",
          "canonical_path": "/cities/fr/allauch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74005",
          "name": "Allinges",
          "country_code": "FR",
          "slug": "allinges",
          "canonical_path": "/cities/fr/allinges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72003",
          "name": "Allonnes",
          "country_code": "FR",
          "slug": "allonnes",
          "canonical_path": "/cities/fr/allonnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68004",
          "name": "Altkirch",
          "country_code": "FR",
          "slug": "altkirch",
          "canonical_path": "/cities/fr/altkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33003",
          "name": "Ambarès-et-Lagrave",
          "country_code": "FR",
          "slug": "ambares-et-lagrave",
          "canonical_path": "/cities/fr/ambares-et-lagrave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87002",
          "name": "Ambazac",
          "country_code": "FR",
          "slug": "ambazac",
          "canonical_path": "/cities/fr/ambazac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01004",
          "name": "Ambérieu-en-Bugey",
          "country_code": "FR",
          "slug": "amberieu-en-bugey",
          "canonical_path": "/cities/fr/amberieu-en-bugey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63003",
          "name": "Ambert",
          "country_code": "FR",
          "slug": "ambert",
          "canonical_path": "/cities/fr/ambert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74008",
          "name": "Ambilly",
          "country_code": "FR",
          "slug": "ambilly",
          "canonical_path": "/cities/fr/ambilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37003",
          "name": "Amboise",
          "country_code": "FR",
          "slug": "amboise",
          "canonical_path": "/cities/fr/amboise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:80021",
          "name": "Amiens",
          "country_code": "FR",
          "slug": "amiens",
          "canonical_path": "/cities/fr/amiens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45004",
          "name": "Amilly",
          "country_code": "FR",
          "slug": "amilly",
          "canonical_path": "/cities/fr/amilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57019",
          "name": "Amnéville",
          "country_code": "FR",
          "slug": "amneville",
          "canonical_path": "/cities/fr/amneville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3037818",
          "name": "Amplepuis",
          "country_code": "FR",
          "slug": "amplepuis",
          "canonical_path": "/cities/fr/amplepuis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3037797",
          "name": "Ancenis",
          "country_code": "FR",
          "slug": "ancenis",
          "canonical_path": "/cities/fr/ancenis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44003",
          "name": "Ancenis-Saint-Géréon",
          "country_code": "FR",
          "slug": "ancenis-saint-gereon",
          "canonical_path": "/cities/fr/ancenis-saint-gereon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33005",
          "name": "Andernos-les-Bains",
          "country_code": "FR",
          "slug": "andernos-les-bains",
          "canonical_path": "/cities/fr/andernos-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78015",
          "name": "Andrésy",
          "country_code": "FR",
          "slug": "andresy",
          "canonical_path": "/cities/fr/andresy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42005",
          "name": "Andrézieux-Bouthéon",
          "country_code": "FR",
          "slug": "andrezieux-boutheon",
          "canonical_path": "/cities/fr/andrezieux-boutheon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49007",
          "name": "Angers",
          "country_code": "FR",
          "slug": "angers",
          "canonical_path": "/cities/fr/angers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64024",
          "name": "Anglet",
          "country_code": "FR",
          "slug": "anglet",
          "canonical_path": "/cities/fr/anglet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:16015",
          "name": "Angoulême",
          "country_code": "FR",
          "slug": "angouleme",
          "canonical_path": "/cities/fr/angouleme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59008",
          "name": "Aniche",
          "country_code": "FR",
          "slug": "aniche",
          "canonical_path": "/cities/fr/aniche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74010",
          "name": "Annecy",
          "country_code": "FR",
          "slug": "annecy",
          "canonical_path": "/cities/fr/annecy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3037540",
          "name": "Annecy-le-Vieux",
          "country_code": "FR",
          "slug": "annecy-le-vieux",
          "canonical_path": "/cities/fr/annecy-le-vieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74012",
          "name": "Annemasse",
          "country_code": "FR",
          "slug": "annemasse",
          "canonical_path": "/cities/fr/annemasse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62035",
          "name": "Annezin",
          "country_code": "FR",
          "slug": "annezin",
          "canonical_path": "/cities/fr/annezin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3037520",
          "name": "Annoeullin",
          "country_code": "FR",
          "slug": "annoeullin",
          "canonical_path": "/cities/fr/annoeullin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59011",
          "name": "Annœullin",
          "country_code": "FR",
          "slug": "ann-ullin",
          "canonical_path": "/cities/fr/ann-ullin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:07010",
          "name": "Annonay",
          "country_code": "FR",
          "slug": "annonay",
          "canonical_path": "/cities/fr/annonay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69009",
          "name": "Anse",
          "country_code": "FR",
          "slug": "anse",
          "canonical_path": "/cities/fr/anse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06004",
          "name": "Antibes",
          "country_code": "FR",
          "slug": "antibes",
          "canonical_path": "/cities/fr/antibes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92002",
          "name": "Antony",
          "country_code": "FR",
          "slug": "antony",
          "canonical_path": "/cities/fr/antony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59014",
          "name": "Anzin",
          "country_code": "FR",
          "slug": "anzin",
          "canonical_path": "/cities/fr/anzin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84003",
          "name": "Apt",
          "country_code": "FR",
          "slug": "apt",
          "canonical_path": "/cities/fr/apt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33009",
          "name": "Arcachon",
          "country_code": "FR",
          "slug": "arcachon",
          "canonical_path": "/cities/fr/arcachon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94003",
          "name": "Arcueil",
          "country_code": "FR",
          "slug": "arcueil",
          "canonical_path": "/cities/fr/arcueil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33011",
          "name": "Arès",
          "country_code": "FR",
          "slug": "ares",
          "canonical_path": "/cities/fr/ares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3037068",
          "name": "Argeles",
          "country_code": "FR",
          "slug": "argeles",
          "canonical_path": "/cities/fr/argeles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66008",
          "name": "Argelès-sur-Mer",
          "country_code": "FR",
          "slug": "argeles-sur-mer",
          "canonical_path": "/cities/fr/argeles-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:61006",
          "name": "Argentan",
          "country_code": "FR",
          "slug": "argentan",
          "canonical_path": "/cities/fr/argentan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95018",
          "name": "Argenteuil",
          "country_code": "FR",
          "slug": "argenteuil",
          "canonical_path": "/cities/fr/argenteuil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3037018",
          "name": "Argenton-sur-Creuse",
          "country_code": "FR",
          "slug": "argenton-sur-creuse",
          "canonical_path": "/cities/fr/argenton-sur-creuse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13004",
          "name": "Arles",
          "country_code": "FR",
          "slug": "arles",
          "canonical_path": "/cities/fr/arles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59017",
          "name": "Armentières",
          "country_code": "FR",
          "slug": "armentieres",
          "canonical_path": "/cities/fr/armentieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72008",
          "name": "Arnage",
          "country_code": "FR",
          "slug": "arnage",
          "canonical_path": "/cities/fr/arnage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95019",
          "name": "Arnouville",
          "country_code": "FR",
          "slug": "arnouville",
          "canonical_path": "/cities/fr/arnouville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91021",
          "name": "Arpajon",
          "country_code": "FR",
          "slug": "arpajon",
          "canonical_path": "/cities/fr/arpajon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:15012",
          "name": "Arpajon-sur-Cère",
          "country_code": "FR",
          "slug": "arpajon-sur-cere",
          "canonical_path": "/cities/fr/arpajon-sur-cere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62040",
          "name": "Arques",
          "country_code": "FR",
          "slug": "arques",
          "canonical_path": "/cities/fr/arques/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56003",
          "name": "Arradon",
          "country_code": "FR",
          "slug": "arradon",
          "canonical_path": "/cities/fr/arradon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62041",
          "name": "Arras",
          "country_code": "FR",
          "slug": "arras",
          "canonical_path": "/cities/fr/arras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3036711",
          "name": "Ars-sur-Moselle",
          "country_code": "FR",
          "slug": "ars-sur-moselle",
          "canonical_path": "/cities/fr/ars-sur-moselle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33013",
          "name": "Artigues-près-Bordeaux",
          "country_code": "FR",
          "slug": "artigues-pres-bordeaux",
          "canonical_path": "/cities/fr/artigues-pres-bordeaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92004",
          "name": "Asnières-sur-Seine",
          "country_code": "FR",
          "slug": "asnieres-sur-seine",
          "canonical_path": "/cities/fr/asnieres-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91027",
          "name": "Athis-Mons",
          "country_code": "FR",
          "slug": "athis-mons",
          "canonical_path": "/cities/fr/athis-mons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13005",
          "name": "Aubagne",
          "country_code": "FR",
          "slug": "aubagne",
          "canonical_path": "/cities/fr/aubagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:07019",
          "name": "Aubenas",
          "country_code": "FR",
          "slug": "aubenas",
          "canonical_path": "/cities/fr/aubenas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78029",
          "name": "Aubergenville",
          "country_code": "FR",
          "slug": "aubergenville",
          "canonical_path": "/cities/fr/aubergenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93001",
          "name": "Aubervilliers",
          "country_code": "FR",
          "slug": "aubervilliers",
          "canonical_path": "/cities/fr/aubervilliers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63014",
          "name": "Aubière",
          "country_code": "FR",
          "slug": "aubiere",
          "canonical_path": "/cities/fr/aubiere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84004",
          "name": "Aubignan",
          "country_code": "FR",
          "slug": "aubignan",
          "canonical_path": "/cities/fr/aubignan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85008",
          "name": "Aubigny-Les Clouzeaux",
          "country_code": "FR",
          "slug": "aubigny-les-clouzeaux",
          "canonical_path": "/cities/fr/aubigny-les-clouzeaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:18015",
          "name": "Aubigny-sur-Nère",
          "country_code": "FR",
          "slug": "aubigny-sur-nere",
          "canonical_path": "/cities/fr/aubigny-sur-nere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59028",
          "name": "Auby",
          "country_code": "FR",
          "slug": "auby",
          "canonical_path": "/cities/fr/auby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31022",
          "name": "Aucamville",
          "country_code": "FR",
          "slug": "aucamville",
          "canonical_path": "/cities/fr/aucamville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:32013",
          "name": "Auch",
          "country_code": "FR",
          "slug": "auch",
          "canonical_path": "/cities/fr/auch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62048",
          "name": "Auchel",
          "country_code": "FR",
          "slug": "auchel",
          "canonical_path": "/cities/fr/auchel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33019",
          "name": "Audenge",
          "country_code": "FR",
          "slug": "audenge",
          "canonical_path": "/cities/fr/audenge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25031",
          "name": "Audincourt",
          "country_code": "FR",
          "slug": "audincourt",
          "canonical_path": "/cities/fr/audincourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62057",
          "name": "Audruicq",
          "country_code": "FR",
          "slug": "audruicq",
          "canonical_path": "/cities/fr/audruicq/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57038",
          "name": "Audun-le-Tiche",
          "country_code": "FR",
          "slug": "audun-le-tiche",
          "canonical_path": "/cities/fr/audun-le-tiche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93005",
          "name": "Aulnay-sous-Bois",
          "country_code": "FR",
          "slug": "aulnay-sous-bois",
          "canonical_path": "/cities/fr/aulnay-sous-bois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59032",
          "name": "Aulnoy-lez-Valenciennes",
          "country_code": "FR",
          "slug": "aulnoy-lez-valenciennes",
          "canonical_path": "/cities/fr/aulnoy-lez-valenciennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59033",
          "name": "Aulnoye-Aymeries",
          "country_code": "FR",
          "slug": "aulnoye-aymeries",
          "canonical_path": "/cities/fr/aulnoye-aymeries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28015",
          "name": "Auneau-Bleury-Saint-Symphorien",
          "country_code": "FR",
          "slug": "auneau-bleury-saint-symphorien",
          "canonical_path": "/cities/fr/auneau-bleury-saint-symphorien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56007",
          "name": "Auray",
          "country_code": "FR",
          "slug": "auray",
          "canonical_path": "/cities/fr/auray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:43012",
          "name": "Aurec-sur-Loire",
          "country_code": "FR",
          "slug": "aurec-sur-loire",
          "canonical_path": "/cities/fr/aurec-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:65047",
          "name": "Aureilhan",
          "country_code": "FR",
          "slug": "aureilhan",
          "canonical_path": "/cities/fr/aureilhan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:15014",
          "name": "Aurillac",
          "country_code": "FR",
          "slug": "aurillac",
          "canonical_path": "/cities/fr/aurillac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13007",
          "name": "Auriol",
          "country_code": "FR",
          "slug": "auriol",
          "canonical_path": "/cities/fr/auriol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81021",
          "name": "Aussillon",
          "country_code": "FR",
          "slug": "aussillon",
          "canonical_path": "/cities/fr/aussillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31032",
          "name": "Aussonne",
          "country_code": "FR",
          "slug": "aussonne",
          "canonical_path": "/cities/fr/aussonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31033",
          "name": "Auterive",
          "country_code": "FR",
          "slug": "auterive",
          "canonical_path": "/cities/fr/auterive/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71014",
          "name": "Autun",
          "country_code": "FR",
          "slug": "autun",
          "canonical_path": "/cities/fr/autun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95039",
          "name": "Auvers-sur-Oise",
          "country_code": "FR",
          "slug": "auvers-sur-oise",
          "canonical_path": "/cities/fr/auvers-sur-oise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:89024",
          "name": "Auxerre",
          "country_code": "FR",
          "slug": "auxerre",
          "canonical_path": "/cities/fr/auxerre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21038",
          "name": "Auxonne",
          "country_code": "FR",
          "slug": "auxonne",
          "canonical_path": "/cities/fr/auxonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:89025",
          "name": "Avallon",
          "country_code": "FR",
          "slug": "avallon",
          "canonical_path": "/cities/fr/avallon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84007",
          "name": "Avignon",
          "country_code": "FR",
          "slug": "avignon",
          "canonical_path": "/cities/fr/avignon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62065",
          "name": "Avion",
          "country_code": "FR",
          "slug": "avion",
          "canonical_path": "/cities/fr/avion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77014",
          "name": "Avon",
          "country_code": "FR",
          "slug": "avon",
          "canonical_path": "/cities/fr/avon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50025",
          "name": "Avranches",
          "country_code": "FR",
          "slug": "avranches",
          "canonical_path": "/cities/fr/avranches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49015",
          "name": "Avrillé",
          "country_code": "FR",
          "slug": "avrille",
          "canonical_path": "/cities/fr/avrille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51030",
          "name": "Aÿ-Champagne",
          "country_code": "FR",
          "slug": "ay-champagne",
          "canonical_path": "/cities/fr/ay-champagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17028",
          "name": "Aytré",
          "country_code": "FR",
          "slug": "aytre",
          "canonical_path": "/cities/fr/aytre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56008",
          "name": "Baden",
          "country_code": "FR",
          "slug": "baden",
          "canonical_path": "/cities/fr/baden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:65059",
          "name": "Bagnères-de-Bigorre",
          "country_code": "FR",
          "slug": "bagneres-de-bigorre",
          "canonical_path": "/cities/fr/bagneres-de-bigorre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92007",
          "name": "Bagneux",
          "country_code": "FR",
          "slug": "bagneux",
          "canonical_path": "/cities/fr/bagneux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93006",
          "name": "Bagnolet",
          "country_code": "FR",
          "slug": "bagnolet",
          "canonical_path": "/cities/fr/bagnolet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30028",
          "name": "Bagnols-sur-Cèze",
          "country_code": "FR",
          "slug": "bagnols-sur-ceze",
          "canonical_path": "/cities/fr/bagnols-sur-ceze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34022",
          "name": "Baillargues",
          "country_code": "FR",
          "slug": "baillargues",
          "canonical_path": "/cities/fr/baillargues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59043",
          "name": "Bailleul",
          "country_code": "FR",
          "slug": "bailleul",
          "canonical_path": "/cities/fr/bailleul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77018",
          "name": "Bailly-Romainvilliers",
          "country_code": "FR",
          "slug": "bailly-romainvilliers",
          "canonical_path": "/cities/fr/bailly-romainvilliers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35012",
          "name": "Bain-de-Bretagne",
          "country_code": "FR",
          "slug": "bain-de-bretagne",
          "canonical_path": "/cities/fr/bain-de-bretagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59044",
          "name": "Baisieux",
          "country_code": "FR",
          "slug": "baisieux",
          "canonical_path": "/cities/fr/baisieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34023",
          "name": "Balaruc-les-Bains",
          "country_code": "FR",
          "slug": "balaruc-les-bains",
          "canonical_path": "/cities/fr/balaruc-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37018",
          "name": "Ballan-Miré",
          "country_code": "FR",
          "slug": "ballan-mire",
          "canonical_path": "/cities/fr/ballan-mire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91045",
          "name": "Ballancourt-sur-Essonne",
          "country_code": "FR",
          "slug": "ballancourt-sur-essonne",
          "canonical_path": "/cities/fr/ballancourt-sur-essonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31044",
          "name": "Balma",
          "country_code": "FR",
          "slug": "balma",
          "canonical_path": "/cities/fr/balma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83009",
          "name": "Bandol",
          "country_code": "FR",
          "slug": "bandol",
          "canonical_path": "/cities/fr/bandol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29004",
          "name": "Bannalec",
          "country_code": "FR",
          "slug": "bannalec",
          "canonical_path": "/cities/fr/bannalec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3035092",
          "name": "Banyuls de la Marenda",
          "country_code": "FR",
          "slug": "banyuls-de-la-marenda",
          "canonical_path": "/cities/fr/banyuls-de-la-marenda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:55029",
          "name": "Bar-le-Duc",
          "country_code": "FR",
          "slug": "bar-le-duc",
          "canonical_path": "/cities/fr/bar-le-duc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3034802",
          "name": "Bar-sur-Aube",
          "country_code": "FR",
          "slug": "bar-sur-aube",
          "canonical_path": "/cities/fr/bar-sur-aube/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73029",
          "name": "Barberaz",
          "country_code": "FR",
          "slug": "barberaz",
          "canonical_path": "/cities/fr/barberaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3035016",
          "name": "Barbezieux-Saint-Hilaire",
          "country_code": "FR",
          "slug": "barbezieux-saint-hilaire",
          "canonical_path": "/cities/fr/barbezieux-saint-hilaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76057",
          "name": "Barentin",
          "country_code": "FR",
          "slug": "barentin",
          "canonical_path": "/cities/fr/barentin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62083",
          "name": "Barlin",
          "country_code": "FR",
          "slug": "barlin",
          "canonical_path": "/cities/fr/barlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67021",
          "name": "Barr",
          "country_code": "FR",
          "slug": "barr",
          "canonical_path": "/cities/fr/barr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44009",
          "name": "Basse-Goulaine",
          "country_code": "FR",
          "slug": "basse-goulaine",
          "canonical_path": "/cities/fr/basse-goulaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33032",
          "name": "Bassens",
          "country_code": "FR",
          "slug": "bassens-33032",
          "canonical_path": "/cities/fr/bassens-33032/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73031",
          "name": "Bassens",
          "country_code": "FR",
          "slug": "bassens-73031",
          "canonical_path": "/cities/fr/bassens-73031/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:2B033",
          "name": "Bastia",
          "country_code": "FR",
          "slug": "bastia",
          "canonical_path": "/cities/fr/bastia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56010",
          "name": "Baud",
          "country_code": "FR",
          "slug": "baud",
          "canonical_path": "/cities/fr/baud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49018",
          "name": "Baugé-en-Anjou",
          "country_code": "FR",
          "slug": "bauge-en-anjou",
          "canonical_path": "/cities/fr/bauge-en-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25047",
          "name": "Baume-les-Dames",
          "country_code": "FR",
          "slug": "baume-les-dames",
          "canonical_path": "/cities/fr/baume-les-dames/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59052",
          "name": "Bauvin",
          "country_code": "FR",
          "slug": "bauvin",
          "canonical_path": "/cities/fr/bauvin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14047",
          "name": "Bayeux",
          "country_code": "FR",
          "slug": "bayeux",
          "canonical_path": "/cities/fr/bayeux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64102",
          "name": "Bayonne",
          "country_code": "FR",
          "slug": "bayonne",
          "canonical_path": "/cities/fr/bayonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3034458",
          "name": "Bazas",
          "country_code": "FR",
          "slug": "bazas",
          "canonical_path": "/cities/fr/bazas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30032",
          "name": "Beaucaire",
          "country_code": "FR",
          "slug": "beaucaire",
          "canonical_path": "/cities/fr/beaucaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95051",
          "name": "Beauchamp",
          "country_code": "FR",
          "slug": "beauchamp",
          "canonical_path": "/cities/fr/beauchamp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3034343",
          "name": "Beaucourt",
          "country_code": "FR",
          "slug": "beaucourt",
          "canonical_path": "/cities/fr/beaucourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49020",
          "name": "Beaucouzé",
          "country_code": "FR",
          "slug": "beaucouze",
          "canonical_path": "/cities/fr/beaucouze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49021",
          "name": "Beaufort-en-Anjou",
          "country_code": "FR",
          "slug": "beaufort-en-anjou",
          "canonical_path": "/cities/fr/beaufort-en-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45028",
          "name": "Beaugency",
          "country_code": "FR",
          "slug": "beaugency",
          "canonical_path": "/cities/fr/beaugency/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63032",
          "name": "Beaumont",
          "country_code": "FR",
          "slug": "beaumont",
          "canonical_path": "/cities/fr/beaumont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95052",
          "name": "Beaumont-sur-Oise",
          "country_code": "FR",
          "slug": "beaumont-sur-oise",
          "canonical_path": "/cities/fr/beaumont-sur-oise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21054",
          "name": "Beaune",
          "country_code": "FR",
          "slug": "beaune",
          "canonical_path": "/cities/fr/beaune/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3034111",
          "name": "Beaupréau",
          "country_code": "FR",
          "slug": "beaupreau",
          "canonical_path": "/cities/fr/beaupreau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49023",
          "name": "Beaupréau-en-Mauges",
          "country_code": "FR",
          "slug": "beaupreau-en-mauges",
          "canonical_path": "/cities/fr/beaupreau-en-mauges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62099",
          "name": "Beaurains",
          "country_code": "FR",
          "slug": "beaurains",
          "canonical_path": "/cities/fr/beaurains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38034",
          "name": "Beaurepaire",
          "country_code": "FR",
          "slug": "beaurepaire",
          "canonical_path": "/cities/fr/beaurepaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06012",
          "name": "Beausoleil",
          "country_code": "FR",
          "slug": "beausoleil",
          "canonical_path": "/cities/fr/beausoleil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60057",
          "name": "Beauvais",
          "country_code": "FR",
          "slug": "beauvais",
          "canonical_path": "/cities/fr/beauvais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30033",
          "name": "Beauvoisin",
          "country_code": "FR",
          "slug": "beauvoisin",
          "canonical_path": "/cities/fr/beauvoisin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31056",
          "name": "Beauzelle",
          "country_code": "FR",
          "slug": "beauzelle",
          "canonical_path": "/cities/fr/beauzelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34028",
          "name": "Bédarieux",
          "country_code": "FR",
          "slug": "bedarieux",
          "canonical_path": "/cities/fr/bedarieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84016",
          "name": "Bédarrides",
          "country_code": "FR",
          "slug": "bedarrides",
          "canonical_path": "/cities/fr/bedarrides/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33039",
          "name": "Bègles",
          "country_code": "FR",
          "slug": "begles",
          "canonical_path": "/cities/fr/begles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57058",
          "name": "Behren-lès-Forbach",
          "country_code": "FR",
          "slug": "behren-les-forbach",
          "canonical_path": "/cities/fr/behren-les-forbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:90010",
          "name": "Belfort",
          "country_code": "FR",
          "slug": "belfort",
          "canonical_path": "/cities/fr/belfort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33042",
          "name": "Belin-Béliet",
          "country_code": "FR",
          "slug": "belin-beliet",
          "canonical_path": "/cities/fr/belin-beliet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30034",
          "name": "Bellegarde",
          "country_code": "FR",
          "slug": "bellegarde",
          "canonical_path": "/cities/fr/bellegarde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:03023",
          "name": "Bellerive-sur-Allier",
          "country_code": "FR",
          "slug": "bellerive-sur-allier",
          "canonical_path": "/cities/fr/bellerive-sur-allier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49345",
          "name": "Bellevigne-en-Layon",
          "country_code": "FR",
          "slug": "bellevigne-en-layon",
          "canonical_path": "/cities/fr/bellevigne-en-layon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85019",
          "name": "Bellevigny",
          "country_code": "FR",
          "slug": "bellevigny",
          "canonical_path": "/cities/fr/bellevigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3033636",
          "name": "Belleville",
          "country_code": "FR",
          "slug": "belleville",
          "canonical_path": "/cities/fr/belleville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69019",
          "name": "Belleville-en-Beaujolais",
          "country_code": "FR",
          "slug": "belleville-en-beaujolais",
          "canonical_path": "/cities/fr/belleville-en-beaujolais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01034",
          "name": "Belley",
          "country_code": "FR",
          "slug": "belley",
          "canonical_path": "/cities/fr/belley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67028",
          "name": "Benfeld",
          "country_code": "FR",
          "slug": "benfeld",
          "canonical_path": "/cities/fr/benfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62108",
          "name": "Berck",
          "country_code": "FR",
          "slug": "berck",
          "canonical_path": "/cities/fr/berck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3033416",
          "name": "Berck-Plage",
          "country_code": "FR",
          "slug": "berck-plage",
          "canonical_path": "/cities/fr/berck-plage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:24037",
          "name": "Bergerac",
          "country_code": "FR",
          "slug": "bergerac",
          "canonical_path": "/cities/fr/bergerac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27056",
          "name": "Bernay",
          "country_code": "FR",
          "slug": "bernay",
          "canonical_path": "/cities/fr/bernay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13014",
          "name": "Berre-l'Étang",
          "country_code": "FR",
          "slug": "berre-l-etang",
          "canonical_path": "/cities/fr/berre-l-etang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25056",
          "name": "Besançon",
          "country_code": "FR",
          "slug": "besancon",
          "canonical_path": "/cities/fr/besancon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34031",
          "name": "Bessan",
          "country_code": "FR",
          "slug": "bessan",
          "canonical_path": "/cities/fr/bessan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95060",
          "name": "Bessancourt",
          "country_code": "FR",
          "slug": "bessancourt",
          "canonical_path": "/cities/fr/bessancourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51055",
          "name": "Bétheny",
          "country_code": "FR",
          "slug": "betheny",
          "canonical_path": "/cities/fr/betheny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25057",
          "name": "Bethoncourt",
          "country_code": "FR",
          "slug": "bethoncourt",
          "canonical_path": "/cities/fr/bethoncourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62119",
          "name": "Béthune",
          "country_code": "FR",
          "slug": "bethune",
          "canonical_path": "/cities/fr/bethune/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35024",
          "name": "Betton",
          "country_code": "FR",
          "slug": "betton",
          "canonical_path": "/cities/fr/betton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59079",
          "name": "Beuvrages",
          "country_code": "FR",
          "slug": "beuvrages",
          "canonical_path": "/cities/fr/beuvrages/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62126",
          "name": "Beuvry",
          "country_code": "FR",
          "slug": "beuvry",
          "canonical_path": "/cities/fr/beuvry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78062",
          "name": "Beynes",
          "country_code": "FR",
          "slug": "beynes",
          "canonical_path": "/cities/fr/beynes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01043",
          "name": "Beynost",
          "country_code": "FR",
          "slug": "beynost",
          "canonical_path": "/cities/fr/beynost/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51058",
          "name": "Bezannes",
          "country_code": "FR",
          "slug": "bezannes",
          "canonical_path": "/cities/fr/bezannes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34032",
          "name": "Béziers",
          "country_code": "FR",
          "slug": "beziers",
          "canonical_path": "/cities/fr/beziers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95063",
          "name": "Bezons",
          "country_code": "FR",
          "slug": "bezons",
          "canonical_path": "/cities/fr/bezons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64122",
          "name": "Biarritz",
          "country_code": "FR",
          "slug": "biarritz",
          "canonical_path": "/cities/fr/biarritz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64125",
          "name": "Bidart",
          "country_code": "FR",
          "slug": "bidart",
          "canonical_path": "/cities/fr/bidart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33051",
          "name": "Biganos",
          "country_code": "FR",
          "slug": "biganos",
          "canonical_path": "/cities/fr/biganos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:2B037",
          "name": "Biguglia",
          "country_code": "FR",
          "slug": "biguglia",
          "canonical_path": "/cities/fr/biguglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76095",
          "name": "Bihorel",
          "country_code": "FR",
          "slug": "bihorel",
          "canonical_path": "/cities/fr/bihorel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64129",
          "name": "Billère",
          "country_code": "FR",
          "slug": "billere",
          "canonical_path": "/cities/fr/billere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62132",
          "name": "Billy-Berclau",
          "country_code": "FR",
          "slug": "billy-berclau",
          "canonical_path": "/cities/fr/billy-berclau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62133",
          "name": "Billy-Montigny",
          "country_code": "FR",
          "slug": "billy-montigny",
          "canonical_path": "/cities/fr/billy-montigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22055",
          "name": "Binic-Étables-sur-Mer",
          "country_code": "FR",
          "slug": "binic-etables-sur-mer",
          "canonical_path": "/cities/fr/binic-etables-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06018",
          "name": "Biot",
          "country_code": "FR",
          "slug": "biot",
          "canonical_path": "/cities/fr/biot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40046",
          "name": "Biscarrosse",
          "country_code": "FR",
          "slug": "biscarrosse",
          "canonical_path": "/cities/fr/biscarrosse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67043",
          "name": "Bischheim",
          "country_code": "FR",
          "slug": "bischheim",
          "canonical_path": "/cities/fr/bischheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67046",
          "name": "Bischwiller",
          "country_code": "FR",
          "slug": "bischwiller",
          "canonical_path": "/cities/fr/bischwiller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3032518",
          "name": "Bitche",
          "country_code": "FR",
          "slug": "bitche",
          "canonical_path": "/cities/fr/bitche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3032496",
          "name": "Bizanos",
          "country_code": "FR",
          "slug": "bizanos",
          "canonical_path": "/cities/fr/bizanos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31069",
          "name": "Blagnac",
          "country_code": "FR",
          "slug": "blagnac",
          "canonical_path": "/cities/fr/blagnac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44015",
          "name": "Blain",
          "country_code": "FR",
          "slug": "blain",
          "canonical_path": "/cities/fr/blain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14076",
          "name": "Blainville-sur-Orne",
          "country_code": "FR",
          "slug": "blainville-sur-orne",
          "canonical_path": "/cities/fr/blainville-sur-orne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33056",
          "name": "Blanquefort",
          "country_code": "FR",
          "slug": "blanquefort",
          "canonical_path": "/cities/fr/blanquefort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71040",
          "name": "Blanzy",
          "country_code": "FR",
          "slug": "blanzy",
          "canonical_path": "/cities/fr/blanzy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33058",
          "name": "Blaye",
          "country_code": "FR",
          "slug": "blaye",
          "canonical_path": "/cities/fr/blaye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3032279",
          "name": "Blendecques",
          "country_code": "FR",
          "slug": "blendecques",
          "canonical_path": "/cities/fr/blendecques/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3032275",
          "name": "Blénod-lès-Pont-à-Mousson",
          "country_code": "FR",
          "slug": "blenod-les-pont-a-mousson",
          "canonical_path": "/cities/fr/blenod-les-pont-a-mousson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37027",
          "name": "Bléré",
          "country_code": "FR",
          "slug": "blere",
          "canonical_path": "/cities/fr/blere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:41018",
          "name": "Blois",
          "country_code": "FR",
          "slug": "blois",
          "canonical_path": "/cities/fr/blois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68042",
          "name": "Blotzheim",
          "country_code": "FR",
          "slug": "blotzheim",
          "canonical_path": "/cities/fr/blotzheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93008",
          "name": "Bobigny",
          "country_code": "FR",
          "slug": "bobigny",
          "canonical_path": "/cities/fr/bobigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47031",
          "name": "Boé",
          "country_code": "FR",
          "slug": "boe",
          "canonical_path": "/cities/fr/boe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02095",
          "name": "Bohain-en-Vermandois",
          "country_code": "FR",
          "slug": "bohain-en-vermandois",
          "canonical_path": "/cities/fr/bohain-en-vermandois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92009",
          "name": "Bois-Colombes",
          "country_code": "FR",
          "slug": "bois-colombes",
          "canonical_path": "/cities/fr/bois-colombes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78073",
          "name": "Bois-d'Arcy",
          "country_code": "FR",
          "slug": "bois-d-arcy",
          "canonical_path": "/cities/fr/bois-d-arcy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76108",
          "name": "Bois-Guillaume",
          "country_code": "FR",
          "slug": "bois-guillaume",
          "canonical_path": "/cities/fr/bois-guillaume/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77037",
          "name": "Bois-le-Roi",
          "country_code": "FR",
          "slug": "bois-le-roi",
          "canonical_path": "/cities/fr/bois-le-roi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94004",
          "name": "Boissy-Saint-Léger",
          "country_code": "FR",
          "slug": "boissy-saint-leger",
          "canonical_path": "/cities/fr/boissy-saint-leger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76114",
          "name": "Bolbec",
          "country_code": "FR",
          "slug": "bolbec",
          "canonical_path": "/cities/fr/bolbec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84019",
          "name": "Bollène",
          "country_code": "FR",
          "slug": "bollene",
          "canonical_path": "/cities/fr/bollene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66021",
          "name": "Bompas",
          "country_code": "FR",
          "slug": "bompas",
          "canonical_path": "/cities/fr/bompas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47032",
          "name": "Bon-Encontre",
          "country_code": "FR",
          "slug": "bon-encontre",
          "canonical_path": "/cities/fr/bon-encontre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:53034",
          "name": "Bonchamp-lès-Laval",
          "country_code": "FR",
          "slug": "bonchamp-les-laval",
          "canonical_path": "/cities/fr/bonchamp-les-laval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91086",
          "name": "Bondoufle",
          "country_code": "FR",
          "slug": "bondoufle",
          "canonical_path": "/cities/fr/bondoufle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59090",
          "name": "Bondues",
          "country_code": "FR",
          "slug": "bondues",
          "canonical_path": "/cities/fr/bondues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93010",
          "name": "Bondy",
          "country_code": "FR",
          "slug": "bondy",
          "canonical_path": "/cities/fr/bondy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94011",
          "name": "Bonneuil-sur-Marne",
          "country_code": "FR",
          "slug": "bonneuil-sur-marne",
          "canonical_path": "/cities/fr/bonneuil-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74042",
          "name": "Bonneville",
          "country_code": "FR",
          "slug": "bonneville",
          "canonical_path": "/cities/fr/bonneville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78089",
          "name": "Bonnières-sur-Seine",
          "country_code": "FR",
          "slug": "bonnieres-sur-seine",
          "canonical_path": "/cities/fr/bonnieres-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74043",
          "name": "Bons-en-Chablais",
          "country_code": "FR",
          "slug": "bons-en-chablais",
          "canonical_path": "/cities/fr/bons-en-chablais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76103",
          "name": "Bonsecours",
          "country_code": "FR",
          "slug": "bonsecours",
          "canonical_path": "/cities/fr/bonsecours/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33063",
          "name": "Bordeaux",
          "country_code": "FR",
          "slug": "bordeaux",
          "canonical_path": "/cities/fr/bordeaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:65100",
          "name": "Bordères-sur-l'Échez",
          "country_code": "FR",
          "slug": "borderes-sur-l-echez",
          "canonical_path": "/cities/fr/borderes-sur-l-echez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:2B042",
          "name": "Borgo",
          "country_code": "FR",
          "slug": "borgo",
          "canonical_path": "/cities/fr/borgo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83019",
          "name": "Bormes-les-Mimosas",
          "country_code": "FR",
          "slug": "bormes-les-mimosas",
          "canonical_path": "/cities/fr/bormes-les-mimosas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44018",
          "name": "Bouaye",
          "country_code": "FR",
          "slug": "bouaye",
          "canonical_path": "/cities/fr/bouaye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13015",
          "name": "Bouc-Bel-Air",
          "country_code": "FR",
          "slug": "bouc-bel-air",
          "canonical_path": "/cities/fr/bouc-bel-air/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64140",
          "name": "Boucau",
          "country_code": "FR",
          "slug": "boucau",
          "canonical_path": "/cities/fr/boucau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49035",
          "name": "Bouchemaine",
          "country_code": "FR",
          "slug": "bouchemaine",
          "canonical_path": "/cities/fr/bouchemaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95091",
          "name": "Bouffémont",
          "country_code": "FR",
          "slug": "bouffemont",
          "canonical_path": "/cities/fr/bouffemont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78092",
          "name": "Bougival",
          "country_code": "FR",
          "slug": "bougival",
          "canonical_path": "/cities/fr/bougival/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44020",
          "name": "Bouguenais",
          "country_code": "FR",
          "slug": "bouguenais",
          "canonical_path": "/cities/fr/bouguenais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30047",
          "name": "Bouillargues",
          "country_code": "FR",
          "slug": "bouillargues",
          "canonical_path": "/cities/fr/bouillargues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57097",
          "name": "Boulay-Moselle",
          "country_code": "FR",
          "slug": "boulay-moselle",
          "canonical_path": "/cities/fr/boulay-moselle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:24053",
          "name": "Boulazac Isle Manoire",
          "country_code": "FR",
          "slug": "boulazac-isle-manoire",
          "canonical_path": "/cities/fr/boulazac-isle-manoire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92012",
          "name": "Boulogne-Billancourt",
          "country_code": "FR",
          "slug": "boulogne-billancourt",
          "canonical_path": "/cities/fr/boulogne-billancourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62160",
          "name": "Boulogne-sur-Mer",
          "country_code": "FR",
          "slug": "boulogne-sur-mer",
          "canonical_path": "/cities/fr/boulogne-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3031090",
          "name": "Bourbon-Lancy",
          "country_code": "FR",
          "slug": "bourbon-lancy",
          "canonical_path": "/cities/fr/bourbon-lancy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59094",
          "name": "Bourbourg",
          "country_code": "FR",
          "slug": "bourbourg",
          "canonical_path": "/cities/fr/bourbourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26057",
          "name": "Bourg-de-Péage",
          "country_code": "FR",
          "slug": "bourg-de-peage",
          "canonical_path": "/cities/fr/bourg-de-peage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01053",
          "name": "Bourg-en-Bresse",
          "country_code": "FR",
          "slug": "bourg-en-bresse",
          "canonical_path": "/cities/fr/bourg-en-bresse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92014",
          "name": "Bourg-la-Reine",
          "country_code": "FR",
          "slug": "bourg-la-reine",
          "canonical_path": "/cities/fr/bourg-la-reine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26058",
          "name": "Bourg-lès-Valence",
          "country_code": "FR",
          "slug": "bourg-les-valence",
          "canonical_path": "/cities/fr/bourg-les-valence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:07042",
          "name": "Bourg-Saint-Andéol",
          "country_code": "FR",
          "slug": "bourg-saint-andeol",
          "canonical_path": "/cities/fr/bourg-saint-andeol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73054",
          "name": "Bourg-Saint-Maurice",
          "country_code": "FR",
          "slug": "bourg-saint-maurice",
          "canonical_path": "/cities/fr/bourg-saint-maurice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:18033",
          "name": "Bourges",
          "country_code": "FR",
          "slug": "bourges",
          "canonical_path": "/cities/fr/bourges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38053",
          "name": "Bourgoin-Jallieu",
          "country_code": "FR",
          "slug": "bourgoin-jallieu",
          "canonical_path": "/cities/fr/bourgoin-jallieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91097",
          "name": "Boussy-Saint-Antoine",
          "country_code": "FR",
          "slug": "boussy-saint-antoine",
          "canonical_path": "/cities/fr/boussy-saint-antoine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35037",
          "name": "Bréal-sous-Montfort",
          "country_code": "FR",
          "slug": "breal-sous-montfort",
          "canonical_path": "/cities/fr/breal-sous-montfort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62173",
          "name": "Brebières",
          "country_code": "FR",
          "slug": "brebieres",
          "canonical_path": "/cities/fr/brebieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56023",
          "name": "Brech",
          "country_code": "FR",
          "slug": "brech",
          "canonical_path": "/cities/fr/brech/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79049",
          "name": "Bressuire",
          "country_code": "FR",
          "slug": "bressuire",
          "canonical_path": "/cities/fr/bressuire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29019",
          "name": "Brest",
          "country_code": "FR",
          "slug": "brest",
          "canonical_path": "/cities/fr/brest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85035",
          "name": "Bretignolles-sur-Mer",
          "country_code": "FR",
          "slug": "bretignolles-sur-mer",
          "canonical_path": "/cities/fr/bretignolles-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91103",
          "name": "Brétigny-sur-Orge",
          "country_code": "FR",
          "slug": "bretigny-sur-orge",
          "canonical_path": "/cities/fr/bretigny-sur-orge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91105",
          "name": "Breuillet",
          "country_code": "FR",
          "slug": "breuillet",
          "canonical_path": "/cities/fr/breuillet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:05023",
          "name": "Briançon",
          "country_code": "FR",
          "slug": "briancon",
          "canonical_path": "/cities/fr/briancon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3030132",
          "name": "Briare",
          "country_code": "FR",
          "slug": "briare",
          "canonical_path": "/cities/fr/briare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50082",
          "name": "Bricquebec-en-Cotentin",
          "country_code": "FR",
          "slug": "bricquebec-en-cotentin",
          "canonical_path": "/cities/fr/bricquebec-en-cotentin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77053",
          "name": "Brie-Comte-Robert",
          "country_code": "FR",
          "slug": "brie-comte-robert",
          "canonical_path": "/cities/fr/brie-comte-robert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29020",
          "name": "Briec",
          "country_code": "FR",
          "slug": "briec",
          "canonical_path": "/cities/fr/briec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3030071",
          "name": "Briey",
          "country_code": "FR",
          "slug": "briey",
          "canonical_path": "/cities/fr/briey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69027",
          "name": "Brignais",
          "country_code": "FR",
          "slug": "brignais",
          "canonical_path": "/cities/fr/brignais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83023",
          "name": "Brignoles",
          "country_code": "FR",
          "slug": "brignoles",
          "canonical_path": "/cities/fr/brignoles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69028",
          "name": "Brindas",
          "country_code": "FR",
          "slug": "brindas",
          "canonical_path": "/cities/fr/brindas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:43040",
          "name": "Brioude",
          "country_code": "FR",
          "slug": "brioude",
          "canonical_path": "/cities/fr/brioude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49050",
          "name": "Brissac Loire Aubance",
          "country_code": "FR",
          "slug": "brissac-loire-aubance",
          "canonical_path": "/cities/fr/brissac-loire-aubance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:19031",
          "name": "Brive-la-Gaillarde",
          "country_code": "FR",
          "slug": "brive-la-gaillarde",
          "canonical_path": "/cities/fr/brive-la-gaillarde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69029",
          "name": "Bron",
          "country_code": "FR",
          "slug": "bron",
          "canonical_path": "/cities/fr/bron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77055",
          "name": "Brou-sur-Chantereine",
          "country_code": "FR",
          "slug": "brou-sur-chantereine",
          "canonical_path": "/cities/fr/brou-sur-chantereine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62178",
          "name": "Bruay-la-Buissière",
          "country_code": "FR",
          "slug": "bruay-la-buissiere",
          "canonical_path": "/cities/fr/bruay-la-buissiere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59112",
          "name": "Bruay-sur-l'Escaut",
          "country_code": "FR",
          "slug": "bruay-sur-l-escaut",
          "canonical_path": "/cities/fr/bruay-sur-l-escaut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33075",
          "name": "Bruges",
          "country_code": "FR",
          "slug": "bruges",
          "canonical_path": "/cities/fr/bruges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31091",
          "name": "Bruguières",
          "country_code": "FR",
          "slug": "bruguieres",
          "canonical_path": "/cities/fr/bruguieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67067",
          "name": "Brumath",
          "country_code": "FR",
          "slug": "brumath",
          "canonical_path": "/cities/fr/brumath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91114",
          "name": "Brunoy",
          "country_code": "FR",
          "slug": "brunoy",
          "canonical_path": "/cities/fr/brunoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3029746",
          "name": "Brunstatt",
          "country_code": "FR",
          "slug": "brunstatt",
          "canonical_path": "/cities/fr/brunstatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68056",
          "name": "Brunstatt-Didenheim",
          "country_code": "FR",
          "slug": "brunstatt-didenheim",
          "canonical_path": "/cities/fr/brunstatt-didenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35047",
          "name": "Bruz",
          "country_code": "FR",
          "slug": "bruz",
          "canonical_path": "/cities/fr/bruz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94015",
          "name": "Bry-sur-Marne",
          "country_code": "FR",
          "slug": "bry-sur-marne",
          "canonical_path": "/cities/fr/bry-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78117",
          "name": "Buc",
          "country_code": "FR",
          "slug": "buc",
          "canonical_path": "/cities/fr/buc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62186",
          "name": "Bully-les-Mines",
          "country_code": "FR",
          "slug": "bully-les-mines",
          "canonical_path": "/cities/fr/bully-les-mines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91122",
          "name": "Bures-sur-Yvette",
          "country_code": "FR",
          "slug": "bures-sur-yvette",
          "canonical_path": "/cities/fr/bures-sur-yvette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77058",
          "name": "Bussy-Saint-Georges",
          "country_code": "FR",
          "slug": "bussy-saint-georges",
          "canonical_path": "/cities/fr/bussy-saint-georges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86041",
          "name": "Buxerolles",
          "country_code": "FR",
          "slug": "buxerolles",
          "canonical_path": "/cities/fr/buxerolles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66028",
          "name": "Cabestany",
          "country_code": "FR",
          "slug": "cabestany",
          "canonical_path": "/cities/fr/cabestany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13019",
          "name": "Cabriès",
          "country_code": "FR",
          "slug": "cabries",
          "canonical_path": "/cities/fr/cabries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94016",
          "name": "Cachan",
          "country_code": "FR",
          "slug": "cachan",
          "canonical_path": "/cities/fr/cachan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33080",
          "name": "Cadaujac",
          "country_code": "FR",
          "slug": "cadaujac",
          "canonical_path": "/cities/fr/cadaujac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14118",
          "name": "Caen",
          "country_code": "FR",
          "slug": "caen",
          "canonical_path": "/cities/fr/caen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06027",
          "name": "Cagnes-sur-Mer",
          "country_code": "FR",
          "slug": "cagnes-sur-mer",
          "canonical_path": "/cities/fr/cagnes-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:46042",
          "name": "Cahors",
          "country_code": "FR",
          "slug": "cahors",
          "canonical_path": "/cities/fr/cahors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62193",
          "name": "Calais",
          "country_code": "FR",
          "slug": "calais",
          "canonical_path": "/cities/fr/calais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62194",
          "name": "Calonne-Ricouart",
          "country_code": "FR",
          "slug": "calonne-ricouart",
          "canonical_path": "/cities/fr/calonne-ricouart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69034",
          "name": "Caluire-et-Cuire",
          "country_code": "FR",
          "slug": "caluire-et-cuire",
          "canonical_path": "/cities/fr/caluire-et-cuire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:2B050",
          "name": "Calvi",
          "country_code": "FR",
          "slug": "calvi",
          "canonical_path": "/cities/fr/calvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30062",
          "name": "Calvisson",
          "country_code": "FR",
          "slug": "calvisson",
          "canonical_path": "/cities/fr/calvisson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64160",
          "name": "Cambo-les-Bains",
          "country_code": "FR",
          "slug": "cambo-les-bains",
          "canonical_path": "/cities/fr/cambo-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59122",
          "name": "Cambrai",
          "country_code": "FR",
          "slug": "cambrai",
          "canonical_path": "/cities/fr/cambrai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35049",
          "name": "Cancale",
          "country_code": "FR",
          "slug": "cancale",
          "canonical_path": "/cities/fr/cancale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33090",
          "name": "Canéjan",
          "country_code": "FR",
          "slug": "canejan",
          "canonical_path": "/cities/fr/canejan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66037",
          "name": "Canet-en-Roussillon",
          "country_code": "FR",
          "slug": "canet-en-roussillon",
          "canonical_path": "/cities/fr/canet-en-roussillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06029",
          "name": "Cannes",
          "country_code": "FR",
          "slug": "cannes",
          "canonical_path": "/cities/fr/cannes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66038",
          "name": "Canohès",
          "country_code": "FR",
          "slug": "canohes",
          "canonical_path": "/cities/fr/canohes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76157",
          "name": "Canteleu",
          "country_code": "FR",
          "slug": "canteleu",
          "canonical_path": "/cities/fr/canteleu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40065",
          "name": "Capbreton",
          "country_code": "FR",
          "slug": "capbreton",
          "canonical_path": "/cities/fr/capbreton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59131",
          "name": "Cappelle-la-Grande",
          "country_code": "FR",
          "slug": "cappelle-la-grande",
          "canonical_path": "/cities/fr/cappelle-la-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:12319244",
          "name": "Carabacel",
          "country_code": "FR",
          "slug": "carabacel",
          "canonical_path": "/cities/fr/carabacel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33096",
          "name": "Carbon-Blanc",
          "country_code": "FR",
          "slug": "carbon-blanc",
          "canonical_path": "/cities/fr/carbon-blanc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31107",
          "name": "Carbonne",
          "country_code": "FR",
          "slug": "carbonne",
          "canonical_path": "/cities/fr/carbonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11069",
          "name": "Carcassonne",
          "country_code": "FR",
          "slug": "carcassonne",
          "canonical_path": "/cities/fr/carcassonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3028610",
          "name": "Carentan",
          "country_code": "FR",
          "slug": "carentan",
          "canonical_path": "/cities/fr/carentan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50099",
          "name": "Carentan-les-Marais",
          "country_code": "FR",
          "slug": "carentan-les-marais",
          "canonical_path": "/cities/fr/carentan-les-marais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29024",
          "name": "Carhaix-Plouguer",
          "country_code": "FR",
          "slug": "carhaix-plouguer",
          "canonical_path": "/cities/fr/carhaix-plouguer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81060",
          "name": "Carmaux",
          "country_code": "FR",
          "slug": "carmaux",
          "canonical_path": "/cities/fr/carmaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13119",
          "name": "Carnoux-en-Provence",
          "country_code": "FR",
          "slug": "carnoux-en-provence",
          "canonical_path": "/cities/fr/carnoux-en-provence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84031",
          "name": "Carpentras",
          "country_code": "FR",
          "slug": "carpentras",
          "canonical_path": "/cities/fr/carpentras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44026",
          "name": "Carquefou",
          "country_code": "FR",
          "slug": "carquefou",
          "canonical_path": "/cities/fr/carquefou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83034",
          "name": "Carqueiranne",
          "country_code": "FR",
          "slug": "carqueiranne",
          "canonical_path": "/cities/fr/carqueiranne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78123",
          "name": "Carrières-sous-Poissy",
          "country_code": "FR",
          "slug": "carrieres-sous-poissy",
          "canonical_path": "/cities/fr/carrieres-sous-poissy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78124",
          "name": "Carrières-sur-Seine",
          "country_code": "FR",
          "slug": "carrieres-sur-seine",
          "canonical_path": "/cities/fr/carrieres-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06033",
          "name": "Carros",
          "country_code": "FR",
          "slug": "carros",
          "canonical_path": "/cities/fr/carros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13021",
          "name": "Carry-le-Rouet",
          "country_code": "FR",
          "slug": "carry-le-rouet",
          "canonical_path": "/cities/fr/carry-le-rouet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62215",
          "name": "Carvin",
          "country_code": "FR",
          "slug": "carvin",
          "canonical_path": "/cities/fr/carvin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13022",
          "name": "Cassis",
          "country_code": "FR",
          "slug": "cassis",
          "canonical_path": "/cities/fr/cassis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31113",
          "name": "Castanet-Tolosan",
          "country_code": "FR",
          "slug": "castanet-tolosan",
          "canonical_path": "/cities/fr/castanet-tolosan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31116",
          "name": "Castelginest",
          "country_code": "FR",
          "slug": "castelginest",
          "canonical_path": "/cities/fr/castelginest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3028387",
          "name": "Casteljaloux",
          "country_code": "FR",
          "slug": "casteljaloux",
          "canonical_path": "/cities/fr/casteljaloux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31118",
          "name": "Castelnau-d'Estrétefonds",
          "country_code": "FR",
          "slug": "castelnau-d-estretefonds",
          "canonical_path": "/cities/fr/castelnau-d-estretefonds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34057",
          "name": "Castelnau-le-Lez",
          "country_code": "FR",
          "slug": "castelnau-le-lez",
          "canonical_path": "/cities/fr/castelnau-le-lez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11076",
          "name": "Castelnaudary",
          "country_code": "FR",
          "slug": "castelnaudary",
          "canonical_path": "/cities/fr/castelnaudary/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:82033",
          "name": "Castelsarrasin",
          "country_code": "FR",
          "slug": "castelsarrasin",
          "canonical_path": "/cities/fr/castelsarrasin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81065",
          "name": "Castres",
          "country_code": "FR",
          "slug": "castres",
          "canonical_path": "/cities/fr/castres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34058",
          "name": "Castries",
          "country_code": "FR",
          "slug": "castries",
          "canonical_path": "/cities/fr/castries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56036",
          "name": "Caudan",
          "country_code": "FR",
          "slug": "caudan",
          "canonical_path": "/cities/fr/caudan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76165",
          "name": "Caudebec-lès-Elbeuf",
          "country_code": "FR",
          "slug": "caudebec-les-elbeuf",
          "canonical_path": "/cities/fr/caudebec-les-elbeuf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59139",
          "name": "Caudry",
          "country_code": "FR",
          "slug": "caudry",
          "canonical_path": "/cities/fr/caudry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84034",
          "name": "Caumont-sur-Durance",
          "country_code": "FR",
          "slug": "caumont-sur-durance",
          "canonical_path": "/cities/fr/caumont-sur-durance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:82037",
          "name": "Caussade",
          "country_code": "FR",
          "slug": "caussade",
          "canonical_path": "/cities/fr/caussade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84035",
          "name": "Cavaillon",
          "country_code": "FR",
          "slug": "cavaillon",
          "canonical_path": "/cities/fr/cavaillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83036",
          "name": "Cavalaire-sur-Mer",
          "country_code": "FR",
          "slug": "cavalaire-sur-mer",
          "canonical_path": "/cities/fr/cavalaire-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34069",
          "name": "Cazouls-lès-Béziers",
          "country_code": "FR",
          "slug": "cazouls-les-beziers",
          "canonical_path": "/cities/fr/cazouls-les-beziers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63063",
          "name": "Cébazat",
          "country_code": "FR",
          "slug": "cebazat",
          "canonical_path": "/cities/fr/cebazat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33119",
          "name": "Cenon",
          "country_code": "FR",
          "slug": "cenon",
          "canonical_path": "/cities/fr/cenon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66049",
          "name": "Céret",
          "country_code": "FR",
          "slug": "ceret",
          "canonical_path": "/cities/fr/ceret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95127",
          "name": "Cergy",
          "country_code": "FR",
          "slug": "cergy",
          "canonical_path": "/cities/fr/cergy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:8555643",
          "name": "Cergy-Pontoise",
          "country_code": "FR",
          "slug": "cergy-pontoise",
          "canonical_path": "/cities/fr/cergy-pontoise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68063",
          "name": "Cernay",
          "country_code": "FR",
          "slug": "cernay",
          "canonical_path": "/cities/fr/cernay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77067",
          "name": "Cesson",
          "country_code": "FR",
          "slug": "cesson",
          "canonical_path": "/cities/fr/cesson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35051",
          "name": "Cesson-Sévigné",
          "country_code": "FR",
          "slug": "cesson-sevigne",
          "canonical_path": "/cities/fr/cesson-sevigne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01071",
          "name": "Cessy",
          "country_code": "FR",
          "slug": "cessy",
          "canonical_path": "/cities/fr/cessy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33122",
          "name": "Cestas",
          "country_code": "FR",
          "slug": "cestas",
          "canonical_path": "/cities/fr/cestas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63070",
          "name": "Ceyrat",
          "country_code": "FR",
          "slug": "ceyrat",
          "canonical_path": "/cities/fr/ceyrat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26064",
          "name": "Chabeuil",
          "country_code": "FR",
          "slug": "chabeuil",
          "canonical_path": "/cities/fr/chabeuil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71073",
          "name": "Chagny",
          "country_code": "FR",
          "slug": "chagny",
          "canonical_path": "/cities/fr/chagny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45068",
          "name": "Châlette-sur-Loing",
          "country_code": "FR",
          "slug": "chalette-sur-loing",
          "canonical_path": "/cities/fr/chalette-sur-loing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85047",
          "name": "Challans",
          "country_code": "FR",
          "slug": "challans",
          "canonical_path": "/cities/fr/challans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73064",
          "name": "Challes-les-Eaux",
          "country_code": "FR",
          "slug": "challes-les-eaux",
          "canonical_path": "/cities/fr/challes-les-eaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71076",
          "name": "Chalon-sur-Saône",
          "country_code": "FR",
          "slug": "chalon-sur-saone",
          "canonical_path": "/cities/fr/chalon-sur-saone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49063",
          "name": "Chalonnes-sur-Loire",
          "country_code": "FR",
          "slug": "chalonnes-sur-loire",
          "canonical_path": "/cities/fr/chalonnes-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51108",
          "name": "Châlons-en-Champagne",
          "country_code": "FR",
          "slug": "chalons-en-champagne",
          "canonical_path": "/cities/fr/chalons-en-champagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63075",
          "name": "Chamalières",
          "country_code": "FR",
          "slug": "chamalieres",
          "canonical_path": "/cities/fr/chamalieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73065",
          "name": "Chambéry",
          "country_code": "FR",
          "slug": "chambery",
          "canonical_path": "/cities/fr/chambery/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60139",
          "name": "Chambly",
          "country_code": "FR",
          "slug": "chambly",
          "canonical_path": "/cities/fr/chambly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78133",
          "name": "Chambourcy",
          "country_code": "FR",
          "slug": "chambourcy",
          "canonical_path": "/cities/fr/chambourcy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37050",
          "name": "Chambray-lès-Tours",
          "country_code": "FR",
          "slug": "chambray-les-tours",
          "canonical_path": "/cities/fr/chambray-les-tours/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74056",
          "name": "Chamonix-Mont-Blanc",
          "country_code": "FR",
          "slug": "chamonix-mont-blanc",
          "canonical_path": "/cities/fr/chamonix-mont-blanc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69040",
          "name": "Champagne-au-Mont-d'Or",
          "country_code": "FR",
          "slug": "champagne-au-mont-d-or",
          "canonical_path": "/cities/fr/champagne-au-mont-d-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95134",
          "name": "Champagne-sur-Oise",
          "country_code": "FR",
          "slug": "champagne-sur-oise",
          "canonical_path": "/cities/fr/champagne-sur-oise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77079",
          "name": "Champagne-sur-Seine",
          "country_code": "FR",
          "slug": "champagne-sur-seine",
          "canonical_path": "/cities/fr/champagne-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:39097",
          "name": "Champagnole",
          "country_code": "FR",
          "slug": "champagnole",
          "canonical_path": "/cities/fr/champagnole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54115",
          "name": "Champigneulles",
          "country_code": "FR",
          "slug": "champigneulles",
          "canonical_path": "/cities/fr/champigneulles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94017",
          "name": "Champigny-sur-Marne",
          "country_code": "FR",
          "slug": "champigny-sur-marne",
          "canonical_path": "/cities/fr/champigny-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:16078",
          "name": "Champniers",
          "country_code": "FR",
          "slug": "champniers",
          "canonical_path": "/cities/fr/champniers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77083",
          "name": "Champs-sur-Marne",
          "country_code": "FR",
          "slug": "champs-sur-marne",
          "canonical_path": "/cities/fr/champs-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:53054",
          "name": "Changé",
          "country_code": "FR",
          "slug": "change-53054",
          "canonical_path": "/cities/fr/change-53054/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72058",
          "name": "Changé",
          "country_code": "FR",
          "slug": "change-72058",
          "canonical_path": "/cities/fr/change-72058/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78138",
          "name": "Chanteloup-les-Vignes",
          "country_code": "FR",
          "slug": "chanteloup-les-vignes",
          "canonical_path": "/cities/fr/chanteloup-les-vignes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35055",
          "name": "Chantepie",
          "country_code": "FR",
          "slug": "chantepie",
          "canonical_path": "/cities/fr/chantepie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60141",
          "name": "Chantilly",
          "country_code": "FR",
          "slug": "chantilly",
          "canonical_path": "/cities/fr/chantilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85051",
          "name": "Chantonnay",
          "country_code": "FR",
          "slug": "chantonnay",
          "canonical_path": "/cities/fr/chantonnay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85302",
          "name": "Chanverrie",
          "country_code": "FR",
          "slug": "chanverrie",
          "canonical_path": "/cities/fr/chanverrie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69043",
          "name": "Chaponost",
          "country_code": "FR",
          "slug": "chaponost",
          "canonical_path": "/cities/fr/chaponost/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69044",
          "name": "Charbonnières-les-Bains",
          "country_code": "FR",
          "slug": "charbonnieres-les-bains",
          "canonical_path": "/cities/fr/charbonnieres-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94018",
          "name": "Charenton-le-Pont",
          "country_code": "FR",
          "slug": "charenton-le-pont",
          "canonical_path": "/cities/fr/charenton-le-pont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:08105",
          "name": "Charleville-Mézières",
          "country_code": "FR",
          "slug": "charleville-mezieres",
          "canonical_path": "/cities/fr/charleville-mezieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71105",
          "name": "Charnay-lès-Mâcon",
          "country_code": "FR",
          "slug": "charnay-les-macon",
          "canonical_path": "/cities/fr/charnay-les-macon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28085",
          "name": "Chartres",
          "country_code": "FR",
          "slug": "chartres",
          "canonical_path": "/cities/fr/chartres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35066",
          "name": "Chartres-de-Bretagne",
          "country_code": "FR",
          "slug": "chartres-de-bretagne",
          "canonical_path": "/cities/fr/chartres-de-bretagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38085",
          "name": "Charvieu-Chavagneux",
          "country_code": "FR",
          "slug": "charvieu-chavagneux",
          "canonical_path": "/cities/fr/charvieu-chavagneux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38087",
          "name": "Chasse-sur-Rhône",
          "country_code": "FR",
          "slug": "chasse-sur-rhone",
          "canonical_path": "/cities/fr/chasse-sur-rhone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69271",
          "name": "Chassieu",
          "country_code": "FR",
          "slug": "chassieu",
          "canonical_path": "/cities/fr/chassieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:04049",
          "name": "Château-Arnoux-Saint-Auban",
          "country_code": "FR",
          "slug": "chateau-arnoux-saint-auban",
          "canonical_path": "/cities/fr/chateau-arnoux-saint-auban/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3026291",
          "name": "Château-d'Olonne",
          "country_code": "FR",
          "slug": "chateau-d-olonne",
          "canonical_path": "/cities/fr/chateau-d-olonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3026286",
          "name": "Château-du-Loir",
          "country_code": "FR",
          "slug": "chateau-du-loir",
          "canonical_path": "/cities/fr/chateau-du-loir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3026273",
          "name": "Château-Gontier",
          "country_code": "FR",
          "slug": "chateau-gontier",
          "canonical_path": "/cities/fr/chateau-gontier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:53062",
          "name": "Château-Gontier-sur-Mayenne",
          "country_code": "FR",
          "slug": "chateau-gontier-sur-mayenne",
          "canonical_path": "/cities/fr/chateau-gontier-sur-mayenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3026208",
          "name": "Château-Renault",
          "country_code": "FR",
          "slug": "chateau-renault",
          "canonical_path": "/cities/fr/chateau-renault/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02168",
          "name": "Château-Thierry",
          "country_code": "FR",
          "slug": "chateau-thierry",
          "canonical_path": "/cities/fr/chateau-thierry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35068",
          "name": "Châteaubourg",
          "country_code": "FR",
          "slug": "chateaubourg",
          "canonical_path": "/cities/fr/chateaubourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44036",
          "name": "Châteaubriant",
          "country_code": "FR",
          "slug": "chateaubriant",
          "canonical_path": "/cities/fr/chateaubriant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28088",
          "name": "Châteaudun",
          "country_code": "FR",
          "slug": "chateaudun",
          "canonical_path": "/cities/fr/chateaudun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35069",
          "name": "Châteaugiron",
          "country_code": "FR",
          "slug": "chateaugiron",
          "canonical_path": "/cities/fr/chateaugiron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29026",
          "name": "Châteaulin",
          "country_code": "FR",
          "slug": "chateaulin",
          "canonical_path": "/cities/fr/chateaulin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13026",
          "name": "Châteauneuf-les-Martigues",
          "country_code": "FR",
          "slug": "chateauneuf-les-martigues",
          "canonical_path": "/cities/fr/chateauneuf-les-martigues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45082",
          "name": "Châteauneuf-sur-Loire",
          "country_code": "FR",
          "slug": "chateauneuf-sur-loire",
          "canonical_path": "/cities/fr/chateauneuf-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13027",
          "name": "Châteaurenard",
          "country_code": "FR",
          "slug": "chateaurenard",
          "canonical_path": "/cities/fr/chateaurenard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:36044",
          "name": "Châteauroux",
          "country_code": "FR",
          "slug": "chateauroux",
          "canonical_path": "/cities/fr/chateauroux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63103",
          "name": "Châtel-Guyon",
          "country_code": "FR",
          "slug": "chatel-guyon",
          "canonical_path": "/cities/fr/chatel-guyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17094",
          "name": "Châtelaillon-Plage",
          "country_code": "FR",
          "slug": "chatelaillon-plage",
          "canonical_path": "/cities/fr/chatelaillon-plage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86066",
          "name": "Châtellerault",
          "country_code": "FR",
          "slug": "chatellerault",
          "canonical_path": "/cities/fr/chatellerault/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92019",
          "name": "Châtenay-Malabry",
          "country_code": "FR",
          "slug": "chatenay-malabry",
          "canonical_path": "/cities/fr/chatenay-malabry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71118",
          "name": "Châtenoy-le-Royal",
          "country_code": "FR",
          "slug": "chatenoy-le-royal",
          "canonical_path": "/cities/fr/chatenoy-le-royal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92020",
          "name": "Châtillon",
          "country_code": "FR",
          "slug": "chatillon",
          "canonical_path": "/cities/fr/chatillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01093",
          "name": "Châtillon-sur-Chalaronne",
          "country_code": "FR",
          "slug": "chatillon-sur-chalaronne",
          "canonical_path": "/cities/fr/chatillon-sur-chalaronne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3026047",
          "name": "Châtillon-sur-Seiche",
          "country_code": "FR",
          "slug": "chatillon-sur-seiche",
          "canonical_path": "/cities/fr/chatillon-sur-seiche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21154",
          "name": "Châtillon-sur-Seine",
          "country_code": "FR",
          "slug": "chatillon-sur-seine",
          "canonical_path": "/cities/fr/chatillon-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78146",
          "name": "Chatou",
          "country_code": "FR",
          "slug": "chatou",
          "canonical_path": "/cities/fr/chatou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26088",
          "name": "Chatuzange-le-Goubet",
          "country_code": "FR",
          "slug": "chatuzange-le-goubet",
          "canonical_path": "/cities/fr/chatuzange-le-goubet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44005",
          "name": "Chaumes-en-Retz",
          "country_code": "FR",
          "slug": "chaumes-en-retz",
          "canonical_path": "/cities/fr/chaumes-en-retz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:52121",
          "name": "Chaumont",
          "country_code": "FR",
          "slug": "chaumont",
          "canonical_path": "/cities/fr/chaumont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02173",
          "name": "Chauny",
          "country_code": "FR",
          "slug": "chauny",
          "canonical_path": "/cities/fr/chauny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79081",
          "name": "Chauray",
          "country_code": "FR",
          "slug": "chauray",
          "canonical_path": "/cities/fr/chauray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86070",
          "name": "Chauvigny",
          "country_code": "FR",
          "slug": "chauvigny",
          "canonical_path": "/cities/fr/chauvigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38097",
          "name": "Chavanoz",
          "country_code": "FR",
          "slug": "chavanoz",
          "canonical_path": "/cities/fr/chavanoz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92022",
          "name": "Chaville",
          "country_code": "FR",
          "slug": "chaville",
          "canonical_path": "/cities/fr/chaville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42059",
          "name": "Chazelles-sur-Lyon",
          "country_code": "FR",
          "slug": "chazelles-sur-lyon",
          "canonical_path": "/cities/fr/chazelles-sur-lyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45089",
          "name": "Chécy",
          "country_code": "FR",
          "slug": "checy",
          "canonical_path": "/cities/fr/checy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77108",
          "name": "Chelles",
          "country_code": "FR",
          "slug": "chelles",
          "canonical_path": "/cities/fr/chelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49092",
          "name": "Chemillé-en-Anjou",
          "country_code": "FR",
          "slug": "chemille-en-anjou",
          "canonical_path": "/cities/fr/chemille-en-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3025602",
          "name": "Chemillé-Melay",
          "country_code": "FR",
          "slug": "chemille-melay",
          "canonical_path": "/cities/fr/chemille-melay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94019",
          "name": "Chennevières-sur-Marne",
          "country_code": "FR",
          "slug": "chennevieres-sur-marne",
          "canonical_path": "/cities/fr/chennevieres-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21166",
          "name": "Chenôve",
          "country_code": "FR",
          "slug": "chenove",
          "canonical_path": "/cities/fr/chenove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3025466",
          "name": "Cherbourg",
          "country_code": "FR",
          "slug": "cherbourg",
          "canonical_path": "/cities/fr/cherbourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50129",
          "name": "Cherbourg-en-Cotentin",
          "country_code": "FR",
          "slug": "cherbourg-en-cotentin",
          "canonical_path": "/cities/fr/cherbourg-en-cotentin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77111",
          "name": "Chessy",
          "country_code": "FR",
          "slug": "chessy",
          "canonical_path": "/cities/fr/chessy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21171",
          "name": "Chevigny-Saint-Sauveur",
          "country_code": "FR",
          "slug": "chevigny-saint-sauveur",
          "canonical_path": "/cities/fr/chevigny-saint-sauveur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94021",
          "name": "Chevilly-Larue",
          "country_code": "FR",
          "slug": "chevilly-larue",
          "canonical_path": "/cities/fr/chevilly-larue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78160",
          "name": "Chevreuse",
          "country_code": "FR",
          "slug": "chevreuse",
          "canonical_path": "/cities/fr/chevreuse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91161",
          "name": "Chilly-Mazarin",
          "country_code": "FR",
          "slug": "chilly-mazarin",
          "canonical_path": "/cities/fr/chilly-mazarin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37072",
          "name": "Chinon",
          "country_code": "FR",
          "slug": "chinon",
          "canonical_path": "/cities/fr/chinon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94022",
          "name": "Choisy-le-Roi",
          "country_code": "FR",
          "slug": "choisy-le-roi",
          "canonical_path": "/cities/fr/choisy-le-roi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49099",
          "name": "Cholet",
          "country_code": "FR",
          "slug": "cholet",
          "canonical_path": "/cities/fr/cholet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64189",
          "name": "Ciboure",
          "country_code": "FR",
          "slug": "ciboure",
          "canonical_path": "/cities/fr/ciboure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38111",
          "name": "Claix",
          "country_code": "FR",
          "slug": "claix",
          "canonical_path": "/cities/fr/claix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92023",
          "name": "Clamart",
          "country_code": "FR",
          "slug": "clamart",
          "canonical_path": "/cities/fr/clamart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34077",
          "name": "Clapiers",
          "country_code": "FR",
          "slug": "clapiers",
          "canonical_path": "/cities/fr/clapiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77118",
          "name": "Claye-Souilly",
          "country_code": "FR",
          "slug": "claye-souilly",
          "canonical_path": "/cities/fr/claye-souilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3024669",
          "name": "Cléon",
          "country_code": "FR",
          "slug": "cleon",
          "canonical_path": "/cities/fr/cleon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60157",
          "name": "Clermont",
          "country_code": "FR",
          "slug": "clermont",
          "canonical_path": "/cities/fr/clermont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63113",
          "name": "Clermont-Ferrand",
          "country_code": "FR",
          "slug": "clermont-ferrand",
          "canonical_path": "/cities/fr/clermont-ferrand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34079",
          "name": "Clermont-l'Hérault",
          "country_code": "FR",
          "slug": "clermont-l-herault",
          "canonical_path": "/cities/fr/clermont-l-herault/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92024",
          "name": "Clichy",
          "country_code": "FR",
          "slug": "clichy",
          "canonical_path": "/cities/fr/clichy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93014",
          "name": "Clichy-sous-Bois",
          "country_code": "FR",
          "slug": "clichy-sous-bois",
          "canonical_path": "/cities/fr/clichy-sous-bois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44043",
          "name": "Clisson",
          "country_code": "FR",
          "slug": "clisson",
          "canonical_path": "/cities/fr/clisson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28103",
          "name": "Cloyes-les-Trois-Rivières",
          "country_code": "FR",
          "slug": "cloyes-les-trois-rivieres",
          "canonical_path": "/cities/fr/cloyes-les-trois-rivieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74081",
          "name": "Cluses",
          "country_code": "FR",
          "slug": "cluses",
          "canonical_path": "/cities/fr/cluses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:16102",
          "name": "Cognac",
          "country_code": "FR",
          "slug": "cognac",
          "canonical_path": "/cities/fr/cognac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73087",
          "name": "Cognin",
          "country_code": "FR",
          "slug": "cognin",
          "canonical_path": "/cities/fr/cognin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83042",
          "name": "Cogolin",
          "country_code": "FR",
          "slug": "cogolin",
          "canonical_path": "/cities/fr/cogolin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68066",
          "name": "Colmar",
          "country_code": "FR",
          "slug": "colmar",
          "canonical_path": "/cities/fr/colmar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14167",
          "name": "Colombelles",
          "country_code": "FR",
          "slug": "colombelles",
          "canonical_path": "/cities/fr/colombelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92025",
          "name": "Colombes",
          "country_code": "FR",
          "slug": "colombes",
          "canonical_path": "/cities/fr/colombes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31149",
          "name": "Colomiers",
          "country_code": "FR",
          "slug": "colomiers",
          "canonical_path": "/cities/fr/colomiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35085",
          "name": "Combourg",
          "country_code": "FR",
          "slug": "combourg",
          "canonical_path": "/cities/fr/combourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77122",
          "name": "Combs-la-Ville",
          "country_code": "FR",
          "slug": "combs-la-ville",
          "canonical_path": "/cities/fr/combs-la-ville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59152",
          "name": "Comines",
          "country_code": "FR",
          "slug": "comines",
          "canonical_path": "/cities/fr/comines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:03082",
          "name": "Commentry",
          "country_code": "FR",
          "slug": "commentry",
          "canonical_path": "/cities/fr/commentry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:55122",
          "name": "Commercy",
          "country_code": "FR",
          "slug": "commercy",
          "canonical_path": "/cities/fr/commercy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60159",
          "name": "Compiègne",
          "country_code": "FR",
          "slug": "compiegne",
          "canonical_path": "/cities/fr/compiegne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29039",
          "name": "Concarneau",
          "country_code": "FR",
          "slug": "concarneau",
          "canonical_path": "/cities/fr/concarneau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87048",
          "name": "Condat-sur-Vienne",
          "country_code": "FR",
          "slug": "condat-sur-vienne",
          "canonical_path": "/cities/fr/condat-sur-vienne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14174",
          "name": "Condé-en-Normandie",
          "country_code": "FR",
          "slug": "conde-en-normandie",
          "canonical_path": "/cities/fr/conde-en-normandie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59153",
          "name": "Condé-sur-l'Escaut",
          "country_code": "FR",
          "slug": "conde-sur-l-escaut",
          "canonical_path": "/cities/fr/conde-sur-l-escaut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3023953",
          "name": "Condé-sur-Noireau",
          "country_code": "FR",
          "slug": "conde-sur-noireau",
          "canonical_path": "/cities/fr/conde-sur-noireau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:32107",
          "name": "Condom",
          "country_code": "FR",
          "slug": "condom",
          "canonical_path": "/cities/fr/condom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78172",
          "name": "Conflans-Sainte-Honorine",
          "country_code": "FR",
          "slug": "conflans-sainte-honorine",
          "canonical_path": "/cities/fr/conflans-sainte-honorine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06048",
          "name": "Contes",
          "country_code": "FR",
          "slug": "contes",
          "canonical_path": "/cities/fr/contes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69273",
          "name": "Corbas",
          "country_code": "FR",
          "slug": "corbas",
          "canonical_path": "/cities/fr/corbas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91174",
          "name": "Corbeil-Essonnes",
          "country_code": "FR",
          "slug": "corbeil-essonnes",
          "canonical_path": "/cities/fr/corbeil-essonnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:80212",
          "name": "Corbie",
          "country_code": "FR",
          "slug": "corbie",
          "canonical_path": "/cities/fr/corbie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95176",
          "name": "Cormeilles-en-Parisis",
          "country_code": "FR",
          "slug": "cormeilles-en-parisis",
          "canonical_path": "/cities/fr/cormeilles-en-parisis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14181",
          "name": "Cormelles-le-Royal",
          "country_code": "FR",
          "slug": "cormelles-le-royal",
          "canonical_path": "/cities/fr/cormelles-le-royal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51172",
          "name": "Cormontreuil",
          "country_code": "FR",
          "slug": "cormontreuil",
          "canonical_path": "/cities/fr/cormontreuil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31150",
          "name": "Cornebarrieu",
          "country_code": "FR",
          "slug": "cornebarrieu",
          "canonical_path": "/cities/fr/cornebarrieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:2B096",
          "name": "Corte",
          "country_code": "FR",
          "slug": "corte",
          "canonical_path": "/cities/fr/corte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:58086",
          "name": "Cosne-Cours-sur-Loire",
          "country_code": "FR",
          "slug": "cosne-cours-sur-loire",
          "canonical_path": "/cities/fr/cosne-cours-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38133",
          "name": "Coublevie",
          "country_code": "FR",
          "slug": "coublevie",
          "canonical_path": "/cities/fr/coublevie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93015",
          "name": "Coubron",
          "country_code": "FR",
          "slug": "coubron",
          "canonical_path": "/cities/fr/coubron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59155",
          "name": "Coudekerque-Branche",
          "country_code": "FR",
          "slug": "coudekerque-branche",
          "canonical_path": "/cities/fr/coudekerque-branche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44047",
          "name": "Couëron",
          "country_code": "FR",
          "slug": "coueron",
          "canonical_path": "/cities/fr/coueron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72095",
          "name": "Coulaines",
          "country_code": "FR",
          "slug": "coulaines",
          "canonical_path": "/cities/fr/coulaines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62244",
          "name": "Coulogne",
          "country_code": "FR",
          "slug": "coulogne",
          "canonical_path": "/cities/fr/coulogne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77131",
          "name": "Coulommiers",
          "country_code": "FR",
          "slug": "coulommiers",
          "canonical_path": "/cities/fr/coulommiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:24138",
          "name": "Coulounieix-Chamiers",
          "country_code": "FR",
          "slug": "coulounieix-chamiers",
          "canonical_path": "/cities/fr/coulounieix-chamiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92026",
          "name": "Courbevoie",
          "country_code": "FR",
          "slug": "courbevoie",
          "canonical_path": "/cities/fr/courbevoie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62249",
          "name": "Courcelles-lès-Lens",
          "country_code": "FR",
          "slug": "courcelles-les-lens",
          "canonical_path": "/cities/fr/courcelles-les-lens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3023056",
          "name": "Courcouronnes",
          "country_code": "FR",
          "slug": "courcouronnes",
          "canonical_path": "/cities/fr/courcouronnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95183",
          "name": "Courdimanche",
          "country_code": "FR",
          "slug": "courdimanche",
          "canonical_path": "/cities/fr/courdimanche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63124",
          "name": "Cournon-d'Auvergne",
          "country_code": "FR",
          "slug": "cournon-d-auvergne",
          "canonical_path": "/cities/fr/cournon-d-auvergne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34088",
          "name": "Cournonterral",
          "country_code": "FR",
          "slug": "cournonterral",
          "canonical_path": "/cities/fr/cournonterral/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62250",
          "name": "Courrières",
          "country_code": "FR",
          "slug": "courrieres",
          "canonical_path": "/cities/fr/courrieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11106",
          "name": "Coursan",
          "country_code": "FR",
          "slug": "coursan",
          "canonical_path": "/cities/fr/coursan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84039",
          "name": "Courthézon",
          "country_code": "FR",
          "slug": "courthezon",
          "canonical_path": "/cities/fr/courthezon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77139",
          "name": "Courtry",
          "country_code": "FR",
          "slug": "courtry",
          "canonical_path": "/cities/fr/courtry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50147",
          "name": "Coutances",
          "country_code": "FR",
          "slug": "coutances",
          "canonical_path": "/cities/fr/coutances/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33138",
          "name": "Coutras",
          "country_code": "FR",
          "slug": "coutras",
          "canonical_path": "/cities/fr/coutras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87050",
          "name": "Couzeix",
          "country_code": "FR",
          "slug": "couzeix",
          "canonical_path": "/cities/fr/couzeix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3022700",
          "name": "Cran-Gevrier",
          "country_code": "FR",
          "slug": "cran-gevrier",
          "canonical_path": "/cities/fr/cran-gevrier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74094",
          "name": "Cranves-Sales",
          "country_code": "FR",
          "slug": "cranves-sales",
          "canonical_path": "/cities/fr/cranves-sales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3022690",
          "name": "Craon",
          "country_code": "FR",
          "slug": "craon",
          "canonical_path": "/cities/fr/craon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69069",
          "name": "Craponne",
          "country_code": "FR",
          "slug": "craponne",
          "canonical_path": "/cities/fr/craponne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77143",
          "name": "Crégy-lès-Meaux",
          "country_code": "FR",
          "slug": "cregy-les-meaux",
          "canonical_path": "/cities/fr/cregy-les-meaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60175",
          "name": "Creil",
          "country_code": "FR",
          "slug": "creil",
          "canonical_path": "/cities/fr/creil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60176",
          "name": "Crépy-en-Valois",
          "country_code": "FR",
          "slug": "crepy-en-valois",
          "canonical_path": "/cities/fr/crepy-en-valois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26108",
          "name": "Crest",
          "country_code": "FR",
          "slug": "crest",
          "canonical_path": "/cities/fr/crest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94028",
          "name": "Créteil",
          "country_code": "FR",
          "slug": "creteil",
          "canonical_path": "/cities/fr/creteil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57160",
          "name": "Creutzwald",
          "country_code": "FR",
          "slug": "creutzwald",
          "canonical_path": "/cities/fr/creutzwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78190",
          "name": "Croissy-sur-Seine",
          "country_code": "FR",
          "slug": "croissy-sur-seine",
          "canonical_path": "/cities/fr/croissy-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59163",
          "name": "Croix",
          "country_code": "FR",
          "slug": "croix",
          "canonical_path": "/cities/fr/croix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38140",
          "name": "Crolles",
          "country_code": "FR",
          "slug": "crolles",
          "canonical_path": "/cities/fr/crolles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91191",
          "name": "Crosne",
          "country_code": "FR",
          "slug": "crosne",
          "canonical_path": "/cities/fr/crosne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:12808674",
          "name": "Croulebarbe",
          "country_code": "FR",
          "slug": "croulebarbe",
          "canonical_path": "/cities/fr/croulebarbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29042",
          "name": "Crozon",
          "country_code": "FR",
          "slug": "crozon",
          "canonical_path": "/cities/fr/crozon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74096",
          "name": "Cruseilles",
          "country_code": "FR",
          "slug": "cruseilles",
          "canonical_path": "/cities/fr/cruseilles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62261",
          "name": "Cucq",
          "country_code": "FR",
          "slug": "cucq",
          "canonical_path": "/cities/fr/cucq/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83049",
          "name": "Cuers",
          "country_code": "FR",
          "slug": "cuers",
          "canonical_path": "/cities/fr/cuers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85076",
          "name": "Cugand",
          "country_code": "FR",
          "slug": "cugand",
          "canonical_path": "/cities/fr/cugand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13030",
          "name": "Cuges-les-Pins",
          "country_code": "FR",
          "slug": "cuges-les-pins",
          "canonical_path": "/cities/fr/cuges-les-pins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31157",
          "name": "Cugnaux",
          "country_code": "FR",
          "slug": "cugnaux",
          "canonical_path": "/cities/fr/cugnaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59165",
          "name": "Cuincy",
          "country_code": "FR",
          "slug": "cuincy",
          "canonical_path": "/cities/fr/cuincy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:03095",
          "name": "Cusset",
          "country_code": "FR",
          "slug": "cusset",
          "canonical_path": "/cities/fr/cusset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62263",
          "name": "Dainville",
          "country_code": "FR",
          "slug": "dainville",
          "canonical_path": "/cities/fr/dainville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77152",
          "name": "Dammarie-les-Lys",
          "country_code": "FR",
          "slug": "dammarie-les-lys",
          "canonical_path": "/cities/fr/dammarie-les-lys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77153",
          "name": "Dammartin-en-Goële",
          "country_code": "FR",
          "slug": "dammartin-en-goele",
          "canonical_path": "/cities/fr/dammartin-en-goele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69072",
          "name": "Dardilly",
          "country_code": "FR",
          "slug": "dardilly",
          "canonical_path": "/cities/fr/dardilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76212",
          "name": "Darnétal",
          "country_code": "FR",
          "slug": "darnetal",
          "canonical_path": "/cities/fr/darnetal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40088",
          "name": "Dax",
          "country_code": "FR",
          "slug": "dax",
          "canonical_path": "/cities/fr/dax/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:12089",
          "name": "Decazeville",
          "country_code": "FR",
          "slug": "decazeville",
          "canonical_path": "/cities/fr/decazeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59170",
          "name": "Dechy",
          "country_code": "FR",
          "slug": "dechy",
          "canonical_path": "/cities/fr/dechy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69275",
          "name": "Décines-Charpieu",
          "country_code": "FR",
          "slug": "decines-charpieu",
          "canonical_path": "/cities/fr/decines-charpieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3021661",
          "name": "Decize",
          "country_code": "FR",
          "slug": "decize",
          "canonical_path": "/cities/fr/decize/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:90033",
          "name": "Delle",
          "country_code": "FR",
          "slug": "delle",
          "canonical_path": "/cities/fr/delle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59172",
          "name": "Denain",
          "country_code": "FR",
          "slug": "denain",
          "canonical_path": "/cities/fr/denain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:36063",
          "name": "Déols",
          "country_code": "FR",
          "slug": "deols",
          "canonical_path": "/cities/fr/deols/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3021524",
          "name": "Desvres",
          "country_code": "FR",
          "slug": "desvres",
          "canonical_path": "/cities/fr/desvres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95197",
          "name": "Deuil-la-Barre",
          "country_code": "FR",
          "slug": "deuil-la-barre",
          "canonical_path": "/cities/fr/deuil-la-barre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76216",
          "name": "Déville-lès-Rouen",
          "country_code": "FR",
          "slug": "deville-les-rouen",
          "canonical_path": "/cities/fr/deville-les-rouen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76217",
          "name": "Dieppe",
          "country_code": "FR",
          "slug": "dieppe",
          "canonical_path": "/cities/fr/dieppe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:04070",
          "name": "Digne-les-Bains",
          "country_code": "FR",
          "slug": "digne-les-bains",
          "canonical_path": "/cities/fr/digne-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71176",
          "name": "Digoin",
          "country_code": "FR",
          "slug": "digoin",
          "canonical_path": "/cities/fr/digoin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21231",
          "name": "Dijon",
          "country_code": "FR",
          "slug": "dijon",
          "canonical_path": "/cities/fr/dijon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22050",
          "name": "Dinan",
          "country_code": "FR",
          "slug": "dinan",
          "canonical_path": "/cities/fr/dinan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35093",
          "name": "Dinard",
          "country_code": "FR",
          "slug": "dinard",
          "canonical_path": "/cities/fr/dinard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44029",
          "name": "Divatte-sur-Loire",
          "country_code": "FR",
          "slug": "divatte-sur-loire",
          "canonical_path": "/cities/fr/divatte-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14225",
          "name": "Dives-sur-Mer",
          "country_code": "FR",
          "slug": "dives-sur-mer",
          "canonical_path": "/cities/fr/dives-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62270",
          "name": "Divion",
          "country_code": "FR",
          "slug": "divion",
          "canonical_path": "/cities/fr/divion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01143",
          "name": "Divonne-les-Bains",
          "country_code": "FR",
          "slug": "divonne-les-bains",
          "canonical_path": "/cities/fr/divonne-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35095",
          "name": "Dol-de-Bretagne",
          "country_code": "FR",
          "slug": "dol-de-bretagne",
          "canonical_path": "/cities/fr/dol-de-bretagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:39198",
          "name": "Dole",
          "country_code": "FR",
          "slug": "dole",
          "canonical_path": "/cities/fr/dole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54159",
          "name": "Dombasle-sur-Meurthe",
          "country_code": "FR",
          "slug": "dombasle-sur-meurthe",
          "canonical_path": "/cities/fr/dombasle-sur-meurthe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38150",
          "name": "Domène",
          "country_code": "FR",
          "slug": "domene",
          "canonical_path": "/cities/fr/domene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:03101",
          "name": "Domérat",
          "country_code": "FR",
          "slug": "domerat",
          "canonical_path": "/cities/fr/domerat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95199",
          "name": "Domont",
          "country_code": "FR",
          "slug": "domont",
          "canonical_path": "/cities/fr/domont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17142",
          "name": "Dompierre-sur-Mer",
          "country_code": "FR",
          "slug": "dompierre-sur-mer",
          "canonical_path": "/cities/fr/dompierre-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44052",
          "name": "Donges",
          "country_code": "FR",
          "slug": "donges",
          "canonical_path": "/cities/fr/donges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26116",
          "name": "Donzère",
          "country_code": "FR",
          "slug": "donzere",
          "canonical_path": "/cities/fr/donzere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59178",
          "name": "Douai",
          "country_code": "FR",
          "slug": "douai",
          "canonical_path": "/cities/fr/douai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29046",
          "name": "Douarnenez",
          "country_code": "FR",
          "slug": "douarnenez",
          "canonical_path": "/cities/fr/douarnenez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59179",
          "name": "Douchy-les-Mines",
          "country_code": "FR",
          "slug": "douchy-les-mines",
          "canonical_path": "/cities/fr/douchy-les-mines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49125",
          "name": "Doué-en-Anjou",
          "country_code": "FR",
          "slug": "doue-en-anjou",
          "canonical_path": "/cities/fr/doue-en-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3020964",
          "name": "Doué-la-Fontaine",
          "country_code": "FR",
          "slug": "doue-la-fontaine",
          "canonical_path": "/cities/fr/doue-la-fontaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:80253",
          "name": "Doullens",
          "country_code": "FR",
          "slug": "doullens",
          "canonical_path": "/cities/fr/doullens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91200",
          "name": "Dourdan",
          "country_code": "FR",
          "slug": "dourdan",
          "canonical_path": "/cities/fr/dourdan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62274",
          "name": "Dourges",
          "country_code": "FR",
          "slug": "dourges",
          "canonical_path": "/cities/fr/dourges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74105",
          "name": "Douvaine",
          "country_code": "FR",
          "slug": "douvaine",
          "canonical_path": "/cities/fr/douvaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14228",
          "name": "Douvres-la-Délivrande",
          "country_code": "FR",
          "slug": "douvres-la-delivrande",
          "canonical_path": "/cities/fr/douvres-la-delivrande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62276",
          "name": "Douvrin",
          "country_code": "FR",
          "slug": "douvrin",
          "canonical_path": "/cities/fr/douvrin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83050",
          "name": "Draguignan",
          "country_code": "FR",
          "slug": "draguignan",
          "canonical_path": "/cities/fr/draguignan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93029",
          "name": "Drancy",
          "country_code": "FR",
          "slug": "drancy",
          "canonical_path": "/cities/fr/drancy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06054",
          "name": "Drap",
          "country_code": "FR",
          "slug": "drap",
          "canonical_path": "/cities/fr/drap/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91201",
          "name": "Draveil",
          "country_code": "FR",
          "slug": "draveil",
          "canonical_path": "/cities/fr/draveil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28134",
          "name": "Dreux",
          "country_code": "FR",
          "slug": "dreux",
          "canonical_path": "/cities/fr/dreux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67106",
          "name": "Drusenheim",
          "country_code": "FR",
          "slug": "drusenheim",
          "canonical_path": "/cities/fr/drusenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93030",
          "name": "Dugny",
          "country_code": "FR",
          "slug": "dugny",
          "canonical_path": "/cities/fr/dugny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59183",
          "name": "Dunkerque",
          "country_code": "FR",
          "slug": "dunkerque",
          "canonical_path": "/cities/fr/dunkerque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3020686",
          "name": "Dunkirk",
          "country_code": "FR",
          "slug": "dunkirk",
          "canonical_path": "/cities/fr/dunkirk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95203",
          "name": "Eaubonne",
          "country_code": "FR",
          "slug": "eaubonne",
          "canonical_path": "/cities/fr/eaubonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31165",
          "name": "Eaunes",
          "country_code": "FR",
          "slug": "eaunes",
          "canonical_path": "/cities/fr/eaunes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38151",
          "name": "Échirolles",
          "country_code": "FR",
          "slug": "echirolles",
          "canonical_path": "/cities/fr/echirolles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67118",
          "name": "Eckbolsheim",
          "country_code": "FR",
          "slug": "eckbolsheim",
          "canonical_path": "/cities/fr/eckbolsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95205",
          "name": "Écouen",
          "country_code": "FR",
          "slug": "ecouen",
          "canonical_path": "/cities/fr/ecouen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69081",
          "name": "Écully",
          "country_code": "FR",
          "slug": "ecully",
          "canonical_path": "/cities/fr/ecully/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3020358",
          "name": "Égletons",
          "country_code": "FR",
          "slug": "egletons",
          "canonical_path": "/cities/fr/egletons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91207",
          "name": "Égly",
          "country_code": "FR",
          "slug": "egly",
          "canonical_path": "/cities/fr/egly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13032",
          "name": "Éguilles",
          "country_code": "FR",
          "slug": "eguilles",
          "canonical_path": "/cities/fr/eguilles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78208",
          "name": "Élancourt",
          "country_code": "FR",
          "slug": "elancourt",
          "canonical_path": "/cities/fr/elancourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76231",
          "name": "Elbeuf",
          "country_code": "FR",
          "slug": "elbeuf",
          "canonical_path": "/cities/fr/elbeuf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66065",
          "name": "Elne",
          "country_code": "FR",
          "slug": "elne",
          "canonical_path": "/cities/fr/elne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56053",
          "name": "Elven",
          "country_code": "FR",
          "slug": "elven",
          "canonical_path": "/cities/fr/elven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:05046",
          "name": "Embrun",
          "country_code": "FR",
          "slug": "embrun",
          "canonical_path": "/cities/fr/embrun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77169",
          "name": "Émerainville",
          "country_code": "FR",
          "slug": "emerainville",
          "canonical_path": "/cities/fr/emerainville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95210",
          "name": "Enghien-les-Bains",
          "country_code": "FR",
          "slug": "enghien-les-bains",
          "canonical_path": "/cities/fr/enghien-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68082",
          "name": "Ensisheim",
          "country_code": "FR",
          "slug": "ensisheim",
          "canonical_path": "/cities/fr/ensisheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13033",
          "name": "Ensuès-la-Redonne",
          "country_code": "FR",
          "slug": "ensues-la-redonne",
          "canonical_path": "/cities/fr/ensues-la-redonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84043",
          "name": "Entraigues-sur-la-Sorgue",
          "country_code": "FR",
          "slug": "entraigues-sur-la-sorgue",
          "canonical_path": "/cities/fr/entraigues-sur-la-sorgue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73010",
          "name": "Entrelacs",
          "country_code": "FR",
          "slug": "entrelacs",
          "canonical_path": "/cities/fr/entrelacs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74112",
          "name": "Epagny Metz-Tessy",
          "country_code": "FR",
          "slug": "epagny-metz-tessy",
          "canonical_path": "/cities/fr/epagny-metz-tessy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51230",
          "name": "Épernay",
          "country_code": "FR",
          "slug": "epernay",
          "canonical_path": "/cities/fr/epernay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28140",
          "name": "Épernon",
          "country_code": "FR",
          "slug": "epernon",
          "canonical_path": "/cities/fr/epernon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:88160",
          "name": "Épinal",
          "country_code": "FR",
          "slug": "epinal",
          "canonical_path": "/cities/fr/epinal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91215",
          "name": "Épinay-sous-Sénart",
          "country_code": "FR",
          "slug": "epinay-sous-senart",
          "canonical_path": "/cities/fr/epinay-sous-senart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91216",
          "name": "Épinay-sur-Orge",
          "country_code": "FR",
          "slug": "epinay-sur-orge",
          "canonical_path": "/cities/fr/epinay-sur-orge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93031",
          "name": "Épinay-sur-Seine",
          "country_code": "FR",
          "slug": "epinay-sur-seine",
          "canonical_path": "/cities/fr/epinay-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78217",
          "name": "Épône",
          "country_code": "FR",
          "slug": "epone",
          "canonical_path": "/cities/fr/epone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3019960",
          "name": "Équeurdreville-Hainneville",
          "country_code": "FR",
          "slug": "equeurdreville-hainneville",
          "canonical_path": "/cities/fr/equeurdreville-hainneville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95218",
          "name": "Éragny",
          "country_code": "FR",
          "slug": "eragny",
          "canonical_path": "/cities/fr/eragny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49367",
          "name": "Erdre-en-Anjou",
          "country_code": "FR",
          "slug": "erdre-en-anjou",
          "canonical_path": "/cities/fr/erdre-en-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29051",
          "name": "Ergué-Gabéric",
          "country_code": "FR",
          "slug": "ergue-gaberic",
          "canonical_path": "/cities/fr/ergue-gaberic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95219",
          "name": "Ermont",
          "country_code": "FR",
          "slug": "ermont",
          "canonical_path": "/cities/fr/ermont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:53096",
          "name": "Ernée",
          "country_code": "FR",
          "slug": "ernee",
          "canonical_path": "/cities/fr/ernee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59202",
          "name": "Erquinghem-Lys",
          "country_code": "FR",
          "slug": "erquinghem-lys",
          "canonical_path": "/cities/fr/erquinghem-lys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67130",
          "name": "Erstein",
          "country_code": "FR",
          "slug": "erstein",
          "canonical_path": "/cities/fr/erstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77171",
          "name": "Esbly",
          "country_code": "FR",
          "slug": "esbly",
          "canonical_path": "/cities/fr/esbly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31169",
          "name": "Escalquens",
          "country_code": "FR",
          "slug": "escalquens",
          "canonical_path": "/cities/fr/escalquens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59205",
          "name": "Escaudain",
          "country_code": "FR",
          "slug": "escaudain",
          "canonical_path": "/cities/fr/escaudain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67131",
          "name": "Eschau",
          "country_code": "FR",
          "slug": "eschau",
          "canonical_path": "/cities/fr/eschau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85084",
          "name": "Essarts en Bocage",
          "country_code": "FR",
          "slug": "essarts-en-bocage",
          "canonical_path": "/cities/fr/essarts-en-bocage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54184",
          "name": "Essey-lès-Nancy",
          "country_code": "FR",
          "slug": "essey-les-nancy",
          "canonical_path": "/cities/fr/essey-les-nancy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59212",
          "name": "Estaires",
          "country_code": "FR",
          "slug": "estaires",
          "canonical_path": "/cities/fr/estaires/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37104",
          "name": "Esvres",
          "country_code": "FR",
          "slug": "esvres",
          "canonical_path": "/cities/fr/esvres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91223",
          "name": "Étampes",
          "country_code": "FR",
          "slug": "etampes",
          "canonical_path": "/cities/fr/etampes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62318",
          "name": "Étaples",
          "country_code": "FR",
          "slug": "etaples",
          "canonical_path": "/cities/fr/etaples/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26124",
          "name": "Étoile-sur-Rhône",
          "country_code": "FR",
          "slug": "etoile-sur-rhone",
          "canonical_path": "/cities/fr/etoile-sur-rhone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91226",
          "name": "Étréchy",
          "country_code": "FR",
          "slug": "etrechy",
          "canonical_path": "/cities/fr/etrechy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76255",
          "name": "Eu",
          "country_code": "FR",
          "slug": "eu",
          "canonical_path": "/cities/fr/eu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74119",
          "name": "Évian-les-Bains",
          "country_code": "FR",
          "slug": "evian-les-bains",
          "canonical_path": "/cities/fr/evian-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27229",
          "name": "Évreux",
          "country_code": "FR",
          "slug": "evreux",
          "canonical_path": "/cities/fr/evreux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:53097",
          "name": "Évron",
          "country_code": "FR",
          "slug": "evron",
          "canonical_path": "/cities/fr/evron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3019256",
          "name": "Évry",
          "country_code": "FR",
          "slug": "evry",
          "canonical_path": "/cities/fr/evry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91228",
          "name": "Évry-Courcouronnes",
          "country_code": "FR",
          "slug": "evry-courcouronnes",
          "canonical_path": "/cities/fr/evry-courcouronnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38158",
          "name": "Eybens",
          "country_code": "FR",
          "slug": "eybens",
          "canonical_path": "/cities/fr/eybens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13035",
          "name": "Eyguières",
          "country_code": "FR",
          "slug": "eyguieres",
          "canonical_path": "/cities/fr/eyguieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33162",
          "name": "Eysines",
          "country_code": "FR",
          "slug": "eysines",
          "canonical_path": "/cities/fr/eysines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95229",
          "name": "Ézanville",
          "country_code": "FR",
          "slug": "ezanville",
          "canonical_path": "/cities/fr/ezanville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34095",
          "name": "Fabrègues",
          "country_code": "FR",
          "slug": "fabregues",
          "canonical_path": "/cities/fr/fabregues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59220",
          "name": "Faches-Thumesnil",
          "country_code": "FR",
          "slug": "faches-thumesnil",
          "canonical_path": "/cities/fr/faches-thumesnil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14258",
          "name": "Falaise",
          "country_code": "FR",
          "slug": "falaise",
          "canonical_path": "/cities/fr/falaise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57206",
          "name": "Fameck",
          "country_code": "FR",
          "slug": "fameck",
          "canonical_path": "/cities/fr/fameck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57207",
          "name": "Farébersviller",
          "country_code": "FR",
          "slug": "farebersviller",
          "canonical_path": "/cities/fr/farebersviller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57209",
          "name": "Faulquemont",
          "country_code": "FR",
          "slug": "faulquemont",
          "canonical_path": "/cities/fr/faulquemont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3018903",
          "name": "Faverges",
          "country_code": "FR",
          "slug": "faverges",
          "canonical_path": "/cities/fr/faverges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74123",
          "name": "Faverges-Seythenex",
          "country_code": "FR",
          "slug": "faverges-seythenex",
          "canonical_path": "/cities/fr/faverges-seythenex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83055",
          "name": "Fayence",
          "country_code": "FR",
          "slug": "fayence",
          "canonical_path": "/cities/fr/fayence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76259",
          "name": "Fécamp",
          "country_code": "FR",
          "slug": "fecamp",
          "canonical_path": "/cities/fr/fecamp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67137",
          "name": "Fegersheim",
          "country_code": "FR",
          "slug": "fegersheim",
          "canonical_path": "/cities/fr/fegersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59225",
          "name": "Feignies",
          "country_code": "FR",
          "slug": "feignies",
          "canonical_path": "/cities/fr/feignies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59227",
          "name": "Fenain",
          "country_code": "FR",
          "slug": "fenain",
          "canonical_path": "/cities/fr/fenain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31182",
          "name": "Fenouillet",
          "country_code": "FR",
          "slug": "fenouillet",
          "canonical_path": "/cities/fr/fenouillet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01160",
          "name": "Ferney-Voltaire",
          "country_code": "FR",
          "slug": "ferney-voltaire",
          "canonical_path": "/cities/fr/ferney-voltaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59230",
          "name": "Ferrière-la-Grande",
          "country_code": "FR",
          "slug": "ferriere-la-grande",
          "canonical_path": "/cities/fr/ferriere-la-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42094",
          "name": "Feurs",
          "country_code": "FR",
          "slug": "feurs",
          "canonical_path": "/cities/fr/feurs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87065",
          "name": "Feytiat",
          "country_code": "FR",
          "slug": "feytiat",
          "canonical_path": "/cities/fr/feytiat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69276",
          "name": "Feyzin",
          "country_code": "FR",
          "slug": "feyzin",
          "canonical_path": "/cities/fr/feyzin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:46102",
          "name": "Figeac",
          "country_code": "FR",
          "slug": "figeac",
          "canonical_path": "/cities/fr/figeac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74282",
          "name": "Fillière",
          "country_code": "FR",
          "slug": "filliere",
          "canonical_path": "/cities/fr/filliere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42095",
          "name": "Firminy",
          "country_code": "FR",
          "slug": "firminy",
          "canonical_path": "/cities/fr/firminy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51250",
          "name": "Fismes",
          "country_code": "FR",
          "slug": "fismes",
          "canonical_path": "/cities/fr/fismes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:61169",
          "name": "Flers",
          "country_code": "FR",
          "slug": "flers",
          "canonical_path": "/cities/fr/flers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59234",
          "name": "Flers-en-Escrebieux",
          "country_code": "FR",
          "slug": "flers-en-escrebieux",
          "canonical_path": "/cities/fr/flers-en-escrebieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:32132",
          "name": "Fleurance",
          "country_code": "FR",
          "slug": "fleurance",
          "canonical_path": "/cities/fr/fleurance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45147",
          "name": "Fleury-les-Aubrais",
          "country_code": "FR",
          "slug": "fleury-les-aubrais",
          "canonical_path": "/cities/fr/fleury-les-aubrais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91235",
          "name": "Fleury-Mérogis",
          "country_code": "FR",
          "slug": "fleury-merogis",
          "canonical_path": "/cities/fr/fleury-merogis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14271",
          "name": "Fleury-sur-Orne",
          "country_code": "FR",
          "slug": "fleury-sur-orne",
          "canonical_path": "/cities/fr/fleury-sur-orne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59239",
          "name": "Flines-lez-Raches",
          "country_code": "FR",
          "slug": "flines-lez-raches",
          "canonical_path": "/cities/fr/flines-lez-raches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33167",
          "name": "Floirac",
          "country_code": "FR",
          "slug": "floirac",
          "canonical_path": "/cities/fr/floirac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57221",
          "name": "Florange",
          "country_code": "FR",
          "slug": "florange",
          "canonical_path": "/cities/fr/florange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34101",
          "name": "Florensac",
          "country_code": "FR",
          "slug": "florensac",
          "canonical_path": "/cities/fr/florensac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:09122",
          "name": "Foix",
          "country_code": "FR",
          "slug": "foix",
          "canonical_path": "/cities/fr/foix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37109",
          "name": "Fondettes",
          "country_code": "FR",
          "slug": "fondettes",
          "canonical_path": "/cities/fr/fondettes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31187",
          "name": "Fonsorbes",
          "country_code": "FR",
          "slug": "fonsorbes",
          "canonical_path": "/cities/fr/fonsorbes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38169",
          "name": "Fontaine",
          "country_code": "FR",
          "slug": "fontaine",
          "canonical_path": "/cities/fr/fontaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21278",
          "name": "Fontaine-lès-Dijon",
          "country_code": "FR",
          "slug": "fontaine-les-dijon",
          "canonical_path": "/cities/fr/fontaine-les-dijon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77186",
          "name": "Fontainebleau",
          "country_code": "FR",
          "slug": "fontainebleau",
          "canonical_path": "/cities/fr/fontainebleau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69088",
          "name": "Fontaines-sur-Saône",
          "country_code": "FR",
          "slug": "fontaines-sur-saone",
          "canonical_path": "/cities/fr/fontaines-sur-saone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92032",
          "name": "Fontenay-aux-Roses",
          "country_code": "FR",
          "slug": "fontenay-aux-roses",
          "canonical_path": "/cities/fr/fontenay-aux-roses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85092",
          "name": "Fontenay-le-Comte",
          "country_code": "FR",
          "slug": "fontenay-le-comte",
          "canonical_path": "/cities/fr/fontenay-le-comte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78242",
          "name": "Fontenay-le-Fleury",
          "country_code": "FR",
          "slug": "fontenay-le-fleury",
          "canonical_path": "/cities/fr/fontenay-le-fleury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94033",
          "name": "Fontenay-sous-Bois",
          "country_code": "FR",
          "slug": "fontenay-sous-bois",
          "canonical_path": "/cities/fr/fontenay-sous-bois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77192",
          "name": "Fontenay-Trésigny",
          "country_code": "FR",
          "slug": "fontenay-tresigny",
          "canonical_path": "/cities/fr/fontenay-tresigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31188",
          "name": "Fontenilles",
          "country_code": "FR",
          "slug": "fontenilles",
          "canonical_path": "/cities/fr/fontenilles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57227",
          "name": "Forbach",
          "country_code": "FR",
          "slug": "forbach",
          "canonical_path": "/cities/fr/forbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:04088",
          "name": "Forcalquier",
          "country_code": "FR",
          "slug": "forcalquier",
          "canonical_path": "/cities/fr/forcalquier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13039",
          "name": "Fos-sur-Mer",
          "country_code": "FR",
          "slug": "fos-sur-mer",
          "canonical_path": "/cities/fr/fos-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95250",
          "name": "Fosses",
          "country_code": "FR",
          "slug": "fosses",
          "canonical_path": "/cities/fr/fosses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29058",
          "name": "Fouesnant",
          "country_code": "FR",
          "slug": "fouesnant",
          "canonical_path": "/cities/fr/fouesnant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35115",
          "name": "Fougères",
          "country_code": "FR",
          "slug": "fougeres",
          "canonical_path": "/cities/fr/fougeres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3017592",
          "name": "Fouillard",
          "country_code": "FR",
          "slug": "fouillard",
          "canonical_path": "/cities/fr/fouillard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47100",
          "name": "Foulayronnes",
          "country_code": "FR",
          "slug": "foulayronnes",
          "canonical_path": "/cities/fr/foulayronnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62351",
          "name": "Fouquières-lès-Lens",
          "country_code": "FR",
          "slug": "fouquieres-les-lens",
          "canonical_path": "/cities/fr/fouquieres-les-lens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59249",
          "name": "Fourmies",
          "country_code": "FR",
          "slug": "fourmies",
          "canonical_path": "/cities/fr/fourmies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69089",
          "name": "Francheville",
          "country_code": "FR",
          "slug": "francheville",
          "canonical_path": "/cities/fr/francheville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95252",
          "name": "Franconville",
          "country_code": "FR",
          "slug": "franconville",
          "canonical_path": "/cities/fr/franconville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76475",
          "name": "Franqueville-Saint-Pierre",
          "country_code": "FR",
          "slug": "franqueville-saint-pierre",
          "canonical_path": "/cities/fr/franqueville-saint-pierre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83061",
          "name": "Fréjus",
          "country_code": "FR",
          "slug": "frejus",
          "canonical_path": "/cities/fr/frejus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94034",
          "name": "Fresnes",
          "country_code": "FR",
          "slug": "fresnes",
          "canonical_path": "/cities/fr/fresnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59253",
          "name": "Fresnes-sur-Escaut",
          "country_code": "FR",
          "slug": "fresnes-sur-escaut",
          "canonical_path": "/cities/fr/fresnes-sur-escaut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57240",
          "name": "Freyming-Merlebach",
          "country_code": "FR",
          "slug": "freyming-merlebach",
          "canonical_path": "/cities/fr/freyming-merlebach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34108",
          "name": "Frontignan",
          "country_code": "FR",
          "slug": "frontignan",
          "canonical_path": "/cities/fr/frontignan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31202",
          "name": "Fronton",
          "country_code": "FR",
          "slug": "fronton",
          "canonical_path": "/cities/fr/fronton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54215",
          "name": "Frouard",
          "country_code": "FR",
          "slug": "frouard",
          "canonical_path": "/cities/fr/frouard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31203",
          "name": "Frouzins",
          "country_code": "FR",
          "slug": "frouzins",
          "canonical_path": "/cities/fr/frouzins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3016903",
          "name": "Fumel",
          "country_code": "FR",
          "slug": "fumel",
          "canonical_path": "/cities/fr/fumel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:2B120",
          "name": "Furiani",
          "country_code": "FR",
          "slug": "furiani",
          "canonical_path": "/cities/fr/furiani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13040",
          "name": "Fuveau",
          "country_code": "FR",
          "slug": "fuveau",
          "canonical_path": "/cities/fr/fuveau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93032",
          "name": "Gagny",
          "country_code": "FR",
          "slug": "gagny",
          "canonical_path": "/cities/fr/gagny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81099",
          "name": "Gaillac",
          "country_code": "FR",
          "slug": "gaillac",
          "canonical_path": "/cities/fr/gaillac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74133",
          "name": "Gaillard",
          "country_code": "FR",
          "slug": "gaillard",
          "canonical_path": "/cities/fr/gaillard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27275",
          "name": "Gaillon",
          "country_code": "FR",
          "slug": "gaillon",
          "canonical_path": "/cities/fr/gaillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67151",
          "name": "Gambsheim",
          "country_code": "FR",
          "slug": "gambsheim",
          "canonical_path": "/cities/fr/gambsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64230",
          "name": "Gan",
          "country_code": "FR",
          "slug": "gan",
          "canonical_path": "/cities/fr/gan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:03118",
          "name": "Gannat",
          "country_code": "FR",
          "slug": "gannat",
          "canonical_path": "/cities/fr/gannat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:05061",
          "name": "Gap",
          "country_code": "FR",
          "slug": "gap",
          "canonical_path": "/cities/fr/gap/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92033",
          "name": "Garches",
          "country_code": "FR",
          "slug": "garches",
          "canonical_path": "/cities/fr/garches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13041",
          "name": "Gardanne",
          "country_code": "FR",
          "slug": "gardanne",
          "canonical_path": "/cities/fr/gardanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:12808675",
          "name": "Gare",
          "country_code": "FR",
          "slug": "gare",
          "canonical_path": "/cities/fr/gare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83064",
          "name": "Garéoult",
          "country_code": "FR",
          "slug": "gareoult",
          "canonical_path": "/cities/fr/gareoult/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78267",
          "name": "Gargenville",
          "country_code": "FR",
          "slug": "gargenville",
          "canonical_path": "/cities/fr/gargenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95268",
          "name": "Garges-lès-Gonesse",
          "country_code": "FR",
          "slug": "garges-les-gonesse",
          "canonical_path": "/cities/fr/garges-les-gonesse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30125",
          "name": "Garons",
          "country_code": "FR",
          "slug": "garons",
          "canonical_path": "/cities/fr/garons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02340",
          "name": "Gauchy",
          "country_code": "FR",
          "slug": "gauchy",
          "canonical_path": "/cities/fr/gauchy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67152",
          "name": "Geispolsheim",
          "country_code": "FR",
          "slug": "geispolsheim",
          "canonical_path": "/cities/fr/geispolsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13042",
          "name": "Gémenos",
          "country_code": "FR",
          "slug": "gemenos",
          "canonical_path": "/cities/fr/gemenos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69277",
          "name": "Genas",
          "country_code": "FR",
          "slug": "genas",
          "canonical_path": "/cities/fr/genas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69278",
          "name": "Genay",
          "country_code": "FR",
          "slug": "genay",
          "canonical_path": "/cities/fr/genay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21292",
          "name": "Genlis",
          "country_code": "FR",
          "slug": "genlis",
          "canonical_path": "/cities/fr/genlis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49261",
          "name": "Gennes-Val-de-Loire",
          "country_code": "FR",
          "slug": "gennes-val-de-loire",
          "canonical_path": "/cities/fr/gennes-val-de-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92036",
          "name": "Gennevilliers",
          "country_code": "FR",
          "slug": "gennevilliers",
          "canonical_path": "/cities/fr/gennevilliers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94037",
          "name": "Gentilly",
          "country_code": "FR",
          "slug": "gentilly",
          "canonical_path": "/cities/fr/gentilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:88196",
          "name": "Gérardmer",
          "country_code": "FR",
          "slug": "gerardmer",
          "canonical_path": "/cities/fr/gerardmer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63164",
          "name": "Gerzat",
          "country_code": "FR",
          "slug": "gerzat",
          "canonical_path": "/cities/fr/gerzat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35120",
          "name": "Gévezé",
          "country_code": "FR",
          "slug": "geveze",
          "canonical_path": "/cities/fr/geveze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01173",
          "name": "Gex",
          "country_code": "FR",
          "slug": "gex",
          "canonical_path": "/cities/fr/gex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14301",
          "name": "Giberville",
          "country_code": "FR",
          "slug": "giberville",
          "canonical_path": "/cities/fr/giberville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45155",
          "name": "Gien",
          "country_code": "FR",
          "slug": "gien",
          "canonical_path": "/cities/fr/gien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38179",
          "name": "Gières",
          "country_code": "FR",
          "slug": "gieres",
          "canonical_path": "/cities/fr/gieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91272",
          "name": "Gif-sur-Yvette",
          "country_code": "FR",
          "slug": "gif-sur-yvette",
          "canonical_path": "/cities/fr/gif-sur-yvette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34113",
          "name": "Gigean",
          "country_code": "FR",
          "slug": "gigean",
          "canonical_path": "/cities/fr/gigean/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34114",
          "name": "Gignac",
          "country_code": "FR",
          "slug": "gignac",
          "canonical_path": "/cities/fr/gignac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13043",
          "name": "Gignac-la-Nerthe",
          "country_code": "FR",
          "slug": "gignac-la-nerthe",
          "canonical_path": "/cities/fr/gignac-la-nerthe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27284",
          "name": "Gisors",
          "country_code": "FR",
          "slug": "gisors",
          "canonical_path": "/cities/fr/gisors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:08190",
          "name": "Givet",
          "country_code": "FR",
          "slug": "givet",
          "canonical_path": "/cities/fr/givet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69091",
          "name": "Givors",
          "country_code": "FR",
          "slug": "givors",
          "canonical_path": "/cities/fr/givors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69092",
          "name": "Gleizé",
          "country_code": "FR",
          "slug": "gleize",
          "canonical_path": "/cities/fr/gleize/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:88209",
          "name": "Golbey",
          "country_code": "FR",
          "slug": "golbey",
          "canonical_path": "/cities/fr/golbey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:16154",
          "name": "Gond-Pontouvre",
          "country_code": "FR",
          "slug": "gond-pontouvre",
          "canonical_path": "/cities/fr/gond-pontouvre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95277",
          "name": "Gonesse",
          "country_code": "FR",
          "slug": "gonesse",
          "canonical_path": "/cities/fr/gonesse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76305",
          "name": "Gonfreville-l'Orcher",
          "country_code": "FR",
          "slug": "gonfreville-l-orcher",
          "canonical_path": "/cities/fr/gonfreville-l-orcher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44064",
          "name": "Gorges",
          "country_code": "FR",
          "slug": "gorges",
          "canonical_path": "/cities/fr/gorges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29061",
          "name": "Gouesnou",
          "country_code": "FR",
          "slug": "gouesnou",
          "canonical_path": "/cities/fr/gouesnou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3015546",
          "name": "Gourdon",
          "country_code": "FR",
          "slug": "gourdon",
          "canonical_path": "/cities/fr/gourdon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3015522",
          "name": "Gourin",
          "country_code": "FR",
          "slug": "gourin",
          "canonical_path": "/cities/fr/gourin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76312",
          "name": "Gournay-en-Bray",
          "country_code": "FR",
          "slug": "gournay-en-bray",
          "canonical_path": "/cities/fr/gournay-en-bray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93033",
          "name": "Gournay-sur-Marne",
          "country_code": "FR",
          "slug": "gournay-sur-marne",
          "canonical_path": "/cities/fr/gournay-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95280",
          "name": "Goussainville",
          "country_code": "FR",
          "slug": "goussainville",
          "canonical_path": "/cities/fr/goussainville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60282",
          "name": "Gouvieux",
          "country_code": "FR",
          "slug": "gouvieux",
          "canonical_path": "/cities/fr/gouvieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34116",
          "name": "Grabels",
          "country_code": "FR",
          "slug": "grabels",
          "canonical_path": "/cities/fr/grabels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33192",
          "name": "Gradignan",
          "country_code": "FR",
          "slug": "gradignan",
          "canonical_path": "/cities/fr/gradignan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56067",
          "name": "Grand-Champ",
          "country_code": "FR",
          "slug": "grand-champ",
          "canonical_path": "/cities/fr/grand-champ/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25284",
          "name": "Grand-Charmont",
          "country_code": "FR",
          "slug": "grand-charmont",
          "canonical_path": "/cities/fr/grand-charmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76319",
          "name": "Grand-Couronne",
          "country_code": "FR",
          "slug": "grand-couronne",
          "canonical_path": "/cities/fr/grand-couronne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3015126",
          "name": "Grand-Fort-Philippe",
          "country_code": "FR",
          "slug": "grand-fort-philippe",
          "canonical_path": "/cities/fr/grand-fort-philippe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44066",
          "name": "Grandchamp-des-Fontaines",
          "country_code": "FR",
          "slug": "grandchamp-des-fontaines",
          "canonical_path": "/cities/fr/grandchamp-des-fontaines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59271",
          "name": "Grande-Synthe",
          "country_code": "FR",
          "slug": "grande-synthe",
          "canonical_path": "/cities/fr/grande-synthe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13044",
          "name": "Grans",
          "country_code": "FR",
          "slug": "grans",
          "canonical_path": "/cities/fr/grans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50218",
          "name": "Granville",
          "country_code": "FR",
          "slug": "granville",
          "canonical_path": "/cities/fr/granville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06069",
          "name": "Grasse",
          "country_code": "FR",
          "slug": "grasse",
          "canonical_path": "/cities/fr/grasse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81105",
          "name": "Graulhet",
          "country_code": "FR",
          "slug": "graulhet",
          "canonical_path": "/cities/fr/graulhet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59273",
          "name": "Gravelines",
          "country_code": "FR",
          "slug": "gravelines",
          "canonical_path": "/cities/fr/gravelines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:70279",
          "name": "Gray",
          "country_code": "FR",
          "slug": "gray",
          "canonical_path": "/cities/fr/gray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31232",
          "name": "Grenade",
          "country_code": "FR",
          "slug": "grenade",
          "canonical_path": "/cities/fr/grenade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62386",
          "name": "Grenay",
          "country_code": "FR",
          "slug": "grenay",
          "canonical_path": "/cities/fr/grenay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38185",
          "name": "Grenoble",
          "country_code": "FR",
          "slug": "grenoble",
          "canonical_path": "/cities/fr/grenoble/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77215",
          "name": "Gretz-Armainvilliers",
          "country_code": "FR",
          "slug": "gretz-armainvilliers",
          "canonical_path": "/cities/fr/gretz-armainvilliers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69094",
          "name": "Grézieu-la-Varenne",
          "country_code": "FR",
          "slug": "grezieu-la-varenne",
          "canonical_path": "/cities/fr/grezieu-la-varenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91286",
          "name": "Grigny",
          "country_code": "FR",
          "slug": "grigny-91286",
          "canonical_path": "/cities/fr/grigny-91286/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3014647",
          "name": "Grigny-sur-Rhône",
          "country_code": "FR",
          "slug": "grigny-sur-rhone",
          "canonical_path": "/cities/fr/grigny-sur-rhone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95288",
          "name": "Groslay",
          "country_code": "FR",
          "slug": "groslay",
          "canonical_path": "/cities/fr/groslay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11170",
          "name": "Gruissan",
          "country_code": "FR",
          "slug": "gruissan",
          "canonical_path": "/cities/fr/gruissan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68112",
          "name": "Guebwiller",
          "country_code": "FR",
          "slug": "guebwiller",
          "canonical_path": "/cities/fr/guebwiller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44067",
          "name": "Guémené-Penfao",
          "country_code": "FR",
          "slug": "guemene-penfao",
          "canonical_path": "/cities/fr/guemene-penfao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57269",
          "name": "Guénange",
          "country_code": "FR",
          "slug": "guenange",
          "canonical_path": "/cities/fr/guenange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56075",
          "name": "Guer",
          "country_code": "FR",
          "slug": "guer",
          "canonical_path": "/cities/fr/guer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44069",
          "name": "Guérande",
          "country_code": "FR",
          "slug": "guerande",
          "canonical_path": "/cities/fr/guerande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:23096",
          "name": "Guéret",
          "country_code": "FR",
          "slug": "gueret",
          "canonical_path": "/cities/fr/gueret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71230",
          "name": "Gueugnon",
          "country_code": "FR",
          "slug": "gueugnon",
          "canonical_path": "/cities/fr/gueugnon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35126",
          "name": "Guichen",
          "country_code": "FR",
          "slug": "guichen",
          "canonical_path": "/cities/fr/guichen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56078",
          "name": "Guidel",
          "country_code": "FR",
          "slug": "guidel",
          "canonical_path": "/cities/fr/guidel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3232493",
          "name": "Guidel-Plage",
          "country_code": "FR",
          "slug": "guidel-plage",
          "canonical_path": "/cities/fr/guidel-plage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29069",
          "name": "Guilers",
          "country_code": "FR",
          "slug": "guilers",
          "canonical_path": "/cities/fr/guilers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:07102",
          "name": "Guilherand-Granges",
          "country_code": "FR",
          "slug": "guilherand-granges",
          "canonical_path": "/cities/fr/guilherand-granges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62397",
          "name": "Guînes",
          "country_code": "FR",
          "slug": "guines",
          "canonical_path": "/cities/fr/guines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22070",
          "name": "Guingamp",
          "country_code": "FR",
          "slug": "guingamp",
          "canonical_path": "/cities/fr/guingamp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29075",
          "name": "Guipavas",
          "country_code": "FR",
          "slug": "guipavas",
          "canonical_path": "/cities/fr/guipavas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35176",
          "name": "Guipry-Messac",
          "country_code": "FR",
          "slug": "guipry-messac",
          "canonical_path": "/cities/fr/guipry-messac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3014195",
          "name": "Guise",
          "country_code": "FR",
          "slug": "guise",
          "canonical_path": "/cities/fr/guise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33199",
          "name": "Gujan-Mestras",
          "country_code": "FR",
          "slug": "gujan-mestras",
          "canonical_path": "/cities/fr/gujan-mestras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78297",
          "name": "Guyancourt",
          "country_code": "FR",
          "slug": "guyancourt",
          "canonical_path": "/cities/fr/guyancourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68118",
          "name": "Habsheim",
          "country_code": "FR",
          "slug": "habsheim",
          "canonical_path": "/cities/fr/habsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57283",
          "name": "Hagondange",
          "country_code": "FR",
          "slug": "hagondange",
          "canonical_path": "/cities/fr/hagondange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67180",
          "name": "Haguenau",
          "country_code": "FR",
          "slug": "haguenau",
          "canonical_path": "/cities/fr/haguenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62400",
          "name": "Haillicourt",
          "country_code": "FR",
          "slug": "haillicourt",
          "canonical_path": "/cities/fr/haillicourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59279",
          "name": "Halluin",
          "country_code": "FR",
          "slug": "halluin",
          "canonical_path": "/cities/fr/halluin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3014029",
          "name": "Ham",
          "country_code": "FR",
          "slug": "ham",
          "canonical_path": "/cities/fr/ham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76341",
          "name": "Harfleur",
          "country_code": "FR",
          "slug": "harfleur",
          "canonical_path": "/cities/fr/harfleur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62413",
          "name": "Harnes",
          "country_code": "FR",
          "slug": "harnes",
          "canonical_path": "/cities/fr/harnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64256",
          "name": "Hasparren",
          "country_code": "FR",
          "slug": "hasparren",
          "canonical_path": "/cities/fr/hasparren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59286",
          "name": "Haubourdin",
          "country_code": "FR",
          "slug": "haubourdin",
          "canonical_path": "/cities/fr/haubourdin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44071",
          "name": "Haute-Goulaine",
          "country_code": "FR",
          "slug": "haute-goulaine",
          "canonical_path": "/cities/fr/haute-goulaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59291",
          "name": "Hautmont",
          "country_code": "FR",
          "slug": "hautmont",
          "canonical_path": "/cities/fr/hautmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:39368",
          "name": "Hauts de Bienne",
          "country_code": "FR",
          "slug": "hauts-de-bienne",
          "canonical_path": "/cities/fr/hauts-de-bienne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57306",
          "name": "Hayange",
          "country_code": "FR",
          "slug": "hayange",
          "canonical_path": "/cities/fr/hayange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59295",
          "name": "Hazebrouck",
          "country_code": "FR",
          "slug": "hazebrouck",
          "canonical_path": "/cities/fr/hazebrouck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54257",
          "name": "Heillecourt",
          "country_code": "FR",
          "slug": "heillecourt",
          "canonical_path": "/cities/fr/heillecourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59299",
          "name": "Hem",
          "country_code": "FR",
          "slug": "hem",
          "canonical_path": "/cities/fr/hem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64260",
          "name": "Hendaye",
          "country_code": "FR",
          "slug": "hendaye",
          "canonical_path": "/cities/fr/hendaye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62427",
          "name": "Hénin-Beaumont",
          "country_code": "FR",
          "slug": "henin-beaumont",
          "canonical_path": "/cities/fr/henin-beaumont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56083",
          "name": "Hennebont",
          "country_code": "FR",
          "slug": "hennebont",
          "canonical_path": "/cities/fr/hennebont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44072",
          "name": "Herbignac",
          "country_code": "FR",
          "slug": "herbignac",
          "canonical_path": "/cities/fr/herbignac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95306",
          "name": "Herblay-sur-Seine",
          "country_code": "FR",
          "slug": "herblay-sur-seine",
          "canonical_path": "/cities/fr/herblay-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44073",
          "name": "Héric",
          "country_code": "FR",
          "slug": "heric",
          "canonical_path": "/cities/fr/heric/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:70285",
          "name": "Héricourt",
          "country_code": "FR",
          "slug": "hericourt",
          "canonical_path": "/cities/fr/hericourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14327",
          "name": "Hérouville-Saint-Clair",
          "country_code": "FR",
          "slug": "herouville-saint-clair",
          "canonical_path": "/cities/fr/herouville-saint-clair/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62443",
          "name": "Hersin-Coupigny",
          "country_code": "FR",
          "slug": "hersin-coupigny",
          "canonical_path": "/cities/fr/hersin-coupigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57323",
          "name": "Hettange-Grande",
          "country_code": "FR",
          "slug": "hettange-grande",
          "canonical_path": "/cities/fr/hettange-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02381",
          "name": "Hirson",
          "country_code": "FR",
          "slug": "hirson",
          "canonical_path": "/cities/fr/hirson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67204",
          "name": "Hœnheim",
          "country_code": "FR",
          "slug": "h-nheim",
          "canonical_path": "/cities/fr/h-nheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57332",
          "name": "Hombourg-Haut",
          "country_code": "FR",
          "slug": "hombourg-haut",
          "canonical_path": "/cities/fr/hombourg-haut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54263",
          "name": "Homécourt",
          "country_code": "FR",
          "slug": "homecourt",
          "canonical_path": "/cities/fr/homecourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14333",
          "name": "Honfleur",
          "country_code": "FR",
          "slug": "honfleur",
          "canonical_path": "/cities/fr/honfleur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68145",
          "name": "Horbourg-Wihr",
          "country_code": "FR",
          "slug": "horbourg-wihr",
          "canonical_path": "/cities/fr/horbourg-wihr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62457",
          "name": "Houdain",
          "country_code": "FR",
          "slug": "houdain",
          "canonical_path": "/cities/fr/houdain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78311",
          "name": "Houilles",
          "country_code": "FR",
          "slug": "houilles",
          "canonical_path": "/cities/fr/houilles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59317",
          "name": "Houplines",
          "country_code": "FR",
          "slug": "houplines",
          "canonical_path": "/cities/fr/houplines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68149",
          "name": "Huningue",
          "country_code": "FR",
          "slug": "huningue",
          "canonical_path": "/cities/fr/huningue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83069",
          "name": "Hyères",
          "country_code": "FR",
          "slug": "hyeres",
          "canonical_path": "/cities/fr/hyeres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64269",
          "name": "Idron",
          "country_code": "FR",
          "slug": "idron",
          "canonical_path": "/cities/fr/idron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14341",
          "name": "Ifs",
          "country_code": "FR",
          "slug": "ifs",
          "canonical_path": "/cities/fr/ifs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91312",
          "name": "Igny",
          "country_code": "FR",
          "slug": "igny",
          "canonical_path": "/cities/fr/igny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66088",
          "name": "Ille-sur-Têt",
          "country_code": "FR",
          "slug": "ille-sur-tet",
          "canonical_path": "/cities/fr/ille-sur-tet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67218",
          "name": "Illkirch-Graffenstaden",
          "country_code": "FR",
          "slug": "illkirch-graffenstaden",
          "canonical_path": "/cities/fr/illkirch-graffenstaden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68154",
          "name": "Illzach",
          "country_code": "FR",
          "slug": "illzach",
          "canonical_path": "/cities/fr/illzach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45169",
          "name": "Ingré",
          "country_code": "FR",
          "slug": "ingre",
          "canonical_path": "/cities/fr/ingre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56090",
          "name": "Inzinzac-Lochrist",
          "country_code": "FR",
          "slug": "inzinzac-lochrist",
          "canonical_path": "/cities/fr/inzinzac-lochrist/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69100",
          "name": "Irigny",
          "country_code": "FR",
          "slug": "irigny",
          "canonical_path": "/cities/fr/irigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62473",
          "name": "Isbergues",
          "country_code": "FR",
          "slug": "isbergues",
          "canonical_path": "/cities/fr/isbergues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87075",
          "name": "Isle",
          "country_code": "FR",
          "slug": "isle",
          "canonical_path": "/cities/fr/isle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63178",
          "name": "Issoire",
          "country_code": "FR",
          "slug": "issoire",
          "canonical_path": "/cities/fr/issoire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:36088",
          "name": "Issoudun",
          "country_code": "FR",
          "slug": "issoudun",
          "canonical_path": "/cities/fr/issoudun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92040",
          "name": "Issy-les-Moulineaux",
          "country_code": "FR",
          "slug": "issy-les-moulineaux",
          "canonical_path": "/cities/fr/issy-les-moulineaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13047",
          "name": "Istres",
          "country_code": "FR",
          "slug": "istres",
          "canonical_path": "/cities/fr/istres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91315",
          "name": "Itteville",
          "country_code": "FR",
          "slug": "itteville",
          "canonical_path": "/cities/fr/itteville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94041",
          "name": "Ivry-sur-Seine",
          "country_code": "FR",
          "slug": "ivry-sur-seine",
          "canonical_path": "/cities/fr/ivry-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33207",
          "name": "Izon",
          "country_code": "FR",
          "slug": "izon",
          "canonical_path": "/cities/fr/izon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34120",
          "name": "Jacou",
          "country_code": "FR",
          "slug": "jacou",
          "canonical_path": "/cities/fr/jacou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35136",
          "name": "Janzé",
          "country_code": "FR",
          "slug": "janze",
          "canonical_path": "/cities/fr/janze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54273",
          "name": "Jarny",
          "country_code": "FR",
          "slug": "jarny",
          "canonical_path": "/cities/fr/jarny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54274",
          "name": "Jarville-la-Malgrange",
          "country_code": "FR",
          "slug": "jarville-la-malgrange",
          "canonical_path": "/cities/fr/jarville-la-malgrange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01194",
          "name": "Jassans-Riottier",
          "country_code": "FR",
          "slug": "jassans-riottier",
          "canonical_path": "/cities/fr/jassans-riottier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3012417",
          "name": "Jaunay-Clan",
          "country_code": "FR",
          "slug": "jaunay-clan",
          "canonical_path": "/cities/fr/jaunay-clan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86115",
          "name": "Jaunay-Marigny",
          "country_code": "FR",
          "slug": "jaunay-marigny",
          "canonical_path": "/cities/fr/jaunay-marigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59324",
          "name": "Jeumont",
          "country_code": "FR",
          "slug": "jeumont",
          "canonical_path": "/cities/fr/jeumont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54280",
          "name": "Jœuf",
          "country_code": "FR",
          "slug": "j-uf",
          "canonical_path": "/cities/fr/j-uf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:89206",
          "name": "Joigny",
          "country_code": "FR",
          "slug": "joigny",
          "canonical_path": "/cities/fr/joigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94042",
          "name": "Joinville-le-Pont",
          "country_code": "FR",
          "slug": "joinville-le-pont",
          "canonical_path": "/cities/fr/joinville-le-pont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69279",
          "name": "Jonage",
          "country_code": "FR",
          "slug": "jonage",
          "canonical_path": "/cities/fr/jonage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84056",
          "name": "Jonquières",
          "country_code": "FR",
          "slug": "jonquieres",
          "canonical_path": "/cities/fr/jonquieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78321",
          "name": "Jouars-Pontchartrain",
          "country_code": "FR",
          "slug": "jouars-pontchartrain",
          "canonical_path": "/cities/fr/jouars-pontchartrain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37122",
          "name": "Joué-lès-Tours",
          "country_code": "FR",
          "slug": "joue-les-tours",
          "canonical_path": "/cities/fr/joue-les-tours/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78322",
          "name": "Jouy-en-Josas",
          "country_code": "FR",
          "slug": "jouy-en-josas",
          "canonical_path": "/cities/fr/jouy-en-josas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95323",
          "name": "Jouy-le-Moutier",
          "country_code": "FR",
          "slug": "jouy-le-moutier",
          "canonical_path": "/cities/fr/jouy-le-moutier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3012142",
          "name": "Juan-les-Pins",
          "country_code": "FR",
          "slug": "juan-les-pins",
          "canonical_path": "/cities/fr/juan-les-pins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3012073",
          "name": "Jumelles",
          "country_code": "FR",
          "slug": "jumelles",
          "canonical_path": "/cities/fr/jumelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64284",
          "name": "Jurançon",
          "country_code": "FR",
          "slug": "jurancon",
          "canonical_path": "/cities/fr/jurancon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34123",
          "name": "Juvignac",
          "country_code": "FR",
          "slug": "juvignac",
          "canonical_path": "/cities/fr/juvignac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91326",
          "name": "Juvisy-sur-Orge",
          "country_code": "FR",
          "slug": "juvisy-sur-orge",
          "canonical_path": "/cities/fr/juvisy-sur-orge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68163",
          "name": "Kembs",
          "country_code": "FR",
          "slug": "kembs",
          "canonical_path": "/cities/fr/kembs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56094",
          "name": "Kervignac",
          "country_code": "FR",
          "slug": "kervignac",
          "canonical_path": "/cities/fr/kervignac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68166",
          "name": "Kingersheim",
          "country_code": "FR",
          "slug": "kingersheim",
          "canonical_path": "/cities/fr/kingersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:61214",
          "name": "L'Aigle",
          "country_code": "FR",
          "slug": "l-aigle",
          "canonical_path": "/cities/fr/l-aigle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69010",
          "name": "L'Arbresle",
          "country_code": "FR",
          "slug": "l-arbresle",
          "canonical_path": "/cities/fr/l-arbresle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78224",
          "name": "L'Étang-la-Ville",
          "country_code": "FR",
          "slug": "l-etang-la-ville",
          "canonical_path": "/cities/fr/l-etang-la-ville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94038",
          "name": "L'Haÿ-les-Roses",
          "country_code": "FR",
          "slug": "l-hay-les-roses",
          "canonical_path": "/cities/fr/l-hay-les-roses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57336",
          "name": "L'Hôpital",
          "country_code": "FR",
          "slug": "l-hopital",
          "canonical_path": "/cities/fr/l-hopital/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93039",
          "name": "L'Île-Saint-Denis",
          "country_code": "FR",
          "slug": "l-ile-saint-denis",
          "canonical_path": "/cities/fr/l-ile-saint-denis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95313",
          "name": "L'Isle-Adam",
          "country_code": "FR",
          "slug": "l-isle-adam",
          "canonical_path": "/cities/fr/l-isle-adam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38193",
          "name": "L'Isle-d'Abeau",
          "country_code": "FR",
          "slug": "l-isle-d-abeau",
          "canonical_path": "/cities/fr/l-isle-d-abeau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:16166",
          "name": "L'Isle-d'Espagnac",
          "country_code": "FR",
          "slug": "l-isle-d-espagnac",
          "canonical_path": "/cities/fr/l-isle-d-espagnac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:32160",
          "name": "L'Isle-Jourdain",
          "country_code": "FR",
          "slug": "l-isle-jourdain",
          "canonical_path": "/cities/fr/l-isle-jourdain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84054",
          "name": "L'Isle-sur-la-Sorgue",
          "country_code": "FR",
          "slug": "l-isle-sur-la-sorgue",
          "canonical_path": "/cities/fr/l-isle-sur-la-sorgue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31561",
          "name": "L'Union",
          "country_code": "FR",
          "slug": "l-union",
          "canonical_path": "/cities/fr/l-union/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74026",
          "name": "La Balme-de-Sillingy",
          "country_code": "FR",
          "slug": "la-balme-de-sillingy",
          "canonical_path": "/cities/fr/la-balme-de-sillingy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59051",
          "name": "La Bassée",
          "country_code": "FR",
          "slug": "la-bassee",
          "canonical_path": "/cities/fr/la-bassee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44055",
          "name": "La Baule-Escoublac",
          "country_code": "FR",
          "slug": "la-baule-escoublac",
          "canonical_path": "/cities/fr/la-baule-escoublac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13016",
          "name": "La Bouilladisse",
          "country_code": "FR",
          "slug": "la-bouilladisse",
          "canonical_path": "/cities/fr/la-bouilladisse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3010815",
          "name": "La Bresse",
          "country_code": "FR",
          "slug": "la-bresse",
          "canonical_path": "/cities/fr/la-bresse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83027",
          "name": "La Cadière-d'Azur",
          "country_code": "FR",
          "slug": "la-cadiere-d-azur",
          "canonical_path": "/cities/fr/la-cadiere-d-azur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78126",
          "name": "La Celle-Saint-Cloud",
          "country_code": "FR",
          "slug": "la-celle-saint-cloud",
          "canonical_path": "/cities/fr/la-celle-saint-cloud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59143",
          "name": "La Chapelle-d'Armentières",
          "country_code": "FR",
          "slug": "la-chapelle-d-armentieres",
          "canonical_path": "/cities/fr/la-chapelle-d-armentieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:10081",
          "name": "La Chapelle-Saint-Luc",
          "country_code": "FR",
          "slug": "la-chapelle-saint-luc",
          "canonical_path": "/cities/fr/la-chapelle-saint-luc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45075",
          "name": "La Chapelle-Saint-Mesmin",
          "country_code": "FR",
          "slug": "la-chapelle-saint-mesmin",
          "canonical_path": "/cities/fr/la-chapelle-saint-mesmin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44035",
          "name": "La Chapelle-sur-Erdre",
          "country_code": "FR",
          "slug": "la-chapelle-sur-erdre",
          "canonical_path": "/cities/fr/la-chapelle-sur-erdre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3010201",
          "name": "La Charité-sur-Loire",
          "country_code": "FR",
          "slug": "la-charite-sur-loire",
          "canonical_path": "/cities/fr/la-charite-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44041",
          "name": "La Chevrolière",
          "country_code": "FR",
          "slug": "la-chevroliere",
          "canonical_path": "/cities/fr/la-chevroliere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13028",
          "name": "La Ciotat",
          "country_code": "FR",
          "slug": "la-ciotat",
          "canonical_path": "/cities/fr/la-ciotat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06044",
          "name": "La Colle-sur-Loup",
          "country_code": "FR",
          "slug": "la-colle-sur-loup",
          "canonical_path": "/cities/fr/la-colle-sur-loup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93027",
          "name": "La Courneuve",
          "country_code": "FR",
          "slug": "la-courneuve",
          "canonical_path": "/cities/fr/la-courneuve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:16113",
          "name": "La Couronne",
          "country_code": "FR",
          "slug": "la-couronne",
          "canonical_path": "/cities/fr/la-couronne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83047",
          "name": "La Crau",
          "country_code": "FR",
          "slug": "la-crau",
          "canonical_path": "/cities/fr/la-crau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79048",
          "name": "La Crèche",
          "country_code": "FR",
          "slug": "la-creche",
          "canonical_path": "/cities/fr/la-creche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13037",
          "name": "La Fare-les-Oliviers",
          "country_code": "FR",
          "slug": "la-fare-les-oliviers",
          "canonical_path": "/cities/fr/la-fare-les-oliviers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83054",
          "name": "La Farlède",
          "country_code": "FR",
          "slug": "la-farlede",
          "canonical_path": "/cities/fr/la-farlede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85089",
          "name": "La Ferrière",
          "country_code": "FR",
          "slug": "la-ferriere",
          "canonical_path": "/cities/fr/la-ferriere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:61168",
          "name": "La Ferté Macé",
          "country_code": "FR",
          "slug": "la-ferte-mace",
          "canonical_path": "/cities/fr/la-ferte-mace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72132",
          "name": "La Ferté-Bernard",
          "country_code": "FR",
          "slug": "la-ferte-bernard",
          "canonical_path": "/cities/fr/la-ferte-bernard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45146",
          "name": "La Ferté-Saint-Aubin",
          "country_code": "FR",
          "slug": "la-ferte-saint-aubin",
          "canonical_path": "/cities/fr/la-ferte-saint-aubin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77183",
          "name": "La Ferté-sous-Jouarre",
          "country_code": "FR",
          "slug": "la-ferte-sous-jouarre",
          "canonical_path": "/cities/fr/la-ferte-sous-jouarre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72154",
          "name": "La Flèche",
          "country_code": "FR",
          "slug": "la-fleche",
          "canonical_path": "/cities/fr/la-fleche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83062",
          "name": "La Garde",
          "country_code": "FR",
          "slug": "la-garde",
          "canonical_path": "/cities/fr/la-garde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92035",
          "name": "La Garenne-Colombes",
          "country_code": "FR",
          "slug": "la-garenne-colombes",
          "canonical_path": "/cities/fr/la-garenne-colombes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85096",
          "name": "La Garnache",
          "country_code": "FR",
          "slug": "la-garnache",
          "canonical_path": "/cities/fr/la-garnache/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06065",
          "name": "La Gaude",
          "country_code": "FR",
          "slug": "la-gaude",
          "canonical_path": "/cities/fr/la-gaude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3009086",
          "name": "La Glacerie",
          "country_code": "FR",
          "slug": "la-glacerie",
          "canonical_path": "/cities/fr/la-glacerie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59268",
          "name": "La Gorgue",
          "country_code": "FR",
          "slug": "la-gorgue",
          "canonical_path": "/cities/fr/la-gorgue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3009015",
          "name": "La Grand-Croix",
          "country_code": "FR",
          "slug": "la-grand-croix",
          "canonical_path": "/cities/fr/la-grand-croix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34344",
          "name": "La Grande-Motte",
          "country_code": "FR",
          "slug": "la-grande-motte",
          "canonical_path": "/cities/fr/la-grande-motte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50041",
          "name": "La Hague",
          "country_code": "FR",
          "slug": "la-hague",
          "canonical_path": "/cities/fr/la-hague/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83071",
          "name": "La Londe-les-Maures",
          "country_code": "FR",
          "slug": "la-londe-les-maures",
          "canonical_path": "/cities/fr/la-londe-les-maures/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59368",
          "name": "La Madeleine",
          "country_code": "FR",
          "slug": "la-madeleine",
          "canonical_path": "/cities/fr/la-madeleine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35177",
          "name": "La Mézière",
          "country_code": "FR",
          "slug": "la-meziere",
          "canonical_path": "/cities/fr/la-meziere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44101",
          "name": "La Montagne",
          "country_code": "FR",
          "slug": "la-montagne",
          "canonical_path": "/cities/fr/la-montagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73179",
          "name": "La Motte-Servolex",
          "country_code": "FR",
          "slug": "la-motte-servolex",
          "canonical_path": "/cities/fr/la-motte-servolex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69142",
          "name": "La Mulatière",
          "country_code": "FR",
          "slug": "la-mulatiere",
          "canonical_path": "/cities/fr/la-mulatiere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3007957",
          "name": "La Mure",
          "country_code": "FR",
          "slug": "la-mure",
          "canonical_path": "/cities/fr/la-mure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13070",
          "name": "La Penne-sur-Huveaune",
          "country_code": "FR",
          "slug": "la-penne-sur-huveaune",
          "canonical_path": "/cities/fr/la-penne-sur-huveaune/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94060",
          "name": "La Queue-en-Brie",
          "country_code": "FR",
          "slug": "la-queue-en-brie",
          "canonical_path": "/cities/fr/la-queue-en-brie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73213",
          "name": "La Ravoire",
          "country_code": "FR",
          "slug": "la-ravoire",
          "canonical_path": "/cities/fr/la-ravoire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42183",
          "name": "La Ricamarie",
          "country_code": "FR",
          "slug": "la-ricamarie",
          "canonical_path": "/cities/fr/la-ricamarie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37195",
          "name": "La Riche",
          "country_code": "FR",
          "slug": "la-riche",
          "canonical_path": "/cities/fr/la-riche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74224",
          "name": "La Roche-sur-Foron",
          "country_code": "FR",
          "slug": "la-roche-sur-foron",
          "canonical_path": "/cities/fr/la-roche-sur-foron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85191",
          "name": "La Roche-sur-Yon",
          "country_code": "FR",
          "slug": "la-roche-sur-yon",
          "canonical_path": "/cities/fr/la-roche-sur-yon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17300",
          "name": "La Rochelle",
          "country_code": "FR",
          "slug": "la-rochelle",
          "canonical_path": "/cities/fr/la-rochelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13084",
          "name": "La Roque-d'Anthéron",
          "country_code": "FR",
          "slug": "la-roque-d-antheron",
          "canonical_path": "/cities/fr/la-roque-d-antheron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06108",
          "name": "La Roquette-sur-Siagne",
          "country_code": "FR",
          "slug": "la-roquette-sur-siagne",
          "canonical_path": "/cities/fr/la-roquette-sur-siagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31526",
          "name": "La Salvetat-Saint-Gilles",
          "country_code": "FR",
          "slug": "la-salvetat-saint-gilles",
          "canonical_path": "/cities/fr/la-salvetat-saint-gilles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83126",
          "name": "La Seyne-sur-Mer",
          "country_code": "FR",
          "slug": "la-seyne-sur-mer",
          "canonical_path": "/cities/fr/la-seyne-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3006387",
          "name": "La Souterraine",
          "country_code": "FR",
          "slug": "la-souterraine",
          "canonical_path": "/cities/fr/la-souterraine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42305",
          "name": "La Talaudière",
          "country_code": "FR",
          "slug": "la-talaudiere",
          "canonical_path": "/cities/fr/la-talaudiere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33529",
          "name": "La Teste-de-Buch",
          "country_code": "FR",
          "slug": "la-teste-de-buch",
          "canonical_path": "/cities/fr/la-teste-de-buch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38509",
          "name": "La Tour-du-Pin",
          "country_code": "FR",
          "slug": "la-tour-du-pin",
          "canonical_path": "/cities/fr/la-tour-du-pin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06149",
          "name": "La Trinité",
          "country_code": "FR",
          "slug": "la-trinite",
          "canonical_path": "/cities/fr/la-trinite/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38516",
          "name": "La Tronche",
          "country_code": "FR",
          "slug": "la-tronche",
          "canonical_path": "/cities/fr/la-tronche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83144",
          "name": "La Valette-du-Var",
          "country_code": "FR",
          "slug": "la-valette-du-var",
          "canonical_path": "/cities/fr/la-valette-du-var/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38537",
          "name": "La Verpillière",
          "country_code": "FR",
          "slug": "la-verpilliere",
          "canonical_path": "/cities/fr/la-verpilliere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78644",
          "name": "La Verrière",
          "country_code": "FR",
          "slug": "la-verriere",
          "canonical_path": "/cities/fr/la-verriere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37273",
          "name": "La Ville-aux-Dames",
          "country_code": "FR",
          "slug": "la-ville-aux-dames",
          "canonical_path": "/cities/fr/la-ville-aux-dames/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91665",
          "name": "La Ville-du-Bois",
          "country_code": "FR",
          "slug": "la-ville-du-bois",
          "canonical_path": "/cities/fr/la-ville-du-bois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3005435",
          "name": "La Voulte-sur-Rhône",
          "country_code": "FR",
          "slug": "la-voulte-sur-rhone",
          "canonical_path": "/cities/fr/la-voulte-sur-rhone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67519",
          "name": "La Wantzenau",
          "country_code": "FR",
          "slug": "la-wantzenau",
          "canonical_path": "/cities/fr/la-wantzenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31248",
          "name": "Labarthe-sur-Lèze",
          "country_code": "FR",
          "slug": "labarthe-sur-leze",
          "canonical_path": "/cities/fr/labarthe-sur-leze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40133",
          "name": "Labenne",
          "country_code": "FR",
          "slug": "labenne",
          "canonical_path": "/cities/fr/labenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81120",
          "name": "Labruguière",
          "country_code": "FR",
          "slug": "labruguiere",
          "canonical_path": "/cities/fr/labruguiere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33214",
          "name": "Lacanau",
          "country_code": "FR",
          "slug": "lacanau",
          "canonical_path": "/cities/fr/lacanau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60338",
          "name": "Lacroix-Saint-Ouen",
          "country_code": "FR",
          "slug": "lacroix-saint-ouen",
          "canonical_path": "/cities/fr/lacroix-saint-ouen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01202",
          "name": "Lagnieu",
          "country_code": "FR",
          "slug": "lagnieu",
          "canonical_path": "/cities/fr/lagnieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77243",
          "name": "Lagny-sur-Marne",
          "country_code": "FR",
          "slug": "lagny-sur-marne",
          "canonical_path": "/cities/fr/lagny-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17200",
          "name": "Lagord",
          "country_code": "FR",
          "slug": "lagord",
          "canonical_path": "/cities/fr/lagord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35139",
          "name": "Laillé",
          "country_code": "FR",
          "slug": "laille",
          "canonical_path": "/cities/fr/laille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59327",
          "name": "Lallaing",
          "country_code": "FR",
          "slug": "lallaing",
          "canonical_path": "/cities/fr/lallaing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3008225",
          "name": "Lamballe",
          "country_code": "FR",
          "slug": "lamballe",
          "canonical_path": "/cities/fr/lamballe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22093",
          "name": "Lamballe-Armor",
          "country_code": "FR",
          "slug": "lamballe-armor",
          "canonical_path": "/cities/fr/lamballe-armor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59328",
          "name": "Lambersart",
          "country_code": "FR",
          "slug": "lambersart",
          "canonical_path": "/cities/fr/lambersart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13050",
          "name": "Lambesc",
          "country_code": "FR",
          "slug": "lambesc",
          "canonical_path": "/cities/fr/lambesc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3008198",
          "name": "Lambres-lez-Douai",
          "country_code": "FR",
          "slug": "lambres-lez-douai",
          "canonical_path": "/cities/fr/lambres-lez-douai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60346",
          "name": "Lamorlaye",
          "country_code": "FR",
          "slug": "lamorlaye",
          "canonical_path": "/cities/fr/lamorlaye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13051",
          "name": "Lançon-Provence",
          "country_code": "FR",
          "slug": "lancon-provence",
          "canonical_path": "/cities/fr/lancon-provence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29103",
          "name": "Landerneau",
          "country_code": "FR",
          "slug": "landerneau",
          "canonical_path": "/cities/fr/landerneau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29105",
          "name": "Landivisiau",
          "country_code": "FR",
          "slug": "landivisiau",
          "canonical_path": "/cities/fr/landivisiau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56098",
          "name": "Lanester",
          "country_code": "FR",
          "slug": "lanester",
          "canonical_path": "/cities/fr/lanester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54300",
          "name": "Laneuveville-devant-Nancy",
          "country_code": "FR",
          "slug": "laneuveville-devant-nancy",
          "canonical_path": "/cities/fr/laneuveville-devant-nancy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33227",
          "name": "Langon",
          "country_code": "FR",
          "slug": "langon",
          "canonical_path": "/cities/fr/langon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:52269",
          "name": "Langres",
          "country_code": "FR",
          "slug": "langres",
          "canonical_path": "/cities/fr/langres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22106",
          "name": "Langueux",
          "country_code": "FR",
          "slug": "langueux",
          "canonical_path": "/cities/fr/langueux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56101",
          "name": "Languidic",
          "country_code": "FR",
          "slug": "languidic",
          "canonical_path": "/cities/fr/languidic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:65258",
          "name": "Lannemezan",
          "country_code": "FR",
          "slug": "lannemezan",
          "canonical_path": "/cities/fr/lannemezan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29117",
          "name": "Lannilis",
          "country_code": "FR",
          "slug": "lannilis",
          "canonical_path": "/cities/fr/lannilis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22113",
          "name": "Lannion",
          "country_code": "FR",
          "slug": "lannion",
          "canonical_path": "/cities/fr/lannion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33229",
          "name": "Lanton",
          "country_code": "FR",
          "slug": "lanton",
          "canonical_path": "/cities/fr/lanton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02408",
          "name": "Laon",
          "country_code": "FR",
          "slug": "laon",
          "canonical_path": "/cities/fr/laon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91330",
          "name": "Lardy",
          "country_code": "FR",
          "slug": "lardy",
          "canonical_path": "/cities/fr/lardy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56107",
          "name": "Larmor-Plage",
          "country_code": "FR",
          "slug": "larmor-plage",
          "canonical_path": "/cities/fr/larmor-plage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34129",
          "name": "Lattes",
          "country_code": "FR",
          "slug": "lattes",
          "canonical_path": "/cities/fr/lattes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30141",
          "name": "Laudun-l'Ardoise",
          "country_code": "FR",
          "slug": "laudun-l-ardoise",
          "canonical_path": "/cities/fr/laudun-l-ardoise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31282",
          "name": "Launaguet",
          "country_code": "FR",
          "slug": "launaguet",
          "canonical_path": "/cities/fr/launaguet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:53130",
          "name": "Laval",
          "country_code": "FR",
          "slug": "laval",
          "canonical_path": "/cities/fr/laval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81140",
          "name": "Lavaur",
          "country_code": "FR",
          "slug": "lavaur",
          "canonical_path": "/cities/fr/lavaur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:09160",
          "name": "Lavelanet",
          "country_code": "FR",
          "slug": "lavelanet",
          "canonical_path": "/cities/fr/lavelanet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62491",
          "name": "Laventie",
          "country_code": "FR",
          "slug": "laventie",
          "canonical_path": "/cities/fr/laventie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54304",
          "name": "Laxou",
          "country_code": "FR",
          "slug": "laxou",
          "canonical_path": "/cities/fr/laxou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66017",
          "name": "Le Barcarès",
          "country_code": "FR",
          "slug": "le-barcares",
          "canonical_path": "/cities/fr/le-barcares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33029",
          "name": "Le Barp",
          "country_code": "FR",
          "slug": "le-barp",
          "canonical_path": "/cities/fr/le-barp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83016",
          "name": "Le Beausset",
          "country_code": "FR",
          "slug": "le-beausset",
          "canonical_path": "/cities/fr/le-beausset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:36018",
          "name": "Le Blanc",
          "country_code": "FR",
          "slug": "le-blanc",
          "canonical_path": "/cities/fr/le-blanc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93007",
          "name": "Le Blanc-Mesnil",
          "country_code": "FR",
          "slug": "le-blanc-mesnil",
          "canonical_path": "/cities/fr/le-blanc-mesnil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66024",
          "name": "Le Boulou",
          "country_code": "FR",
          "slug": "le-boulou",
          "canonical_path": "/cities/fr/le-boulou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93013",
          "name": "Le Bourget",
          "country_code": "FR",
          "slug": "le-bourget",
          "canonical_path": "/cities/fr/le-bourget/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73051",
          "name": "Le Bourget-du-Lac",
          "country_code": "FR",
          "slug": "le-bourget-du-lac",
          "canonical_path": "/cities/fr/le-bourget-du-lac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33069",
          "name": "Le Bouscat",
          "country_code": "FR",
          "slug": "le-bouscat",
          "canonical_path": "/cities/fr/le-bouscat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06030",
          "name": "Le Cannet",
          "country_code": "FR",
          "slug": "le-cannet",
          "canonical_path": "/cities/fr/le-cannet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83031",
          "name": "Le Cannet-des-Maures",
          "country_code": "FR",
          "slug": "le-cannet-des-maures",
          "canonical_path": "/cities/fr/le-cannet-des-maures/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83035",
          "name": "Le Castellet",
          "country_code": "FR",
          "slug": "le-castellet",
          "canonical_path": "/cities/fr/le-castellet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59136",
          "name": "Le Cateau-Cambrésis",
          "country_code": "FR",
          "slug": "le-cateau-cambresis",
          "canonical_path": "/cities/fr/le-cateau-cambresis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63069",
          "name": "Le Cendre",
          "country_code": "FR",
          "slug": "le-cendre",
          "canonical_path": "/cities/fr/le-cendre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42044",
          "name": "Le Chambon-Feugerolles",
          "country_code": "FR",
          "slug": "le-chambon-feugerolles",
          "canonical_path": "/cities/fr/le-chambon-feugerolles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3004630",
          "name": "Le Chesnay",
          "country_code": "FR",
          "slug": "le-chesnay",
          "canonical_path": "/cities/fr/le-chesnay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78158",
          "name": "Le Chesnay-Rocquencourt",
          "country_code": "FR",
          "slug": "le-chesnay-rocquencourt",
          "canonical_path": "/cities/fr/le-chesnay-rocquencourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:41059",
          "name": "Le Controis-en-Sologne",
          "country_code": "FR",
          "slug": "le-controis-en-sologne",
          "canonical_path": "/cities/fr/le-controis-en-sologne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42071",
          "name": "Le Coteau",
          "country_code": "FR",
          "slug": "le-coteau",
          "canonical_path": "/cities/fr/le-coteau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34090",
          "name": "Le Crès",
          "country_code": "FR",
          "slug": "le-cres",
          "canonical_path": "/cities/fr/le-cres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71153",
          "name": "Le Creusot",
          "country_code": "FR",
          "slug": "le-creusot",
          "canonical_path": "/cities/fr/le-creusot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76322",
          "name": "Le Grand-Quevilly",
          "country_code": "FR",
          "slug": "le-grand-quevilly",
          "canonical_path": "/cities/fr/le-grand-quevilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30133",
          "name": "Le Grau-du-Roi",
          "country_code": "FR",
          "slug": "le-grau-du-roi",
          "canonical_path": "/cities/fr/le-grau-du-roi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33200",
          "name": "Le Haillan",
          "country_code": "FR",
          "slug": "le-haillan",
          "canonical_path": "/cities/fr/le-haillan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76351",
          "name": "Le Havre",
          "country_code": "FR",
          "slug": "le-havre",
          "canonical_path": "/cities/fr/le-havre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94043",
          "name": "Le Kremlin-Bicêtre",
          "country_code": "FR",
          "slug": "le-kremlin-bicetre",
          "canonical_path": "/cities/fr/le-kremlin-bicetre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83070",
          "name": "Le Lavandou",
          "country_code": "FR",
          "slug": "le-lavandou",
          "canonical_path": "/cities/fr/le-lavandou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49176",
          "name": "Le Lion-d'Angers",
          "country_code": "FR",
          "slug": "le-lion-d-angers",
          "canonical_path": "/cities/fr/le-lion-d-angers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44084",
          "name": "Le Loroux-Bottereau",
          "country_code": "FR",
          "slug": "le-loroux-bottereau",
          "canonical_path": "/cities/fr/le-loroux-bottereau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83073",
          "name": "Le Luc",
          "country_code": "FR",
          "slug": "le-luc",
          "canonical_path": "/cities/fr/le-luc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45191",
          "name": "Le Malesherbois",
          "country_code": "FR",
          "slug": "le-malesherbois",
          "canonical_path": "/cities/fr/le-malesherbois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72181",
          "name": "Le Mans",
          "country_code": "FR",
          "slug": "le-mans",
          "canonical_path": "/cities/fr/le-mans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77285",
          "name": "Le Mée-sur-Seine",
          "country_code": "FR",
          "slug": "le-mee-sur-seine",
          "canonical_path": "/cities/fr/le-mee-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22046",
          "name": "Le Mené",
          "country_code": "FR",
          "slug": "le-mene",
          "canonical_path": "/cities/fr/le-mene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76429",
          "name": "Le Mesnil-Esnard",
          "country_code": "FR",
          "slug": "le-mesnil-esnard",
          "canonical_path": "/cities/fr/le-mesnil-esnard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78396",
          "name": "Le Mesnil-le-Roi",
          "country_code": "FR",
          "slug": "le-mesnil-le-roi",
          "canonical_path": "/cities/fr/le-mesnil-le-roi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78397",
          "name": "Le Mesnil-Saint-Denis",
          "country_code": "FR",
          "slug": "le-mesnil-saint-denis",
          "canonical_path": "/cities/fr/le-mesnil-saint-denis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83086",
          "name": "Le Muy",
          "country_code": "FR",
          "slug": "le-muy",
          "canonical_path": "/cities/fr/le-muy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87113",
          "name": "Le Palais-sur-Vienne",
          "country_code": "FR",
          "slug": "le-palais-sur-vienne",
          "canonical_path": "/cities/fr/le-palais-sur-vienne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47201",
          "name": "Le Passage",
          "country_code": "FR",
          "slug": "le-passage",
          "canonical_path": "/cities/fr/le-passage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38298",
          "name": "Le Péage-de-Roussillon",
          "country_code": "FR",
          "slug": "le-peage-de-roussillon",
          "canonical_path": "/cities/fr/le-peage-de-roussillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78481",
          "name": "Le Pecq",
          "country_code": "FR",
          "slug": "le-pecq",
          "canonical_path": "/cities/fr/le-pecq/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44120",
          "name": "Le Pellerin",
          "country_code": "FR",
          "slug": "le-pellerin",
          "canonical_path": "/cities/fr/le-pellerin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78486",
          "name": "Le Perray-en-Yvelines",
          "country_code": "FR",
          "slug": "le-perray-en-yvelines",
          "canonical_path": "/cities/fr/le-perray-en-yvelines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94058",
          "name": "Le Perreux-sur-Marne",
          "country_code": "FR",
          "slug": "le-perreux-sur-marne",
          "canonical_path": "/cities/fr/le-perreux-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76498",
          "name": "Le Petit-Quevilly",
          "country_code": "FR",
          "slug": "le-petit-quevilly",
          "canonical_path": "/cities/fr/le-petit-quevilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33322",
          "name": "Le Pian-Médoc",
          "country_code": "FR",
          "slug": "le-pian-medoc",
          "canonical_path": "/cities/fr/le-pian-medoc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95491",
          "name": "Le Plessis-Bouchard",
          "country_code": "FR",
          "slug": "le-plessis-bouchard",
          "canonical_path": "/cities/fr/le-plessis-bouchard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92060",
          "name": "Le Plessis-Robinson",
          "country_code": "FR",
          "slug": "le-plessis-robinson",
          "canonical_path": "/cities/fr/le-plessis-robinson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94059",
          "name": "Le Plessis-Trévise",
          "country_code": "FR",
          "slug": "le-plessis-trevise",
          "canonical_path": "/cities/fr/le-plessis-trevise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:36159",
          "name": "Le Poinçonnet",
          "country_code": "FR",
          "slug": "le-poinconnet",
          "canonical_path": "/cities/fr/le-poinconnet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85178",
          "name": "Le Poiré-sur-Vie",
          "country_code": "FR",
          "slug": "le-poire-sur-vie",
          "canonical_path": "/cities/fr/le-poire-sur-vie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38317",
          "name": "Le Pont-de-Claix",
          "country_code": "FR",
          "slug": "le-pont-de-claix",
          "canonical_path": "/cities/fr/le-pont-de-claix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84092",
          "name": "Le Pontet",
          "country_code": "FR",
          "slug": "le-pontet",
          "canonical_path": "/cities/fr/le-pontet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78502",
          "name": "Le Port-Marly",
          "country_code": "FR",
          "slug": "le-port-marly",
          "canonical_path": "/cities/fr/le-port-marly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62667",
          "name": "Le Portel",
          "country_code": "FR",
          "slug": "le-portel",
          "canonical_path": "/cities/fr/le-portel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3002534",
          "name": "Le Pouliguen",
          "country_code": "FR",
          "slug": "le-pouliguen",
          "canonical_path": "/cities/fr/le-pouliguen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83098",
          "name": "Le Pradet",
          "country_code": "FR",
          "slug": "le-pradet",
          "canonical_path": "/cities/fr/le-pradet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93061",
          "name": "Le Pré-Saint-Gervais",
          "country_code": "FR",
          "slug": "le-pre-saint-gervais",
          "canonical_path": "/cities/fr/le-pre-saint-gervais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:43157",
          "name": "Le Puy-en-Velay",
          "country_code": "FR",
          "slug": "le-puy-en-velay",
          "canonical_path": "/cities/fr/le-puy-en-velay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13080",
          "name": "Le Puy-Sainte-Réparade",
          "country_code": "FR",
          "slug": "le-puy-sainte-reparade",
          "canonical_path": "/cities/fr/le-puy-sainte-reparade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93062",
          "name": "Le Raincy",
          "country_code": "FR",
          "slug": "le-raincy",
          "canonical_path": "/cities/fr/le-raincy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29235",
          "name": "Le Relecq-Kerhuon",
          "country_code": "FR",
          "slug": "le-relecq-kerhuon",
          "canonical_path": "/cities/fr/le-relecq-kerhuon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35240",
          "name": "Le Rheu",
          "country_code": "FR",
          "slug": "le-rheu",
          "canonical_path": "/cities/fr/le-rheu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13088",
          "name": "Le Rove",
          "country_code": "FR",
          "slug": "le-rove",
          "canonical_path": "/cities/fr/le-rove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66195",
          "name": "Le Soler",
          "country_code": "FR",
          "slug": "le-soler",
          "canonical_path": "/cities/fr/le-soler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33519",
          "name": "Le Taillan-Médoc",
          "country_code": "FR",
          "slug": "le-taillan-medoc",
          "canonical_path": "/cities/fr/le-taillan-medoc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33527",
          "name": "Le Teich",
          "country_code": "FR",
          "slug": "le-teich",
          "canonical_path": "/cities/fr/le-teich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:07319",
          "name": "Le Teil",
          "country_code": "FR",
          "slug": "le-teil",
          "canonical_path": "/cities/fr/le-teil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84132",
          "name": "Le Thor",
          "country_code": "FR",
          "slug": "le-thor",
          "canonical_path": "/cities/fr/le-thor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2999139",
          "name": "Le Touquet-Paris-Plage",
          "country_code": "FR",
          "slug": "le-touquet-paris-plage",
          "canonical_path": "/cities/fr/le-touquet-paris-plage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2999126",
          "name": "Le Trait",
          "country_code": "FR",
          "slug": "le-trait",
          "canonical_path": "/cities/fr/le-trait/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2999093",
          "name": "Le Tréport",
          "country_code": "FR",
          "slug": "le-treport",
          "canonical_path": "/cities/fr/le-treport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27022",
          "name": "Le Val d'Hazey",
          "country_code": "FR",
          "slug": "le-val-d-hazey",
          "canonical_path": "/cities/fr/le-val-d-hazey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78650",
          "name": "Le Vésinet",
          "country_code": "FR",
          "slug": "le-vesinet",
          "canonical_path": "/cities/fr/le-vesinet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59339",
          "name": "Leers",
          "country_code": "FR",
          "slug": "leers",
          "canonical_path": "/cities/fr/leers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3004244",
          "name": "Leffrinckoucke",
          "country_code": "FR",
          "slug": "leffrinckoucke",
          "canonical_path": "/cities/fr/leffrinckoucke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62497",
          "name": "Leforest",
          "country_code": "FR",
          "slug": "leforest",
          "canonical_path": "/cities/fr/leforest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33236",
          "name": "Lège-Cap-Ferret",
          "country_code": "FR",
          "slug": "lege-cap-ferret",
          "canonical_path": "/cities/fr/lege-cap-ferret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31291",
          "name": "Léguevin",
          "country_code": "FR",
          "slug": "leguevin",
          "canonical_path": "/cities/fr/leguevin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63193",
          "name": "Lempdes",
          "country_code": "FR",
          "slug": "lempdes",
          "canonical_path": "/cities/fr/lempdes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62498",
          "name": "Lens",
          "country_code": "FR",
          "slug": "lens",
          "canonical_path": "/cities/fr/lens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69112",
          "name": "Lentilly",
          "country_code": "FR",
          "slug": "lentilly",
          "canonical_path": "/cities/fr/lentilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33238",
          "name": "Léognan",
          "country_code": "FR",
          "slug": "leognan",
          "canonical_path": "/cities/fr/leognan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38001",
          "name": "Les Abrets en Dauphiné",
          "country_code": "FR",
          "slug": "les-abrets-en-dauphine",
          "canonical_path": "/cities/fr/les-abrets-en-dauphine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85152",
          "name": "Les Achards",
          "country_code": "FR",
          "slug": "les-achards",
          "canonical_path": "/cities/fr/les-achards/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27016",
          "name": "Les Andelys",
          "country_code": "FR",
          "slug": "les-andelys",
          "canonical_path": "/cities/fr/les-andelys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30011",
          "name": "Les Angles",
          "country_code": "FR",
          "slug": "les-angles",
          "canonical_path": "/cities/fr/les-angles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83004",
          "name": "Les Arcs",
          "country_code": "FR",
          "slug": "les-arcs",
          "canonical_path": "/cities/fr/les-arcs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38022",
          "name": "Les Avenières Veyrins-Thuellin",
          "country_code": "FR",
          "slug": "les-avenieres-veyrins-thuellin",
          "canonical_path": "/cities/fr/les-avenieres-veyrins-thuellin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78165",
          "name": "Les Clayes-sous-Bois",
          "country_code": "FR",
          "slug": "les-clayes-sous-bois",
          "canonical_path": "/cities/fr/les-clayes-sous-bois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78220",
          "name": "Les Essarts-le-Roi",
          "country_code": "FR",
          "slug": "les-essarts-le-roi",
          "canonical_path": "/cities/fr/les-essarts-le-roi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49080",
          "name": "Les Hauts-d'Anjou",
          "country_code": "FR",
          "slug": "les-hauts-d-anjou",
          "canonical_path": "/cities/fr/les-hauts-d-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85109",
          "name": "Les Herbiers",
          "country_code": "FR",
          "slug": "les-herbiers",
          "canonical_path": "/cities/fr/les-herbiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93045",
          "name": "Les Lilas",
          "country_code": "FR",
          "slug": "les-lilas",
          "canonical_path": "/cities/fr/les-lilas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78440",
          "name": "Les Mureaux",
          "country_code": "FR",
          "slug": "les-mureaux",
          "canonical_path": "/cities/fr/les-mureaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93057",
          "name": "Les Pavillons-sous-Bois",
          "country_code": "FR",
          "slug": "les-pavillons-sous-bois",
          "canonical_path": "/cities/fr/les-pavillons-sous-bois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13071",
          "name": "Les Pennes-Mirabeau",
          "country_code": "FR",
          "slug": "les-pennes-mirabeau",
          "canonical_path": "/cities/fr/les-pennes-mirabeau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49246",
          "name": "Les Ponts-de-Cé",
          "country_code": "FR",
          "slug": "les-ponts-de-ce",
          "canonical_path": "/cities/fr/les-ponts-de-ce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85194",
          "name": "Les Sables-d'Olonne",
          "country_code": "FR",
          "slug": "les-sables-d-olonne",
          "canonical_path": "/cities/fr/les-sables-d-olonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44198",
          "name": "Les Sorinières",
          "country_code": "FR",
          "slug": "les-sorinieres",
          "canonical_path": "/cities/fr/les-sorinieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91692",
          "name": "Les Ulis",
          "country_code": "FR",
          "slug": "les-ulis",
          "canonical_path": "/cities/fr/les-ulis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64335",
          "name": "Lescar",
          "country_code": "FR",
          "slug": "lescar",
          "canonical_path": "/cities/fr/lescar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77249",
          "name": "Lésigny",
          "country_code": "FR",
          "slug": "lesigny",
          "canonical_path": "/cities/fr/lesigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29124",
          "name": "Lesneven",
          "country_code": "FR",
          "slug": "lesneven",
          "canonical_path": "/cities/fr/lesneven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33240",
          "name": "Lesparre-Médoc",
          "country_code": "FR",
          "slug": "lesparre-medoc",
          "canonical_path": "/cities/fr/lesparre-medoc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59343",
          "name": "Lesquin",
          "country_code": "FR",
          "slug": "lesquin",
          "canonical_path": "/cities/fr/lesquin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62502",
          "name": "Lestrem",
          "country_code": "FR",
          "slug": "lestrem",
          "canonical_path": "/cities/fr/lestrem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92044",
          "name": "Levallois-Perret",
          "country_code": "FR",
          "slug": "levallois-perret",
          "canonical_path": "/cities/fr/levallois-perret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06075",
          "name": "Levens",
          "country_code": "FR",
          "slug": "levens",
          "canonical_path": "/cities/fr/levens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28209",
          "name": "Lèves",
          "country_code": "FR",
          "slug": "leves",
          "canonical_path": "/cities/fr/leves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11203",
          "name": "Lézignan-Corbières",
          "country_code": "FR",
          "slug": "lezignan-corbieres",
          "canonical_path": "/cities/fr/lezignan-corbieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63195",
          "name": "Lezoux",
          "country_code": "FR",
          "slug": "lezoux",
          "canonical_path": "/cities/fr/lezoux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60360",
          "name": "Liancourt",
          "country_code": "FR",
          "slug": "liancourt",
          "canonical_path": "/cities/fr/liancourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:12319243",
          "name": "Libération",
          "country_code": "FR",
          "slug": "liberation",
          "canonical_path": "/cities/fr/liberation/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62907",
          "name": "Libercourt",
          "country_code": "FR",
          "slug": "libercourt",
          "canonical_path": "/cities/fr/libercourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33243",
          "name": "Libourne",
          "country_code": "FR",
          "slug": "libourne",
          "canonical_path": "/cities/fr/libourne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77251",
          "name": "Lieusaint",
          "country_code": "FR",
          "slug": "lieusaint",
          "canonical_path": "/cities/fr/lieusaint/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62510",
          "name": "Liévin",
          "country_code": "FR",
          "slug": "lievin",
          "canonical_path": "/cities/fr/lievin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35152",
          "name": "Liffré",
          "country_code": "FR",
          "slug": "liffre",
          "canonical_path": "/cities/fr/liffre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44082",
          "name": "Ligné",
          "country_code": "FR",
          "slug": "ligne",
          "canonical_path": "/cities/fr/ligne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2998362",
          "name": "Ligny-en-Barrois",
          "country_code": "FR",
          "slug": "ligny-en-barrois",
          "canonical_path": "/cities/fr/ligny-en-barrois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59350",
          "name": "Lille",
          "country_code": "FR",
          "slug": "lille",
          "canonical_path": "/cities/fr/lille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76384",
          "name": "Lillebonne",
          "country_code": "FR",
          "slug": "lillebonne",
          "canonical_path": "/cities/fr/lillebonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62516",
          "name": "Lillers",
          "country_code": "FR",
          "slug": "lillers",
          "canonical_path": "/cities/fr/lillers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78335",
          "name": "Limay",
          "country_code": "FR",
          "slug": "limay",
          "canonical_path": "/cities/fr/limay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94044",
          "name": "Limeil-Brévannes",
          "country_code": "FR",
          "slug": "limeil-brevannes",
          "canonical_path": "/cities/fr/limeil-brevannes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87085",
          "name": "Limoges",
          "country_code": "FR",
          "slug": "limoges",
          "canonical_path": "/cities/fr/limoges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91338",
          "name": "Limours",
          "country_code": "FR",
          "slug": "limours",
          "canonical_path": "/cities/fr/limours/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11206",
          "name": "Limoux",
          "country_code": "FR",
          "slug": "limoux",
          "canonical_path": "/cities/fr/limoux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91339",
          "name": "Linas",
          "country_code": "FR",
          "slug": "linas",
          "canonical_path": "/cities/fr/linas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67267",
          "name": "Lingolsheim",
          "country_code": "FR",
          "slug": "lingolsheim",
          "canonical_path": "/cities/fr/lingolsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59352",
          "name": "Linselles",
          "country_code": "FR",
          "slug": "linselles",
          "canonical_path": "/cities/fr/linselles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14366",
          "name": "Lisieux",
          "country_code": "FR",
          "slug": "lisieux",
          "canonical_path": "/cities/fr/lisieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91340",
          "name": "Lisses",
          "country_code": "FR",
          "slug": "lisses",
          "canonical_path": "/cities/fr/lisses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14371",
          "name": "Livarot-Pays-d'Auge",
          "country_code": "FR",
          "slug": "livarot-pays-d-auge",
          "canonical_path": "/cities/fr/livarot-pays-d-auge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54318",
          "name": "Liverdun",
          "country_code": "FR",
          "slug": "liverdun",
          "canonical_path": "/cities/fr/liverdun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26165",
          "name": "Livron-sur-Drôme",
          "country_code": "FR",
          "slug": "livron-sur-drome",
          "canonical_path": "/cities/fr/livron-sur-drome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93046",
          "name": "Livry-Gargan",
          "country_code": "FR",
          "slug": "livry-gargan",
          "canonical_path": "/cities/fr/livry-gargan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37132",
          "name": "Loches",
          "country_code": "FR",
          "slug": "loches",
          "canonical_path": "/cities/fr/loches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29130",
          "name": "Locmaria-Plouzané",
          "country_code": "FR",
          "slug": "locmaria-plouzane",
          "canonical_path": "/cities/fr/locmaria-plouzane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34142",
          "name": "Lodève",
          "country_code": "FR",
          "slug": "lodeve",
          "canonical_path": "/cities/fr/lodeve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77258",
          "name": "Lognes",
          "country_code": "FR",
          "slug": "lognes",
          "canonical_path": "/cities/fr/lognes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49307",
          "name": "Loire-Authion",
          "country_code": "FR",
          "slug": "loire-authion",
          "canonical_path": "/cities/fr/loire-authion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44213",
          "name": "Loireauxence",
          "country_code": "FR",
          "slug": "loireauxence",
          "canonical_path": "/cities/fr/loireauxence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62523",
          "name": "Loison-sous-Lens",
          "country_code": "FR",
          "slug": "loison-sous-lens",
          "canonical_path": "/cities/fr/loison-sous-lens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2997803",
          "name": "Lomme",
          "country_code": "FR",
          "slug": "lomme",
          "canonical_path": "/cities/fr/lomme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91345",
          "name": "Longjumeau",
          "country_code": "FR",
          "slug": "longjumeau",
          "canonical_path": "/cities/fr/longjumeau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91347",
          "name": "Longpont-sur-Orge",
          "country_code": "FR",
          "slug": "longpont-sur-orge",
          "canonical_path": "/cities/fr/longpont-sur-orge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49180",
          "name": "Longué-Jumelles",
          "country_code": "FR",
          "slug": "longue-jumelles",
          "canonical_path": "/cities/fr/longue-jumelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:80489",
          "name": "Longueau",
          "country_code": "FR",
          "slug": "longueau",
          "canonical_path": "/cities/fr/longueau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49200",
          "name": "Longuenée-en-Anjou",
          "country_code": "FR",
          "slug": "longuenee-en-anjou",
          "canonical_path": "/cities/fr/longuenee-en-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62525",
          "name": "Longuenesse",
          "country_code": "FR",
          "slug": "longuenesse",
          "canonical_path": "/cities/fr/longuenesse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54322",
          "name": "Longuyon",
          "country_code": "FR",
          "slug": "longuyon",
          "canonical_path": "/cities/fr/longuyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21355",
          "name": "Longvic",
          "country_code": "FR",
          "slug": "longvic",
          "canonical_path": "/cities/fr/longvic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54323",
          "name": "Longwy",
          "country_code": "FR",
          "slug": "longwy",
          "canonical_path": "/cities/fr/longwy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64348",
          "name": "Lons",
          "country_code": "FR",
          "slug": "lons",
          "canonical_path": "/cities/fr/lons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:39300",
          "name": "Lons-le-Saunier",
          "country_code": "FR",
          "slug": "lons-le-saunier",
          "canonical_path": "/cities/fr/lons-le-saunier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59359",
          "name": "Loon-Plage",
          "country_code": "FR",
          "slug": "loon-plage",
          "canonical_path": "/cities/fr/loon-plage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59360",
          "name": "Loos",
          "country_code": "FR",
          "slug": "loos",
          "canonical_path": "/cities/fr/loos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62528",
          "name": "Loos-en-Gohelle",
          "country_code": "FR",
          "slug": "loos-en-gohelle",
          "canonical_path": "/cities/fr/loos-en-gohelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83072",
          "name": "Lorgues",
          "country_code": "FR",
          "slug": "lorgues",
          "canonical_path": "/cities/fr/lorgues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56121",
          "name": "Lorient",
          "country_code": "FR",
          "slug": "lorient",
          "canonical_path": "/cities/fr/lorient/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26166",
          "name": "Loriol-sur-Drôme",
          "country_code": "FR",
          "slug": "loriol-sur-drome",
          "canonical_path": "/cities/fr/loriol-sur-drome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33249",
          "name": "Lormont",
          "country_code": "FR",
          "slug": "lormont",
          "canonical_path": "/cities/fr/lormont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22136",
          "name": "Loudéac",
          "country_code": "FR",
          "slug": "loudeac",
          "canonical_path": "/cities/fr/loudeac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86137",
          "name": "Loudun",
          "country_code": "FR",
          "slug": "loudun",
          "canonical_path": "/cities/fr/loudun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71263",
          "name": "Louhans",
          "country_code": "FR",
          "slug": "louhans",
          "canonical_path": "/cities/fr/louhans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:65286",
          "name": "Lourdes",
          "country_code": "FR",
          "slug": "lourdes",
          "canonical_path": "/cities/fr/lourdes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78350",
          "name": "Louveciennes",
          "country_code": "FR",
          "slug": "louveciennes",
          "canonical_path": "/cities/fr/louveciennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27375",
          "name": "Louviers",
          "country_code": "FR",
          "slug": "louviers",
          "canonical_path": "/cities/fr/louviers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95351",
          "name": "Louvres",
          "country_code": "FR",
          "slug": "louvres",
          "canonical_path": "/cities/fr/louvres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59365",
          "name": "Louvroil",
          "country_code": "FR",
          "slug": "louvroil",
          "canonical_path": "/cities/fr/louvroil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:12133",
          "name": "Luc-la-Primaube",
          "country_code": "FR",
          "slug": "luc-la-primaube",
          "canonical_path": "/cities/fr/luc-la-primaube/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:2B148",
          "name": "Lucciana",
          "country_code": "FR",
          "slug": "lucciana",
          "canonical_path": "/cities/fr/lucciana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28218",
          "name": "Lucé",
          "country_code": "FR",
          "slug": "luce",
          "canonical_path": "/cities/fr/luce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85128",
          "name": "Luçon",
          "country_code": "FR",
          "slug": "lucon",
          "canonical_path": "/cities/fr/lucon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33256",
          "name": "Ludon-Médoc",
          "country_code": "FR",
          "slug": "ludon-medoc",
          "canonical_path": "/cities/fr/ludon-medoc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54328",
          "name": "Ludres",
          "country_code": "FR",
          "slug": "ludres",
          "canonical_path": "/cities/fr/ludres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28220",
          "name": "Luisant",
          "country_code": "FR",
          "slug": "luisant",
          "canonical_path": "/cities/fr/luisant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34145",
          "name": "Lunel",
          "country_code": "FR",
          "slug": "lunel",
          "canonical_path": "/cities/fr/lunel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54329",
          "name": "Lunéville",
          "country_code": "FR",
          "slug": "luneville",
          "canonical_path": "/cities/fr/luneville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:70310",
          "name": "Lure",
          "country_code": "FR",
          "slug": "lure",
          "canonical_path": "/cities/fr/lure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68195",
          "name": "Lutterbach",
          "country_code": "FR",
          "slug": "lutterbach",
          "canonical_path": "/cities/fr/lutterbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:70311",
          "name": "Luxeuil-les-Bains",
          "country_code": "FR",
          "slug": "luxeuil-les-bains",
          "canonical_path": "/cities/fr/luxeuil-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37139",
          "name": "Luynes",
          "country_code": "FR",
          "slug": "luynes",
          "canonical_path": "/cities/fr/luynes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95352",
          "name": "Luzarches",
          "country_code": "FR",
          "slug": "luzarches",
          "canonical_path": "/cities/fr/luzarches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2996944",
          "name": "Lyon",
          "country_code": "FR",
          "slug": "lyon",
          "canonical_path": "/cities/fr/lyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49373",
          "name": "Lys-Haut-Layon",
          "country_code": "FR",
          "slug": "lys-haut-layon",
          "canonical_path": "/cities/fr/lys-haut-layon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59367",
          "name": "Lys-lez-Lannoy",
          "country_code": "FR",
          "slug": "lys-lez-lannoy",
          "canonical_path": "/cities/fr/lys-lez-lannoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42127",
          "name": "Mably",
          "country_code": "FR",
          "slug": "mably",
          "canonical_path": "/cities/fr/mably/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2996905",
          "name": "Machecoul",
          "country_code": "FR",
          "slug": "machecoul",
          "canonical_path": "/cities/fr/machecoul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44087",
          "name": "Machecoul-Saint-Même",
          "country_code": "FR",
          "slug": "machecoul-saint-meme",
          "canonical_path": "/cities/fr/machecoul-saint-meme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71270",
          "name": "Mâcon",
          "country_code": "FR",
          "slug": "macon",
          "canonical_path": "/cities/fr/macon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35257",
          "name": "Maen Roch",
          "country_code": "FR",
          "slug": "maen-roch",
          "canonical_path": "/cities/fr/maen-roch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78354",
          "name": "Magnanville",
          "country_code": "FR",
          "slug": "magnanville",
          "canonical_path": "/cities/fr/magnanville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95355",
          "name": "Magny-en-Vexin",
          "country_code": "FR",
          "slug": "magny-en-vexin",
          "canonical_path": "/cities/fr/magny-en-vexin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77268",
          "name": "Magny-le-Hongre",
          "country_code": "FR",
          "slug": "magny-le-hongre",
          "canonical_path": "/cities/fr/magny-le-hongre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78356",
          "name": "Magny-les-Hameaux",
          "country_code": "FR",
          "slug": "magny-les-hameaux",
          "canonical_path": "/cities/fr/magny-les-hameaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28229",
          "name": "Mainvilliers",
          "country_code": "FR",
          "slug": "mainvilliers",
          "canonical_path": "/cities/fr/mainvilliers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:12808676",
          "name": "Maison Blanche",
          "country_code": "FR",
          "slug": "maison-blanche",
          "canonical_path": "/cities/fr/maison-blanche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94046",
          "name": "Maisons-Alfort",
          "country_code": "FR",
          "slug": "maisons-alfort",
          "canonical_path": "/cities/fr/maisons-alfort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78358",
          "name": "Maisons-Laffitte",
          "country_code": "FR",
          "slug": "maisons-laffitte",
          "canonical_path": "/cities/fr/maisons-laffitte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57433",
          "name": "Maizières-lès-Metz",
          "country_code": "FR",
          "slug": "maizieres-les-metz",
          "canonical_path": "/cities/fr/maizieres-les-metz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92046",
          "name": "Malakoff",
          "country_code": "FR",
          "slug": "malakoff",
          "canonical_path": "/cities/fr/malakoff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76402",
          "name": "Malaunay",
          "country_code": "FR",
          "slug": "malaunay",
          "canonical_path": "/cities/fr/malaunay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:19123",
          "name": "Malemort",
          "country_code": "FR",
          "slug": "malemort",
          "canonical_path": "/cities/fr/malemort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2996448",
          "name": "Malemort-sur-Corrèze",
          "country_code": "FR",
          "slug": "malemort-sur-correze",
          "canonical_path": "/cities/fr/malemort-sur-correze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2996444",
          "name": "Malesherbes",
          "country_code": "FR",
          "slug": "malesherbes",
          "canonical_path": "/cities/fr/malesherbes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13053",
          "name": "Mallemort",
          "country_code": "FR",
          "slug": "mallemort",
          "canonical_path": "/cities/fr/mallemort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54339",
          "name": "Malzéville",
          "country_code": "FR",
          "slug": "malzeville",
          "canonical_path": "/cities/fr/malzeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2996291",
          "name": "Mamers",
          "country_code": "FR",
          "slug": "mamers",
          "canonical_path": "/cities/fr/mamers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06079",
          "name": "Mandelieu-la-Napoule",
          "country_code": "FR",
          "slug": "mandelieu-la-napoule",
          "canonical_path": "/cities/fr/mandelieu-la-napoule/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2996251",
          "name": "Mandeure",
          "country_code": "FR",
          "slug": "mandeure",
          "canonical_path": "/cities/fr/mandeure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30155",
          "name": "Manduel",
          "country_code": "FR",
          "slug": "manduel",
          "canonical_path": "/cities/fr/manduel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:04112",
          "name": "Manosque",
          "country_code": "FR",
          "slug": "manosque",
          "canonical_path": "/cities/fr/manosque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78361",
          "name": "Mantes-la-Jolie",
          "country_code": "FR",
          "slug": "mantes-la-jolie",
          "canonical_path": "/cities/fr/mantes-la-jolie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78362",
          "name": "Mantes-la-Ville",
          "country_code": "FR",
          "slug": "mantes-la-ville",
          "canonical_path": "/cities/fr/mantes-la-ville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57443",
          "name": "Marange-Silvange",
          "country_code": "FR",
          "slug": "marange-silvange",
          "canonical_path": "/cities/fr/marange-silvange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33555",
          "name": "Marcheprime",
          "country_code": "FR",
          "slug": "marcheprime",
          "canonical_path": "/cities/fr/marcheprime/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62548",
          "name": "Marck",
          "country_code": "FR",
          "slug": "marck",
          "canonical_path": "/cities/fr/marck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91363",
          "name": "Marcoussis",
          "country_code": "FR",
          "slug": "marcoussis",
          "canonical_path": "/cities/fr/marcoussis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59378",
          "name": "Marcq-en-Barœul",
          "country_code": "FR",
          "slug": "marcq-en-bar-ul",
          "canonical_path": "/cities/fr/marcq-en-bar-ul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2995854",
          "name": "Marennes",
          "country_code": "FR",
          "slug": "marennes",
          "canonical_path": "/cities/fr/marennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17219",
          "name": "Marennes-Hiers-Brouage",
          "country_code": "FR",
          "slug": "marennes-hiers-brouage",
          "canonical_path": "/cities/fr/marennes-hiers-brouage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60382",
          "name": "Margny-lès-Compiègne",
          "country_code": "FR",
          "slug": "margny-les-compiegne",
          "canonical_path": "/cities/fr/margny-les-compiegne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30156",
          "name": "Marguerittes",
          "country_code": "FR",
          "slug": "marguerittes",
          "canonical_path": "/cities/fr/marguerittes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13054",
          "name": "Marignane",
          "country_code": "FR",
          "slug": "marignane",
          "canonical_path": "/cities/fr/marignane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74164",
          "name": "Marignier",
          "country_code": "FR",
          "slug": "marignier",
          "canonical_path": "/cities/fr/marignier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62555",
          "name": "Marles-les-Mines",
          "country_code": "FR",
          "slug": "marles-les-mines",
          "canonical_path": "/cities/fr/marles-les-mines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57447",
          "name": "Marly",
          "country_code": "FR",
          "slug": "marly-57447",
          "canonical_path": "/cities/fr/marly-57447/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59383",
          "name": "Marly",
          "country_code": "FR",
          "slug": "marly-59383",
          "canonical_path": "/cities/fr/marly-59383/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95371",
          "name": "Marly-la-Ville",
          "country_code": "FR",
          "slug": "marly-la-ville",
          "canonical_path": "/cities/fr/marly-la-ville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78372",
          "name": "Marly-le-Roi",
          "country_code": "FR",
          "slug": "marly-le-roi",
          "canonical_path": "/cities/fr/marly-le-roi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47157",
          "name": "Marmande",
          "country_code": "FR",
          "slug": "marmande",
          "canonical_path": "/cities/fr/marmande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74169",
          "name": "Marnaz",
          "country_code": "FR",
          "slug": "marnaz",
          "canonical_path": "/cities/fr/marnaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:12278193",
          "name": "Marne La Vallée",
          "country_code": "FR",
          "slug": "marne-la-vallee",
          "canonical_path": "/cities/fr/marne-la-vallee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91376",
          "name": "Marolles-en-Hurepoix",
          "country_code": "FR",
          "slug": "marolles-en-hurepoix",
          "canonical_path": "/cities/fr/marolles-en-hurepoix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76410",
          "name": "Maromme",
          "country_code": "FR",
          "slug": "maromme",
          "canonical_path": "/cities/fr/maromme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59386",
          "name": "Marquette-lez-Lille",
          "country_code": "FR",
          "slug": "marquette-lez-lille",
          "canonical_path": "/cities/fr/marquette-lez-lille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62560",
          "name": "Marquise",
          "country_code": "FR",
          "slug": "marquise",
          "canonical_path": "/cities/fr/marquise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21390",
          "name": "Marsannay-la-Côte",
          "country_code": "FR",
          "slug": "marsannay-la-cote",
          "canonical_path": "/cities/fr/marsannay-la-cote/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34150",
          "name": "Marseillan",
          "country_code": "FR",
          "slug": "marseillan",
          "canonical_path": "/cities/fr/marseillan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2995469",
          "name": "Marseille",
          "country_code": "FR",
          "slug": "marseille",
          "canonical_path": "/cities/fr/marseille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284882",
          "name": "Marseille 01",
          "country_code": "FR",
          "slug": "marseille-01",
          "canonical_path": "/cities/fr/marseille-01/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284883",
          "name": "Marseille 02",
          "country_code": "FR",
          "slug": "marseille-02",
          "canonical_path": "/cities/fr/marseille-02/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284884",
          "name": "Marseille 03",
          "country_code": "FR",
          "slug": "marseille-03",
          "canonical_path": "/cities/fr/marseille-03/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284885",
          "name": "Marseille 04",
          "country_code": "FR",
          "slug": "marseille-04",
          "canonical_path": "/cities/fr/marseille-04/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284886",
          "name": "Marseille 05",
          "country_code": "FR",
          "slug": "marseille-05",
          "canonical_path": "/cities/fr/marseille-05/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284887",
          "name": "Marseille 06",
          "country_code": "FR",
          "slug": "marseille-06",
          "canonical_path": "/cities/fr/marseille-06/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284888",
          "name": "Marseille 07",
          "country_code": "FR",
          "slug": "marseille-07",
          "canonical_path": "/cities/fr/marseille-07/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284889",
          "name": "Marseille 08",
          "country_code": "FR",
          "slug": "marseille-08",
          "canonical_path": "/cities/fr/marseille-08/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284891",
          "name": "Marseille 09",
          "country_code": "FR",
          "slug": "marseille-09",
          "canonical_path": "/cities/fr/marseille-09/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284890",
          "name": "Marseille 10",
          "country_code": "FR",
          "slug": "marseille-10",
          "canonical_path": "/cities/fr/marseille-10/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284892",
          "name": "Marseille 11",
          "country_code": "FR",
          "slug": "marseille-11",
          "canonical_path": "/cities/fr/marseille-11/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284893",
          "name": "Marseille 12",
          "country_code": "FR",
          "slug": "marseille-12",
          "canonical_path": "/cities/fr/marseille-12/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284894",
          "name": "Marseille 13",
          "country_code": "FR",
          "slug": "marseille-13",
          "canonical_path": "/cities/fr/marseille-13/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284895",
          "name": "Marseille 14",
          "country_code": "FR",
          "slug": "marseille-14",
          "canonical_path": "/cities/fr/marseille-14/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284896",
          "name": "Marseille 15",
          "country_code": "FR",
          "slug": "marseille-15",
          "canonical_path": "/cities/fr/marseille-15/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:7284897",
          "name": "Marseille 16",
          "country_code": "FR",
          "slug": "marseille-16",
          "canonical_path": "/cities/fr/marseille-16/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34151",
          "name": "Marsillargues",
          "country_code": "FR",
          "slug": "marsillargues",
          "canonical_path": "/cities/fr/marsillargues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33273",
          "name": "Martignas-sur-Jalle",
          "country_code": "FR",
          "slug": "martignas-sur-jalle",
          "canonical_path": "/cities/fr/martignas-sur-jalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13056",
          "name": "Martigues",
          "country_code": "FR",
          "slug": "martigues",
          "canonical_path": "/cities/fr/martigues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2995339",
          "name": "Marvejols",
          "country_code": "FR",
          "slug": "marvejols",
          "canonical_path": "/cities/fr/marvejols/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91377",
          "name": "Massy",
          "country_code": "FR",
          "slug": "massy",
          "canonical_path": "/cities/fr/massy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59392",
          "name": "Maubeuge",
          "country_code": "FR",
          "slug": "maubeuge",
          "canonical_path": "/cities/fr/maubeuge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49244",
          "name": "Mauges-sur-Loire",
          "country_code": "FR",
          "slug": "mauges-sur-loire",
          "canonical_path": "/cities/fr/mauges-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34154",
          "name": "Mauguio",
          "country_code": "FR",
          "slug": "mauguio",
          "canonical_path": "/cities/fr/mauguio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78380",
          "name": "Maule",
          "country_code": "FR",
          "slug": "maule",
          "canonical_path": "/cities/fr/maule/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79079",
          "name": "Mauléon",
          "country_code": "FR",
          "slug": "mauleon",
          "canonical_path": "/cities/fr/mauleon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78383",
          "name": "Maurepas",
          "country_code": "FR",
          "slug": "maurepas",
          "canonical_path": "/cities/fr/maurepas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54357",
          "name": "Maxéville",
          "country_code": "FR",
          "slug": "maxeville",
          "canonical_path": "/cities/fr/maxeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:53147",
          "name": "Mayenne",
          "country_code": "FR",
          "slug": "mayenne",
          "canonical_path": "/cities/fr/mayenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81163",
          "name": "Mazamet",
          "country_code": "FR",
          "slug": "mazamet",
          "canonical_path": "/cities/fr/mazamet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84072",
          "name": "Mazan",
          "country_code": "FR",
          "slug": "mazan",
          "canonical_path": "/cities/fr/mazan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49194",
          "name": "Mazé-Milon",
          "country_code": "FR",
          "slug": "maze-milon",
          "canonical_path": "/cities/fr/maze-milon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62563",
          "name": "Mazingarbe",
          "country_code": "FR",
          "slug": "mazingarbe",
          "canonical_path": "/cities/fr/mazingarbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77284",
          "name": "Meaux",
          "country_code": "FR",
          "slug": "meaux",
          "canonical_path": "/cities/fr/meaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2994768",
          "name": "Megève",
          "country_code": "FR",
          "slug": "megeve",
          "canonical_path": "/cities/fr/megeve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:18141",
          "name": "Mehun-sur-Yèvre",
          "country_code": "FR",
          "slug": "mehun-sur-yevre",
          "canonical_path": "/cities/fr/mehun-sur-yevre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35173",
          "name": "Melesse",
          "country_code": "FR",
          "slug": "melesse",
          "canonical_path": "/cities/fr/melesse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79174",
          "name": "Melle",
          "country_code": "FR",
          "slug": "melle",
          "canonical_path": "/cities/fr/melle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77288",
          "name": "Melun",
          "country_code": "FR",
          "slug": "melun",
          "canonical_path": "/cities/fr/melun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:48095",
          "name": "Mende",
          "country_code": "FR",
          "slug": "mende",
          "canonical_path": "/cities/fr/mende/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91386",
          "name": "Mennecy",
          "country_code": "FR",
          "slug": "mennecy",
          "canonical_path": "/cities/fr/mennecy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06083",
          "name": "Menton",
          "country_code": "FR",
          "slug": "menton",
          "canonical_path": "/cities/fr/menton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95388",
          "name": "Menucourt",
          "country_code": "FR",
          "slug": "menucourt",
          "canonical_path": "/cities/fr/menucourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:41136",
          "name": "Mer",
          "country_code": "FR",
          "slug": "mer",
          "canonical_path": "/cities/fr/mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62570",
          "name": "Méricourt",
          "country_code": "FR",
          "slug": "mericourt",
          "canonical_path": "/cities/fr/mericourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95392",
          "name": "Mériel",
          "country_code": "FR",
          "slug": "meriel",
          "canonical_path": "/cities/fr/meriel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33281",
          "name": "Mérignac",
          "country_code": "FR",
          "slug": "merignac",
          "canonical_path": "/cities/fr/merignac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60395",
          "name": "Méru",
          "country_code": "FR",
          "slug": "meru",
          "canonical_path": "/cities/fr/meru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31341",
          "name": "Merville",
          "country_code": "FR",
          "slug": "merville-31341",
          "canonical_path": "/cities/fr/merville-31341/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59400",
          "name": "Merville",
          "country_code": "FR",
          "slug": "merville-59400",
          "canonical_path": "/cities/fr/merville-59400/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95394",
          "name": "Méry-sur-Oise",
          "country_code": "FR",
          "slug": "mery-sur-oise",
          "canonical_path": "/cities/fr/mery-sur-oise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27198",
          "name": "Mesnils-sur-Iton",
          "country_code": "FR",
          "slug": "mesnils-sur-iton",
          "canonical_path": "/cities/fr/mesnils-sur-iton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57463",
          "name": "Metz",
          "country_code": "FR",
          "slug": "metz",
          "canonical_path": "/cities/fr/metz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92048",
          "name": "Meudon",
          "country_code": "FR",
          "slug": "meudon",
          "canonical_path": "/cities/fr/meudon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78401",
          "name": "Meulan-en-Yvelines",
          "country_code": "FR",
          "slug": "meulan-en-yvelines",
          "canonical_path": "/cities/fr/meulan-en-yvelines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45203",
          "name": "Meung-sur-Loire",
          "country_code": "FR",
          "slug": "meung-sur-loire",
          "canonical_path": "/cities/fr/meung-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01244",
          "name": "Meximieux",
          "country_code": "FR",
          "slug": "meximieux",
          "canonical_path": "/cities/fr/meximieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38229",
          "name": "Meylan",
          "country_code": "FR",
          "slug": "meylan",
          "canonical_path": "/cities/fr/meylan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13060",
          "name": "Meyreuil",
          "country_code": "FR",
          "slug": "meyreuil",
          "canonical_path": "/cities/fr/meyreuil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2994049",
          "name": "Meythet",
          "country_code": "FR",
          "slug": "meythet",
          "canonical_path": "/cities/fr/meythet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69282",
          "name": "Meyzieu",
          "country_code": "FR",
          "slug": "meyzieu",
          "canonical_path": "/cities/fr/meyzieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34157",
          "name": "Mèze",
          "country_code": "FR",
          "slug": "meze",
          "canonical_path": "/cities/fr/meze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14431",
          "name": "Mézidon Vallée d'Auge",
          "country_code": "FR",
          "slug": "mezidon-vallee-d-auge",
          "canonical_path": "/cities/fr/mezidon-vallee-d-auge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:89257",
          "name": "Migennes",
          "country_code": "FR",
          "slug": "migennes",
          "canonical_path": "/cities/fr/migennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86157",
          "name": "Mignaloux-Beauvoir",
          "country_code": "FR",
          "slug": "mignaloux-beauvoir",
          "canonical_path": "/cities/fr/mignaloux-beauvoir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2993918",
          "name": "Migné",
          "country_code": "FR",
          "slug": "migne",
          "canonical_path": "/cities/fr/migne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86158",
          "name": "Migné-Auxances",
          "country_code": "FR",
          "slug": "migne-auxances",
          "canonical_path": "/cities/fr/migne-auxances/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30169",
          "name": "Milhaud",
          "country_code": "FR",
          "slug": "milhaud",
          "canonical_path": "/cities/fr/milhaud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:12145",
          "name": "Millau",
          "country_code": "FR",
          "slug": "millau",
          "canonical_path": "/cities/fr/millau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40184",
          "name": "Mimizan",
          "country_code": "FR",
          "slug": "mimizan",
          "canonical_path": "/cities/fr/mimizan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69283",
          "name": "Mions",
          "country_code": "FR",
          "slug": "mions",
          "canonical_path": "/cities/fr/mions/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33284",
          "name": "Mios",
          "country_code": "FR",
          "slug": "mios",
          "canonical_path": "/cities/fr/mios/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13063",
          "name": "Miramas",
          "country_code": "FR",
          "slug": "miramas",
          "canonical_path": "/cities/fr/miramas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2993728",
          "name": "Mirecourt",
          "country_code": "FR",
          "slug": "mirecourt",
          "canonical_path": "/cities/fr/mirecourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01249",
          "name": "Miribel",
          "country_code": "FR",
          "slug": "miribel",
          "canonical_path": "/cities/fr/miribel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44098",
          "name": "Missillac",
          "country_code": "FR",
          "slug": "missillac",
          "canonical_path": "/cities/fr/missillac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77294",
          "name": "Mitry-Mory",
          "country_code": "FR",
          "slug": "mitry-mory",
          "canonical_path": "/cities/fr/mitry-mory/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29150",
          "name": "Moëlan-sur-Mer",
          "country_code": "FR",
          "slug": "moelan-sur-mer",
          "canonical_path": "/cities/fr/moelan-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38239",
          "name": "Moirans",
          "country_code": "FR",
          "slug": "moirans",
          "canonical_path": "/cities/fr/moirans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:82112",
          "name": "Moissac",
          "country_code": "FR",
          "slug": "moissac",
          "canonical_path": "/cities/fr/moissac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77296",
          "name": "Moissy-Cramayel",
          "country_code": "FR",
          "slug": "moissy-cramayel",
          "canonical_path": "/cities/fr/moissy-cramayel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67300",
          "name": "Molsheim",
          "country_code": "FR",
          "slug": "molsheim",
          "canonical_path": "/cities/fr/molsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79179",
          "name": "Moncoutant-sur-Sèvre",
          "country_code": "FR",
          "slug": "moncoutant-sur-sevre",
          "canonical_path": "/cities/fr/moncoutant-sur-sevre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57474",
          "name": "Mondelange",
          "country_code": "FR",
          "slug": "mondelange",
          "canonical_path": "/cities/fr/mondelange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14437",
          "name": "Mondeville",
          "country_code": "FR",
          "slug": "mondeville",
          "canonical_path": "/cities/fr/mondeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31351",
          "name": "Mondonville",
          "country_code": "FR",
          "slug": "mondonville",
          "canonical_path": "/cities/fr/mondonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2993316",
          "name": "Monéteau",
          "country_code": "FR",
          "slug": "moneteau",
          "canonical_path": "/cities/fr/moneteau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:43137",
          "name": "Monistrol-sur-Loire",
          "country_code": "FR",
          "slug": "monistrol-sur-loire",
          "canonical_path": "/cities/fr/monistrol-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59410",
          "name": "Mons-en-Barœul",
          "country_code": "FR",
          "slug": "mons-en-bar-ul",
          "canonical_path": "/cities/fr/mons-en-bar-ul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40192",
          "name": "Mont-de-Marsan",
          "country_code": "FR",
          "slug": "mont-de-marsan",
          "canonical_path": "/cities/fr/mont-de-marsan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76451",
          "name": "Mont-Saint-Aignan",
          "country_code": "FR",
          "slug": "mont-saint-aignan",
          "canonical_path": "/cities/fr/mont-saint-aignan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54382",
          "name": "Mont-Saint-Martin",
          "country_code": "FR",
          "slug": "mont-saint-martin",
          "canonical_path": "/cities/fr/mont-saint-martin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2993092",
          "name": "Montaigu",
          "country_code": "FR",
          "slug": "montaigu",
          "canonical_path": "/cities/fr/montaigu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85146",
          "name": "Montaigu-Vendée",
          "country_code": "FR",
          "slug": "montaigu-vendee",
          "canonical_path": "/cities/fr/montaigu-vendee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45208",
          "name": "Montargis",
          "country_code": "FR",
          "slug": "montargis",
          "canonical_path": "/cities/fr/montargis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60414",
          "name": "Montataire",
          "country_code": "FR",
          "slug": "montataire",
          "canonical_path": "/cities/fr/montataire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:82121",
          "name": "Montauban",
          "country_code": "FR",
          "slug": "montauban",
          "canonical_path": "/cities/fr/montauban/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35184",
          "name": "Montauban-de-Bretagne",
          "country_code": "FR",
          "slug": "montauban-de-bretagne",
          "canonical_path": "/cities/fr/montauban-de-bretagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83081",
          "name": "Montauroux",
          "country_code": "FR",
          "slug": "montauroux",
          "canonical_path": "/cities/fr/montauroux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2992953",
          "name": "Montbard",
          "country_code": "FR",
          "slug": "montbard",
          "canonical_path": "/cities/fr/montbard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25388",
          "name": "Montbéliard",
          "country_code": "FR",
          "slug": "montbeliard",
          "canonical_path": "/cities/fr/montbeliard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38249",
          "name": "Montbonnot-Saint-Martin",
          "country_code": "FR",
          "slug": "montbonnot-saint-martin",
          "canonical_path": "/cities/fr/montbonnot-saint-martin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42147",
          "name": "Montbrison",
          "country_code": "FR",
          "slug": "montbrison",
          "canonical_path": "/cities/fr/montbrison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71306",
          "name": "Montceau-les-Mines",
          "country_code": "FR",
          "slug": "montceau-les-mines",
          "canonical_path": "/cities/fr/montceau-les-mines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2992838",
          "name": "Montchanin",
          "country_code": "FR",
          "slug": "montchanin",
          "canonical_path": "/cities/fr/montchanin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:80561",
          "name": "Montdidier",
          "country_code": "FR",
          "slug": "montdidier",
          "canonical_path": "/cities/fr/montdidier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:82125",
          "name": "Montech",
          "country_code": "FR",
          "slug": "montech",
          "canonical_path": "/cities/fr/montech/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26198",
          "name": "Montélimar",
          "country_code": "FR",
          "slug": "montelimar",
          "canonical_path": "/cities/fr/montelimar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77305",
          "name": "Montereau-Fault-Yonne",
          "country_code": "FR",
          "slug": "montereau-fault-yonne",
          "canonical_path": "/cities/fr/montereau-fault-yonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78418",
          "name": "Montesson",
          "country_code": "FR",
          "slug": "montesson",
          "canonical_path": "/cities/fr/montesson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84080",
          "name": "Monteux",
          "country_code": "FR",
          "slug": "monteux",
          "canonical_path": "/cities/fr/monteux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77307",
          "name": "Montévrain",
          "country_code": "FR",
          "slug": "montevrain",
          "canonical_path": "/cities/fr/montevrain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93047",
          "name": "Montfermeil",
          "country_code": "FR",
          "slug": "montfermeil",
          "canonical_path": "/cities/fr/montfermeil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35188",
          "name": "Montfort-sur-Meu",
          "country_code": "FR",
          "slug": "montfort-sur-meu",
          "canonical_path": "/cities/fr/montfort-sur-meu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91421",
          "name": "Montgeron",
          "country_code": "FR",
          "slug": "montgeron",
          "canonical_path": "/cities/fr/montgeron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62587",
          "name": "Montigny-en-Gohelle",
          "country_code": "FR",
          "slug": "montigny-en-gohelle",
          "canonical_path": "/cities/fr/montigny-en-gohelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78423",
          "name": "Montigny-le-Bretonneux",
          "country_code": "FR",
          "slug": "montigny-le-bretonneux",
          "canonical_path": "/cities/fr/montigny-le-bretonneux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95424",
          "name": "Montigny-lès-Cormeilles",
          "country_code": "FR",
          "slug": "montigny-les-cormeilles",
          "canonical_path": "/cities/fr/montigny-les-cormeilles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57480",
          "name": "Montigny-lès-Metz",
          "country_code": "FR",
          "slug": "montigny-les-metz",
          "canonical_path": "/cities/fr/montigny-les-metz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76447",
          "name": "Montivilliers",
          "country_code": "FR",
          "slug": "montivilliers",
          "canonical_path": "/cities/fr/montivilliers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91425",
          "name": "Montlhéry",
          "country_code": "FR",
          "slug": "montlhery",
          "canonical_path": "/cities/fr/montlhery/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37156",
          "name": "Montlouis-sur-Loire",
          "country_code": "FR",
          "slug": "montlouis-sur-loire",
          "canonical_path": "/cities/fr/montlouis-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:03185",
          "name": "Montluçon",
          "country_code": "FR",
          "slug": "montlucon",
          "canonical_path": "/cities/fr/montlucon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01262",
          "name": "Montluel",
          "country_code": "FR",
          "slug": "montluel",
          "canonical_path": "/cities/fr/montluel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95427",
          "name": "Montmagny",
          "country_code": "FR",
          "slug": "montmagny",
          "canonical_path": "/cities/fr/montmagny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95428",
          "name": "Montmorency",
          "country_code": "FR",
          "slug": "montmorency",
          "canonical_path": "/cities/fr/montmorency/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86165",
          "name": "Montmorillon",
          "country_code": "FR",
          "slug": "montmorillon",
          "canonical_path": "/cities/fr/montmorillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44103",
          "name": "Montoir-de-Bretagne",
          "country_code": "FR",
          "slug": "montoir-de-bretagne",
          "canonical_path": "/cities/fr/montoir-de-bretagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34172",
          "name": "Montpellier",
          "country_code": "FR",
          "slug": "montpellier",
          "canonical_path": "/cities/fr/montpellier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:24294",
          "name": "Montpon-Ménestérol",
          "country_code": "FR",
          "slug": "montpon-menesterol",
          "canonical_path": "/cities/fr/montpon-menesterol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93048",
          "name": "Montreuil",
          "country_code": "FR",
          "slug": "montreuil",
          "canonical_path": "/cities/fr/montreuil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49214",
          "name": "Montreuil-Juigné",
          "country_code": "FR",
          "slug": "montreuil-juigne",
          "canonical_path": "/cities/fr/montreuil-juigne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49218",
          "name": "Montrevault-sur-Èvre",
          "country_code": "FR",
          "slug": "montrevault-sur-evre",
          "canonical_path": "/cities/fr/montrevault-sur-evre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42149",
          "name": "Montrond-les-Bains",
          "country_code": "FR",
          "slug": "montrond-les-bains",
          "canonical_path": "/cities/fr/montrond-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92049",
          "name": "Montrouge",
          "country_code": "FR",
          "slug": "montrouge",
          "canonical_path": "/cities/fr/montrouge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37159",
          "name": "Monts",
          "country_code": "FR",
          "slug": "monts",
          "canonical_path": "/cities/fr/monts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72071",
          "name": "Montval-sur-Loir",
          "country_code": "FR",
          "slug": "montval-sur-loir",
          "canonical_path": "/cities/fr/montval-sur-loir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91432",
          "name": "Morangis",
          "country_code": "FR",
          "slug": "morangis",
          "canonical_path": "/cities/fr/morangis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40197",
          "name": "Morcenx-la-Nouvelle",
          "country_code": "FR",
          "slug": "morcenx-la-nouvelle",
          "canonical_path": "/cities/fr/morcenx-la-nouvelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35196",
          "name": "Mordelles",
          "country_code": "FR",
          "slug": "mordelles",
          "canonical_path": "/cities/fr/mordelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77316",
          "name": "Moret-Loing-et-Orvanne",
          "country_code": "FR",
          "slug": "moret-loing-et-orvanne",
          "canonical_path": "/cities/fr/moret-loing-et-orvanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2991832",
          "name": "Morez",
          "country_code": "FR",
          "slug": "morez",
          "canonical_path": "/cities/fr/morez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84081",
          "name": "Morières-lès-Avignon",
          "country_code": "FR",
          "slug": "morieres-les-avignon",
          "canonical_path": "/cities/fr/morieres-les-avignon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29151",
          "name": "Morlaix",
          "country_code": "FR",
          "slug": "morlaix",
          "canonical_path": "/cities/fr/morlaix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77317",
          "name": "Mormant",
          "country_code": "FR",
          "slug": "mormant",
          "canonical_path": "/cities/fr/mormant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69141",
          "name": "Mornant",
          "country_code": "FR",
          "slug": "mornant",
          "canonical_path": "/cities/fr/mornant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91434",
          "name": "Morsang-sur-Orge",
          "country_code": "FR",
          "slug": "morsang-sur-orge",
          "canonical_path": "/cities/fr/morsang-sur-orge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85151",
          "name": "Mortagne-sur-Sèvre",
          "country_code": "FR",
          "slug": "mortagne-sur-sevre",
          "canonical_path": "/cities/fr/mortagne-sur-sevre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25411",
          "name": "Morteau",
          "country_code": "FR",
          "slug": "morteau",
          "canonical_path": "/cities/fr/morteau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06084",
          "name": "Mouans-Sartoux",
          "country_code": "FR",
          "slug": "mouans-sartoux",
          "canonical_path": "/cities/fr/mouans-sartoux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06085",
          "name": "Mougins",
          "country_code": "FR",
          "slug": "mougins",
          "canonical_path": "/cities/fr/mougins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64407",
          "name": "Mouguerre",
          "country_code": "FR",
          "slug": "mouguerre",
          "canonical_path": "/cities/fr/mouguerre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85155",
          "name": "Mouilleron-le-Captif",
          "country_code": "FR",
          "slug": "mouilleron-le-captif",
          "canonical_path": "/cities/fr/mouilleron-le-captif/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:03190",
          "name": "Moulins",
          "country_code": "FR",
          "slug": "moulins",
          "canonical_path": "/cities/fr/moulins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57487",
          "name": "Moulins-lès-Metz",
          "country_code": "FR",
          "slug": "moulins-les-metz",
          "canonical_path": "/cities/fr/moulins-les-metz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64410",
          "name": "Mourenx",
          "country_code": "FR",
          "slug": "mourenx",
          "canonical_path": "/cities/fr/mourenx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2991413",
          "name": "Mourmelon-le-Grand",
          "country_code": "FR",
          "slug": "mourmelon-le-grand",
          "canonical_path": "/cities/fr/mourmelon-le-grand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77320",
          "name": "Mouroux",
          "country_code": "FR",
          "slug": "mouroux",
          "canonical_path": "/cities/fr/mouroux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59421",
          "name": "Mouvaux",
          "country_code": "FR",
          "slug": "mouvaux",
          "canonical_path": "/cities/fr/mouvaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60439",
          "name": "Mouy",
          "country_code": "FR",
          "slug": "mouy",
          "canonical_path": "/cities/fr/mouy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57491",
          "name": "Moyeuvre-Grande",
          "country_code": "FR",
          "slug": "moyeuvre-grande",
          "canonical_path": "/cities/fr/moyeuvre-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68224",
          "name": "Mulhouse",
          "country_code": "FR",
          "slug": "mulhouse",
          "canonical_path": "/cities/fr/mulhouse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72213",
          "name": "Mulsanne",
          "country_code": "FR",
          "slug": "mulsanne",
          "canonical_path": "/cities/fr/mulsanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67309",
          "name": "Mundolsheim",
          "country_code": "FR",
          "slug": "mundolsheim",
          "canonical_path": "/cities/fr/mundolsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2991189",
          "name": "Munster",
          "country_code": "FR",
          "slug": "munster",
          "canonical_path": "/cities/fr/munster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31395",
          "name": "Muret",
          "country_code": "FR",
          "slug": "muret",
          "canonical_path": "/cities/fr/muret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49223",
          "name": "Mûrs-Erigné",
          "country_code": "FR",
          "slug": "murs-erigne",
          "canonical_path": "/cities/fr/murs-erigne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67313",
          "name": "Mutzig",
          "country_code": "FR",
          "slug": "mutzig",
          "canonical_path": "/cities/fr/mutzig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56143",
          "name": "Muzillac",
          "country_code": "FR",
          "slug": "muzillac",
          "canonical_path": "/cities/fr/muzillac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86174",
          "name": "Naintré",
          "country_code": "FR",
          "slug": "naintre",
          "canonical_path": "/cities/fr/naintre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54395",
          "name": "Nancy",
          "country_code": "FR",
          "slug": "nancy",
          "canonical_path": "/cities/fr/nancy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77326",
          "name": "Nandy",
          "country_code": "FR",
          "slug": "nandy",
          "canonical_path": "/cities/fr/nandy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77327",
          "name": "Nangis",
          "country_code": "FR",
          "slug": "nangis",
          "canonical_path": "/cities/fr/nangis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83087",
          "name": "Nans-les-Pins",
          "country_code": "FR",
          "slug": "nans-les-pins",
          "canonical_path": "/cities/fr/nans-les-pins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92050",
          "name": "Nanterre",
          "country_code": "FR",
          "slug": "nanterre",
          "canonical_path": "/cities/fr/nanterre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44109",
          "name": "Nantes",
          "country_code": "FR",
          "slug": "nantes",
          "canonical_path": "/cities/fr/nantes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77330",
          "name": "Nanteuil-lès-Meaux",
          "country_code": "FR",
          "slug": "nanteuil-les-meaux",
          "canonical_path": "/cities/fr/nanteuil-les-meaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11262",
          "name": "Narbonne",
          "country_code": "FR",
          "slug": "narbonne",
          "canonical_path": "/cities/fr/narbonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:82134",
          "name": "Nègrepelisse",
          "country_code": "FR",
          "slug": "negrepelisse",
          "canonical_path": "/cities/fr/negrepelisse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77333",
          "name": "Nemours",
          "country_code": "FR",
          "slug": "nemours",
          "canonical_path": "/cities/fr/nemours/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47195",
          "name": "Nérac",
          "country_code": "FR",
          "slug": "nerac",
          "canonical_path": "/cities/fr/nerac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:88321",
          "name": "Neufchâteau",
          "country_code": "FR",
          "slug": "neufchateau",
          "canonical_path": "/cities/fr/neufchateau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2990680",
          "name": "Neufchâtel-en-Bray",
          "country_code": "FR",
          "slug": "neufchatel-en-bray",
          "canonical_path": "/cities/fr/neufchatel-en-bray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93049",
          "name": "Neuilly-Plaisance",
          "country_code": "FR",
          "slug": "neuilly-plaisance",
          "canonical_path": "/cities/fr/neuilly-plaisance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93050",
          "name": "Neuilly-sur-Marne",
          "country_code": "FR",
          "slug": "neuilly-sur-marne",
          "canonical_path": "/cities/fr/neuilly-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92051",
          "name": "Neuilly-sur-Seine",
          "country_code": "FR",
          "slug": "neuilly-sur-seine",
          "canonical_path": "/cities/fr/neuilly-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54397",
          "name": "Neuves-Maisons",
          "country_code": "FR",
          "slug": "neuves-maisons",
          "canonical_path": "/cities/fr/neuves-maisons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86177",
          "name": "Neuville-de-Poitou",
          "country_code": "FR",
          "slug": "neuville-de-poitou",
          "canonical_path": "/cities/fr/neuville-de-poitou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59426",
          "name": "Neuville-en-Ferrain",
          "country_code": "FR",
          "slug": "neuville-en-ferrain",
          "canonical_path": "/cities/fr/neuville-en-ferrain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69143",
          "name": "Neuville-sur-Saône",
          "country_code": "FR",
          "slug": "neuville-sur-saone",
          "canonical_path": "/cities/fr/neuville-sur-saone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:58194",
          "name": "Nevers",
          "country_code": "FR",
          "slug": "nevers",
          "canonical_path": "/cities/fr/nevers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06088",
          "name": "Nice",
          "country_code": "FR",
          "slug": "nice",
          "canonical_path": "/cities/fr/nice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59431",
          "name": "Nieppe",
          "country_code": "FR",
          "slug": "nieppe",
          "canonical_path": "/cities/fr/nieppe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17264",
          "name": "Nieul-sur-Mer",
          "country_code": "FR",
          "slug": "nieul-sur-mer",
          "canonical_path": "/cities/fr/nieul-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2990364",
          "name": "Nilvange",
          "country_code": "FR",
          "slug": "nilvange",
          "canonical_path": "/cities/fr/nilvange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30189",
          "name": "Nîmes",
          "country_code": "FR",
          "slug": "nimes",
          "canonical_path": "/cities/fr/nimes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79191",
          "name": "Niort",
          "country_code": "FR",
          "slug": "niort",
          "canonical_path": "/cities/fr/niort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62617",
          "name": "Nœux-les-Mines",
          "country_code": "FR",
          "slug": "n-ux-les-mines",
          "canonical_path": "/cities/fr/n-ux-les-mines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28280",
          "name": "Nogent-le-Rotrou",
          "country_code": "FR",
          "slug": "nogent-le-rotrou",
          "canonical_path": "/cities/fr/nogent-le-rotrou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94052",
          "name": "Nogent-sur-Marne",
          "country_code": "FR",
          "slug": "nogent-sur-marne",
          "canonical_path": "/cities/fr/nogent-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60463",
          "name": "Nogent-sur-Oise",
          "country_code": "FR",
          "slug": "nogent-sur-oise",
          "canonical_path": "/cities/fr/nogent-sur-oise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:10268",
          "name": "Nogent-sur-Seine",
          "country_code": "FR",
          "slug": "nogent-sur-seine",
          "canonical_path": "/cities/fr/nogent-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77337",
          "name": "Noisiel",
          "country_code": "FR",
          "slug": "noisiel",
          "canonical_path": "/cities/fr/noisiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93051",
          "name": "Noisy-le-Grand",
          "country_code": "FR",
          "slug": "noisy-le-grand",
          "canonical_path": "/cities/fr/noisy-le-grand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78455",
          "name": "Noisy-le-Roi",
          "country_code": "FR",
          "slug": "noisy-le-roi",
          "canonical_path": "/cities/fr/noisy-le-roi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93053",
          "name": "Noisy-le-Sec",
          "country_code": "FR",
          "slug": "noisy-le-sec",
          "canonical_path": "/cities/fr/noisy-le-sec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44110",
          "name": "Nort-sur-Erdre",
          "country_code": "FR",
          "slug": "nort-sur-erdre",
          "canonical_path": "/cities/fr/nort-sur-erdre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76474",
          "name": "Notre-Dame-de-Bondeville",
          "country_code": "FR",
          "slug": "notre-dame-de-bondeville",
          "canonical_path": "/cities/fr/notre-dame-de-bondeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2990056",
          "name": "Notre-Dame-de-Gravenchon",
          "country_code": "FR",
          "slug": "notre-dame-de-gravenchon",
          "canonical_path": "/cities/fr/notre-dame-de-gravenchon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:08328",
          "name": "Nouzonville",
          "country_code": "FR",
          "slug": "nouzonville",
          "canonical_path": "/cities/fr/nouzonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13066",
          "name": "Noves",
          "country_code": "FR",
          "slug": "noves",
          "canonical_path": "/cities/fr/noves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35206",
          "name": "Noyal-Châtillon-sur-Seiche",
          "country_code": "FR",
          "slug": "noyal-chatillon-sur-seiche",
          "canonical_path": "/cities/fr/noyal-chatillon-sur-seiche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35207",
          "name": "Noyal-sur-Vilaine",
          "country_code": "FR",
          "slug": "noyal-sur-vilaine",
          "canonical_path": "/cities/fr/noyal-sur-vilaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49228",
          "name": "Noyant-Villages",
          "country_code": "FR",
          "slug": "noyant-villages",
          "canonical_path": "/cities/fr/noyant-villages/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62624",
          "name": "Noyelles-Godault",
          "country_code": "FR",
          "slug": "noyelles-godault",
          "canonical_path": "/cities/fr/noyelles-godault/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62628",
          "name": "Noyelles-sous-Lens",
          "country_code": "FR",
          "slug": "noyelles-sous-lens",
          "canonical_path": "/cities/fr/noyelles-sous-lens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60471",
          "name": "Noyon",
          "country_code": "FR",
          "slug": "noyon",
          "canonical_path": "/cities/fr/noyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79195",
          "name": "Nueil-les-Aubiers",
          "country_code": "FR",
          "slug": "nueil-les-aubiers",
          "canonical_path": "/cities/fr/nueil-les-aubiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21464",
          "name": "Nuits-Saint-Georges",
          "country_code": "FR",
          "slug": "nuits-saint-georges",
          "canonical_path": "/cities/fr/nuits-saint-georges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26220",
          "name": "Nyons",
          "country_code": "FR",
          "slug": "nyons",
          "canonical_path": "/cities/fr/nyons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67343",
          "name": "Oberhausbergen",
          "country_code": "FR",
          "slug": "oberhausbergen",
          "canonical_path": "/cities/fr/oberhausbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67348",
          "name": "Obernai",
          "country_code": "FR",
          "slug": "obernai",
          "canonical_path": "/cities/fr/obernai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2989755",
          "name": "Octeville",
          "country_code": "FR",
          "slug": "octeville",
          "canonical_path": "/cities/fr/octeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76481",
          "name": "Octeville-sur-Mer",
          "country_code": "FR",
          "slug": "octeville-sur-mer",
          "canonical_path": "/cities/fr/octeville-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62637",
          "name": "Oignies",
          "country_code": "FR",
          "slug": "oignies",
          "canonical_path": "/cities/fr/oignies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2989646",
          "name": "Oissel-sur-Seine",
          "country_code": "FR",
          "slug": "oissel-sur-seine",
          "canonical_path": "/cities/fr/oissel-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45232",
          "name": "Olivet",
          "country_code": "FR",
          "slug": "olivet",
          "canonical_path": "/cities/fr/olivet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91461",
          "name": "Ollainville",
          "country_code": "FR",
          "slug": "ollainville",
          "canonical_path": "/cities/fr/ollainville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83090",
          "name": "Ollioules",
          "country_code": "FR",
          "slug": "ollioules",
          "canonical_path": "/cities/fr/ollioules/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2989572",
          "name": "Olonne-sur-Mer",
          "country_code": "FR",
          "slug": "olonne-sur-mer",
          "canonical_path": "/cities/fr/olonne-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64422",
          "name": "Oloron-Sainte-Marie",
          "country_code": "FR",
          "slug": "oloron-sainte-marie",
          "canonical_path": "/cities/fr/oloron-sainte-marie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49248",
          "name": "Ombrée d'Anjou",
          "country_code": "FR",
          "slug": "ombree-d-anjou",
          "canonical_path": "/cities/fr/ombree-d-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40209",
          "name": "Ondres",
          "country_code": "FR",
          "slug": "ondres",
          "canonical_path": "/cities/fr/ondres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:12176",
          "name": "Onet-le-Château",
          "country_code": "FR",
          "slug": "onet-le-chateau",
          "canonical_path": "/cities/fr/onet-le-chateau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59447",
          "name": "Onnaing",
          "country_code": "FR",
          "slug": "onnaing",
          "canonical_path": "/cities/fr/onnaing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:04143",
          "name": "Oraison",
          "country_code": "FR",
          "slug": "oraison",
          "canonical_path": "/cities/fr/oraison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84087",
          "name": "Orange",
          "country_code": "FR",
          "slug": "orange",
          "canonical_path": "/cities/fr/orange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59449",
          "name": "Orchies",
          "country_code": "FR",
          "slug": "orchies",
          "canonical_path": "/cities/fr/orchies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35208",
          "name": "Orgères",
          "country_code": "FR",
          "slug": "orgeres",
          "canonical_path": "/cities/fr/orgeres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78466",
          "name": "Orgeval",
          "country_code": "FR",
          "slug": "orgeval",
          "canonical_path": "/cities/fr/orgeval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45234",
          "name": "Orléans",
          "country_code": "FR",
          "slug": "orleans",
          "canonical_path": "/cities/fr/orleans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94054",
          "name": "Orly",
          "country_code": "FR",
          "slug": "orly",
          "canonical_path": "/cities/fr/orly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94055",
          "name": "Ormesson-sur-Marne",
          "country_code": "FR",
          "slug": "ormesson-sur-marne",
          "canonical_path": "/cities/fr/ormesson-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01281",
          "name": "Ornex",
          "country_code": "FR",
          "slug": "ornex",
          "canonical_path": "/cities/fr/ornex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91471",
          "name": "Orsay",
          "country_code": "FR",
          "slug": "orsay",
          "canonical_path": "/cities/fr/orsay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64430",
          "name": "Orthez",
          "country_code": "FR",
          "slug": "orthez",
          "canonical_path": "/cities/fr/orthez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44114",
          "name": "Orvault",
          "country_code": "FR",
          "slug": "orvault",
          "canonical_path": "/cities/fr/orvault/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95476",
          "name": "Osny",
          "country_code": "FR",
          "slug": "osny",
          "canonical_path": "/cities/fr/osny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59452",
          "name": "Ostricourt",
          "country_code": "FR",
          "slug": "ostricourt",
          "canonical_path": "/cities/fr/ostricourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67365",
          "name": "Ostwald",
          "country_code": "FR",
          "slug": "ostwald",
          "canonical_path": "/cities/fr/ostwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77349",
          "name": "Othis",
          "country_code": "FR",
          "slug": "othis",
          "canonical_path": "/cities/fr/othis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14488",
          "name": "Ouistreham",
          "country_code": "FR",
          "slug": "ouistreham",
          "canonical_path": "/cities/fr/ouistreham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69149",
          "name": "Oullins",
          "country_code": "FR",
          "slug": "oullins",
          "canonical_path": "/cities/fr/oullins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62643",
          "name": "Outreau",
          "country_code": "FR",
          "slug": "outreau",
          "canonical_path": "/cities/fr/outreau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62645",
          "name": "Oye-Plage",
          "country_code": "FR",
          "slug": "oye-plage",
          "canonical_path": "/cities/fr/oye-plage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01283",
          "name": "Oyonnax",
          "country_code": "FR",
          "slug": "oyonnax",
          "canonical_path": "/cities/fr/oyonnax/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77350",
          "name": "Ozoir-la-Ferrière",
          "country_code": "FR",
          "slug": "ozoir-la-ferriere",
          "canonical_path": "/cities/fr/ozoir-la-ferriere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35210",
          "name": "Pacé",
          "country_code": "FR",
          "slug": "pace",
          "canonical_path": "/cities/fr/pace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27448",
          "name": "Pacy-sur-Eure",
          "country_code": "FR",
          "slug": "pacy-sur-eure",
          "canonical_path": "/cities/fr/pacy-sur-eure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22162",
          "name": "Paimpol",
          "country_code": "FR",
          "slug": "paimpol",
          "canonical_path": "/cities/fr/paimpol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91477",
          "name": "Palaiseau",
          "country_code": "FR",
          "slug": "palaiseau",
          "canonical_path": "/cities/fr/palaiseau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34192",
          "name": "Palavas-les-Flots",
          "country_code": "FR",
          "slug": "palavas-les-flots",
          "canonical_path": "/cities/fr/palavas-les-flots/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:09225",
          "name": "Pamiers",
          "country_code": "FR",
          "slug": "pamiers",
          "canonical_path": "/cities/fr/pamiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87114",
          "name": "Panazol",
          "country_code": "FR",
          "slug": "panazol",
          "canonical_path": "/cities/fr/panazol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93055",
          "name": "Pantin",
          "country_code": "FR",
          "slug": "pantin",
          "canonical_path": "/cities/fr/pantin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71342",
          "name": "Paray-le-Monial",
          "country_code": "FR",
          "slug": "paray-le-monial",
          "canonical_path": "/cities/fr/paray-le-monial/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91479",
          "name": "Paray-Vieille-Poste",
          "country_code": "FR",
          "slug": "paray-vieille-poste",
          "canonical_path": "/cities/fr/paray-vieille-poste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33312",
          "name": "Parempuyre",
          "country_code": "FR",
          "slug": "parempuyre",
          "canonical_path": "/cities/fr/parempuyre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40217",
          "name": "Parentis-en-Born",
          "country_code": "FR",
          "slug": "parentis-en-born",
          "canonical_path": "/cities/fr/parentis-en-born/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72231",
          "name": "Parigné-l'Évêque",
          "country_code": "FR",
          "slug": "parigne-l-eveque",
          "canonical_path": "/cities/fr/parigne-l-eveque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:wikidata:Q90",
          "name": "Paris",
          "country_code": "FR",
          "slug": "paris",
          "canonical_path": "/cities/fr/paris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:6269531",
          "name": "Paris 01 Louvre",
          "country_code": "FR",
          "slug": "paris-01-louvre",
          "canonical_path": "/cities/fr/paris-01-louvre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3030864",
          "name": "Paris 02 Bourse",
          "country_code": "FR",
          "slug": "paris-02-bourse",
          "canonical_path": "/cities/fr/paris-02-bourse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2973189",
          "name": "Paris 03 Temple",
          "country_code": "FR",
          "slug": "paris-03-temple",
          "canonical_path": "/cities/fr/paris-03-temple/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3013131",
          "name": "Paris 04 Hôtel-de-Ville",
          "country_code": "FR",
          "slug": "paris-04-hotel-de-ville",
          "canonical_path": "/cities/fr/paris-04-hotel-de-ville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2988623",
          "name": "Paris 05 Panthéon",
          "country_code": "FR",
          "slug": "paris-05-pantheon",
          "canonical_path": "/cities/fr/paris-05-pantheon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2997000",
          "name": "Paris 06 Luxembourg",
          "country_code": "FR",
          "slug": "paris-06-luxembourg",
          "canonical_path": "/cities/fr/paris-06-luxembourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2988760",
          "name": "Paris 07 Palais-Bourbon",
          "country_code": "FR",
          "slug": "paris-07-palais-bourbon",
          "canonical_path": "/cities/fr/paris-07-palais-bourbon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3020270",
          "name": "Paris 08 Élysée",
          "country_code": "FR",
          "slug": "paris-08-elysee",
          "canonical_path": "/cities/fr/paris-08-elysee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2989487",
          "name": "Paris 09 Opéra",
          "country_code": "FR",
          "slug": "paris-09-opera",
          "canonical_path": "/cities/fr/paris-09-opera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3020216",
          "name": "Paris 10 Entrepôt",
          "country_code": "FR",
          "slug": "paris-10-entrepot",
          "canonical_path": "/cities/fr/paris-10-entrepot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2986082",
          "name": "Paris 11 Popincourt",
          "country_code": "FR",
          "slug": "paris-11-popincourt",
          "canonical_path": "/cities/fr/paris-11-popincourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2983854",
          "name": "Paris 12 Reuilly",
          "country_code": "FR",
          "slug": "paris-12-reuilly",
          "canonical_path": "/cities/fr/paris-12-reuilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3015772",
          "name": "Paris 13 Gobelins",
          "country_code": "FR",
          "slug": "paris-13-gobelins",
          "canonical_path": "/cities/fr/paris-13-gobelins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2989781",
          "name": "Paris 14 Observatoire",
          "country_code": "FR",
          "slug": "paris-14-observatoire",
          "canonical_path": "/cities/fr/paris-14-observatoire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2970479",
          "name": "Paris 15 Vaugirard",
          "country_code": "FR",
          "slug": "paris-15-vaugirard",
          "canonical_path": "/cities/fr/paris-15-vaugirard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2988394",
          "name": "Paris 16 Passy",
          "country_code": "FR",
          "slug": "paris-16-passy",
          "canonical_path": "/cities/fr/paris-16-passy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3034610",
          "name": "Paris 17 Batignolles-Monceau",
          "country_code": "FR",
          "slug": "paris-17-batignolles-monceau",
          "canonical_path": "/cities/fr/paris-17-batignolles-monceau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3029374",
          "name": "Paris 18 Buttes-Montmartre",
          "country_code": "FR",
          "slug": "paris-18-buttes-montmartre",
          "canonical_path": "/cities/fr/paris-18-buttes-montmartre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:3029372",
          "name": "Paris 19 Buttes-Chaumont",
          "country_code": "FR",
          "slug": "paris-19-buttes-chaumont",
          "canonical_path": "/cities/fr/paris-19-buttes-chaumont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2994540",
          "name": "Paris 20 Ménilmontant",
          "country_code": "FR",
          "slug": "paris-20-menilmontant",
          "canonical_path": "/cities/fr/paris-20-menilmontant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95480",
          "name": "Parmain",
          "country_code": "FR",
          "slug": "parmain",
          "canonical_path": "/cities/fr/parmain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79202",
          "name": "Parthenay",
          "country_code": "FR",
          "slug": "parthenay",
          "canonical_path": "/cities/fr/parthenay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74208",
          "name": "Passy",
          "country_code": "FR",
          "slug": "passy",
          "canonical_path": "/cities/fr/passy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:12319236",
          "name": "Pasteur",
          "country_code": "FR",
          "slug": "pasteur",
          "canonical_path": "/cities/fr/pasteur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64445",
          "name": "Pau",
          "country_code": "FR",
          "slug": "pau",
          "canonical_path": "/cities/fr/pau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33314",
          "name": "Pauillac",
          "country_code": "FR",
          "slug": "pauillac",
          "canonical_path": "/cities/fr/pauillac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76495",
          "name": "Pavilly",
          "country_code": "FR",
          "slug": "pavilly",
          "canonical_path": "/cities/fr/pavilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59456",
          "name": "Pecquencourt",
          "country_code": "FR",
          "slug": "pecquencourt",
          "canonical_path": "/cities/fr/pecquencourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06090",
          "name": "Pégomas",
          "country_code": "FR",
          "slug": "pegomas",
          "canonical_path": "/cities/fr/pegomas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13069",
          "name": "Pélissanne",
          "country_code": "FR",
          "slug": "pelissanne",
          "canonical_path": "/cities/fr/pelissanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29158",
          "name": "Penmarch",
          "country_code": "FR",
          "slug": "penmarch",
          "canonical_path": "/cities/fr/penmarch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59457",
          "name": "Pérenchies",
          "country_code": "FR",
          "slug": "perenchies",
          "canonical_path": "/cities/fr/perenchies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17274",
          "name": "Périgny",
          "country_code": "FR",
          "slug": "perigny",
          "canonical_path": "/cities/fr/perigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:24322",
          "name": "Périgueux",
          "country_code": "FR",
          "slug": "perigueux",
          "canonical_path": "/cities/fr/perigueux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84088",
          "name": "Pernes-les-Fontaines",
          "country_code": "FR",
          "slug": "pernes-les-fontaines",
          "canonical_path": "/cities/fr/pernes-les-fontaines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34198",
          "name": "Pérols",
          "country_code": "FR",
          "slug": "perols",
          "canonical_path": "/cities/fr/perols/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01289",
          "name": "Péronnas",
          "country_code": "FR",
          "slug": "peronnas",
          "canonical_path": "/cities/fr/peronnas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:80620",
          "name": "Péronne",
          "country_code": "FR",
          "slug": "peronne",
          "canonical_path": "/cities/fr/peronne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66136",
          "name": "Perpignan",
          "country_code": "FR",
          "slug": "perpignan",
          "canonical_path": "/cities/fr/perpignan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22168",
          "name": "Perros-Guirec",
          "country_code": "FR",
          "slug": "perros-guirec",
          "canonical_path": "/cities/fr/perros-guirec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95487",
          "name": "Persan",
          "country_code": "FR",
          "slug": "persan",
          "canonical_path": "/cities/fr/persan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84089",
          "name": "Pertuis",
          "country_code": "FR",
          "slug": "pertuis",
          "canonical_path": "/cities/fr/pertuis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33318",
          "name": "Pessac",
          "country_code": "FR",
          "slug": "pessac",
          "canonical_path": "/cities/fr/pessac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76618",
          "name": "Petit-Caux",
          "country_code": "FR",
          "slug": "petit-caux",
          "canonical_path": "/cities/fr/petit-caux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76497",
          "name": "Petit-Couronne",
          "country_code": "FR",
          "slug": "petit-couronne",
          "canonical_path": "/cities/fr/petit-couronne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59459",
          "name": "Petite-Forêt",
          "country_code": "FR",
          "slug": "petite-foret",
          "canonical_path": "/cities/fr/petite-foret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57537",
          "name": "Petite-Rosselle",
          "country_code": "FR",
          "slug": "petite-rosselle",
          "canonical_path": "/cities/fr/petite-rosselle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06095",
          "name": "Peymeinade",
          "country_code": "FR",
          "slug": "peymeinade",
          "canonical_path": "/cities/fr/peymeinade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13073",
          "name": "Peypin",
          "country_code": "FR",
          "slug": "peypin",
          "canonical_path": "/cities/fr/peypin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13074",
          "name": "Peyrolles-en-Provence",
          "country_code": "FR",
          "slug": "peyrolles-en-provence",
          "canonical_path": "/cities/fr/peyrolles-en-provence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34199",
          "name": "Pézenas",
          "country_code": "FR",
          "slug": "pezenas",
          "canonical_path": "/cities/fr/pezenas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68256",
          "name": "Pfastatt",
          "country_code": "FR",
          "slug": "pfastatt",
          "canonical_path": "/cities/fr/pfastatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66141",
          "name": "Pia",
          "country_code": "FR",
          "slug": "pia",
          "canonical_path": "/cities/fr/pia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31417",
          "name": "Pibrac",
          "country_code": "FR",
          "slug": "pibrac",
          "canonical_path": "/cities/fr/pibrac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2987314",
          "name": "Pierre-Bénite",
          "country_code": "FR",
          "slug": "pierre-benite",
          "canonical_path": "/cities/fr/pierre-benite/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83091",
          "name": "Pierrefeu-du-Var",
          "country_code": "FR",
          "slug": "pierrefeu-du-var",
          "canonical_path": "/cities/fr/pierrefeu-du-var/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2987271",
          "name": "Pierrefitte-sur-Seine",
          "country_code": "FR",
          "slug": "pierrefitte-sur-seine",
          "canonical_path": "/cities/fr/pierrefitte-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26235",
          "name": "Pierrelatte",
          "country_code": "FR",
          "slug": "pierrelatte",
          "canonical_path": "/cities/fr/pierrelatte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95488",
          "name": "Pierrelaye",
          "country_code": "FR",
          "slug": "pierrelaye",
          "canonical_path": "/cities/fr/pierrelaye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34202",
          "name": "Pignan",
          "country_code": "FR",
          "slug": "pignan",
          "canonical_path": "/cities/fr/pignan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84091",
          "name": "Piolenc",
          "country_code": "FR",
          "slug": "piolenc",
          "canonical_path": "/cities/fr/piolenc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45252",
          "name": "Pithiviers",
          "country_code": "FR",
          "slug": "pithiviers",
          "canonical_path": "/cities/fr/pithiviers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29160",
          "name": "Plabennec",
          "country_code": "FR",
          "slug": "plabennec",
          "canonical_path": "/cities/fr/plabennec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31424",
          "name": "Plaisance-du-Touch",
          "country_code": "FR",
          "slug": "plaisance-du-touch",
          "canonical_path": "/cities/fr/plaisance-du-touch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78490",
          "name": "Plaisir",
          "country_code": "FR",
          "slug": "plaisir",
          "canonical_path": "/cities/fr/plaisir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13075",
          "name": "Plan-de-Cuques",
          "country_code": "FR",
          "slug": "plan-de-cuques",
          "canonical_path": "/cities/fr/plan-de-cuques/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22176",
          "name": "Plédran",
          "country_code": "FR",
          "slug": "pledran",
          "canonical_path": "/cities/fr/pledran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22187",
          "name": "Plérin",
          "country_code": "FR",
          "slug": "plerin",
          "canonical_path": "/cities/fr/plerin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56158",
          "name": "Plescop",
          "country_code": "FR",
          "slug": "plescop",
          "canonical_path": "/cities/fr/plescop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44128",
          "name": "Plessé",
          "country_code": "FR",
          "slug": "plesse",
          "canonical_path": "/cities/fr/plesse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35228",
          "name": "Pleurtuit",
          "country_code": "FR",
          "slug": "pleurtuit",
          "canonical_path": "/cities/fr/pleurtuit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56162",
          "name": "Ploemeur",
          "country_code": "FR",
          "slug": "ploemeur",
          "canonical_path": "/cities/fr/ploemeur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56164",
          "name": "Ploeren",
          "country_code": "FR",
          "slug": "ploeren",
          "canonical_path": "/cities/fr/ploeren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56165",
          "name": "Ploërmel",
          "country_code": "FR",
          "slug": "ploermel",
          "canonical_path": "/cities/fr/ploermel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29174",
          "name": "Plonéour-Lanvern",
          "country_code": "FR",
          "slug": "ploneour-lanvern",
          "canonical_path": "/cities/fr/ploneour-lanvern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56166",
          "name": "Plouay",
          "country_code": "FR",
          "slug": "plouay",
          "canonical_path": "/cities/fr/plouay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29178",
          "name": "Ploudalmézeau",
          "country_code": "FR",
          "slug": "ploudalmezeau",
          "canonical_path": "/cities/fr/ploudalmezeau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22215",
          "name": "Ploufragan",
          "country_code": "FR",
          "slug": "ploufragan",
          "canonical_path": "/cities/fr/ploufragan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29189",
          "name": "Plougastel-Daoulas",
          "country_code": "FR",
          "slug": "plougastel-daoulas",
          "canonical_path": "/cities/fr/plougastel-daoulas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29195",
          "name": "Plouguerneau",
          "country_code": "FR",
          "slug": "plouguerneau",
          "canonical_path": "/cities/fr/plouguerneau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56169",
          "name": "Plouhinec",
          "country_code": "FR",
          "slug": "plouhinec",
          "canonical_path": "/cities/fr/plouhinec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29199",
          "name": "Plouigneau",
          "country_code": "FR",
          "slug": "plouigneau",
          "canonical_path": "/cities/fr/plouigneau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22225",
          "name": "Ploumagoar",
          "country_code": "FR",
          "slug": "ploumagoar",
          "canonical_path": "/cities/fr/ploumagoar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29212",
          "name": "Plouzané",
          "country_code": "FR",
          "slug": "plouzane",
          "canonical_path": "/cities/fr/plouzane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56176",
          "name": "Pluneret",
          "country_code": "FR",
          "slug": "pluneret",
          "canonical_path": "/cities/fr/pluneret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56177",
          "name": "Pluvigner",
          "country_code": "FR",
          "slug": "pluvigner",
          "canonical_path": "/cities/fr/pluvigner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78498",
          "name": "Poissy",
          "country_code": "FR",
          "slug": "poissy",
          "canonical_path": "/cities/fr/poissy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74213",
          "name": "Poisy",
          "country_code": "FR",
          "slug": "poisy",
          "canonical_path": "/cities/fr/poisy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86194",
          "name": "Poitiers",
          "country_code": "FR",
          "slug": "poitiers",
          "canonical_path": "/cities/fr/poitiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66144",
          "name": "Pollestres",
          "country_code": "FR",
          "slug": "pollestres",
          "canonical_path": "/cities/fr/pollestres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2986385",
          "name": "Pompey",
          "country_code": "FR",
          "slug": "pompey",
          "canonical_path": "/cities/fr/pompey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2986335",
          "name": "Pons",
          "country_code": "FR",
          "slug": "pons",
          "canonical_path": "/cities/fr/pons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54431",
          "name": "Pont-à-Mousson",
          "country_code": "FR",
          "slug": "pont-a-mousson",
          "canonical_path": "/cities/fr/pont-a-mousson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27467",
          "name": "Pont-Audemer",
          "country_code": "FR",
          "slug": "pont-audemer",
          "canonical_path": "/cities/fr/pont-audemer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38316",
          "name": "Pont-de-Chéruy",
          "country_code": "FR",
          "slug": "pont-de-cheruy",
          "canonical_path": "/cities/fr/pont-de-cheruy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63284",
          "name": "Pont-du-Château",
          "country_code": "FR",
          "slug": "pont-du-chateau",
          "canonical_path": "/cities/fr/pont-du-chateau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38318",
          "name": "Pont-Évêque",
          "country_code": "FR",
          "slug": "pont-eveque",
          "canonical_path": "/cities/fr/pont-eveque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29220",
          "name": "Pont-l'Abbé",
          "country_code": "FR",
          "slug": "pont-l-abbe",
          "canonical_path": "/cities/fr/pont-l-abbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14514",
          "name": "Pont-l'Évêque",
          "country_code": "FR",
          "slug": "pont-l-eveque",
          "canonical_path": "/cities/fr/pont-l-eveque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30202",
          "name": "Pont-Saint-Esprit",
          "country_code": "FR",
          "slug": "pont-saint-esprit",
          "canonical_path": "/cities/fr/pont-saint-esprit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44130",
          "name": "Pont-Saint-Martin",
          "country_code": "FR",
          "slug": "pont-saint-martin",
          "canonical_path": "/cities/fr/pont-saint-martin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:10297",
          "name": "Pont-Sainte-Marie",
          "country_code": "FR",
          "slug": "pont-sainte-marie",
          "canonical_path": "/cities/fr/pont-sainte-marie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60509",
          "name": "Pont-Sainte-Maxence",
          "country_code": "FR",
          "slug": "pont-sainte-maxence",
          "canonical_path": "/cities/fr/pont-sainte-maxence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25462",
          "name": "Pontarlier",
          "country_code": "FR",
          "slug": "pontarlier",
          "canonical_path": "/cities/fr/pontarlier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77373",
          "name": "Pontault-Combault",
          "country_code": "FR",
          "slug": "pontault-combault",
          "canonical_path": "/cities/fr/pontault-combault/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38314",
          "name": "Pontcharra",
          "country_code": "FR",
          "slug": "pontcharra",
          "canonical_path": "/cities/fr/pontcharra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44129",
          "name": "Pontchâteau",
          "country_code": "FR",
          "slug": "pontchateau",
          "canonical_path": "/cities/fr/pontchateau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2986178",
          "name": "Ponthierry",
          "country_code": "FR",
          "slug": "ponthierry",
          "canonical_path": "/cities/fr/ponthierry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56178",
          "name": "Pontivy",
          "country_code": "FR",
          "slug": "pontivy",
          "canonical_path": "/cities/fr/pontivy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95500",
          "name": "Pontoise",
          "country_code": "FR",
          "slug": "pontoise",
          "canonical_path": "/cities/fr/pontoise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22251",
          "name": "Pordic",
          "country_code": "FR",
          "slug": "pordic",
          "canonical_path": "/cities/fr/pordic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44131",
          "name": "Pornic",
          "country_code": "FR",
          "slug": "pornic",
          "canonical_path": "/cities/fr/pornic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44132",
          "name": "Pornichet",
          "country_code": "FR",
          "slug": "pornichet",
          "canonical_path": "/cities/fr/pornichet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13077",
          "name": "Port-de-Bouc",
          "country_code": "FR",
          "slug": "port-de-bouc",
          "canonical_path": "/cities/fr/port-de-bouc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76476",
          "name": "Port-Jérôme-sur-Seine",
          "country_code": "FR",
          "slug": "port-jerome-sur-seine",
          "canonical_path": "/cities/fr/port-jerome-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11266",
          "name": "Port-la-Nouvelle",
          "country_code": "FR",
          "slug": "port-la-nouvelle",
          "canonical_path": "/cities/fr/port-la-nouvelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13078",
          "name": "Port-Saint-Louis-du-Rhône",
          "country_code": "FR",
          "slug": "port-saint-louis-du-rhone",
          "canonical_path": "/cities/fr/port-saint-louis-du-rhone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26252",
          "name": "Portes-lès-Valence",
          "country_code": "FR",
          "slug": "portes-les-valence",
          "canonical_path": "/cities/fr/portes-les-valence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31433",
          "name": "Portet-sur-Garonne",
          "country_code": "FR",
          "slug": "portet-sur-garonne",
          "canonical_path": "/cities/fr/portet-sur-garonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:2A247",
          "name": "Porto-Vecchio",
          "country_code": "FR",
          "slug": "porto-vecchio",
          "canonical_path": "/cities/fr/porto-vecchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83097",
          "name": "Pourrières",
          "country_code": "FR",
          "slug": "pourrieres",
          "canonical_path": "/cities/fr/pourrieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34213",
          "name": "Poussan",
          "country_code": "FR",
          "slug": "poussan",
          "canonical_path": "/cities/fr/poussan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85182",
          "name": "Pouzauges",
          "country_code": "FR",
          "slug": "pouzauges",
          "canonical_path": "/cities/fr/pouzauges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66149",
          "name": "Prades",
          "country_code": "FR",
          "slug": "prades",
          "canonical_path": "/cities/fr/prades/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34217",
          "name": "Prades-le-Lez",
          "country_code": "FR",
          "slug": "prades-le-lez",
          "canonical_path": "/cities/fr/prades-le-lez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01313",
          "name": "Prévessin-Moëns",
          "country_code": "FR",
          "slug": "prevessin-moens",
          "canonical_path": "/cities/fr/prevessin-moens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:07186",
          "name": "Privas",
          "country_code": "FR",
          "slug": "privas",
          "canonical_path": "/cities/fr/privas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77379",
          "name": "Provins",
          "country_code": "FR",
          "slug": "provins",
          "canonical_path": "/cities/fr/provins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74218",
          "name": "Publier",
          "country_code": "FR",
          "slug": "publier",
          "canonical_path": "/cities/fr/publier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83099",
          "name": "Puget-sur-Argens",
          "country_code": "FR",
          "slug": "puget-sur-argens",
          "canonical_path": "/cities/fr/puget-sur-argens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17291",
          "name": "Puilboreau",
          "country_code": "FR",
          "slug": "puilboreau",
          "canonical_path": "/cities/fr/puilboreau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54439",
          "name": "Pulnoy",
          "country_code": "FR",
          "slug": "pulnoy",
          "canonical_path": "/cities/fr/pulnoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92062",
          "name": "Puteaux",
          "country_code": "FR",
          "slug": "puteaux",
          "canonical_path": "/cities/fr/puteaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2984799",
          "name": "Querqueville",
          "country_code": "FR",
          "slug": "querqueville",
          "canonical_path": "/cities/fr/querqueville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59482",
          "name": "Quesnoy-sur-Deûle",
          "country_code": "FR",
          "slug": "quesnoy-sur-deule",
          "canonical_path": "/cities/fr/quesnoy-sur-deule/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56184",
          "name": "Questembert",
          "country_code": "FR",
          "slug": "questembert",
          "canonical_path": "/cities/fr/questembert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21515",
          "name": "Quetigny",
          "country_code": "FR",
          "slug": "quetigny",
          "canonical_path": "/cities/fr/quetigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56185",
          "name": "Quéven",
          "country_code": "FR",
          "slug": "queven",
          "canonical_path": "/cities/fr/queven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2984741",
          "name": "Quiberon",
          "country_code": "FR",
          "slug": "quiberon",
          "canonical_path": "/cities/fr/quiberon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59484",
          "name": "Quiévrechain",
          "country_code": "FR",
          "slug": "quievrechain",
          "canonical_path": "/cities/fr/quievrechain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29232",
          "name": "Quimper",
          "country_code": "FR",
          "slug": "quimper",
          "canonical_path": "/cities/fr/quimper/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29233",
          "name": "Quimperlé",
          "country_code": "FR",
          "slug": "quimperle",
          "canonical_path": "/cities/fr/quimperle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91514",
          "name": "Quincy-sous-Sénart",
          "country_code": "FR",
          "slug": "quincy-sous-senart",
          "canonical_path": "/cities/fr/quincy-sous-senart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77382",
          "name": "Quincy-Voisins",
          "country_code": "FR",
          "slug": "quincy-voisins",
          "canonical_path": "/cities/fr/quincy-voisins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31445",
          "name": "Quint-Fonsegrives",
          "country_code": "FR",
          "slug": "quint-fonsegrives",
          "canonical_path": "/cities/fr/quint-fonsegrives/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:12306362",
          "name": "Quinze-Vingts",
          "country_code": "FR",
          "slug": "quinze-vingts",
          "canonical_path": "/cities/fr/quinze-vingts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81220",
          "name": "Rabastens",
          "country_code": "FR",
          "slug": "rabastens",
          "canonical_path": "/cities/fr/rabastens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59491",
          "name": "Raismes",
          "country_code": "FR",
          "slug": "raismes",
          "canonical_path": "/cities/fr/raismes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:88367",
          "name": "Rambervillers",
          "country_code": "FR",
          "slug": "rambervillers",
          "canonical_path": "/cities/fr/rambervillers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78517",
          "name": "Rambouillet",
          "country_code": "FR",
          "slug": "rambouillet",
          "canonical_path": "/cities/fr/rambouillet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31446",
          "name": "Ramonville-Saint-Agne",
          "country_code": "FR",
          "slug": "ramonville-saint-agne",
          "canonical_path": "/cities/fr/ramonville-saint-agne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:88372",
          "name": "Raon-l'Étape",
          "country_code": "FR",
          "slug": "raon-l-etape",
          "canonical_path": "/cities/fr/raon-l-etape/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35236",
          "name": "Redon",
          "country_code": "FR",
          "slug": "redon",
          "canonical_path": "/cities/fr/redon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67388",
          "name": "Reichshoffen",
          "country_code": "FR",
          "slug": "reichshoffen",
          "canonical_path": "/cities/fr/reichshoffen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2984135",
          "name": "Reichstett",
          "country_code": "FR",
          "slug": "reichstett",
          "canonical_path": "/cities/fr/reichstett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74220",
          "name": "Reignier-Ésery",
          "country_code": "FR",
          "slug": "reignier-esery",
          "canonical_path": "/cities/fr/reignier-esery/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51454",
          "name": "Reims",
          "country_code": "FR",
          "slug": "reims",
          "canonical_path": "/cities/fr/reims/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:88383",
          "name": "Remiremont",
          "country_code": "FR",
          "slug": "remiremont",
          "canonical_path": "/cities/fr/remiremont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35238",
          "name": "Rennes",
          "country_code": "FR",
          "slug": "rennes",
          "canonical_path": "/cities/fr/rennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:08362",
          "name": "Rethel",
          "country_code": "FR",
          "slug": "rethel",
          "canonical_path": "/cities/fr/rethel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31451",
          "name": "Revel",
          "country_code": "FR",
          "slug": "revel",
          "canonical_path": "/cities/fr/revel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:08363",
          "name": "Revin",
          "country_code": "FR",
          "slug": "revin",
          "canonical_path": "/cities/fr/revin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01322",
          "name": "Reyrieux",
          "country_code": "FR",
          "slug": "reyrieux",
          "canonical_path": "/cities/fr/reyrieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44143",
          "name": "Rezé",
          "country_code": "FR",
          "slug": "reze",
          "canonical_path": "/cities/fr/reze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56193",
          "name": "Riantec",
          "country_code": "FR",
          "slug": "riantec",
          "canonical_path": "/cities/fr/riantec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68271",
          "name": "Riedisheim",
          "country_code": "FR",
          "slug": "riedisheim",
          "canonical_path": "/cities/fr/riedisheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69286",
          "name": "Rillieux-la-Pape",
          "country_code": "FR",
          "slug": "rillieux-la-pape",
          "canonical_path": "/cities/fr/rillieux-la-pape/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63300",
          "name": "Riom",
          "country_code": "FR",
          "slug": "riom",
          "canonical_path": "/cities/fr/riom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42184",
          "name": "Riorges",
          "country_code": "FR",
          "slug": "riorges",
          "canonical_path": "/cities/fr/riorges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91521",
          "name": "Ris-Orangis",
          "country_code": "FR",
          "slug": "ris-orangis",
          "canonical_path": "/cities/fr/ris-orangis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42186",
          "name": "Rive-de-Gier",
          "country_code": "FR",
          "slug": "rive-de-gier",
          "canonical_path": "/cities/fr/rive-de-gier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38337",
          "name": "Rives",
          "country_code": "FR",
          "slug": "rives",
          "canonical_path": "/cities/fr/rives/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49377",
          "name": "Rives-du-Loir-en-Anjou",
          "country_code": "FR",
          "slug": "rives-du-loir-en-anjou",
          "canonical_path": "/cities/fr/rives-du-loir-en-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66164",
          "name": "Rivesaltes",
          "country_code": "FR",
          "slug": "rivesaltes",
          "canonical_path": "/cities/fr/rivesaltes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68278",
          "name": "Rixheim",
          "country_code": "FR",
          "slug": "rixheim",
          "canonical_path": "/cities/fr/rixheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42187",
          "name": "Roanne",
          "country_code": "FR",
          "slug": "roanne",
          "canonical_path": "/cities/fr/roanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83106",
          "name": "Rocbaron",
          "country_code": "FR",
          "slug": "rocbaron",
          "canonical_path": "/cities/fr/rocbaron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42189",
          "name": "Roche-la-Molière",
          "country_code": "FR",
          "slug": "roche-la-moliere",
          "canonical_path": "/cities/fr/roche-la-moliere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17299",
          "name": "Rochefort",
          "country_code": "FR",
          "slug": "rochefort",
          "canonical_path": "/cities/fr/rochefort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30217",
          "name": "Rochefort-du-Gard",
          "country_code": "FR",
          "slug": "rochefort-du-gard",
          "canonical_path": "/cities/fr/rochefort-du-gard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:12202",
          "name": "Rodez",
          "country_code": "FR",
          "slug": "rodez",
          "canonical_path": "/cities/fr/rodez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13081",
          "name": "Rognac",
          "country_code": "FR",
          "slug": "rognac",
          "canonical_path": "/cities/fr/rognac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77390",
          "name": "Roissy-en-Brie",
          "country_code": "FR",
          "slug": "roissy-en-brie",
          "canonical_path": "/cities/fr/roissy-en-brie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63307",
          "name": "Romagnat",
          "country_code": "FR",
          "slug": "romagnat",
          "canonical_path": "/cities/fr/romagnat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93063",
          "name": "Romainville",
          "country_code": "FR",
          "slug": "romainville",
          "canonical_path": "/cities/fr/romainville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26281",
          "name": "Romans-sur-Isère",
          "country_code": "FR",
          "slug": "romans-sur-isere",
          "canonical_path": "/cities/fr/romans-sur-isere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57591",
          "name": "Rombas",
          "country_code": "FR",
          "slug": "rombas",
          "canonical_path": "/cities/fr/rombas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:10323",
          "name": "Romilly-sur-Seine",
          "country_code": "FR",
          "slug": "romilly-sur-seine",
          "canonical_path": "/cities/fr/romilly-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:41194",
          "name": "Romorantin-Lanthenay",
          "country_code": "FR",
          "slug": "romorantin-lanthenay",
          "canonical_path": "/cities/fr/romorantin-lanthenay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59507",
          "name": "Ronchin",
          "country_code": "FR",
          "slug": "ronchin",
          "canonical_path": "/cities/fr/ronchin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59508",
          "name": "Roncq",
          "country_code": "FR",
          "slug": "roncq",
          "canonical_path": "/cities/fr/roncq/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59509",
          "name": "Roost-Warendin",
          "country_code": "FR",
          "slug": "roost-warendin",
          "canonical_path": "/cities/fr/roost-warendin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06104",
          "name": "Roquebrune-Cap-Martin",
          "country_code": "FR",
          "slug": "roquebrune-cap-martin",
          "canonical_path": "/cities/fr/roquebrune-cap-martin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83107",
          "name": "Roquebrune-sur-Argens",
          "country_code": "FR",
          "slug": "roquebrune-sur-argens",
          "canonical_path": "/cities/fr/roquebrune-sur-argens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13085",
          "name": "Roquefort-la-Bédoule",
          "country_code": "FR",
          "slug": "roquefort-la-bedoule",
          "canonical_path": "/cities/fr/roquefort-la-bedoule/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06105",
          "name": "Roquefort-les-Pins",
          "country_code": "FR",
          "slug": "roquefort-les-pins",
          "canonical_path": "/cities/fr/roquefort-les-pins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30221",
          "name": "Roquemaure",
          "country_code": "FR",
          "slug": "roquemaure",
          "canonical_path": "/cities/fr/roquemaure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31458",
          "name": "Roques",
          "country_code": "FR",
          "slug": "roques",
          "canonical_path": "/cities/fr/roques/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13086",
          "name": "Roquevaire",
          "country_code": "FR",
          "slug": "roquevaire",
          "canonical_path": "/cities/fr/roquevaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67411",
          "name": "Rosheim",
          "country_code": "FR",
          "slug": "rosheim",
          "canonical_path": "/cities/fr/rosheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93064",
          "name": "Rosny-sous-Bois",
          "country_code": "FR",
          "slug": "rosny-sous-bois",
          "canonical_path": "/cities/fr/rosny-sous-bois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78531",
          "name": "Rosny-sur-Seine",
          "country_code": "FR",
          "slug": "rosny-sur-seine",
          "canonical_path": "/cities/fr/rosny-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29241",
          "name": "Rosporden",
          "country_code": "FR",
          "slug": "rosporden",
          "canonical_path": "/cities/fr/rosporden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59512",
          "name": "Roubaix",
          "country_code": "FR",
          "slug": "roubaix",
          "canonical_path": "/cities/fr/roubaix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76540",
          "name": "Rouen",
          "country_code": "FR",
          "slug": "rouen",
          "canonical_path": "/cities/fr/rouen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13087",
          "name": "Rousset",
          "country_code": "FR",
          "slug": "rousset",
          "canonical_path": "/cities/fr/rousset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38344",
          "name": "Roussillon",
          "country_code": "FR",
          "slug": "roussillon",
          "canonical_path": "/cities/fr/roussillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62724",
          "name": "Rouvroy",
          "country_code": "FR",
          "slug": "rouvroy",
          "canonical_path": "/cities/fr/rouvroy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17306",
          "name": "Royan",
          "country_code": "FR",
          "slug": "royan",
          "canonical_path": "/cities/fr/royan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:80685",
          "name": "Roye",
          "country_code": "FR",
          "slug": "roye",
          "canonical_path": "/cities/fr/roye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92063",
          "name": "Rueil-Malmaison",
          "country_code": "FR",
          "slug": "rueil-malmaison",
          "canonical_path": "/cities/fr/rueil-malmaison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:16291",
          "name": "Ruelle-sur-Touvre",
          "country_code": "FR",
          "slug": "ruelle-sur-touvre",
          "canonical_path": "/cities/fr/ruelle-sur-touvre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74225",
          "name": "Rumilly",
          "country_code": "FR",
          "slug": "rumilly",
          "canonical_path": "/cities/fr/rumilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94065",
          "name": "Rungis",
          "country_code": "FR",
          "slug": "rungis",
          "canonical_path": "/cities/fr/rungis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:72264",
          "name": "Sablé-sur-Sarthe",
          "country_code": "FR",
          "slug": "sable-sur-sarthe",
          "canonical_path": "/cities/fr/sable-sur-sarthe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59524",
          "name": "Sainghin-en-Weppes",
          "country_code": "FR",
          "slug": "sainghin-en-weppes",
          "canonical_path": "/cities/fr/sainghin-en-weppes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62737",
          "name": "Sains-en-Gohelle",
          "country_code": "FR",
          "slug": "sains-en-gohelle",
          "canonical_path": "/cities/fr/sains-en-gohelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:12208",
          "name": "Saint-Affrique",
          "country_code": "FR",
          "slug": "saint-affrique",
          "canonical_path": "/cities/fr/saint-affrique/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31467",
          "name": "Saint-Alban",
          "country_code": "FR",
          "slug": "saint-alban",
          "canonical_path": "/cities/fr/saint-alban/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73222",
          "name": "Saint-Alban-Leysse",
          "country_code": "FR",
          "slug": "saint-alban-leysse",
          "canonical_path": "/cities/fr/saint-alban-leysse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59526",
          "name": "Saint-Amand-les-Eaux",
          "country_code": "FR",
          "slug": "saint-amand-les-eaux",
          "canonical_path": "/cities/fr/saint-amand-les-eaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:18197",
          "name": "Saint-Amand-Montrond",
          "country_code": "FR",
          "slug": "saint-amand-montrond",
          "canonical_path": "/cities/fr/saint-amand-montrond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33366",
          "name": "Saint-André-de-Cubzac",
          "country_code": "FR",
          "slug": "saint-andre-de-cubzac",
          "canonical_path": "/cities/fr/saint-andre-de-cubzac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06114",
          "name": "Saint-André-de-la-Roche",
          "country_code": "FR",
          "slug": "saint-andre-de-la-roche",
          "canonical_path": "/cities/fr/saint-andre-de-la-roche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34239",
          "name": "Saint-André-de-Sangonis",
          "country_code": "FR",
          "slug": "saint-andre-de-sangonis",
          "canonical_path": "/cities/fr/saint-andre-de-sangonis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44151",
          "name": "Saint-André-des-Eaux",
          "country_code": "FR",
          "slug": "saint-andre-des-eaux",
          "canonical_path": "/cities/fr/saint-andre-des-eaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:10333",
          "name": "Saint-André-les-Vergers",
          "country_code": "FR",
          "slug": "saint-andre-les-vergers",
          "canonical_path": "/cities/fr/saint-andre-les-vergers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59527",
          "name": "Saint-André-lez-Lille",
          "country_code": "FR",
          "slug": "saint-andre-lez-lille",
          "canonical_path": "/cities/fr/saint-andre-lez-lille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21540",
          "name": "Saint-Apollinaire",
          "country_code": "FR",
          "slug": "saint-apollinaire",
          "canonical_path": "/cities/fr/saint-apollinaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78537",
          "name": "Saint-Arnoult-en-Yvelines",
          "country_code": "FR",
          "slug": "saint-arnoult-en-yvelines",
          "canonical_path": "/cities/fr/saint-arnoult-en-yvelines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:24372",
          "name": "Saint-Astier",
          "country_code": "FR",
          "slug": "saint-astier",
          "canonical_path": "/cities/fr/saint-astier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33376",
          "name": "Saint-Aubin-de-Médoc",
          "country_code": "FR",
          "slug": "saint-aubin-de-medoc",
          "canonical_path": "/cities/fr/saint-aubin-de-medoc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76561",
          "name": "Saint-Aubin-lès-Elbeuf",
          "country_code": "FR",
          "slug": "saint-aubin-les-elbeuf",
          "canonical_path": "/cities/fr/saint-aubin-les-elbeuf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56206",
          "name": "Saint-Avé",
          "country_code": "FR",
          "slug": "saint-ave",
          "canonical_path": "/cities/fr/saint-ave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37208",
          "name": "Saint-Avertin",
          "country_code": "FR",
          "slug": "saint-avertin",
          "canonical_path": "/cities/fr/saint-avertin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57606",
          "name": "Saint-Avold",
          "country_code": "FR",
          "slug": "saint-avold",
          "canonical_path": "/cities/fr/saint-avold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49267",
          "name": "Saint-Barthélemy-d'Anjou",
          "country_code": "FR",
          "slug": "saint-barthelemy-d-anjou",
          "canonical_path": "/cities/fr/saint-barthelemy-d-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86214",
          "name": "Saint-Benoît",
          "country_code": "FR",
          "slug": "saint-benoit",
          "canonical_path": "/cities/fr/saint-benoit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:53201",
          "name": "Saint-Berthevin",
          "country_code": "FR",
          "slug": "saint-berthevin",
          "canonical_path": "/cities/fr/saint-berthevin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69287",
          "name": "Saint-Bonnet-de-Mure",
          "country_code": "FR",
          "slug": "saint-bonnet-de-mure",
          "canonical_path": "/cities/fr/saint-bonnet-de-mure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44154",
          "name": "Saint-Brevin-les-Pins",
          "country_code": "FR",
          "slug": "saint-brevin-les-pins",
          "canonical_path": "/cities/fr/saint-brevin-les-pins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95539",
          "name": "Saint-Brice-sous-Forêt",
          "country_code": "FR",
          "slug": "saint-brice-sous-foret",
          "canonical_path": "/cities/fr/saint-brice-sous-foret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22278",
          "name": "Saint-Brieuc",
          "country_code": "FR",
          "slug": "saint-brieuc",
          "canonical_path": "/cities/fr/saint-brieuc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13091",
          "name": "Saint-Cannat",
          "country_code": "FR",
          "slug": "saint-cannat",
          "canonical_path": "/cities/fr/saint-cannat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13092",
          "name": "Saint-Chamas",
          "country_code": "FR",
          "slug": "saint-chamas",
          "canonical_path": "/cities/fr/saint-chamas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42207",
          "name": "Saint-Chamond",
          "country_code": "FR",
          "slug": "saint-chamond",
          "canonical_path": "/cities/fr/saint-chamond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91540",
          "name": "Saint-Chéron",
          "country_code": "FR",
          "slug": "saint-cheron",
          "canonical_path": "/cities/fr/saint-cheron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2981173",
          "name": "Saint-Christol-les-Alès",
          "country_code": "FR",
          "slug": "saint-christol-les-ales",
          "canonical_path": "/cities/fr/saint-christol-les-ales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30243",
          "name": "Saint-Christol-lez-Alès",
          "country_code": "FR",
          "slug": "saint-christol-lez-ales",
          "canonical_path": "/cities/fr/saint-christol-lez-ales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:39478",
          "name": "Saint-Claude",
          "country_code": "FR",
          "slug": "saint-claude",
          "canonical_path": "/cities/fr/saint-claude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34247",
          "name": "Saint-Clément-de-Rivière",
          "country_code": "FR",
          "slug": "saint-clement-de-riviere",
          "canonical_path": "/cities/fr/saint-clement-de-riviere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92064",
          "name": "Saint-Cloud",
          "country_code": "FR",
          "slug": "saint-cloud",
          "canonical_path": "/cities/fr/saint-cloud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66171",
          "name": "Saint-Cyprien",
          "country_code": "FR",
          "slug": "saint-cyprien",
          "canonical_path": "/cities/fr/saint-cyprien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2980976",
          "name": "Saint-Cyprien-Plage",
          "country_code": "FR",
          "slug": "saint-cyprien-plage",
          "canonical_path": "/cities/fr/saint-cyprien-plage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69191",
          "name": "Saint-Cyr-au-Mont-d'Or",
          "country_code": "FR",
          "slug": "saint-cyr-au-mont-d-or",
          "canonical_path": "/cities/fr/saint-cyr-au-mont-d-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78545",
          "name": "Saint-Cyr-l'École",
          "country_code": "FR",
          "slug": "saint-cyr-l-ecole",
          "canonical_path": "/cities/fr/saint-cyr-l-ecole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37214",
          "name": "Saint-Cyr-sur-Loire",
          "country_code": "FR",
          "slug": "saint-cyr-sur-loire",
          "canonical_path": "/cities/fr/saint-cyr-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83112",
          "name": "Saint-Cyr-sur-Mer",
          "country_code": "FR",
          "slug": "saint-cyr-sur-mer",
          "canonical_path": "/cities/fr/saint-cyr-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93066",
          "name": "Saint-Denis",
          "country_code": "FR",
          "slug": "saint-denis",
          "canonical_path": "/cities/fr/saint-denis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33393",
          "name": "Saint-Denis-de-Pile",
          "country_code": "FR",
          "slug": "saint-denis-de-pile",
          "canonical_path": "/cities/fr/saint-denis-de-pile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45274",
          "name": "Saint-Denis-en-Val",
          "country_code": "FR",
          "slug": "saint-denis-en-val",
          "canonical_path": "/cities/fr/saint-denis-en-val/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01344",
          "name": "Saint-Denis-lès-Bourg",
          "country_code": "FR",
          "slug": "saint-denis-les-bourg",
          "canonical_path": "/cities/fr/saint-denis-les-bourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69194",
          "name": "Saint-Didier-au-Mont-d'Or",
          "country_code": "FR",
          "slug": "saint-didier-au-mont-d-or",
          "canonical_path": "/cities/fr/saint-didier-au-mont-d-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:88413",
          "name": "Saint-Dié-des-Vosges",
          "country_code": "FR",
          "slug": "saint-die-des-vosges",
          "canonical_path": "/cities/fr/saint-die-des-vosges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:52448",
          "name": "Saint-Dizier",
          "country_code": "FR",
          "slug": "saint-dizier",
          "canonical_path": "/cities/fr/saint-dizier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:18205",
          "name": "Saint-Doulchard",
          "country_code": "FR",
          "slug": "saint-doulchard",
          "canonical_path": "/cities/fr/saint-doulchard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38382",
          "name": "Saint-Égrève",
          "country_code": "FR",
          "slug": "saint-egreve",
          "canonical_path": "/cities/fr/saint-egreve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66172",
          "name": "Saint-Estève",
          "country_code": "FR",
          "slug": "saint-esteve",
          "canonical_path": "/cities/fr/saint-esteve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42218",
          "name": "Saint-Étienne",
          "country_code": "FR",
          "slug": "saint-etienne",
          "canonical_path": "/cities/fr/saint-etienne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62746",
          "name": "Saint-Étienne-au-Mont",
          "country_code": "FR",
          "slug": "saint-etienne-au-mont",
          "canonical_path": "/cities/fr/saint-etienne-au-mont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44158",
          "name": "Saint-Étienne-de-Montluc",
          "country_code": "FR",
          "slug": "saint-etienne-de-montluc",
          "canonical_path": "/cities/fr/saint-etienne-de-montluc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76575",
          "name": "Saint-Étienne-du-Rouvray",
          "country_code": "FR",
          "slug": "saint-etienne-du-rouvray",
          "canonical_path": "/cities/fr/saint-etienne-du-rouvray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77407",
          "name": "Saint-Fargeau-Ponthierry",
          "country_code": "FR",
          "slug": "saint-fargeau-ponthierry",
          "canonical_path": "/cities/fr/saint-fargeau-ponthierry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:18207",
          "name": "Saint-Florent-sur-Cher",
          "country_code": "FR",
          "slug": "saint-florent-sur-cher",
          "canonical_path": "/cities/fr/saint-florent-sur-cher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2980111",
          "name": "Saint-Florentin",
          "country_code": "FR",
          "slug": "saint-florentin",
          "canonical_path": "/cities/fr/saint-florentin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:15187",
          "name": "Saint-Flour",
          "country_code": "FR",
          "slug": "saint-flour",
          "canonical_path": "/cities/fr/saint-flour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69199",
          "name": "Saint-Fons",
          "country_code": "FR",
          "slug": "saint-fons",
          "canonical_path": "/cities/fr/saint-fons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2980080",
          "name": "Saint-François",
          "country_code": "FR",
          "slug": "saint-francois",
          "canonical_path": "/cities/fr/saint-francois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42222",
          "name": "Saint-Galmier",
          "country_code": "FR",
          "slug": "saint-galmier",
          "canonical_path": "/cities/fr/saint-galmier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31483",
          "name": "Saint-Gaudens",
          "country_code": "FR",
          "slug": "saint-gaudens",
          "canonical_path": "/cities/fr/saint-gaudens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34255",
          "name": "Saint-Gély-du-Fesc",
          "country_code": "FR",
          "slug": "saint-gely-du-fesc",
          "canonical_path": "/cities/fr/saint-gely-du-fesc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42223",
          "name": "Saint-Genest-Lerpt",
          "country_code": "FR",
          "slug": "saint-genest-lerpt",
          "canonical_path": "/cities/fr/saint-genest-lerpt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69204",
          "name": "Saint-Genis-Laval",
          "country_code": "FR",
          "slug": "saint-genis-laval",
          "canonical_path": "/cities/fr/saint-genis-laval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69205",
          "name": "Saint-Genis-les-Ollières",
          "country_code": "FR",
          "slug": "saint-genis-les-ollieres",
          "canonical_path": "/cities/fr/saint-genis-les-ollieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01354",
          "name": "Saint-Genis-Pouilly",
          "country_code": "FR",
          "slug": "saint-genis-pouilly",
          "canonical_path": "/cities/fr/saint-genis-pouilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34259",
          "name": "Saint-Georges-d'Orques",
          "country_code": "FR",
          "slug": "saint-georges-d-orques",
          "canonical_path": "/cities/fr/saint-georges-d-orques/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17333",
          "name": "Saint-Georges-de-Didonne",
          "country_code": "FR",
          "slug": "saint-georges-de-didonne",
          "canonical_path": "/cities/fr/saint-georges-de-didonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2979790",
          "name": "Saint-Germain-du-Puy",
          "country_code": "FR",
          "slug": "saint-germain-du-puy",
          "canonical_path": "/cities/fr/saint-germain-du-puy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78551",
          "name": "Saint-Germain-en-Laye",
          "country_code": "FR",
          "slug": "saint-germain-en-laye",
          "canonical_path": "/cities/fr/saint-germain-en-laye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91552",
          "name": "Saint-Germain-lès-Arpajon",
          "country_code": "FR",
          "slug": "saint-germain-les-arpajon",
          "canonical_path": "/cities/fr/saint-germain-les-arpajon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91553",
          "name": "Saint-Germain-lès-Corbeil",
          "country_code": "FR",
          "slug": "saint-germain-les-corbeil",
          "canonical_path": "/cities/fr/saint-germain-les-corbeil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74236",
          "name": "Saint-Gervais-les-Bains",
          "country_code": "FR",
          "slug": "saint-gervais-les-bains",
          "canonical_path": "/cities/fr/saint-gervais-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30258",
          "name": "Saint-Gilles",
          "country_code": "FR",
          "slug": "saint-gilles-30258",
          "canonical_path": "/cities/fr/saint-gilles-30258/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35275",
          "name": "Saint-Gilles",
          "country_code": "FR",
          "slug": "saint-gilles-35275",
          "canonical_path": "/cities/fr/saint-gilles-35275/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85222",
          "name": "Saint-Gilles-Croix-de-Vie",
          "country_code": "FR",
          "slug": "saint-gilles-croix-de-vie",
          "canonical_path": "/cities/fr/saint-gilles-croix-de-vie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:09261",
          "name": "Saint-Girons",
          "country_code": "FR",
          "slug": "saint-girons",
          "canonical_path": "/cities/fr/saint-girons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95555",
          "name": "Saint-Gratien",
          "country_code": "FR",
          "slug": "saint-gratien",
          "canonical_path": "/cities/fr/saint-gratien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35278",
          "name": "Saint-Grégoire",
          "country_code": "FR",
          "slug": "saint-gregoire",
          "canonical_path": "/cities/fr/saint-gregoire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44162",
          "name": "Saint-Herblain",
          "country_code": "FR",
          "slug": "saint-herblain",
          "canonical_path": "/cities/fr/saint-herblain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2979539",
          "name": "Saint-Hilaire de Talmont",
          "country_code": "FR",
          "slug": "saint-hilaire-de-talmont",
          "canonical_path": "/cities/fr/saint-hilaire-de-talmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85226",
          "name": "Saint-Hilaire-de-Riez",
          "country_code": "FR",
          "slug": "saint-hilaire-de-riez",
          "canonical_path": "/cities/fr/saint-hilaire-de-riez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50484",
          "name": "Saint-Hilaire-du-Harcouët",
          "country_code": "FR",
          "slug": "saint-hilaire-du-harcouet",
          "canonical_path": "/cities/fr/saint-hilaire-du-harcouet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38397",
          "name": "Saint-Ismier",
          "country_code": "FR",
          "slug": "saint-ismier",
          "canonical_path": "/cities/fr/saint-ismier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35281",
          "name": "Saint-Jacques-de-la-Lande",
          "country_code": "FR",
          "slug": "saint-jacques-de-la-lande",
          "canonical_path": "/cities/fr/saint-jacques-de-la-lande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50487",
          "name": "Saint-James",
          "country_code": "FR",
          "slug": "saint-james",
          "canonical_path": "/cities/fr/saint-james/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31488",
          "name": "Saint-Jean",
          "country_code": "FR",
          "slug": "saint-jean",
          "canonical_path": "/cities/fr/saint-jean/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42237",
          "name": "Saint-Jean-Bonnefonds",
          "country_code": "FR",
          "slug": "saint-jean-bonnefonds",
          "canonical_path": "/cities/fr/saint-jean-bonnefonds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17347",
          "name": "Saint-Jean-d'Angély",
          "country_code": "FR",
          "slug": "saint-jean-d-angely",
          "canonical_path": "/cities/fr/saint-jean-d-angely/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33422",
          "name": "Saint-Jean-d'Illac",
          "country_code": "FR",
          "slug": "saint-jean-d-illac",
          "canonical_path": "/cities/fr/saint-jean-d-illac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44166",
          "name": "Saint-Jean-de-Boiseau",
          "country_code": "FR",
          "slug": "saint-jean-de-boiseau",
          "canonical_path": "/cities/fr/saint-jean-de-boiseau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45284",
          "name": "Saint-Jean-de-Braye",
          "country_code": "FR",
          "slug": "saint-jean-de-braye",
          "canonical_path": "/cities/fr/saint-jean-de-braye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45285",
          "name": "Saint-Jean-de-la-Ruelle",
          "country_code": "FR",
          "slug": "saint-jean-de-la-ruelle",
          "canonical_path": "/cities/fr/saint-jean-de-la-ruelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64483",
          "name": "Saint-Jean-de-Luz",
          "country_code": "FR",
          "slug": "saint-jean-de-luz",
          "canonical_path": "/cities/fr/saint-jean-de-luz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73248",
          "name": "Saint-Jean-de-Maurienne",
          "country_code": "FR",
          "slug": "saint-jean-de-maurienne",
          "canonical_path": "/cities/fr/saint-jean-de-maurienne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85234",
          "name": "Saint-Jean-de-Monts",
          "country_code": "FR",
          "slug": "saint-jean-de-monts",
          "canonical_path": "/cities/fr/saint-jean-de-monts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34270",
          "name": "Saint-Jean-de-Védas",
          "country_code": "FR",
          "slug": "saint-jean-de-vedas",
          "canonical_path": "/cities/fr/saint-jean-de-vedas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45286",
          "name": "Saint-Jean-le-Blanc",
          "country_code": "FR",
          "slug": "saint-jean-le-blanc",
          "canonical_path": "/cities/fr/saint-jean-le-blanc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74242",
          "name": "Saint-Jorioz",
          "country_code": "FR",
          "slug": "saint-jorioz",
          "canonical_path": "/cities/fr/saint-jorioz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31490",
          "name": "Saint-Jory",
          "country_code": "FR",
          "slug": "saint-jory",
          "canonical_path": "/cities/fr/saint-jory/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81257",
          "name": "Saint-Juéry",
          "country_code": "FR",
          "slug": "saint-juery",
          "canonical_path": "/cities/fr/saint-juery/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44169",
          "name": "Saint-Julien-de-Concelles",
          "country_code": "FR",
          "slug": "saint-julien-de-concelles",
          "canonical_path": "/cities/fr/saint-julien-de-concelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74243",
          "name": "Saint-Julien-en-Genevois",
          "country_code": "FR",
          "slug": "saint-julien-en-genevois",
          "canonical_path": "/cities/fr/saint-julien-en-genevois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:10343",
          "name": "Saint-Julien-les-Villas",
          "country_code": "FR",
          "slug": "saint-julien-les-villas",
          "canonical_path": "/cities/fr/saint-julien-les-villas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87154",
          "name": "Saint-Junien",
          "country_code": "FR",
          "slug": "saint-junien",
          "canonical_path": "/cities/fr/saint-junien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60581",
          "name": "Saint-Just-en-Chaussée",
          "country_code": "FR",
          "slug": "saint-just-en-chaussee",
          "canonical_path": "/cities/fr/saint-just-en-chaussee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42279",
          "name": "Saint-Just-Saint-Rambert",
          "country_code": "FR",
          "slug": "saint-just-saint-rambert",
          "canonical_path": "/cities/fr/saint-just-saint-rambert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62753",
          "name": "Saint-Laurent-Blangy",
          "country_code": "FR",
          "slug": "saint-laurent-blangy",
          "canonical_path": "/cities/fr/saint-laurent-blangy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66180",
          "name": "Saint-Laurent-de-la-Salanque",
          "country_code": "FR",
          "slug": "saint-laurent-de-la-salanque",
          "canonical_path": "/cities/fr/saint-laurent-de-la-salanque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69288",
          "name": "Saint-Laurent-de-Mure",
          "country_code": "FR",
          "slug": "saint-laurent-de-mure",
          "canonical_path": "/cities/fr/saint-laurent-de-mure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06123",
          "name": "Saint-Laurent-du-Var",
          "country_code": "FR",
          "slug": "saint-laurent-du-var",
          "canonical_path": "/cities/fr/saint-laurent-du-var/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2978771",
          "name": "Saint-Leu",
          "country_code": "FR",
          "slug": "saint-leu",
          "canonical_path": "/cities/fr/saint-leu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95563",
          "name": "Saint-Leu-la-Forêt",
          "country_code": "FR",
          "slug": "saint-leu-la-foret",
          "canonical_path": "/cities/fr/saint-leu-la-foret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50502",
          "name": "Saint-Lô",
          "country_code": "FR",
          "slug": "saint-lo",
          "canonical_path": "/cities/fr/saint-lo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33433",
          "name": "Saint-Loubès",
          "country_code": "FR",
          "slug": "saint-loubes",
          "canonical_path": "/cities/fr/saint-loubes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68297",
          "name": "Saint-Louis",
          "country_code": "FR",
          "slug": "saint-louis",
          "canonical_path": "/cities/fr/saint-louis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44175",
          "name": "Saint-Lyphard",
          "country_code": "FR",
          "slug": "saint-lyphard",
          "canonical_path": "/cities/fr/saint-lyphard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31499",
          "name": "Saint-Lys",
          "country_code": "FR",
          "slug": "saint-lys",
          "canonical_path": "/cities/fr/saint-lys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2978658",
          "name": "Saint-Macaire-en-Mauges",
          "country_code": "FR",
          "slug": "saint-macaire-en-mauges",
          "canonical_path": "/cities/fr/saint-macaire-en-mauges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79270",
          "name": "Saint-Maixent-l'École",
          "country_code": "FR",
          "slug": "saint-maixent-l-ecole",
          "canonical_path": "/cities/fr/saint-maixent-l-ecole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35288",
          "name": "Saint-Malo",
          "country_code": "FR",
          "slug": "saint-malo",
          "canonical_path": "/cities/fr/saint-malo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94067",
          "name": "Saint-Mandé",
          "country_code": "FR",
          "slug": "saint-mande",
          "canonical_path": "/cities/fr/saint-mande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83153",
          "name": "Saint-Mandrier-sur-Mer",
          "country_code": "FR",
          "slug": "saint-mandrier-sur-mer",
          "canonical_path": "/cities/fr/saint-mandrier-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71445",
          "name": "Saint-Marcel",
          "country_code": "FR",
          "slug": "saint-marcel",
          "canonical_path": "/cities/fr/saint-marcel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26313",
          "name": "Saint-Marcel-lès-Valence",
          "country_code": "FR",
          "slug": "saint-marcel-les-valence",
          "canonical_path": "/cities/fr/saint-marcel-les-valence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38416",
          "name": "Saint-Marcellin",
          "country_code": "FR",
          "slug": "saint-marcellin",
          "canonical_path": "/cities/fr/saint-marcellin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42256",
          "name": "Saint-Marcellin-en-Forez",
          "country_code": "FR",
          "slug": "saint-marcellin-en-forez",
          "canonical_path": "/cities/fr/saint-marcellin-en-forez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44179",
          "name": "Saint-Mars-du-Désert",
          "country_code": "FR",
          "slug": "saint-mars-du-desert",
          "canonical_path": "/cities/fr/saint-mars-du-desert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62758",
          "name": "Saint-Martin-Boulogne",
          "country_code": "FR",
          "slug": "saint-martin-boulogne",
          "canonical_path": "/cities/fr/saint-martin-boulogne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38421",
          "name": "Saint-Martin-d'Hères",
          "country_code": "FR",
          "slug": "saint-martin-d-heres",
          "canonical_path": "/cities/fr/saint-martin-d-heres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38422",
          "name": "Saint-Martin-d'Uriage",
          "country_code": "FR",
          "slug": "saint-martin-d-uriage",
          "canonical_path": "/cities/fr/saint-martin-d-uriage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13097",
          "name": "Saint-Martin-de-Crau",
          "country_code": "FR",
          "slug": "saint-martin-de-crau",
          "canonical_path": "/cities/fr/saint-martin-de-crau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40273",
          "name": "Saint-Martin-de-Seignanx",
          "country_code": "FR",
          "slug": "saint-martin-de-seignanx",
          "canonical_path": "/cities/fr/saint-martin-de-seignanx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2978351",
          "name": "Saint-Martin-des-Champs",
          "country_code": "FR",
          "slug": "saint-martin-des-champs",
          "canonical_path": "/cities/fr/saint-martin-des-champs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86281",
          "name": "Saint-Martin-la-Pallu",
          "country_code": "FR",
          "slug": "saint-martin-la-pallu",
          "canonical_path": "/cities/fr/saint-martin-la-pallu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38423",
          "name": "Saint-Martin-le-Vinoux",
          "country_code": "FR",
          "slug": "saint-martin-le-vinoux",
          "canonical_path": "/cities/fr/saint-martin-le-vinoux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62757",
          "name": "Saint-Martin-lez-Tatinghem",
          "country_code": "FR",
          "slug": "saint-martin-lez-tatinghem",
          "canonical_path": "/cities/fr/saint-martin-lez-tatinghem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94068",
          "name": "Saint-Maur-des-Fossés",
          "country_code": "FR",
          "slug": "saint-maur-des-fosses",
          "canonical_path": "/cities/fr/saint-maur-des-fosses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94069",
          "name": "Saint-Maurice",
          "country_code": "FR",
          "slug": "saint-maurice",
          "canonical_path": "/cities/fr/saint-maurice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38425",
          "name": "Saint-Maurice-l'Exil",
          "country_code": "FR",
          "slug": "saint-maurice-l-exil",
          "canonical_path": "/cities/fr/saint-maurice-l-exil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54482",
          "name": "Saint-Max",
          "country_code": "FR",
          "slug": "saint-max",
          "canonical_path": "/cities/fr/saint-max/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83116",
          "name": "Saint-Maximin-la-Sainte-Baume",
          "country_code": "FR",
          "slug": "saint-maximin-la-sainte-baume",
          "canonical_path": "/cities/fr/saint-maximin-la-sainte-baume/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33449",
          "name": "Saint-Médard-en-Jalles",
          "country_code": "FR",
          "slug": "saint-medard-en-jalles",
          "canonical_path": "/cities/fr/saint-medard-en-jalles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51506",
          "name": "Saint-Memmie",
          "country_code": "FR",
          "slug": "saint-memmie",
          "canonical_path": "/cities/fr/saint-memmie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44182",
          "name": "Saint-Michel-Chef-Chef",
          "country_code": "FR",
          "slug": "saint-michel-chef-chef",
          "canonical_path": "/cities/fr/saint-michel-chef-chef/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91570",
          "name": "Saint-Michel-sur-Orge",
          "country_code": "FR",
          "slug": "saint-michel-sur-orge",
          "canonical_path": "/cities/fr/saint-michel-sur-orge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2977948",
          "name": "Saint-Mihiel",
          "country_code": "FR",
          "slug": "saint-mihiel",
          "canonical_path": "/cities/fr/saint-mihiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13098",
          "name": "Saint-Mitre-les-Remparts",
          "country_code": "FR",
          "slug": "saint-mitre-les-remparts",
          "canonical_path": "/cities/fr/saint-mitre-les-remparts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44184",
          "name": "Saint-Nazaire",
          "country_code": "FR",
          "slug": "saint-nazaire",
          "canonical_path": "/cities/fr/saint-nazaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2977901",
          "name": "Saint-Nicolas",
          "country_code": "FR",
          "slug": "saint-nicolas",
          "canonical_path": "/cities/fr/saint-nicolas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54483",
          "name": "Saint-Nicolas-de-Port",
          "country_code": "FR",
          "slug": "saint-nicolas-de-port",
          "canonical_path": "/cities/fr/saint-nicolas-de-port/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62765",
          "name": "Saint-Omer",
          "country_code": "FR",
          "slug": "saint-omer",
          "canonical_path": "/cities/fr/saint-omer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31506",
          "name": "Saint-Orens-de-Gameville",
          "country_code": "FR",
          "slug": "saint-orens-de-gameville",
          "canonical_path": "/cities/fr/saint-orens-de-gameville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2977824",
          "name": "Saint-Ouen",
          "country_code": "FR",
          "slug": "saint-ouen",
          "canonical_path": "/cities/fr/saint-ouen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95572",
          "name": "Saint-Ouen-l'Aumône",
          "country_code": "FR",
          "slug": "saint-ouen-l-aumone",
          "canonical_path": "/cities/fr/saint-ouen-l-aumone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93070",
          "name": "Saint-Ouen-sur-Seine",
          "country_code": "FR",
          "slug": "saint-ouen-sur-seine",
          "canonical_path": "/cities/fr/saint-ouen-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:19229",
          "name": "Saint-Pantaléon-de-Larche",
          "country_code": "FR",
          "slug": "saint-pantaleon-de-larche",
          "canonical_path": "/cities/fr/saint-pantaleon-de-larche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77430",
          "name": "Saint-Pathus",
          "country_code": "FR",
          "slug": "saint-pathus",
          "canonical_path": "/cities/fr/saint-pathus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40279",
          "name": "Saint-Paul-lès-Dax",
          "country_code": "FR",
          "slug": "saint-paul-les-dax",
          "canonical_path": "/cities/fr/saint-paul-les-dax/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26324",
          "name": "Saint-Paul-Trois-Châteaux",
          "country_code": "FR",
          "slug": "saint-paul-trois-chateaux",
          "canonical_path": "/cities/fr/saint-paul-trois-chateaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64495",
          "name": "Saint-Pée-sur-Nivelle",
          "country_code": "FR",
          "slug": "saint-pee-sur-nivelle",
          "canonical_path": "/cities/fr/saint-pee-sur-nivelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:07281",
          "name": "Saint-Péray",
          "country_code": "FR",
          "slug": "saint-peray",
          "canonical_path": "/cities/fr/saint-peray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44188",
          "name": "Saint-Philbert-de-Grand-Lieu",
          "country_code": "FR",
          "slug": "saint-philbert-de-grand-lieu",
          "canonical_path": "/cities/fr/saint-philbert-de-grand-lieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64496",
          "name": "Saint-Pierre-d'Irube",
          "country_code": "FR",
          "slug": "saint-pierre-d-irube",
          "canonical_path": "/cities/fr/saint-pierre-d-irube/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17385",
          "name": "Saint-Pierre-d'Oléron",
          "country_code": "FR",
          "slug": "saint-pierre-d-oleron",
          "canonical_path": "/cities/fr/saint-pierre-d-oleron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37233",
          "name": "Saint-Pierre-des-Corps",
          "country_code": "FR",
          "slug": "saint-pierre-des-corps",
          "canonical_path": "/cities/fr/saint-pierre-des-corps/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40281",
          "name": "Saint-Pierre-du-Mont",
          "country_code": "FR",
          "slug": "saint-pierre-du-mont",
          "canonical_path": "/cities/fr/saint-pierre-du-mont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91573",
          "name": "Saint-Pierre-du-Perray",
          "country_code": "FR",
          "slug": "saint-pierre-du-perray",
          "canonical_path": "/cities/fr/saint-pierre-du-perray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14654",
          "name": "Saint-Pierre-en-Auge",
          "country_code": "FR",
          "slug": "saint-pierre-en-auge",
          "canonical_path": "/cities/fr/saint-pierre-en-auge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74250",
          "name": "Saint-Pierre-en-Faucigny",
          "country_code": "FR",
          "slug": "saint-pierre-en-faucigny",
          "canonical_path": "/cities/fr/saint-pierre-en-faucigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76640",
          "name": "Saint-Pierre-lès-Elbeuf",
          "country_code": "FR",
          "slug": "saint-pierre-les-elbeuf",
          "canonical_path": "/cities/fr/saint-pierre-les-elbeuf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77431",
          "name": "Saint-Pierre-lès-Nemours",
          "country_code": "FR",
          "slug": "saint-pierre-les-nemours",
          "canonical_path": "/cities/fr/saint-pierre-les-nemours/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29259",
          "name": "Saint-Pol-de-Léon",
          "country_code": "FR",
          "slug": "saint-pol-de-leon",
          "canonical_path": "/cities/fr/saint-pol-de-leon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2977388",
          "name": "Saint-Pol-sur-Mer",
          "country_code": "FR",
          "slug": "saint-pol-sur-mer",
          "canonical_path": "/cities/fr/saint-pol-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2977387",
          "name": "Saint-Pol-sur-Ternoise",
          "country_code": "FR",
          "slug": "saint-pol-sur-ternoise",
          "canonical_path": "/cities/fr/saint-pol-sur-ternoise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2977365",
          "name": "Saint-Pourçain-sur-Sioule",
          "country_code": "FR",
          "slug": "saint-pourcain-sur-sioule",
          "canonical_path": "/cities/fr/saint-pourcain-sur-sioule/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69290",
          "name": "Saint-Priest",
          "country_code": "FR",
          "slug": "saint-priest",
          "canonical_path": "/cities/fr/saint-priest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42275",
          "name": "Saint-Priest-en-Jarez",
          "country_code": "FR",
          "slug": "saint-priest-en-jarez",
          "canonical_path": "/cities/fr/saint-priest-en-jarez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30294",
          "name": "Saint-Privat-des-Vieux",
          "country_code": "FR",
          "slug": "saint-privat-des-vieux",
          "canonical_path": "/cities/fr/saint-privat-des-vieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95574",
          "name": "Saint-Prix",
          "country_code": "FR",
          "slug": "saint-prix",
          "canonical_path": "/cities/fr/saint-prix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45298",
          "name": "Saint-Pryvé-Saint-Mesmin",
          "country_code": "FR",
          "slug": "saint-pryve-saint-mesmin",
          "canonical_path": "/cities/fr/saint-pryve-saint-mesmin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02691",
          "name": "Saint-Quentin",
          "country_code": "FR",
          "slug": "saint-quentin",
          "canonical_path": "/cities/fr/saint-quentin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:8533870",
          "name": "Saint-Quentin-en-Yvelines",
          "country_code": "FR",
          "slug": "saint-quentin-en-yvelines",
          "canonical_path": "/cities/fr/saint-quentin-en-yvelines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38449",
          "name": "Saint-Quentin-Fallavier",
          "country_code": "FR",
          "slug": "saint-quentin-fallavier",
          "canonical_path": "/cities/fr/saint-quentin-fallavier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26325",
          "name": "Saint-Rambert-d'Albon",
          "country_code": "FR",
          "slug": "saint-rambert-d-albon",
          "canonical_path": "/cities/fr/saint-rambert-d-albon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83118",
          "name": "Saint-Raphaël",
          "country_code": "FR",
          "slug": "saint-raphael",
          "canonical_path": "/cities/fr/saint-raphael/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71475",
          "name": "Saint-Rémy",
          "country_code": "FR",
          "slug": "saint-remy",
          "canonical_path": "/cities/fr/saint-remy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13100",
          "name": "Saint-Rémy-de-Provence",
          "country_code": "FR",
          "slug": "saint-remy-de-provence",
          "canonical_path": "/cities/fr/saint-remy-de-provence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78575",
          "name": "Saint-Rémy-lès-Chevreuse",
          "country_code": "FR",
          "slug": "saint-remy-les-chevreuse",
          "canonical_path": "/cities/fr/saint-remy-les-chevreuse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29260",
          "name": "Saint-Renan",
          "country_code": "FR",
          "slug": "saint-renan",
          "canonical_path": "/cities/fr/saint-renan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84119",
          "name": "Saint-Saturnin-lès-Avignon",
          "country_code": "FR",
          "slug": "saint-saturnin-les-avignon",
          "canonical_path": "/cities/fr/saint-saturnin-les-avignon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59544",
          "name": "Saint-Saulve",
          "country_code": "FR",
          "slug": "saint-saulve",
          "canonical_path": "/cities/fr/saint-saulve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27602",
          "name": "Saint-Sébastien-de-Morsent",
          "country_code": "FR",
          "slug": "saint-sebastien-de-morsent",
          "canonical_path": "/cities/fr/saint-sebastien-de-morsent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44190",
          "name": "Saint-Sébastien-sur-Loire",
          "country_code": "FR",
          "slug": "saint-sebastien-sur-loire",
          "canonical_path": "/cities/fr/saint-sebastien-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40282",
          "name": "Saint-Sever",
          "country_code": "FR",
          "slug": "saint-sever",
          "canonical_path": "/cities/fr/saint-sever/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:81271",
          "name": "Saint-Sulpice-la-Pointe",
          "country_code": "FR",
          "slug": "saint-sulpice-la-pointe",
          "canonical_path": "/cities/fr/saint-sulpice-la-pointe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69291",
          "name": "Saint-Symphorien-d'Ozon",
          "country_code": "FR",
          "slug": "saint-symphorien-d-ozon",
          "canonical_path": "/cities/fr/saint-symphorien-d-ozon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77438",
          "name": "Saint-Thibault-des-Vignes",
          "country_code": "FR",
          "slug": "saint-thibault-des-vignes",
          "canonical_path": "/cities/fr/saint-thibault-des-vignes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2976742",
          "name": "Saint-Tropez",
          "country_code": "FR",
          "slug": "saint-tropez",
          "canonical_path": "/cities/fr/saint-tropez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2976703",
          "name": "Saint-Valery-en-Caux",
          "country_code": "FR",
          "slug": "saint-valery-en-caux",
          "canonical_path": "/cities/fr/saint-valery-en-caux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71486",
          "name": "Saint-Vallier",
          "country_code": "FR",
          "slug": "saint-vallier",
          "canonical_path": "/cities/fr/saint-vallier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13102",
          "name": "Saint-Victoret",
          "country_code": "FR",
          "slug": "saint-victoret",
          "canonical_path": "/cities/fr/saint-victoret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40284",
          "name": "Saint-Vincent-de-Tyrosse",
          "country_code": "FR",
          "slug": "saint-vincent-de-tyrosse",
          "canonical_path": "/cities/fr/saint-vincent-de-tyrosse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25527",
          "name": "Saint-Vit",
          "country_code": "FR",
          "slug": "saint-vit",
          "canonical_path": "/cities/fr/saint-vit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17414",
          "name": "Saint-Xandre",
          "country_code": "FR",
          "slug": "saint-xandre",
          "canonical_path": "/cities/fr/saint-xandre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:87187",
          "name": "Saint-Yrieix-la-Perche",
          "country_code": "FR",
          "slug": "saint-yrieix-la-perche",
          "canonical_path": "/cities/fr/saint-yrieix-la-perche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:16358",
          "name": "Saint-Yrieix-sur-Charente",
          "country_code": "FR",
          "slug": "saint-yrieix-sur-charente",
          "canonical_path": "/cities/fr/saint-yrieix-sur-charente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83120",
          "name": "Saint-Zacharie",
          "country_code": "FR",
          "slug": "saint-zacharie",
          "canonical_path": "/cities/fr/saint-zacharie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76552",
          "name": "Sainte-Adresse",
          "country_code": "FR",
          "slug": "sainte-adresse",
          "canonical_path": "/cities/fr/sainte-adresse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69202",
          "name": "Sainte-Foy-lès-Lyon",
          "country_code": "FR",
          "slug": "sainte-foy-les-lyon",
          "canonical_path": "/cities/fr/sainte-foy-les-lyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91549",
          "name": "Sainte-Geneviève-des-Bois",
          "country_code": "FR",
          "slug": "sainte-genevieve-des-bois",
          "canonical_path": "/cities/fr/sainte-genevieve-des-bois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47252",
          "name": "Sainte-Livrade-sur-Lot",
          "country_code": "FR",
          "slug": "sainte-livrade-sur-lot",
          "canonical_path": "/cities/fr/sainte-livrade-sur-lot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44172",
          "name": "Sainte-Luce-sur-Loire",
          "country_code": "FR",
          "slug": "sainte-luce-sur-loire",
          "canonical_path": "/cities/fr/sainte-luce-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2980438",
          "name": "Sainte-Marie-aux-Mines",
          "country_code": "FR",
          "slug": "sainte-marie-aux-mines",
          "canonical_path": "/cities/fr/sainte-marie-aux-mines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83115",
          "name": "Sainte-Maxime",
          "country_code": "FR",
          "slug": "sainte-maxime",
          "canonical_path": "/cities/fr/sainte-maxime/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2980400",
          "name": "Sainte-Menehould",
          "country_code": "FR",
          "slug": "sainte-menehould",
          "canonical_path": "/cities/fr/sainte-menehould/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44186",
          "name": "Sainte-Pazanne",
          "country_code": "FR",
          "slug": "sainte-pazanne",
          "canonical_path": "/cities/fr/sainte-pazanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:10362",
          "name": "Sainte-Savine",
          "country_code": "FR",
          "slug": "sainte-savine",
          "canonical_path": "/cities/fr/sainte-savine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:43224",
          "name": "Sainte-Sigolène",
          "country_code": "FR",
          "slug": "sainte-sigolene",
          "canonical_path": "/cities/fr/sainte-sigolene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17407",
          "name": "Sainte-Soulle",
          "country_code": "FR",
          "slug": "sainte-soulle",
          "canonical_path": "/cities/fr/sainte-soulle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17415",
          "name": "Saintes",
          "country_code": "FR",
          "slug": "saintes",
          "canonical_path": "/cities/fr/saintes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91577",
          "name": "Saintry-sur-Seine",
          "country_code": "FR",
          "slug": "saintry-sur-seine",
          "canonical_path": "/cities/fr/saintry-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2976490",
          "name": "Salbris",
          "country_code": "FR",
          "slug": "salbris",
          "canonical_path": "/cities/fr/salbris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66189",
          "name": "Saleilles",
          "country_code": "FR",
          "slug": "saleilles",
          "canonical_path": "/cities/fr/saleilles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2976444",
          "name": "Salies-de-Béarn",
          "country_code": "FR",
          "slug": "salies-de-bearn",
          "canonical_path": "/cities/fr/salies-de-bearn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74256",
          "name": "Sallanches",
          "country_code": "FR",
          "slug": "sallanches",
          "canonical_path": "/cities/fr/sallanches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62771",
          "name": "Sallaumines",
          "country_code": "FR",
          "slug": "sallaumines",
          "canonical_path": "/cities/fr/sallaumines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33498",
          "name": "Salles",
          "country_code": "FR",
          "slug": "salles",
          "canonical_path": "/cities/fr/salles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13103",
          "name": "Salon-de-Provence",
          "country_code": "FR",
          "slug": "salon-de-provence",
          "canonical_path": "/cities/fr/salon-de-provence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:12808677",
          "name": "Salpêtrière",
          "country_code": "FR",
          "slug": "salpetriere",
          "canonical_path": "/cities/fr/salpetriere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83123",
          "name": "Sanary-sur-Mer",
          "country_code": "FR",
          "slug": "sanary-sur-mer",
          "canonical_path": "/cities/fr/sanary-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95582",
          "name": "Sannois",
          "country_code": "FR",
          "slug": "sannois",
          "canonical_path": "/cities/fr/sannois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59553",
          "name": "Santes",
          "country_code": "FR",
          "slug": "santes",
          "canonical_path": "/cities/fr/santes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45302",
          "name": "Saran",
          "country_code": "FR",
          "slug": "saran",
          "canonical_path": "/cities/fr/saran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95585",
          "name": "Sarcelles",
          "country_code": "FR",
          "slug": "sarcelles",
          "canonical_path": "/cities/fr/sarcelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:24520",
          "name": "Sarlat-la-Canéda",
          "country_code": "FR",
          "slug": "sarlat-la-caneda",
          "canonical_path": "/cities/fr/sarlat-la-caneda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57630",
          "name": "Sarrebourg",
          "country_code": "FR",
          "slug": "sarrebourg",
          "canonical_path": "/cities/fr/sarrebourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57631",
          "name": "Sarreguemines",
          "country_code": "FR",
          "slug": "sarreguemines",
          "canonical_path": "/cities/fr/sarreguemines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84122",
          "name": "Sarrians",
          "country_code": "FR",
          "slug": "sarrians",
          "canonical_path": "/cities/fr/sarrians/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78586",
          "name": "Sartrouville",
          "country_code": "FR",
          "slug": "sartrouville",
          "canonical_path": "/cities/fr/sartrouville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56240",
          "name": "Sarzeau",
          "country_code": "FR",
          "slug": "sarzeau",
          "canonical_path": "/cities/fr/sarzeau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38474",
          "name": "Sassenage",
          "country_code": "FR",
          "slug": "sassenage",
          "canonical_path": "/cities/fr/sassenage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69292",
          "name": "Sathonay-Camp",
          "country_code": "FR",
          "slug": "sathonay-camp",
          "canonical_path": "/cities/fr/sathonay-camp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17421",
          "name": "Saujon",
          "country_code": "FR",
          "slug": "saujon",
          "canonical_path": "/cities/fr/saujon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91587",
          "name": "Saulx-les-Chartreux",
          "country_code": "FR",
          "slug": "saulx-les-chartreux",
          "canonical_path": "/cities/fr/saulx-les-chartreux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49328",
          "name": "Saumur",
          "country_code": "FR",
          "slug": "saumur",
          "canonical_path": "/cities/fr/saumur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68300",
          "name": "Sausheim",
          "country_code": "FR",
          "slug": "sausheim",
          "canonical_path": "/cities/fr/sausheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13104",
          "name": "Sausset-les-Pins",
          "country_code": "FR",
          "slug": "sausset-les-pins",
          "canonical_path": "/cities/fr/sausset-les-pins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44194",
          "name": "Sautron",
          "country_code": "FR",
          "slug": "sautron",
          "canonical_path": "/cities/fr/sautron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34298",
          "name": "Sauvian",
          "country_code": "FR",
          "slug": "sauvian",
          "canonical_path": "/cities/fr/sauvian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44195",
          "name": "Savenay",
          "country_code": "FR",
          "slug": "savenay",
          "canonical_path": "/cities/fr/savenay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67437",
          "name": "Saverne",
          "country_code": "FR",
          "slug": "saverne",
          "canonical_path": "/cities/fr/saverne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77445",
          "name": "Savigny-le-Temple",
          "country_code": "FR",
          "slug": "savigny-le-temple",
          "canonical_path": "/cities/fr/savigny-le-temple/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91589",
          "name": "Savigny-sur-Orge",
          "country_code": "FR",
          "slug": "savigny-sur-orge",
          "canonical_path": "/cities/fr/savigny-sur-orge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29274",
          "name": "Scaër",
          "country_code": "FR",
          "slug": "scaer",
          "canonical_path": "/cities/fr/scaer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92071",
          "name": "Sceaux",
          "country_code": "FR",
          "slug": "sceaux",
          "canonical_path": "/cities/fr/sceaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67447",
          "name": "Schiltigheim",
          "country_code": "FR",
          "slug": "schiltigheim",
          "canonical_path": "/cities/fr/schiltigheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67458",
          "name": "Schweighouse-sur-Moder",
          "country_code": "FR",
          "slug": "schweighouse-sur-moder",
          "canonical_path": "/cities/fr/schweighouse-sur-moder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74263",
          "name": "Sciez",
          "country_code": "FR",
          "slug": "sciez",
          "canonical_path": "/cities/fr/sciez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74264",
          "name": "Scionzier",
          "country_code": "FR",
          "slug": "scionzier",
          "canonical_path": "/cities/fr/scionzier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59560",
          "name": "Seclin",
          "country_code": "FR",
          "slug": "seclin",
          "canonical_path": "/cities/fr/seclin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:08409",
          "name": "Sedan",
          "country_code": "FR",
          "slug": "sedan",
          "canonical_path": "/cities/fr/sedan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2975314",
          "name": "Segré",
          "country_code": "FR",
          "slug": "segre",
          "canonical_path": "/cities/fr/segre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49331",
          "name": "Segré-en-Anjou Bleu",
          "country_code": "FR",
          "slug": "segre-en-anjou-bleu",
          "canonical_path": "/cities/fr/segre-en-anjou-bleu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54498",
          "name": "Seichamps",
          "country_code": "FR",
          "slug": "seichamps",
          "canonical_path": "/cities/fr/seichamps/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67462",
          "name": "Sélestat",
          "country_code": "FR",
          "slug": "selestat",
          "canonical_path": "/cities/fr/selestat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25539",
          "name": "Seloncourt",
          "country_code": "FR",
          "slug": "seloncourt",
          "canonical_path": "/cities/fr/seloncourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:65417",
          "name": "Séméac",
          "country_code": "FR",
          "slug": "semeac",
          "canonical_path": "/cities/fr/semeac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2975143",
          "name": "Semur-en-Auxois",
          "country_code": "FR",
          "slug": "semur-en-auxois",
          "canonical_path": "/cities/fr/semur-en-auxois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13105",
          "name": "Sénas",
          "country_code": "FR",
          "slug": "senas",
          "canonical_path": "/cities/fr/senas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56243",
          "name": "Séné",
          "country_code": "FR",
          "slug": "sene",
          "canonical_path": "/cities/fr/sene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60612",
          "name": "Senlis",
          "country_code": "FR",
          "slug": "senlis",
          "canonical_path": "/cities/fr/senlis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:89387",
          "name": "Sens",
          "country_code": "FR",
          "slug": "sens",
          "canonical_path": "/cities/fr/sens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13106",
          "name": "Septèmes-les-Vallons",
          "country_code": "FR",
          "slug": "septemes-les-vallons",
          "canonical_path": "/cities/fr/septemes-les-vallons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34299",
          "name": "Sérignan",
          "country_code": "FR",
          "slug": "serignan",
          "canonical_path": "/cities/fr/serignan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77449",
          "name": "Serris",
          "country_code": "FR",
          "slug": "serris",
          "canonical_path": "/cities/fr/serris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34300",
          "name": "Servian",
          "country_code": "FR",
          "slug": "servian",
          "canonical_path": "/cities/fr/servian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34301",
          "name": "Sète",
          "country_code": "FR",
          "slug": "sete",
          "canonical_path": "/cities/fr/sete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93071",
          "name": "Sevran",
          "country_code": "FR",
          "slug": "sevran",
          "canonical_path": "/cities/fr/sevran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49301",
          "name": "Sèvremoine",
          "country_code": "FR",
          "slug": "sevremoine",
          "canonical_path": "/cities/fr/sevremoine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85090",
          "name": "Sèvremont",
          "country_code": "FR",
          "slug": "sevremont",
          "canonical_path": "/cities/fr/sevremont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92072",
          "name": "Sèvres",
          "country_code": "FR",
          "slug": "sevres",
          "canonical_path": "/cities/fr/sevres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2974655",
          "name": "Seynod",
          "country_code": "FR",
          "slug": "seynod",
          "canonical_path": "/cities/fr/seynod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31547",
          "name": "Seysses",
          "country_code": "FR",
          "slug": "seysses",
          "canonical_path": "/cities/fr/seysses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38485",
          "name": "Seyssinet-Pariset",
          "country_code": "FR",
          "slug": "seyssinet-pariset",
          "canonical_path": "/cities/fr/seyssinet-pariset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38486",
          "name": "Seyssins",
          "country_code": "FR",
          "slug": "seyssins",
          "canonical_path": "/cities/fr/seyssins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2974640",
          "name": "Sézanne",
          "country_code": "FR",
          "slug": "sezanne",
          "canonical_path": "/cities/fr/sezanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11379",
          "name": "Sigean",
          "country_code": "FR",
          "slug": "sigean",
          "canonical_path": "/cities/fr/sigean/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74272",
          "name": "Sillingy",
          "country_code": "FR",
          "slug": "sillingy",
          "canonical_path": "/cities/fr/sillingy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13107",
          "name": "Simiane-Collongue",
          "country_code": "FR",
          "slug": "simiane-collongue",
          "canonical_path": "/cities/fr/simiane-collongue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59569",
          "name": "Sin-le-Noble",
          "country_code": "FR",
          "slug": "sin-le-noble",
          "canonical_path": "/cities/fr/sin-le-noble/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:04209",
          "name": "Sisteron",
          "country_code": "FR",
          "slug": "sisteron",
          "canonical_path": "/cities/fr/sisteron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83129",
          "name": "Six-Fours-les-Plages",
          "country_code": "FR",
          "slug": "six-fours-les-plages",
          "canonical_path": "/cities/fr/six-fours-les-plages/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02722",
          "name": "Soissons",
          "country_code": "FR",
          "slug": "soissons",
          "canonical_path": "/cities/fr/soissons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95598",
          "name": "Soisy-sous-Montmorency",
          "country_code": "FR",
          "slug": "soisy-sous-montmorency",
          "canonical_path": "/cities/fr/soisy-sous-montmorency/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91600",
          "name": "Soisy-sur-Seine",
          "country_code": "FR",
          "slug": "soisy-sur-seine",
          "canonical_path": "/cities/fr/soisy-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83130",
          "name": "Solliès-Pont",
          "country_code": "FR",
          "slug": "sollies-pont",
          "canonical_path": "/cities/fr/sollies-pont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83131",
          "name": "Solliès-Toucas",
          "country_code": "FR",
          "slug": "sollies-toucas",
          "canonical_path": "/cities/fr/sollies-toucas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59574",
          "name": "Somain",
          "country_code": "FR",
          "slug": "somain",
          "canonical_path": "/cities/fr/somain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30321",
          "name": "Sommières",
          "country_code": "FR",
          "slug": "sommieres",
          "canonical_path": "/cities/fr/sommieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42302",
          "name": "Sorbiers",
          "country_code": "FR",
          "slug": "sorbiers",
          "canonical_path": "/cities/fr/sorbiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84129",
          "name": "Sorgues",
          "country_code": "FR",
          "slug": "sorgues",
          "canonical_path": "/cities/fr/sorgues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76681",
          "name": "Sotteville-lès-Rouen",
          "country_code": "FR",
          "slug": "sotteville-les-rouen",
          "canonical_path": "/cities/fr/sotteville-les-rouen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67471",
          "name": "Souffelweyersheim",
          "country_code": "FR",
          "slug": "souffelweyersheim",
          "canonical_path": "/cities/fr/souffelweyersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14061",
          "name": "Souleuvre en Bocage",
          "country_code": "FR",
          "slug": "souleuvre-en-bocage",
          "canonical_path": "/cities/fr/souleuvre-en-bocage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68315",
          "name": "Soultz-Haut-Rhin",
          "country_code": "FR",
          "slug": "soultz-haut-rhin",
          "canonical_path": "/cities/fr/soultz-haut-rhin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2973963",
          "name": "Souppes-sur-Loing",
          "country_code": "FR",
          "slug": "souppes-sur-loing",
          "canonical_path": "/cities/fr/souppes-sur-loing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40310",
          "name": "Soustons",
          "country_code": "FR",
          "slug": "soustons",
          "canonical_path": "/cities/fr/soustons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:16374",
          "name": "Soyaux",
          "country_code": "FR",
          "slug": "soyaux",
          "canonical_path": "/cities/fr/soyaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93072",
          "name": "Stains",
          "country_code": "FR",
          "slug": "stains",
          "canonical_path": "/cities/fr/stains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57660",
          "name": "Stiring-Wendel",
          "country_code": "FR",
          "slug": "stiring-wendel",
          "canonical_path": "/cities/fr/stiring-wendel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67482",
          "name": "Strasbourg",
          "country_code": "FR",
          "slug": "strasbourg",
          "canonical_path": "/cities/fr/strasbourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44201",
          "name": "Sucé-sur-Erdre",
          "country_code": "FR",
          "slug": "suce-sur-erdre",
          "canonical_path": "/cities/fr/suce-sur-erdre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94071",
          "name": "Sucy-en-Brie",
          "country_code": "FR",
          "slug": "sucy-en-brie",
          "canonical_path": "/cities/fr/sucy-en-brie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45315",
          "name": "Sully-sur-Loire",
          "country_code": "FR",
          "slug": "sully-sur-loire",
          "canonical_path": "/cities/fr/sully-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92073",
          "name": "Suresnes",
          "country_code": "FR",
          "slug": "suresnes",
          "canonical_path": "/cities/fr/suresnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17434",
          "name": "Surgères",
          "country_code": "FR",
          "slug": "surgeres",
          "canonical_path": "/cities/fr/surgeres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42304",
          "name": "Sury-le-Comtal",
          "country_code": "FR",
          "slug": "sury-le-comtal",
          "canonical_path": "/cities/fr/sury-le-comtal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56248",
          "name": "Surzur",
          "country_code": "FR",
          "slug": "surzur",
          "canonical_path": "/cities/fr/surzur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26347",
          "name": "Tain-l'Hermitage",
          "country_code": "FR",
          "slug": "tain-l-hermitage",
          "canonical_path": "/cities/fr/tain-l-hermitage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57663",
          "name": "Talange",
          "country_code": "FR",
          "slug": "talange",
          "canonical_path": "/cities/fr/talange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:21617",
          "name": "Talant",
          "country_code": "FR",
          "slug": "talant",
          "canonical_path": "/cities/fr/talant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33522",
          "name": "Talence",
          "country_code": "FR",
          "slug": "talence",
          "canonical_path": "/cities/fr/talence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:85288",
          "name": "Talmont-Saint-Hilaire",
          "country_code": "FR",
          "slug": "talmont-saint-hilaire",
          "canonical_path": "/cities/fr/talmont-saint-hilaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69243",
          "name": "Tarare",
          "country_code": "FR",
          "slug": "tarare",
          "canonical_path": "/cities/fr/tarare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13108",
          "name": "Tarascon",
          "country_code": "FR",
          "slug": "tarascon",
          "canonical_path": "/cities/fr/tarascon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:65440",
          "name": "Tarbes",
          "country_code": "FR",
          "slug": "tarbes",
          "canonical_path": "/cities/fr/tarbes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:40312",
          "name": "Tarnos",
          "country_code": "FR",
          "slug": "tarnos",
          "canonical_path": "/cities/fr/tarnos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69244",
          "name": "Tassin-la-Demi-Lune",
          "country_code": "FR",
          "slug": "tassin-la-demi-lune",
          "canonical_path": "/cities/fr/tassin-la-demi-lune/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95607",
          "name": "Taverny",
          "country_code": "FR",
          "slug": "taverny",
          "canonical_path": "/cities/fr/taverny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59586",
          "name": "Templeuve-en-Pévèle",
          "country_code": "FR",
          "slug": "templeuve-en-pevele",
          "canonical_path": "/cities/fr/templeuve-en-pevele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02738",
          "name": "Tergnier",
          "country_code": "FR",
          "slug": "tergnier",
          "canonical_path": "/cities/fr/tergnier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69297",
          "name": "Ternay",
          "country_code": "FR",
          "slug": "ternay",
          "canonical_path": "/cities/fr/ternay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:24547",
          "name": "Terrasson-Lavilledieu",
          "country_code": "FR",
          "slug": "terrasson-lavilledieu",
          "canonical_path": "/cities/fr/terrasson-lavilledieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57666",
          "name": "Terville",
          "country_code": "FR",
          "slug": "terville",
          "canonical_path": "/cities/fr/terville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2973049",
          "name": "Téteghem",
          "country_code": "FR",
          "slug": "teteghem",
          "canonical_path": "/cities/fr/teteghem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59588",
          "name": "Téteghem-Coudekerque-Village",
          "country_code": "FR",
          "slug": "teteghem-coudekerque-village",
          "canonical_path": "/cities/fr/teteghem-coudekerque-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68334",
          "name": "Thann",
          "country_code": "FR",
          "slug": "thann",
          "canonical_path": "/cities/fr/thann/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:88465",
          "name": "Thaon-les-Vosges",
          "country_code": "FR",
          "slug": "thaon-les-vosges",
          "canonical_path": "/cities/fr/thaon-les-vosges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56251",
          "name": "Theix-Noyalo",
          "country_code": "FR",
          "slug": "theix-noyalo",
          "canonical_path": "/cities/fr/theix-noyalo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94073",
          "name": "Thiais",
          "country_code": "FR",
          "slug": "thiais",
          "canonical_path": "/cities/fr/thiais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63430",
          "name": "Thiers",
          "country_code": "FR",
          "slug": "thiers",
          "canonical_path": "/cities/fr/thiers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57672",
          "name": "Thionville",
          "country_code": "FR",
          "slug": "thionville",
          "canonical_path": "/cities/fr/thionville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69248",
          "name": "Thizy-les-Bourgs",
          "country_code": "FR",
          "slug": "thizy-les-bourgs",
          "canonical_path": "/cities/fr/thizy-les-bourgs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01419",
          "name": "Thoiry",
          "country_code": "FR",
          "slug": "thoiry",
          "canonical_path": "/cities/fr/thoiry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74280",
          "name": "Thônes",
          "country_code": "FR",
          "slug": "thones",
          "canonical_path": "/cities/fr/thones/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74281",
          "name": "Thonon-les-Bains",
          "country_code": "FR",
          "slug": "thonon-les-bains",
          "canonical_path": "/cities/fr/thonon-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35334",
          "name": "Thorigné-Fouillard",
          "country_code": "FR",
          "slug": "thorigne-fouillard",
          "canonical_path": "/cities/fr/thorigne-fouillard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77464",
          "name": "Thorigny-sur-Marne",
          "country_code": "FR",
          "slug": "thorigny-sur-marne",
          "canonical_path": "/cities/fr/thorigny-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44204",
          "name": "Thouaré-sur-Loire",
          "country_code": "FR",
          "slug": "thouare-sur-loire",
          "canonical_path": "/cities/fr/thouare-sur-loire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:79329",
          "name": "Thouars",
          "country_code": "FR",
          "slug": "thouars",
          "canonical_path": "/cities/fr/thouars/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2972684",
          "name": "Thourotte",
          "country_code": "FR",
          "slug": "thourotte",
          "canonical_path": "/cities/fr/thourotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14098",
          "name": "Thue et Mue",
          "country_code": "FR",
          "slug": "thue-et-mue",
          "canonical_path": "/cities/fr/thue-et-mue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66210",
          "name": "Thuir",
          "country_code": "FR",
          "slug": "thuir",
          "canonical_path": "/cities/fr/thuir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74278",
          "name": "Thyez",
          "country_code": "FR",
          "slug": "thyez",
          "canonical_path": "/cities/fr/thyez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2972605",
          "name": "Tignieu",
          "country_code": "FR",
          "slug": "tignieu",
          "canonical_path": "/cities/fr/tignieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38507",
          "name": "Tignieu-Jameyzieu",
          "country_code": "FR",
          "slug": "tignieu-jameyzieu",
          "canonical_path": "/cities/fr/tignieu-jameyzieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51573",
          "name": "Tinqueux",
          "country_code": "FR",
          "slug": "tinqueux",
          "canonical_path": "/cities/fr/tinqueux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54526",
          "name": "Tomblaine",
          "country_code": "FR",
          "slug": "tomblaine",
          "canonical_path": "/cities/fr/tomblaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:17449",
          "name": "Tonnay-Charente",
          "country_code": "FR",
          "slug": "tonnay-charente",
          "canonical_path": "/cities/fr/tonnay-charente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47310",
          "name": "Tonneins",
          "country_code": "FR",
          "slug": "tonneins",
          "canonical_path": "/cities/fr/tonneins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2972467",
          "name": "Tonnerre",
          "country_code": "FR",
          "slug": "tonnerre",
          "canonical_path": "/cities/fr/tonnerre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77468",
          "name": "Torcy",
          "country_code": "FR",
          "slug": "torcy",
          "canonical_path": "/cities/fr/torcy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54528",
          "name": "Toul",
          "country_code": "FR",
          "slug": "toul",
          "canonical_path": "/cities/fr/toul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83137",
          "name": "Toulon",
          "country_code": "FR",
          "slug": "toulon",
          "canonical_path": "/cities/fr/toulon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:66213",
          "name": "Toulouges",
          "country_code": "FR",
          "slug": "toulouges",
          "canonical_path": "/cities/fr/toulouges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31555",
          "name": "Toulouse",
          "country_code": "FR",
          "slug": "toulouse",
          "canonical_path": "/cities/fr/toulouse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59599",
          "name": "Tourcoing",
          "country_code": "FR",
          "slug": "tourcoing",
          "canonical_path": "/cities/fr/tourcoing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2972270",
          "name": "Tourlaville",
          "country_code": "FR",
          "slug": "tourlaville",
          "canonical_path": "/cities/fr/tourlaville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77470",
          "name": "Tournan-en-Brie",
          "country_code": "FR",
          "slug": "tournan-en-brie",
          "canonical_path": "/cities/fr/tournan-en-brie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31557",
          "name": "Tournefeuille",
          "country_code": "FR",
          "slug": "tournefeuille",
          "canonical_path": "/cities/fr/tournefeuille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:07324",
          "name": "Tournon-sur-Rhône",
          "country_code": "FR",
          "slug": "tournon-sur-rhone",
          "canonical_path": "/cities/fr/tournon-sur-rhone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:71543",
          "name": "Tournus",
          "country_code": "FR",
          "slug": "tournus",
          "canonical_path": "/cities/fr/tournus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37261",
          "name": "Tours",
          "country_code": "FR",
          "slug": "tours",
          "canonical_path": "/cities/fr/tours/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83140",
          "name": "Tourves",
          "country_code": "FR",
          "slug": "tourves",
          "canonical_path": "/cities/fr/tourves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83141",
          "name": "Trans-en-Provence",
          "country_code": "FR",
          "slug": "trans-en-provence",
          "canonical_path": "/cities/fr/trans-en-provence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78621",
          "name": "Trappes",
          "country_code": "FR",
          "slug": "trappes",
          "canonical_path": "/cities/fr/trappes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:11397",
          "name": "Trèbes",
          "country_code": "FR",
          "slug": "trebes",
          "canonical_path": "/cities/fr/trebes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22360",
          "name": "Trégueux",
          "country_code": "FR",
          "slug": "tregueux",
          "canonical_path": "/cities/fr/tregueux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:29293",
          "name": "Trégunc",
          "country_code": "FR",
          "slug": "tregunc",
          "canonical_path": "/cities/fr/tregunc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44209",
          "name": "Treillières",
          "country_code": "FR",
          "slug": "treillieres",
          "canonical_path": "/cities/fr/treillieres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49353",
          "name": "Trélazé",
          "country_code": "FR",
          "slug": "trelaze",
          "canonical_path": "/cities/fr/trelaze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:24557",
          "name": "Trélissac",
          "country_code": "FR",
          "slug": "trelissac",
          "canonical_path": "/cities/fr/trelissac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93073",
          "name": "Tremblay-en-France",
          "country_code": "FR",
          "slug": "tremblay-en-france",
          "canonical_path": "/cities/fr/tremblay-en-france/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33535",
          "name": "Tresses",
          "country_code": "FR",
          "slug": "tresses",
          "canonical_path": "/cities/fr/tresses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13110",
          "name": "Trets",
          "country_code": "FR",
          "slug": "trets",
          "canonical_path": "/cities/fr/trets/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01427",
          "name": "Trévoux",
          "country_code": "FR",
          "slug": "trevoux",
          "canonical_path": "/cities/fr/trevoux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78624",
          "name": "Triel-sur-Seine",
          "country_code": "FR",
          "slug": "triel-sur-seine",
          "canonical_path": "/cities/fr/triel-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44210",
          "name": "Trignac",
          "country_code": "FR",
          "slug": "trignac",
          "canonical_path": "/cities/fr/trignac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77475",
          "name": "Trilport",
          "country_code": "FR",
          "slug": "trilport",
          "canonical_path": "/cities/fr/trilport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59603",
          "name": "Trith-Saint-Léger",
          "country_code": "FR",
          "slug": "trith-saint-leger",
          "canonical_path": "/cities/fr/trith-saint-leger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2971555",
          "name": "Trouville-sur-Mer",
          "country_code": "FR",
          "slug": "trouville-sur-mer",
          "canonical_path": "/cities/fr/trouville-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:10387",
          "name": "Troyes",
          "country_code": "FR",
          "slug": "troyes",
          "canonical_path": "/cities/fr/troyes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:19272",
          "name": "Tulle",
          "country_code": "FR",
          "slug": "tulle",
          "canonical_path": "/cities/fr/tulle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38517",
          "name": "Tullins",
          "country_code": "FR",
          "slug": "tullins",
          "canonical_path": "/cities/fr/tullins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57683",
          "name": "Uckange",
          "country_code": "FR",
          "slug": "uckange",
          "canonical_path": "/cities/fr/uckange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:73303",
          "name": "Ugine",
          "country_code": "FR",
          "slug": "ugine",
          "canonical_path": "/cities/fr/ugine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42316",
          "name": "Unieux",
          "country_code": "FR",
          "slug": "unieux",
          "canonical_path": "/cities/fr/unieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64545",
          "name": "Urrugne",
          "country_code": "FR",
          "slug": "urrugne",
          "canonical_path": "/cities/fr/urrugne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:19275",
          "name": "Ussel",
          "country_code": "FR",
          "slug": "ussel",
          "canonical_path": "/cities/fr/ussel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:64547",
          "name": "Ustaritz",
          "country_code": "FR",
          "slug": "ustaritz",
          "canonical_path": "/cities/fr/ustaritz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30334",
          "name": "Uzès",
          "country_code": "FR",
          "slug": "uzes",
          "canonical_path": "/cities/fr/uzes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77479",
          "name": "Vaires-sur-Marne",
          "country_code": "FR",
          "slug": "vaires-sur-marne",
          "canonical_path": "/cities/fr/vaires-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84137",
          "name": "Vaison-la-Romaine",
          "country_code": "FR",
          "slug": "vaison-la-romaine",
          "canonical_path": "/cities/fr/vaison-la-romaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54099",
          "name": "Val de Briey",
          "country_code": "FR",
          "slug": "val-de-briey",
          "canonical_path": "/cities/fr/val-de-briey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67372",
          "name": "Val-de-Moder",
          "country_code": "FR",
          "slug": "val-de-moder",
          "canonical_path": "/cities/fr/val-de-moder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27701",
          "name": "Val-de-Reuil",
          "country_code": "FR",
          "slug": "val-de-reuil",
          "canonical_path": "/cities/fr/val-de-reuil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06152",
          "name": "Valbonne",
          "country_code": "FR",
          "slug": "valbonne",
          "canonical_path": "/cities/fr/valbonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25578",
          "name": "Valdahon",
          "country_code": "FR",
          "slug": "valdahon",
          "canonical_path": "/cities/fr/valdahon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14726",
          "name": "Valdallière",
          "country_code": "FR",
          "slug": "valdalliere",
          "canonical_path": "/cities/fr/valdalliere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:90099",
          "name": "Valdoie",
          "country_code": "FR",
          "slug": "valdoie",
          "canonical_path": "/cities/fr/valdoie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:26362",
          "name": "Valence",
          "country_code": "FR",
          "slug": "valence-26362",
          "canonical_path": "/cities/fr/valence-26362/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:82186",
          "name": "Valence",
          "country_code": "FR",
          "slug": "valence-82186",
          "canonical_path": "/cities/fr/valence-82186/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59606",
          "name": "Valenciennes",
          "country_code": "FR",
          "slug": "valenciennes",
          "canonical_path": "/cities/fr/valenciennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25580",
          "name": "Valentigney",
          "country_code": "FR",
          "slug": "valentigney",
          "canonical_path": "/cities/fr/valentigney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94074",
          "name": "Valenton",
          "country_code": "FR",
          "slug": "valenton",
          "canonical_path": "/cities/fr/valenton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2971006",
          "name": "Valfin-lès-Saint-Claude",
          "country_code": "FR",
          "slug": "valfin-les-saint-claude",
          "canonical_path": "/cities/fr/valfin-les-saint-claude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06155",
          "name": "Vallauris",
          "country_code": "FR",
          "slug": "vallauris",
          "canonical_path": "/cities/fr/vallauris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74288",
          "name": "Valleiry",
          "country_code": "FR",
          "slug": "valleiry",
          "canonical_path": "/cities/fr/valleiry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44212",
          "name": "Vallet",
          "country_code": "FR",
          "slug": "vallet",
          "canonical_path": "/cities/fr/vallet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44180",
          "name": "Vallons-de-l'Erdre",
          "country_code": "FR",
          "slug": "vallons-de-l-erdre",
          "canonical_path": "/cities/fr/vallons-de-l-erdre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:50615",
          "name": "Valognes",
          "country_code": "FR",
          "slug": "valognes",
          "canonical_path": "/cities/fr/valognes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84138",
          "name": "Valréas",
          "country_code": "FR",
          "slug": "valreas",
          "canonical_path": "/cities/fr/valreas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01033",
          "name": "Valserhône",
          "country_code": "FR",
          "slug": "valserhone",
          "canonical_path": "/cities/fr/valserhone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54547",
          "name": "Vandœuvre-lès-Nancy",
          "country_code": "FR",
          "slug": "vand-uvre-les-nancy",
          "canonical_path": "/cities/fr/vand-uvre-les-nancy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:56260",
          "name": "Vannes",
          "country_code": "FR",
          "slug": "vannes",
          "canonical_path": "/cities/fr/vannes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92075",
          "name": "Vanves",
          "country_code": "FR",
          "slug": "vanves",
          "canonical_path": "/cities/fr/vanves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38524",
          "name": "Varces-Allières-et-Risset",
          "country_code": "FR",
          "slug": "varces-allieres-et-risset",
          "canonical_path": "/cities/fr/varces-allieres-et-risset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:58303",
          "name": "Varennes-Vauzelles",
          "country_code": "FR",
          "slug": "varennes-vauzelles",
          "canonical_path": "/cities/fr/varennes-vauzelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92076",
          "name": "Vaucresson",
          "country_code": "FR",
          "slug": "vaucresson",
          "canonical_path": "/cities/fr/vaucresson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69255",
          "name": "Vaugneray",
          "country_code": "FR",
          "slug": "vaugneray",
          "canonical_path": "/cities/fr/vaugneray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93074",
          "name": "Vaujours",
          "country_code": "FR",
          "slug": "vaujours",
          "canonical_path": "/cities/fr/vaujours/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69256",
          "name": "Vaulx-en-Velin",
          "country_code": "FR",
          "slug": "vaulx-en-velin",
          "canonical_path": "/cities/fr/vaulx-en-velin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95637",
          "name": "Vauréal",
          "country_code": "FR",
          "slug": "vaureal",
          "canonical_path": "/cities/fr/vaureal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30341",
          "name": "Vauvert",
          "country_code": "FR",
          "slug": "vauvert",
          "canonical_path": "/cities/fr/vauvert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77487",
          "name": "Vaux-le-Pénil",
          "country_code": "FR",
          "slug": "vaux-le-penil",
          "canonical_path": "/cities/fr/vaux-le-penil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78638",
          "name": "Vaux-sur-Seine",
          "country_code": "FR",
          "slug": "vaux-sur-seine",
          "canonical_path": "/cities/fr/vaux-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42323",
          "name": "Veauche",
          "country_code": "FR",
          "slug": "veauche",
          "canonical_path": "/cities/fr/veauche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:84141",
          "name": "Vedène",
          "country_code": "FR",
          "slug": "vedene",
          "canonical_path": "/cities/fr/vedene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:37266",
          "name": "Veigné",
          "country_code": "FR",
          "slug": "veigne",
          "canonical_path": "/cities/fr/veigne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13112",
          "name": "Velaux",
          "country_code": "FR",
          "slug": "velaux",
          "canonical_path": "/cities/fr/velaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78640",
          "name": "Vélizy-Villacoublay",
          "country_code": "FR",
          "slug": "velizy-villacoublay",
          "canonical_path": "/cities/fr/velizy-villacoublay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06157",
          "name": "Vence",
          "country_code": "FR",
          "slug": "vence",
          "canonical_path": "/cities/fr/vence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34327",
          "name": "Vendargues",
          "country_code": "FR",
          "slug": "vendargues",
          "canonical_path": "/cities/fr/vendargues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67506",
          "name": "Vendenheim",
          "country_code": "FR",
          "slug": "vendenheim",
          "canonical_path": "/cities/fr/vendenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62842",
          "name": "Vendin-le-Vieil",
          "country_code": "FR",
          "slug": "vendin-le-vieil",
          "canonical_path": "/cities/fr/vendin-le-vieil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:41269",
          "name": "Vendôme",
          "country_code": "FR",
          "slug": "vendome",
          "canonical_path": "/cities/fr/vendome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13113",
          "name": "Venelles",
          "country_code": "FR",
          "slug": "venelles",
          "canonical_path": "/cities/fr/venelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2970080",
          "name": "Veneux-les-Sablons",
          "country_code": "FR",
          "slug": "veneux-les-sablons",
          "canonical_path": "/cities/fr/veneux-les-sablons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69259",
          "name": "Vénissieux",
          "country_code": "FR",
          "slug": "venissieux",
          "canonical_path": "/cities/fr/venissieux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13114",
          "name": "Ventabren",
          "country_code": "FR",
          "slug": "ventabren",
          "canonical_path": "/cities/fr/ventabren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:55545",
          "name": "Verdun",
          "country_code": "FR",
          "slug": "verdun",
          "canonical_path": "/cities/fr/verdun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30344",
          "name": "Vergèze",
          "country_code": "FR",
          "slug": "vergeze",
          "canonical_path": "/cities/fr/vergeze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35352",
          "name": "Vern-sur-Seiche",
          "country_code": "FR",
          "slug": "vern-sur-seiche",
          "canonical_path": "/cities/fr/vern-sur-seiche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69260",
          "name": "Vernaison",
          "country_code": "FR",
          "slug": "vernaison",
          "canonical_path": "/cities/fr/vernaison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27679",
          "name": "Verneuil d'Avre et d'Iton",
          "country_code": "FR",
          "slug": "verneuil-d-avre-et-d-iton",
          "canonical_path": "/cities/fr/verneuil-d-avre-et-d-iton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2969799",
          "name": "Verneuil-sur-Avre",
          "country_code": "FR",
          "slug": "verneuil-sur-avre",
          "canonical_path": "/cities/fr/verneuil-sur-avre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78642",
          "name": "Verneuil-sur-Seine",
          "country_code": "FR",
          "slug": "verneuil-sur-seine",
          "canonical_path": "/cities/fr/verneuil-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27681",
          "name": "Vernon",
          "country_code": "FR",
          "slug": "vernon",
          "canonical_path": "/cities/fr/vernon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:28404",
          "name": "Vernouillet",
          "country_code": "FR",
          "slug": "vernouillet-28404",
          "canonical_path": "/cities/fr/vernouillet-28404/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78643",
          "name": "Vernouillet",
          "country_code": "FR",
          "slug": "vernouillet-78643",
          "canonical_path": "/cities/fr/vernouillet-78643/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:49323",
          "name": "Verrières-en-Anjou",
          "country_code": "FR",
          "slug": "verrieres-en-anjou",
          "canonical_path": "/cities/fr/verrieres-en-anjou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91645",
          "name": "Verrières-le-Buisson",
          "country_code": "FR",
          "slug": "verrieres-le-buisson",
          "canonical_path": "/cities/fr/verrieres-le-buisson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78646",
          "name": "Versailles",
          "country_code": "FR",
          "slug": "versailles",
          "canonical_path": "/cities/fr/versailles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77495",
          "name": "Vert-Saint-Denis",
          "country_code": "FR",
          "slug": "vert-saint-denis",
          "canonical_path": "/cities/fr/vert-saint-denis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44215",
          "name": "Vertou",
          "country_code": "FR",
          "slug": "vertou",
          "canonical_path": "/cities/fr/vertou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:70550",
          "name": "Vesoul",
          "country_code": "FR",
          "slug": "vesoul",
          "canonical_path": "/cities/fr/vesoul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74298",
          "name": "Vétraz-Monthoux",
          "country_code": "FR",
          "slug": "vetraz-monthoux",
          "canonical_path": "/cities/fr/vetraz-monthoux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:27213",
          "name": "Vexin-sur-Epte",
          "country_code": "FR",
          "slug": "vexin-sur-epte",
          "canonical_path": "/cities/fr/vexin-sur-epte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35353",
          "name": "Vezin-le-Coquet",
          "country_code": "FR",
          "slug": "vezin-le-coquet",
          "canonical_path": "/cities/fr/vezin-le-coquet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95652",
          "name": "Viarmes",
          "country_code": "FR",
          "slug": "viarmes",
          "canonical_path": "/cities/fr/viarmes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34332",
          "name": "Vias",
          "country_code": "FR",
          "slug": "vias",
          "canonical_path": "/cities/fr/vias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2969401",
          "name": "Vic-en-Bigorre",
          "country_code": "FR",
          "slug": "vic-en-bigorre",
          "canonical_path": "/cities/fr/vic-en-bigorre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:63457",
          "name": "Vic-le-Comte",
          "country_code": "FR",
          "slug": "vic-le-comte",
          "canonical_path": "/cities/fr/vic-le-comte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:03310",
          "name": "Vichy",
          "country_code": "FR",
          "slug": "vichy",
          "canonical_path": "/cities/fr/vichy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:83148",
          "name": "Vidauban",
          "country_code": "FR",
          "slug": "vidauban",
          "canonical_path": "/cities/fr/vidauban/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38544",
          "name": "Vienne",
          "country_code": "FR",
          "slug": "vienne",
          "canonical_path": "/cities/fr/vienne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:18279",
          "name": "Vierzon",
          "country_code": "FR",
          "slug": "vierzon",
          "canonical_path": "/cities/fr/vierzon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59616",
          "name": "Vieux-Condé",
          "country_code": "FR",
          "slug": "vieux-conde",
          "canonical_path": "/cities/fr/vieux-conde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38545",
          "name": "Vif",
          "country_code": "FR",
          "slug": "vif",
          "canonical_path": "/cities/fr/vif/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44217",
          "name": "Vigneux-de-Bretagne",
          "country_code": "FR",
          "slug": "vigneux-de-bretagne",
          "canonical_path": "/cities/fr/vigneux-de-bretagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91657",
          "name": "Vigneux-sur-Seine",
          "country_code": "FR",
          "slug": "vigneux-sur-seine",
          "canonical_path": "/cities/fr/vigneux-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91659",
          "name": "Villabé",
          "country_code": "FR",
          "slug": "villabe",
          "canonical_path": "/cities/fr/villabe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38547",
          "name": "Villard-Bonnot",
          "country_code": "FR",
          "slug": "villard-bonnot",
          "canonical_path": "/cities/fr/villard-bonnot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42330",
          "name": "Villars",
          "country_code": "FR",
          "slug": "villars",
          "canonical_path": "/cities/fr/villars/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01443",
          "name": "Villars-les-Dombes",
          "country_code": "FR",
          "slug": "villars-les-dombes",
          "canonical_path": "/cities/fr/villars-les-dombes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92077",
          "name": "Ville-d'Avray",
          "country_code": "FR",
          "slug": "ville-d-avray",
          "canonical_path": "/cities/fr/ville-d-avray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74305",
          "name": "Ville-la-Grand",
          "country_code": "FR",
          "slug": "ville-la-grand",
          "canonical_path": "/cities/fr/ville-la-grand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91661",
          "name": "Villebon-sur-Yvette",
          "country_code": "FR",
          "slug": "villebon-sur-yvette",
          "canonical_path": "/cities/fr/villebon-sur-yvette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94075",
          "name": "Villecresnes",
          "country_code": "FR",
          "slug": "villecresnes",
          "canonical_path": "/cities/fr/villecresnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38553",
          "name": "Villefontaine",
          "country_code": "FR",
          "slug": "villefontaine",
          "canonical_path": "/cities/fr/villefontaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31582",
          "name": "Villefranche-de-Lauragais",
          "country_code": "FR",
          "slug": "villefranche-de-lauragais",
          "canonical_path": "/cities/fr/villefranche-de-lauragais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:12300",
          "name": "Villefranche-de-Rouergue",
          "country_code": "FR",
          "slug": "villefranche-de-rouergue",
          "canonical_path": "/cities/fr/villefranche-de-rouergue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06159",
          "name": "Villefranche-sur-Mer",
          "country_code": "FR",
          "slug": "villefranche-sur-mer",
          "canonical_path": "/cities/fr/villefranche-sur-mer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69264",
          "name": "Villefranche-sur-Saône",
          "country_code": "FR",
          "slug": "villefranche-sur-saone",
          "canonical_path": "/cities/fr/villefranche-sur-saone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94076",
          "name": "Villejuif",
          "country_code": "FR",
          "slug": "villejuif",
          "canonical_path": "/cities/fr/villejuif/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:45338",
          "name": "Villemandeur",
          "country_code": "FR",
          "slug": "villemandeur",
          "canonical_path": "/cities/fr/villemandeur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91667",
          "name": "Villemoisson-sur-Orge",
          "country_code": "FR",
          "slug": "villemoisson-sur-orge",
          "canonical_path": "/cities/fr/villemoisson-sur-orge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93077",
          "name": "Villemomble",
          "country_code": "FR",
          "slug": "villemomble",
          "canonical_path": "/cities/fr/villemomble/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31584",
          "name": "Villemur-sur-Tarn",
          "country_code": "FR",
          "slug": "villemur-sur-tarn",
          "canonical_path": "/cities/fr/villemur-sur-tarn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:33550",
          "name": "Villenave-d'Ornon",
          "country_code": "FR",
          "slug": "villenave-d-ornon",
          "canonical_path": "/cities/fr/villenave-d-ornon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59009",
          "name": "Villeneuve-d'Ascq",
          "country_code": "FR",
          "slug": "villeneuve-d-ascq",
          "canonical_path": "/cities/fr/villeneuve-d-ascq/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:44021",
          "name": "Villeneuve-en-Retz",
          "country_code": "FR",
          "slug": "villeneuve-en-retz",
          "canonical_path": "/cities/fr/villeneuve-en-retz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:92078",
          "name": "Villeneuve-la-Garenne",
          "country_code": "FR",
          "slug": "villeneuve-la-garenne",
          "canonical_path": "/cities/fr/villeneuve-la-garenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94077",
          "name": "Villeneuve-le-Roi",
          "country_code": "FR",
          "slug": "villeneuve-le-roi",
          "canonical_path": "/cities/fr/villeneuve-le-roi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:30351",
          "name": "Villeneuve-lès-Avignon",
          "country_code": "FR",
          "slug": "villeneuve-les-avignon",
          "canonical_path": "/cities/fr/villeneuve-les-avignon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:34337",
          "name": "Villeneuve-lès-Maguelone",
          "country_code": "FR",
          "slug": "villeneuve-les-maguelone",
          "canonical_path": "/cities/fr/villeneuve-les-maguelone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:06161",
          "name": "Villeneuve-Loubet",
          "country_code": "FR",
          "slug": "villeneuve-loubet",
          "canonical_path": "/cities/fr/villeneuve-loubet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94078",
          "name": "Villeneuve-Saint-Georges",
          "country_code": "FR",
          "slug": "villeneuve-saint-georges",
          "canonical_path": "/cities/fr/villeneuve-saint-georges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:47323",
          "name": "Villeneuve-sur-Lot",
          "country_code": "FR",
          "slug": "villeneuve-sur-lot",
          "canonical_path": "/cities/fr/villeneuve-sur-lot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:89464",
          "name": "Villeneuve-sur-Yonne",
          "country_code": "FR",
          "slug": "villeneuve-sur-yonne",
          "canonical_path": "/cities/fr/villeneuve-sur-yonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:31588",
          "name": "Villeneuve-Tolosane",
          "country_code": "FR",
          "slug": "villeneuve-tolosane",
          "canonical_path": "/cities/fr/villeneuve-tolosane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78672",
          "name": "Villennes-sur-Seine",
          "country_code": "FR",
          "slug": "villennes-sur-seine",
          "canonical_path": "/cities/fr/villennes-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77513",
          "name": "Villenoy",
          "country_code": "FR",
          "slug": "villenoy",
          "canonical_path": "/cities/fr/villenoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:77514",
          "name": "Villeparisis",
          "country_code": "FR",
          "slug": "villeparisis",
          "canonical_path": "/cities/fr/villeparisis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93078",
          "name": "Villepinte",
          "country_code": "FR",
          "slug": "villepinte",
          "canonical_path": "/cities/fr/villepinte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78674",
          "name": "Villepreux",
          "country_code": "FR",
          "slug": "villepreux",
          "canonical_path": "/cities/fr/villepreux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:42332",
          "name": "Villerest",
          "country_code": "FR",
          "slug": "villerest",
          "canonical_path": "/cities/fr/villerest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:02810",
          "name": "Villers-Cotterêts",
          "country_code": "FR",
          "slug": "villers-cotterets",
          "canonical_path": "/cities/fr/villers-cotterets/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:25321",
          "name": "Villers-le-Lac",
          "country_code": "FR",
          "slug": "villers-le-lac",
          "canonical_path": "/cities/fr/villers-le-lac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54578",
          "name": "Villers-lès-Nancy",
          "country_code": "FR",
          "slug": "villers-les-nancy",
          "canonical_path": "/cities/fr/villers-les-nancy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:60684",
          "name": "Villers-Saint-Paul",
          "country_code": "FR",
          "slug": "villers-saint-paul",
          "canonical_path": "/cities/fr/villers-saint-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:54580",
          "name": "Villerupt",
          "country_code": "FR",
          "slug": "villerupt",
          "canonical_path": "/cities/fr/villerupt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:93079",
          "name": "Villetaneuse",
          "country_code": "FR",
          "slug": "villetaneuse",
          "canonical_path": "/cities/fr/villetaneuse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38557",
          "name": "Villette-d'Anthon",
          "country_code": "FR",
          "slug": "villette-d-anthon",
          "canonical_path": "/cities/fr/villette-d-anthon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69266",
          "name": "Villeurbanne",
          "country_code": "FR",
          "slug": "villeurbanne",
          "canonical_path": "/cities/fr/villeurbanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:95680",
          "name": "Villiers-le-Bel",
          "country_code": "FR",
          "slug": "villiers-le-bel",
          "canonical_path": "/cities/fr/villiers-le-bel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94079",
          "name": "Villiers-sur-Marne",
          "country_code": "FR",
          "slug": "villiers-sur-marne",
          "canonical_path": "/cities/fr/villiers-sur-marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94080",
          "name": "Vincennes",
          "country_code": "FR",
          "slug": "vincennes",
          "canonical_path": "/cities/fr/vincennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:69157",
          "name": "Vindry-sur-Turdine",
          "country_code": "FR",
          "slug": "vindry-sur-turdine",
          "canonical_path": "/cities/fr/vindry-sur-turdine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:41295",
          "name": "Vineuil",
          "country_code": "FR",
          "slug": "vineuil",
          "canonical_path": "/cities/fr/vineuil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2967972",
          "name": "Vire",
          "country_code": "FR",
          "slug": "vire",
          "canonical_path": "/cities/fr/vire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:14762",
          "name": "Vire Normandie",
          "country_code": "FR",
          "slug": "vire-normandie",
          "canonical_path": "/cities/fr/vire-normandie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:01451",
          "name": "Viriat",
          "country_code": "FR",
          "slug": "viriat",
          "canonical_path": "/cities/fr/viriat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78686",
          "name": "Viroflay",
          "country_code": "FR",
          "slug": "viroflay",
          "canonical_path": "/cities/fr/viroflay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:74309",
          "name": "Viry",
          "country_code": "FR",
          "slug": "viry",
          "canonical_path": "/cities/fr/viry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91687",
          "name": "Viry-Châtillon",
          "country_code": "FR",
          "slug": "viry-chatillon",
          "canonical_path": "/cities/fr/viry-chatillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:35360",
          "name": "Vitré",
          "country_code": "FR",
          "slug": "vitre",
          "canonical_path": "/cities/fr/vitre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:13117",
          "name": "Vitrolles",
          "country_code": "FR",
          "slug": "vitrolles",
          "canonical_path": "/cities/fr/vitrolles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:51649",
          "name": "Vitry-le-François",
          "country_code": "FR",
          "slug": "vitry-le-francois",
          "canonical_path": "/cities/fr/vitry-le-francois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:94081",
          "name": "Vitry-sur-Seine",
          "country_code": "FR",
          "slug": "vitry-sur-seine",
          "canonical_path": "/cities/fr/vitry-sur-seine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:geonames:2967845",
          "name": "Vittel",
          "country_code": "FR",
          "slug": "vittel",
          "canonical_path": "/cities/fr/vittel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38562",
          "name": "Vizille",
          "country_code": "FR",
          "slug": "vizille",
          "canonical_path": "/cities/fr/vizille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38563",
          "name": "Voiron",
          "country_code": "FR",
          "slug": "voiron",
          "canonical_path": "/cities/fr/voiron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:78688",
          "name": "Voisins-le-Bretonneux",
          "country_code": "FR",
          "slug": "voisins-le-bretonneux",
          "canonical_path": "/cities/fr/voisins-le-bretonneux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:38565",
          "name": "Voreppe",
          "country_code": "FR",
          "slug": "voreppe",
          "canonical_path": "/cities/fr/voreppe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:86297",
          "name": "Vouneuil-sous-Biard",
          "country_code": "FR",
          "slug": "vouneuil-sous-biard",
          "canonical_path": "/cities/fr/vouneuil-sous-biard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59632",
          "name": "Wallers",
          "country_code": "FR",
          "slug": "wallers",
          "canonical_path": "/cities/fr/wallers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59636",
          "name": "Wambrechies",
          "country_code": "FR",
          "slug": "wambrechies",
          "canonical_path": "/cities/fr/wambrechies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59646",
          "name": "Wasquehal",
          "country_code": "FR",
          "slug": "wasquehal",
          "canonical_path": "/cities/fr/wasquehal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67520",
          "name": "Wasselonne",
          "country_code": "FR",
          "slug": "wasselonne",
          "canonical_path": "/cities/fr/wasselonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59648",
          "name": "Wattignies",
          "country_code": "FR",
          "slug": "wattignies",
          "canonical_path": "/cities/fr/wattignies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59650",
          "name": "Wattrelos",
          "country_code": "FR",
          "slug": "wattrelos",
          "canonical_path": "/cities/fr/wattrelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59653",
          "name": "Wavrin",
          "country_code": "FR",
          "slug": "wavrin",
          "canonical_path": "/cities/fr/wavrin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59654",
          "name": "Waziers",
          "country_code": "FR",
          "slug": "waziers",
          "canonical_path": "/cities/fr/waziers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59656",
          "name": "Wervicq-Sud",
          "country_code": "FR",
          "slug": "wervicq-sud",
          "canonical_path": "/cities/fr/wervicq-sud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62893",
          "name": "Wimereux",
          "country_code": "FR",
          "slug": "wimereux",
          "canonical_path": "/cities/fr/wimereux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:62895",
          "name": "Wingles",
          "country_code": "FR",
          "slug": "wingles",
          "canonical_path": "/cities/fr/wingles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68374",
          "name": "Wintzenheim",
          "country_code": "FR",
          "slug": "wintzenheim",
          "canonical_path": "/cities/fr/wintzenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:67544",
          "name": "Wissembourg",
          "country_code": "FR",
          "slug": "wissembourg",
          "canonical_path": "/cities/fr/wissembourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91689",
          "name": "Wissous",
          "country_code": "FR",
          "slug": "wissous",
          "canonical_path": "/cities/fr/wissous/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68375",
          "name": "Wittelsheim",
          "country_code": "FR",
          "slug": "wittelsheim",
          "canonical_path": "/cities/fr/wittelsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:68376",
          "name": "Wittenheim",
          "country_code": "FR",
          "slug": "wittenheim",
          "canonical_path": "/cities/fr/wittenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57751",
          "name": "Woippy",
          "country_code": "FR",
          "slug": "woippy",
          "canonical_path": "/cities/fr/woippy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:59663",
          "name": "Wormhout",
          "country_code": "FR",
          "slug": "wormhout",
          "canonical_path": "/cities/fr/wormhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:91691",
          "name": "Yerres",
          "country_code": "FR",
          "slug": "yerres",
          "canonical_path": "/cities/fr/yerres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:22389",
          "name": "Yffiniac",
          "country_code": "FR",
          "slug": "yffiniac",
          "canonical_path": "/cities/fr/yffiniac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:43268",
          "name": "Yssingeaux",
          "country_code": "FR",
          "slug": "yssingeaux",
          "canonical_path": "/cities/fr/yssingeaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:57757",
          "name": "Yutz",
          "country_code": "FR",
          "slug": "yutz",
          "canonical_path": "/cities/fr/yutz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:76758",
          "name": "Yvetot",
          "country_code": "FR",
          "slug": "yvetot",
          "canonical_path": "/cities/fr/yvetot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:fr:insee5:03321",
          "name": "Yzeure",
          "country_code": "FR",
          "slug": "yzeure",
          "canonical_path": "/cities/fr/yzeure/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "DE",
      "path": "cities/de-1.json",
      "city_count": 1594,
      "cities": [
        {
          "entity_id": "city:de:ags:05334002",
          "name": "Aachen",
          "country_code": "DE",
          "slug": "aachen",
          "canonical_path": "/cities/de/aachen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3951",
          "name": "Aalen",
          "country_code": "DE",
          "slug": "aalen",
          "canonical_path": "/cities/de/aalen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q261822",
          "name": "Abenberg",
          "country_code": "DE",
          "slug": "abenberg",
          "canonical_path": "/cities/de/abenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q255698",
          "name": "Abensberg",
          "country_code": "DE",
          "slug": "abensberg",
          "canonical_path": "/cities/de/abensberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959766",
          "name": "Abtsgmünd",
          "country_code": "DE",
          "slug": "abtsgmund",
          "canonical_path": "/cities/de/abtsgmund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q373824",
          "name": "Achern",
          "country_code": "DE",
          "slug": "achern",
          "canonical_path": "/cities/de/achern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16143",
          "name": "Achim",
          "country_code": "DE",
          "slug": "achim",
          "canonical_path": "/cities/de/achim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959548",
          "name": "Adelebsen",
          "country_code": "DE",
          "slug": "adelebsen",
          "canonical_path": "/cities/de/adelebsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959514",
          "name": "Adelsdorf",
          "country_code": "DE",
          "slug": "adelsdorf",
          "canonical_path": "/cities/de/adelsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q355435",
          "name": "Adelsheim",
          "country_code": "DE",
          "slug": "adelsheim",
          "canonical_path": "/cities/de/adelsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q183485",
          "name": "Adenau",
          "country_code": "DE",
          "slug": "adenau",
          "canonical_path": "/cities/de/adenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959479",
          "name": "Adendorf",
          "country_code": "DE",
          "slug": "adendorf",
          "canonical_path": "/cities/de/adendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959390",
          "name": "Adorf",
          "country_code": "DE",
          "slug": "adorf",
          "canonical_path": "/cities/de/adorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46853",
          "name": "Adorf/Vogtl.",
          "country_code": "DE",
          "slug": "adorf-vogtl",
          "canonical_path": "/cities/de/adorf-vogtl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959374",
          "name": "Aerzen",
          "country_code": "DE",
          "slug": "aerzen",
          "canonical_path": "/cities/de/aerzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959343",
          "name": "Affing",
          "country_code": "DE",
          "slug": "affing",
          "canonical_path": "/cities/de/affing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14888",
          "name": "Ahaus",
          "country_code": "DE",
          "slug": "ahaus",
          "canonical_path": "/cities/de/ahaus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959226",
          "name": "Ahlem",
          "country_code": "DE",
          "slug": "ahlem",
          "canonical_path": "/cities/de/ahlem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1132",
          "name": "Ahlen",
          "country_code": "DE",
          "slug": "ahlen",
          "canonical_path": "/cities/de/ahlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959205",
          "name": "Ahlerstedt",
          "country_code": "DE",
          "slug": "ahlerstedt",
          "canonical_path": "/cities/de/ahlerstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2959084",
          "name": "Ahrensbök",
          "country_code": "DE",
          "slug": "ahrensbok",
          "canonical_path": "/cities/de/ahrensbok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16104",
          "name": "Ahrensburg",
          "country_code": "DE",
          "slug": "ahrensburg",
          "canonical_path": "/cities/de/ahrensburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q251678",
          "name": "Aichach",
          "country_code": "DE",
          "slug": "aichach",
          "canonical_path": "/cities/de/aichach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82684",
          "name": "Aichtal",
          "country_code": "DE",
          "slug": "aichtal",
          "canonical_path": "/cities/de/aichtal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958904",
          "name": "Aidlingen",
          "country_code": "DE",
          "slug": "aidlingen",
          "canonical_path": "/cities/de/aidlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958831",
          "name": "Ainring",
          "country_code": "DE",
          "slug": "ainring",
          "canonical_path": "/cities/de/ainring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958781",
          "name": "Aken",
          "country_code": "DE",
          "slug": "aken",
          "canonical_path": "/cities/de/aken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q417336",
          "name": "Aken (Elbe)",
          "country_code": "DE",
          "slug": "aken-elbe",
          "canonical_path": "/cities/de/aken-elbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958744",
          "name": "Albbruck",
          "country_code": "DE",
          "slug": "albbruck",
          "canonical_path": "/cities/de/albbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7019",
          "name": "Albstadt",
          "country_code": "DE",
          "slug": "albstadt",
          "canonical_path": "/cities/de/albstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958580",
          "name": "Aldenhoven",
          "country_code": "DE",
          "slug": "aldenhoven",
          "canonical_path": "/cities/de/aldenhoven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958575",
          "name": "Aldingen",
          "country_code": "DE",
          "slug": "aldingen",
          "canonical_path": "/cities/de/aldingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958535",
          "name": "Alfdorf",
          "country_code": "DE",
          "slug": "alfdorf",
          "canonical_path": "/cities/de/alfdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958533",
          "name": "Alfeld",
          "country_code": "DE",
          "slug": "alfeld",
          "canonical_path": "/cities/de/alfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486543",
          "name": "Alfeld (Leine)",
          "country_code": "DE",
          "slug": "alfeld-leine",
          "canonical_path": "/cities/de/alfeld-leine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958516",
          "name": "Alfter",
          "country_code": "DE",
          "slug": "alfter",
          "canonical_path": "/cities/de/alfter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958509",
          "name": "Algermissen",
          "country_code": "DE",
          "slug": "algermissen",
          "canonical_path": "/cities/de/algermissen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958438",
          "name": "Allendorf",
          "country_code": "DE",
          "slug": "allendorf",
          "canonical_path": "/cities/de/allendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q488153",
          "name": "Allendorf (Lumda)",
          "country_code": "DE",
          "slug": "allendorf-lumda",
          "canonical_path": "/cities/de/allendorf-lumda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958429",
          "name": "Allensbach",
          "country_code": "DE",
          "slug": "allensbach",
          "canonical_path": "/cities/de/allensbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958391",
          "name": "Allersberg",
          "country_code": "DE",
          "slug": "allersberg",
          "canonical_path": "/cities/de/allersberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q489932",
          "name": "Allstedt",
          "country_code": "DE",
          "slug": "allstedt",
          "canonical_path": "/cities/de/allstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958188",
          "name": "Alpen",
          "country_code": "DE",
          "slug": "alpen",
          "canonical_path": "/cities/de/alpen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82781",
          "name": "Alpirsbach",
          "country_code": "DE",
          "slug": "alpirsbach",
          "canonical_path": "/cities/de/alpirsbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3272934",
          "name": "Alsbach-Hähnlein",
          "country_code": "DE",
          "slug": "alsbach-hahnlein",
          "canonical_path": "/cities/de/alsbach-hahnlein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q488314",
          "name": "Alsfeld",
          "country_code": "DE",
          "slug": "alsfeld",
          "canonical_path": "/cities/de/alsfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q488270",
          "name": "Alsleben (Saale)",
          "country_code": "DE",
          "slug": "alsleben-saale",
          "canonical_path": "/cities/de/alsleben-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841684",
          "name": "Alt-Sanitz",
          "country_code": "DE",
          "slug": "alt-sanitz",
          "canonical_path": "/cities/de/alt-sanitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958085",
          "name": "Altbach",
          "country_code": "DE",
          "slug": "altbach",
          "canonical_path": "/cities/de/altbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q435295",
          "name": "Altdorf b.Nürnberg",
          "country_code": "DE",
          "slug": "altdorf-b-nurnberg",
          "canonical_path": "/cities/de/altdorf-b-nurnberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2958024",
          "name": "Altdorf bei Nürnberg",
          "country_code": "DE",
          "slug": "altdorf-bei-nurnberg",
          "canonical_path": "/cities/de/altdorf-bei-nurnberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5276",
          "name": "Altena",
          "country_code": "DE",
          "slug": "altena",
          "canonical_path": "/cities/de/altena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2957864",
          "name": "Altenbeken",
          "country_code": "DE",
          "slug": "altenbeken",
          "canonical_path": "/cities/de/altenbeken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q436724",
          "name": "Altenberg",
          "country_code": "DE",
          "slug": "altenberg",
          "canonical_path": "/cities/de/altenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2957829",
          "name": "Altenberge",
          "country_code": "DE",
          "slug": "altenberge",
          "canonical_path": "/cities/de/altenberge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15976",
          "name": "Altenburg",
          "country_code": "DE",
          "slug": "altenburg",
          "canonical_path": "/cities/de/altenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2957588",
          "name": "Altenholz",
          "country_code": "DE",
          "slug": "altenholz",
          "canonical_path": "/cities/de/altenholz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2957567",
          "name": "Altenkirchen",
          "country_code": "DE",
          "slug": "altenkirchen",
          "canonical_path": "/cities/de/altenkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q488373",
          "name": "Altenkirchen (Westerwald)",
          "country_code": "DE",
          "slug": "altenkirchen-westerwald",
          "canonical_path": "/cities/de/altenkirchen-westerwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2957555",
          "name": "Altenkunstadt",
          "country_code": "DE",
          "slug": "altenkunstadt",
          "canonical_path": "/cities/de/altenkunstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2957463",
          "name": "Altenstadt",
          "country_code": "DE",
          "slug": "altenstadt",
          "canonical_path": "/cities/de/altenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q157967",
          "name": "Altensteig",
          "country_code": "DE",
          "slug": "altensteig",
          "canonical_path": "/cities/de/altensteig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q53773",
          "name": "Altentreptow",
          "country_code": "DE",
          "slug": "altentreptow",
          "canonical_path": "/cities/de/altentreptow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3206149",
          "name": "Altes Lager",
          "country_code": "DE",
          "slug": "altes-lager",
          "canonical_path": "/cities/de/altes-lager/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2957133",
          "name": "Althengstett",
          "country_code": "DE",
          "slug": "althengstett",
          "canonical_path": "/cities/de/althengstett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q442339",
          "name": "Altlandsberg",
          "country_code": "DE",
          "slug": "altlandsberg",
          "canonical_path": "/cities/de/altlandsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2957021",
          "name": "Altlußheim",
          "country_code": "DE",
          "slug": "altlussheim",
          "canonical_path": "/cities/de/altlussheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2956951",
          "name": "Altomünster",
          "country_code": "DE",
          "slug": "altomunster",
          "canonical_path": "/cities/de/altomunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q256669",
          "name": "Altötting",
          "country_code": "DE",
          "slug": "altotting",
          "canonical_path": "/cities/de/altotting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2956891",
          "name": "Altrip",
          "country_code": "DE",
          "slug": "altrip",
          "canonical_path": "/cities/de/altrip/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2956787",
          "name": "Altusried",
          "country_code": "DE",
          "slug": "altusried",
          "canonical_path": "/cities/de/altusried/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q450697",
          "name": "Alzenau",
          "country_code": "DE",
          "slug": "alzenau",
          "canonical_path": "/cities/de/alzenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2956715",
          "name": "Alzenau in Unterfranken",
          "country_code": "DE",
          "slug": "alzenau-in-unterfranken",
          "canonical_path": "/cities/de/alzenau-in-unterfranken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q450726",
          "name": "Alzey",
          "country_code": "DE",
          "slug": "alzey",
          "canonical_path": "/cities/de/alzey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q59775091",
          "name": "Am Ettersberg",
          "country_code": "DE",
          "slug": "am-ettersberg",
          "canonical_path": "/cities/de/am-ettersberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q373902",
          "name": "Amöneburg",
          "country_code": "DE",
          "slug": "amoneburg",
          "canonical_path": "/cities/de/amoneburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q474051",
          "name": "Amorbach",
          "country_code": "DE",
          "slug": "amorbach",
          "canonical_path": "/cities/de/amorbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2956378",
          "name": "Ampfing",
          "country_code": "DE",
          "slug": "ampfing",
          "canonical_path": "/cities/de/ampfing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71167338",
          "name": "Amt Creuzburg",
          "country_code": "DE",
          "slug": "amt-creuzburg",
          "canonical_path": "/cities/de/amt-creuzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q59775092",
          "name": "An der Schmücke",
          "country_code": "DE",
          "slug": "an-der-schmucke",
          "canonical_path": "/cities/de/an-der-schmucke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490058",
          "name": "Andernach",
          "country_code": "DE",
          "slug": "andernach",
          "canonical_path": "/cities/de/andernach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490066",
          "name": "Angermünde",
          "country_code": "DE",
          "slug": "angermunde",
          "canonical_path": "/cities/de/angermunde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q488513",
          "name": "Anklam",
          "country_code": "DE",
          "slug": "anklam",
          "canonical_path": "/cities/de/anklam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2956014",
          "name": "Ankum",
          "country_code": "DE",
          "slug": "ankum",
          "canonical_path": "/cities/de/ankum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57944",
          "name": "Annaberg-Buchholz",
          "country_code": "DE",
          "slug": "annaberg-buchholz",
          "canonical_path": "/cities/de/annaberg-buchholz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490413",
          "name": "Annaburg",
          "country_code": "DE",
          "slug": "annaburg",
          "canonical_path": "/cities/de/annaburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22953",
          "name": "Annweiler am Trifels",
          "country_code": "DE",
          "slug": "annweiler-am-trifels",
          "canonical_path": "/cities/de/annweiler-am-trifels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2955940",
          "name": "Anröchte",
          "country_code": "DE",
          "slug": "anrochte",
          "canonical_path": "/cities/de/anrochte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14859",
          "name": "Ansbach",
          "country_code": "DE",
          "slug": "ansbach",
          "canonical_path": "/cities/de/ansbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2955817",
          "name": "Apen",
          "country_code": "DE",
          "slug": "apen",
          "canonical_path": "/cities/de/apen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490689",
          "name": "Apolda",
          "country_code": "DE",
          "slug": "apolda",
          "canonical_path": "/cities/de/apolda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2955745",
          "name": "Appen",
          "country_code": "DE",
          "slug": "appen",
          "canonical_path": "/cities/de/appen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490960",
          "name": "Arendsee (Altmark)",
          "country_code": "DE",
          "slug": "arendsee-altmark",
          "canonical_path": "/cities/de/arendsee-altmark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q493437",
          "name": "Arneburg",
          "country_code": "DE",
          "slug": "arneburg",
          "canonical_path": "/cities/de/arneburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522492",
          "name": "Arnis",
          "country_code": "DE",
          "slug": "arnis",
          "canonical_path": "/cities/de/arnis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3912",
          "name": "Arnsberg",
          "country_code": "DE",
          "slug": "arnsberg",
          "canonical_path": "/cities/de/arnsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490665",
          "name": "Arnstadt",
          "country_code": "DE",
          "slug": "arnstadt",
          "canonical_path": "/cities/de/arnstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2955429",
          "name": "Arnstorf",
          "country_code": "DE",
          "slug": "arnstorf",
          "canonical_path": "/cities/de/arnstorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q163346",
          "name": "Artern",
          "country_code": "DE",
          "slug": "artern",
          "canonical_path": "/cities/de/artern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2955315",
          "name": "Asbach",
          "country_code": "DE",
          "slug": "asbach",
          "canonical_path": "/cities/de/asbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3942",
          "name": "Aschaffenburg",
          "country_code": "DE",
          "slug": "aschaffenburg",
          "canonical_path": "/cities/de/aschaffenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2863652",
          "name": "Aschau im Chiemgau",
          "country_code": "DE",
          "slug": "aschau-im-chiemgau",
          "canonical_path": "/cities/de/aschau-im-chiemgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2955224",
          "name": "Ascheberg",
          "country_code": "DE",
          "slug": "ascheberg",
          "canonical_path": "/cities/de/ascheberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486991",
          "name": "Aschersleben",
          "country_code": "DE",
          "slug": "aschersleben",
          "canonical_path": "/cities/de/aschersleben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2955159",
          "name": "Aschheim",
          "country_code": "DE",
          "slug": "aschheim",
          "canonical_path": "/cities/de/aschheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3206150",
          "name": "Aspach",
          "country_code": "DE",
          "slug": "aspach",
          "canonical_path": "/cities/de/aspach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61621",
          "name": "Asperg",
          "country_code": "DE",
          "slug": "asperg",
          "canonical_path": "/cities/de/asperg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2955023",
          "name": "Asseln",
          "country_code": "DE",
          "slug": "asseln",
          "canonical_path": "/cities/de/asseln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558494",
          "name": "Aßlar",
          "country_code": "DE",
          "slug": "asslar",
          "canonical_path": "/cities/de/asslar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10887",
          "name": "Attendorn",
          "country_code": "DE",
          "slug": "attendorn",
          "canonical_path": "/cities/de/attendorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2954088",
          "name": "Au in der Hallertau",
          "country_code": "DE",
          "slug": "au-in-der-hallertau",
          "canonical_path": "/cities/de/au-in-der-hallertau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q278783",
          "name": "Aub",
          "country_code": "DE",
          "slug": "aub",
          "canonical_path": "/cities/de/aub/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2954695",
          "name": "Aue",
          "country_code": "DE",
          "slug": "aue",
          "canonical_path": "/cities/de/aue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q59564401",
          "name": "Aue-Bad Schlema",
          "country_code": "DE",
          "slug": "aue-bad-schlema",
          "canonical_path": "/cities/de/aue-bad-schlema/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2954602",
          "name": "Auerbach",
          "country_code": "DE",
          "slug": "auerbach",
          "canonical_path": "/cities/de/auerbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q523956",
          "name": "Auerbach i.d.OPf.",
          "country_code": "DE",
          "slug": "auerbach-i-d-opf",
          "canonical_path": "/cities/de/auerbach-i-d-opf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46843",
          "name": "Auerbach/Vogtl.",
          "country_code": "DE",
          "slug": "auerbach-vogtl",
          "canonical_path": "/cities/de/auerbach-vogtl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:09761000",
          "name": "Augsburg",
          "country_code": "DE",
          "slug": "augsburg",
          "canonical_path": "/cities/de/augsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2954164",
          "name": "Augustdorf",
          "country_code": "DE",
          "slug": "augustdorf",
          "canonical_path": "/cities/de/augustdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71090",
          "name": "Augustusburg",
          "country_code": "DE",
          "slug": "augustusburg",
          "canonical_path": "/cities/de/augustusburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505459",
          "name": "Aulendorf",
          "country_code": "DE",
          "slug": "aulendorf",
          "canonical_path": "/cities/de/aulendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4426",
          "name": "Auma-Weidatal",
          "country_code": "DE",
          "slug": "auma-weidatal",
          "canonical_path": "/cities/de/auma-weidatal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14839",
          "name": "Aurich",
          "country_code": "DE",
          "slug": "aurich",
          "canonical_path": "/cities/de/aurich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q523273",
          "name": "Bacharach",
          "country_code": "DE",
          "slug": "bacharach",
          "canonical_path": "/cities/de/bacharach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14947",
          "name": "Backnang",
          "country_code": "DE",
          "slug": "backnang",
          "canonical_path": "/cities/de/backnang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953559",
          "name": "Bad Abbach",
          "country_code": "DE",
          "slug": "bad-abbach",
          "canonical_path": "/cities/de/bad-abbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5758",
          "name": "Bad Aibling",
          "country_code": "DE",
          "slug": "bad-aibling",
          "canonical_path": "/cities/de/bad-aibling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498078",
          "name": "Bad Arolsen",
          "country_code": "DE",
          "slug": "bad-arolsen",
          "canonical_path": "/cities/de/bad-arolsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q523642",
          "name": "Bad Belzig",
          "country_code": "DE",
          "slug": "bad-belzig",
          "canonical_path": "/cities/de/bad-belzig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q574332",
          "name": "Bad Bentheim",
          "country_code": "DE",
          "slug": "bad-bentheim",
          "canonical_path": "/cities/de/bad-bentheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q426807",
          "name": "Bad Bergzabern",
          "country_code": "DE",
          "slug": "bad-bergzabern",
          "canonical_path": "/cities/de/bad-bergzabern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q630334",
          "name": "Bad Berka",
          "country_code": "DE",
          "slug": "bad-berka",
          "canonical_path": "/cities/de/bad-berka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10944",
          "name": "Bad Berleburg",
          "country_code": "DE",
          "slug": "bad-berleburg",
          "canonical_path": "/cities/de/bad-berleburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504528",
          "name": "Bad Berneck i.Fichtelgebirge",
          "country_code": "DE",
          "slug": "bad-berneck-i-fichtelgebirge",
          "canonical_path": "/cities/de/bad-berneck-i-fichtelgebirge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558569",
          "name": "Bad Bevensen",
          "country_code": "DE",
          "slug": "bad-bevensen",
          "canonical_path": "/cities/de/bad-bevensen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522601",
          "name": "Bad Bibra",
          "country_code": "DE",
          "slug": "bad-bibra",
          "canonical_path": "/cities/de/bad-bibra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948384",
          "name": "Bad Birnbach",
          "country_code": "DE",
          "slug": "bad-birnbach",
          "canonical_path": "/cities/de/bad-birnbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518432",
          "name": "Bad Blankenburg",
          "country_code": "DE",
          "slug": "bad-blankenburg",
          "canonical_path": "/cities/de/bad-blankenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q523987",
          "name": "Bad Bramstedt",
          "country_code": "DE",
          "slug": "bad-bramstedt",
          "canonical_path": "/cities/de/bad-bramstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541726",
          "name": "Bad Breisig",
          "country_code": "DE",
          "slug": "bad-breisig",
          "canonical_path": "/cities/de/bad-breisig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504513",
          "name": "Bad Brückenau",
          "country_code": "DE",
          "slug": "bad-bruckenau",
          "canonical_path": "/cities/de/bad-bruckenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q496489",
          "name": "Bad Buchau",
          "country_code": "DE",
          "slug": "bad-buchau",
          "canonical_path": "/cities/de/bad-buchau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558512",
          "name": "Bad Camberg",
          "country_code": "DE",
          "slug": "bad-camberg",
          "canonical_path": "/cities/de/bad-camberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q9536",
          "name": "Bad Doberan",
          "country_code": "DE",
          "slug": "bad-doberan",
          "canonical_path": "/cities/de/bad-doberan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q242195",
          "name": "Bad Driburg",
          "country_code": "DE",
          "slug": "bad-driburg",
          "canonical_path": "/cities/de/bad-driburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12041",
          "name": "Bad Düben",
          "country_code": "DE",
          "slug": "bad-duben",
          "canonical_path": "/cities/de/bad-duben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22901",
          "name": "Bad Dürkheim",
          "country_code": "DE",
          "slug": "bad-durkheim",
          "canonical_path": "/cities/de/bad-durkheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518392",
          "name": "Bad Dürrenberg",
          "country_code": "DE",
          "slug": "bad-durrenberg",
          "canonical_path": "/cities/de/bad-durrenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82770",
          "name": "Bad Dürrheim",
          "country_code": "DE",
          "slug": "bad-durrheim",
          "canonical_path": "/cities/de/bad-durrheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46856",
          "name": "Bad Elster",
          "country_code": "DE",
          "slug": "bad-elster",
          "canonical_path": "/cities/de/bad-elster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490670",
          "name": "Bad Ems",
          "country_code": "DE",
          "slug": "bad-ems",
          "canonical_path": "/cities/de/bad-ems/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930408",
          "name": "Bad Endbach",
          "country_code": "DE",
          "slug": "bad-endbach",
          "canonical_path": "/cities/de/bad-endbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930367",
          "name": "Bad Endorf",
          "country_code": "DE",
          "slug": "bad-endorf",
          "canonical_path": "/cities/de/bad-endorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953464",
          "name": "Bad Essen",
          "country_code": "DE",
          "slug": "bad-essen",
          "canonical_path": "/cities/de/bad-essen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q501609",
          "name": "Bad Fallingbostel",
          "country_code": "DE",
          "slug": "bad-fallingbostel",
          "canonical_path": "/cities/de/bad-fallingbostel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953460",
          "name": "Bad Feilnbach",
          "country_code": "DE",
          "slug": "bad-feilnbach",
          "canonical_path": "/cities/de/bad-feilnbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953459",
          "name": "Bad Frankenhausen",
          "country_code": "DE",
          "slug": "bad-frankenhausen",
          "canonical_path": "/cities/de/bad-frankenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q151876",
          "name": "Bad Frankenhausen/Kyffhäuser",
          "country_code": "DE",
          "slug": "bad-frankenhausen-kyffhauser",
          "canonical_path": "/cities/de/bad-frankenhausen-kyffhauser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953458",
          "name": "Bad Freienwalde",
          "country_code": "DE",
          "slug": "bad-freienwalde",
          "canonical_path": "/cities/de/bad-freienwalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q427655",
          "name": "Bad Freienwalde (Oder)",
          "country_code": "DE",
          "slug": "bad-freienwalde-oder",
          "canonical_path": "/cities/de/bad-freienwalde-oder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502646",
          "name": "Bad Friedrichshall",
          "country_code": "DE",
          "slug": "bad-friedrichshall",
          "canonical_path": "/cities/de/bad-friedrichshall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2923500",
          "name": "Bad Füssing",
          "country_code": "DE",
          "slug": "bad-fussing",
          "canonical_path": "/cities/de/bad-fussing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486570",
          "name": "Bad Gandersheim",
          "country_code": "DE",
          "slug": "bad-gandersheim",
          "canonical_path": "/cities/de/bad-gandersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6307",
          "name": "Bad Gottleuba-Berggießhübel",
          "country_code": "DE",
          "slug": "bad-gottleuba-berggiesshubel",
          "canonical_path": "/cities/de/bad-gottleuba-berggiesshubel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917461",
          "name": "Bad Griesbach",
          "country_code": "DE",
          "slug": "bad-griesbach",
          "canonical_path": "/cities/de/bad-griesbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q253284",
          "name": "Bad Griesbach i.Rottal",
          "country_code": "DE",
          "slug": "bad-griesbach-i-rottal",
          "canonical_path": "/cities/de/bad-griesbach-i-rottal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522459",
          "name": "Bad Harzburg",
          "country_code": "DE",
          "slug": "bad-harzburg",
          "canonical_path": "/cities/de/bad-harzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q374242",
          "name": "Bad Herrenalb",
          "country_code": "DE",
          "slug": "bad-herrenalb",
          "canonical_path": "/cities/de/bad-herrenalb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16145",
          "name": "Bad Hersfeld",
          "country_code": "DE",
          "slug": "bad-hersfeld",
          "canonical_path": "/cities/de/bad-hersfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4165",
          "name": "Bad Homburg v. d. Hoehe",
          "country_code": "DE",
          "slug": "bad-homburg-v-d-hoehe",
          "canonical_path": "/cities/de/bad-homburg-v-d-hoehe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12434",
          "name": "Bad Honnef",
          "country_code": "DE",
          "slug": "bad-honnef",
          "canonical_path": "/cities/de/bad-honnef/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q537973",
          "name": "Bad Hönningen",
          "country_code": "DE",
          "slug": "bad-honningen",
          "canonical_path": "/cities/de/bad-honningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q501621",
          "name": "Bad Iburg",
          "country_code": "DE",
          "slug": "bad-iburg",
          "canonical_path": "/cities/de/bad-iburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506295",
          "name": "Bad Karlshafen",
          "country_code": "DE",
          "slug": "bad-karlshafen",
          "canonical_path": "/cities/de/bad-karlshafen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q488346",
          "name": "Bad Kissingen",
          "country_code": "DE",
          "slug": "bad-kissingen",
          "canonical_path": "/cities/de/bad-kissingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q379121",
          "name": "Bad König",
          "country_code": "DE",
          "slug": "bad-konig",
          "canonical_path": "/cities/de/bad-konig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571926",
          "name": "Bad Königshofen i.Grabfeld",
          "country_code": "DE",
          "slug": "bad-konigshofen-i-grabfeld",
          "canonical_path": "/cities/de/bad-konigshofen-i-grabfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953418",
          "name": "Bad Kösen",
          "country_code": "DE",
          "slug": "bad-kosen",
          "canonical_path": "/cities/de/bad-kosen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4431",
          "name": "Bad Köstritz",
          "country_code": "DE",
          "slug": "bad-kostritz",
          "canonical_path": "/cities/de/bad-kostritz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q623464",
          "name": "Bad Kötzting",
          "country_code": "DE",
          "slug": "bad-kotzting",
          "canonical_path": "/cities/de/bad-kotzting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7047",
          "name": "Bad Kreuznach",
          "country_code": "DE",
          "slug": "bad-kreuznach",
          "canonical_path": "/cities/de/bad-kreuznach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q496391",
          "name": "Bad Krozingen",
          "country_code": "DE",
          "slug": "bad-krozingen",
          "canonical_path": "/cities/de/bad-krozingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6755",
          "name": "Bad Laasphe",
          "country_code": "DE",
          "slug": "bad-laasphe",
          "canonical_path": "/cities/de/bad-laasphe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881972",
          "name": "Bad Laer",
          "country_code": "DE",
          "slug": "bad-laer",
          "canonical_path": "/cities/de/bad-laer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518368",
          "name": "Bad Langensalza",
          "country_code": "DE",
          "slug": "bad-langensalza",
          "canonical_path": "/cities/de/bad-langensalza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q523975",
          "name": "Bad Lauchstädt",
          "country_code": "DE",
          "slug": "bad-lauchstadt",
          "canonical_path": "/cities/de/bad-lauchstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10739",
          "name": "Bad Lausick",
          "country_code": "DE",
          "slug": "bad-lausick",
          "canonical_path": "/cities/de/bad-lausick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q309505",
          "name": "Bad Lauterberg im Harz",
          "country_code": "DE",
          "slug": "bad-lauterberg-im-harz",
          "canonical_path": "/cities/de/bad-lauterberg-im-harz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530225",
          "name": "Bad Liebenstein",
          "country_code": "DE",
          "slug": "bad-liebenstein",
          "canonical_path": "/cities/de/bad-liebenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q589277",
          "name": "Bad Liebenwerda",
          "country_code": "DE",
          "slug": "bad-liebenwerda",
          "canonical_path": "/cities/de/bad-liebenwerda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522349",
          "name": "Bad Liebenzell",
          "country_code": "DE",
          "slug": "bad-liebenzell",
          "canonical_path": "/cities/de/bad-liebenzell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q183307",
          "name": "Bad Lippspringe",
          "country_code": "DE",
          "slug": "bad-lippspringe",
          "canonical_path": "/cities/de/bad-lippspringe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505656",
          "name": "Bad Lobenstein",
          "country_code": "DE",
          "slug": "bad-lobenstein",
          "canonical_path": "/cities/de/bad-lobenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953404",
          "name": "Bad Marienberg",
          "country_code": "DE",
          "slug": "bad-marienberg",
          "canonical_path": "/cities/de/bad-marienberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q534491",
          "name": "Bad Marienberg (Westerwald)",
          "country_code": "DE",
          "slug": "bad-marienberg-westerwald",
          "canonical_path": "/cities/de/bad-marienberg-westerwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61942",
          "name": "Bad Mergentheim",
          "country_code": "DE",
          "slug": "bad-mergentheim",
          "canonical_path": "/cities/de/bad-mergentheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q39779",
          "name": "Bad Münder am Deister",
          "country_code": "DE",
          "slug": "bad-munder-am-deister",
          "canonical_path": "/cities/de/bad-munder-am-deister/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q241450",
          "name": "Bad Münstereifel",
          "country_code": "DE",
          "slug": "bad-munstereifel",
          "canonical_path": "/cities/de/bad-munstereifel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16105",
          "name": "Bad Nauheim",
          "country_code": "DE",
          "slug": "bad-nauheim",
          "canonical_path": "/cities/de/bad-nauheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q543342",
          "name": "Bad Nenndorf",
          "country_code": "DE",
          "slug": "bad-nenndorf",
          "canonical_path": "/cities/de/bad-nenndorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522620",
          "name": "Bad Neuenahr-Ahrweiler",
          "country_code": "DE",
          "slug": "bad-neuenahr-ahrweiler",
          "canonical_path": "/cities/de/bad-neuenahr-ahrweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q311098",
          "name": "Bad Neustadt a.d.Saale",
          "country_code": "DE",
          "slug": "bad-neustadt-a-d-saale",
          "canonical_path": "/cities/de/bad-neustadt-a-d-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953389",
          "name": "Bad Neustadt an der Saale",
          "country_code": "DE",
          "slug": "bad-neustadt-an-der-saale",
          "canonical_path": "/cities/de/bad-neustadt-an-der-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6858",
          "name": "Bad Oeynhausen",
          "country_code": "DE",
          "slug": "bad-oeynhausen",
          "canonical_path": "/cities/de/bad-oeynhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q155226",
          "name": "Bad Oldesloe",
          "country_code": "DE",
          "slug": "bad-oldesloe",
          "canonical_path": "/cities/de/bad-oldesloe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q574465",
          "name": "Bad Orb",
          "country_code": "DE",
          "slug": "bad-orb",
          "canonical_path": "/cities/de/bad-orb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q556352",
          "name": "Bad Pyrmont",
          "country_code": "DE",
          "slug": "bad-pyrmont",
          "canonical_path": "/cities/de/bad-pyrmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q27918",
          "name": "Bad Rappenau",
          "country_code": "DE",
          "slug": "bad-rappenau",
          "canonical_path": "/cities/de/bad-rappenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q487971",
          "name": "Bad Reichenhall",
          "country_code": "DE",
          "slug": "bad-reichenhall",
          "canonical_path": "/cities/de/bad-reichenhall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q491118",
          "name": "Bad Rodach",
          "country_code": "DE",
          "slug": "bad-rodach",
          "canonical_path": "/cities/de/bad-rodach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953367",
          "name": "Bad Rothenfelde",
          "country_code": "DE",
          "slug": "bad-rothenfelde",
          "canonical_path": "/cities/de/bad-rothenfelde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541860",
          "name": "Bad Sachsa",
          "country_code": "DE",
          "slug": "bad-sachsa",
          "canonical_path": "/cities/de/bad-sachsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522362",
          "name": "Bad Säckingen",
          "country_code": "DE",
          "slug": "bad-sackingen",
          "canonical_path": "/cities/de/bad-sackingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q633004",
          "name": "Bad Salzdetfurth",
          "country_code": "DE",
          "slug": "bad-salzdetfurth",
          "canonical_path": "/cities/de/bad-salzdetfurth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4108",
          "name": "Bad Salzuflen",
          "country_code": "DE",
          "slug": "bad-salzuflen",
          "canonical_path": "/cities/de/bad-salzuflen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502662",
          "name": "Bad Salzungen",
          "country_code": "DE",
          "slug": "bad-salzungen",
          "canonical_path": "/cities/de/bad-salzungen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953355",
          "name": "Bad Sassendorf",
          "country_code": "DE",
          "slug": "bad-sassendorf",
          "canonical_path": "/cities/de/bad-sassendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83190",
          "name": "Bad Saulgau",
          "country_code": "DE",
          "slug": "bad-saulgau",
          "canonical_path": "/cities/de/bad-saulgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6406",
          "name": "Bad Schandau",
          "country_code": "DE",
          "slug": "bad-schandau",
          "canonical_path": "/cities/de/bad-schandau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2838671",
          "name": "Bad Schlema",
          "country_code": "DE",
          "slug": "bad-schlema",
          "canonical_path": "/cities/de/bad-schlema/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522557",
          "name": "Bad Schmiedeberg",
          "country_code": "DE",
          "slug": "bad-schmiedeberg",
          "canonical_path": "/cities/de/bad-schmiedeberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522513",
          "name": "Bad Schussenried",
          "country_code": "DE",
          "slug": "bad-schussenried",
          "canonical_path": "/cities/de/bad-schussenried/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522541",
          "name": "Bad Schwalbach",
          "country_code": "DE",
          "slug": "bad-schwalbach",
          "canonical_path": "/cities/de/bad-schwalbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516432",
          "name": "Bad Schwartau",
          "country_code": "DE",
          "slug": "bad-schwartau",
          "canonical_path": "/cities/de/bad-schwartau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q496050",
          "name": "Bad Segeberg",
          "country_code": "DE",
          "slug": "bad-segeberg",
          "canonical_path": "/cities/de/bad-segeberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520075",
          "name": "Bad Sobernheim",
          "country_code": "DE",
          "slug": "bad-sobernheim",
          "canonical_path": "/cities/de/bad-sobernheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q39785",
          "name": "Bad Soden am Taunus",
          "country_code": "DE",
          "slug": "bad-soden-am-taunus",
          "canonical_path": "/cities/de/bad-soden-am-taunus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558600",
          "name": "Bad Soden-Salmünster",
          "country_code": "DE",
          "slug": "bad-soden-salmunster",
          "canonical_path": "/cities/de/bad-soden-salmunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q564821",
          "name": "Bad Sooden-Allendorf",
          "country_code": "DE",
          "slug": "bad-sooden-allendorf",
          "canonical_path": "/cities/de/bad-sooden-allendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504634",
          "name": "Bad Staffelstein",
          "country_code": "DE",
          "slug": "bad-staffelstein",
          "canonical_path": "/cities/de/bad-staffelstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q124840",
          "name": "Bad Sulza",
          "country_code": "DE",
          "slug": "bad-sulza",
          "canonical_path": "/cities/de/bad-sulza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507967",
          "name": "Bad Sülze",
          "country_code": "DE",
          "slug": "bad-sulze",
          "canonical_path": "/cities/de/bad-sulze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503266",
          "name": "Bad Teinach-Zavelstein",
          "country_code": "DE",
          "slug": "bad-teinach-zavelstein",
          "canonical_path": "/cities/de/bad-teinach-zavelstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q534508",
          "name": "Bad Tennstedt",
          "country_code": "DE",
          "slug": "bad-tennstedt",
          "canonical_path": "/cities/de/bad-tennstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q280491",
          "name": "Bad Tölz",
          "country_code": "DE",
          "slug": "bad-tolz",
          "canonical_path": "/cities/de/bad-tolz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83032",
          "name": "Bad Urach",
          "country_code": "DE",
          "slug": "bad-urach",
          "canonical_path": "/cities/de/bad-urach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16082",
          "name": "Bad Vilbel",
          "country_code": "DE",
          "slug": "bad-vilbel",
          "canonical_path": "/cities/de/bad-vilbel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515423",
          "name": "Bad Waldsee",
          "country_code": "DE",
          "slug": "bad-waldsee",
          "canonical_path": "/cities/de/bad-waldsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502755",
          "name": "Bad Wildbad",
          "country_code": "DE",
          "slug": "bad-wildbad",
          "canonical_path": "/cities/de/bad-wildbad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516462",
          "name": "Bad Wildungen",
          "country_code": "DE",
          "slug": "bad-wildungen",
          "canonical_path": "/cities/de/bad-wildungen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570108",
          "name": "Bad Wilsnack",
          "country_code": "DE",
          "slug": "bad-wilsnack",
          "canonical_path": "/cities/de/bad-wilsnack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q491535",
          "name": "Bad Wimpfen",
          "country_code": "DE",
          "slug": "bad-wimpfen",
          "canonical_path": "/cities/de/bad-wimpfen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q132278",
          "name": "Bad Windsheim",
          "country_code": "DE",
          "slug": "bad-windsheim",
          "canonical_path": "/cities/de/bad-windsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504579",
          "name": "Bad Wörishofen",
          "country_code": "DE",
          "slug": "bad-worishofen",
          "canonical_path": "/cities/de/bad-worishofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q183345",
          "name": "Bad Wünnenberg",
          "country_code": "DE",
          "slug": "bad-wunnenberg",
          "canonical_path": "/cities/de/bad-wunnenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506838",
          "name": "Bad Wurzach",
          "country_code": "DE",
          "slug": "bad-wurzach",
          "canonical_path": "/cities/de/bad-wurzach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953310",
          "name": "Bad Zwischenahn",
          "country_code": "DE",
          "slug": "bad-zwischenahn",
          "canonical_path": "/cities/de/bad-zwischenahn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4100",
          "name": "Baden-Baden",
          "country_code": "DE",
          "slug": "baden-baden",
          "canonical_path": "/cities/de/baden-baden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200894",
          "name": "Baesweiler",
          "country_code": "DE",
          "slug": "baesweiler",
          "canonical_path": "/cities/de/baesweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953222",
          "name": "Baienfurt",
          "country_code": "DE",
          "slug": "baienfurt",
          "canonical_path": "/cities/de/baienfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953197",
          "name": "Baiersbronn",
          "country_code": "DE",
          "slug": "baiersbronn",
          "canonical_path": "/cities/de/baiersbronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q163423",
          "name": "Baiersdorf",
          "country_code": "DE",
          "slug": "baiersdorf",
          "canonical_path": "/cities/de/baiersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953136",
          "name": "Bakum",
          "country_code": "DE",
          "slug": "bakum",
          "canonical_path": "/cities/de/bakum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16015",
          "name": "Balingen",
          "country_code": "DE",
          "slug": "balingen",
          "canonical_path": "/cities/de/balingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50886",
          "name": "Ballenstedt",
          "country_code": "DE",
          "slug": "ballenstedt",
          "canonical_path": "/cities/de/ballenstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2953008",
          "name": "Baltmannsweiler",
          "country_code": "DE",
          "slug": "baltmannsweiler",
          "canonical_path": "/cities/de/baltmannsweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5274",
          "name": "Balve",
          "country_code": "DE",
          "slug": "balve",
          "canonical_path": "/cities/de/balve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3936",
          "name": "Bamberg",
          "country_code": "DE",
          "slug": "bamberg",
          "canonical_path": "/cities/de/bamberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2952973",
          "name": "Bammental",
          "country_code": "DE",
          "slug": "bammental",
          "canonical_path": "/cities/de/bammental/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2952916",
          "name": "Bannewitz",
          "country_code": "DE",
          "slug": "bannewitz",
          "canonical_path": "/cities/de/bannewitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530185",
          "name": "Barby",
          "country_code": "DE",
          "slug": "barby",
          "canonical_path": "/cities/de/barby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2952814",
          "name": "Bardowick",
          "country_code": "DE",
          "slug": "bardowick",
          "canonical_path": "/cities/de/bardowick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q149921",
          "name": "Bargteheide",
          "country_code": "DE",
          "slug": "bargteheide",
          "canonical_path": "/cities/de/bargteheide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2952564",
          "name": "Barleben",
          "country_code": "DE",
          "slug": "barleben",
          "canonical_path": "/cities/de/barleben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516930",
          "name": "Barmstedt",
          "country_code": "DE",
          "slug": "barmstedt",
          "canonical_path": "/cities/de/barmstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q112615",
          "name": "Bärnau",
          "country_code": "DE",
          "slug": "barnau",
          "canonical_path": "/cities/de/barnau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2952452",
          "name": "Barnstorf",
          "country_code": "DE",
          "slug": "barnstorf",
          "canonical_path": "/cities/de/barnstorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q242953",
          "name": "Barntrup",
          "country_code": "DE",
          "slug": "barntrup",
          "canonical_path": "/cities/de/barntrup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2952436",
          "name": "Barop",
          "country_code": "DE",
          "slug": "barop",
          "canonical_path": "/cities/de/barop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2952415",
          "name": "Barsbüttel",
          "country_code": "DE",
          "slug": "barsbuttel",
          "canonical_path": "/cities/de/barsbuttel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16022",
          "name": "Barsinghausen",
          "country_code": "DE",
          "slug": "barsinghausen",
          "canonical_path": "/cities/de/barsinghausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2952398",
          "name": "Barßel",
          "country_code": "DE",
          "slug": "barssel",
          "canonical_path": "/cities/de/barssel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q161943",
          "name": "Barth",
          "country_code": "DE",
          "slug": "barth",
          "canonical_path": "/cities/de/barth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q311543",
          "name": "Baruth/Mark",
          "country_code": "DE",
          "slug": "baruth-mark",
          "canonical_path": "/cities/de/baruth-mark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q501865",
          "name": "Bassum",
          "country_code": "DE",
          "slug": "bassum",
          "canonical_path": "/cities/de/bassum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2952213",
          "name": "Battenberg",
          "country_code": "DE",
          "slug": "battenberg",
          "canonical_path": "/cities/de/battenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552488",
          "name": "Battenberg (Eder)",
          "country_code": "DE",
          "slug": "battenberg-eder",
          "canonical_path": "/cities/de/battenberg-eder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541832",
          "name": "Baumholder",
          "country_code": "DE",
          "slug": "baumholder",
          "canonical_path": "/cities/de/baumholder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504808",
          "name": "Baunach",
          "country_code": "DE",
          "slug": "baunach",
          "canonical_path": "/cities/de/baunach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516581",
          "name": "Baunatal",
          "country_code": "DE",
          "slug": "baunatal",
          "canonical_path": "/cities/de/baunatal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14835",
          "name": "Bautzen",
          "country_code": "DE",
          "slug": "bautzen",
          "canonical_path": "/cities/de/bautzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3923",
          "name": "Bayreuth",
          "country_code": "DE",
          "slug": "bayreuth",
          "canonical_path": "/cities/de/bayreuth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558530",
          "name": "Bebra",
          "country_code": "DE",
          "slug": "bebra",
          "canonical_path": "/cities/de/bebra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2951679",
          "name": "Beckingen",
          "country_code": "DE",
          "slug": "beckingen",
          "canonical_path": "/cities/de/beckingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2707",
          "name": "Beckum",
          "country_code": "DE",
          "slug": "beckum",
          "canonical_path": "/cities/de/beckum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q245292",
          "name": "Bedburg",
          "country_code": "DE",
          "slug": "bedburg",
          "canonical_path": "/cities/de/bedburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2951596",
          "name": "Beelen",
          "country_code": "DE",
          "slug": "beelen",
          "canonical_path": "/cities/de/beelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q544439",
          "name": "Beelitz",
          "country_code": "DE",
          "slug": "beelitz",
          "canonical_path": "/cities/de/beelitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2951556",
          "name": "Beerfelden",
          "country_code": "DE",
          "slug": "beerfelden",
          "canonical_path": "/cities/de/beerfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572615",
          "name": "Beeskow",
          "country_code": "DE",
          "slug": "beeskow",
          "canonical_path": "/cities/de/beeskow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q573230",
          "name": "Beilngries",
          "country_code": "DE",
          "slug": "beilngries",
          "canonical_path": "/cities/de/beilngries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2951265",
          "name": "Belecke",
          "country_code": "DE",
          "slug": "belecke",
          "canonical_path": "/cities/de/belecke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2951258",
          "name": "Belgern",
          "country_code": "DE",
          "slug": "belgern",
          "canonical_path": "/cities/de/belgern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2611974",
          "name": "Belgern-Schildau",
          "country_code": "DE",
          "slug": "belgern-schildau",
          "canonical_path": "/cities/de/belgern-schildau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2951206",
          "name": "Bellheim",
          "country_code": "DE",
          "slug": "bellheim",
          "canonical_path": "/cities/de/bellheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2951175",
          "name": "Belm",
          "country_code": "DE",
          "slug": "belm",
          "canonical_path": "/cities/de/belm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2951013",
          "name": "Benningen am Neckar",
          "country_code": "DE",
          "slug": "benningen-am-neckar",
          "canonical_path": "/cities/de/benningen-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14872",
          "name": "Bensheim",
          "country_code": "DE",
          "slug": "bensheim",
          "canonical_path": "/cities/de/bensheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2950898",
          "name": "Beratzhausen",
          "country_code": "DE",
          "slug": "beratzhausen",
          "canonical_path": "/cities/de/beratzhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q248062",
          "name": "Berching",
          "country_code": "DE",
          "slug": "berching",
          "canonical_path": "/cities/de/berching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2950881",
          "name": "Berchtesgaden",
          "country_code": "DE",
          "slug": "berchtesgaden",
          "canonical_path": "/cities/de/berchtesgaden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2950725",
          "name": "Berg",
          "country_code": "DE",
          "slug": "berg",
          "canonical_path": "/cities/de/berg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q123724612",
          "name": "Berga-Wünschendorf",
          "country_code": "DE",
          "slug": "berga-wunschendorf",
          "canonical_path": "/cities/de/berga-wunschendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492538",
          "name": "Bergen auf Rügen",
          "country_code": "DE",
          "slug": "bergen-auf-rugen",
          "canonical_path": "/cities/de/bergen-auf-rugen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3989",
          "name": "Bergheim",
          "country_code": "DE",
          "slug": "bergheim",
          "canonical_path": "/cities/de/bergheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3117",
          "name": "Bergisch Gladbach",
          "country_code": "DE",
          "slug": "bergisch-gladbach",
          "canonical_path": "/cities/de/bergisch-gladbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4192",
          "name": "Bergkamen",
          "country_code": "DE",
          "slug": "bergkamen",
          "canonical_path": "/cities/de/bergkamen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2950340",
          "name": "Bergkirchen",
          "country_code": "DE",
          "slug": "bergkirchen",
          "canonical_path": "/cities/de/bergkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10976",
          "name": "Bergneustadt",
          "country_code": "DE",
          "slug": "bergneustadt",
          "canonical_path": "/cities/de/bergneustadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:11000000",
          "name": "Berlin",
          "country_code": "DE",
          "slug": "berlin",
          "canonical_path": "/cities/de/berlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2950095",
          "name": "Bernau am Chiemsee",
          "country_code": "DE",
          "slug": "bernau-am-chiemsee",
          "canonical_path": "/cities/de/bernau-am-chiemsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q9300",
          "name": "Bernau bei Berlin",
          "country_code": "DE",
          "slug": "bernau-bei-berlin",
          "canonical_path": "/cities/de/bernau-bei-berlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2950073",
          "name": "Bernburg",
          "country_code": "DE",
          "slug": "bernburg",
          "canonical_path": "/cities/de/bernburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14938",
          "name": "Bernburg (Saale)",
          "country_code": "DE",
          "slug": "bernburg-saale",
          "canonical_path": "/cities/de/bernburg-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2950019",
          "name": "Bernhardswald",
          "country_code": "DE",
          "slug": "bernhardswald",
          "canonical_path": "/cities/de/bernhardswald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q155622",
          "name": "Bernkastel-Kues",
          "country_code": "DE",
          "slug": "bernkastel-kues",
          "canonical_path": "/cities/de/bernkastel-kues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520011",
          "name": "Bersenbrück",
          "country_code": "DE",
          "slug": "bersenbruck",
          "canonical_path": "/cities/de/bersenbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61825",
          "name": "Besigheim",
          "country_code": "DE",
          "slug": "besigheim",
          "canonical_path": "/cities/de/besigheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2949777",
          "name": "Bestensee",
          "country_code": "DE",
          "slug": "bestensee",
          "canonical_path": "/cities/de/bestensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2949773",
          "name": "Bestwig",
          "country_code": "DE",
          "slug": "bestwig",
          "canonical_path": "/cities/de/bestwig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q543583",
          "name": "Betzdorf",
          "country_code": "DE",
          "slug": "betzdorf",
          "canonical_path": "/cities/de/betzdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q182131",
          "name": "Betzenstein",
          "country_code": "DE",
          "slug": "betzenstein",
          "canonical_path": "/cities/de/betzenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q242098",
          "name": "Beverungen",
          "country_code": "DE",
          "slug": "beverungen",
          "canonical_path": "/cities/de/beverungen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504022",
          "name": "Bexbach",
          "country_code": "DE",
          "slug": "bexbach",
          "canonical_path": "/cities/de/bexbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16069",
          "name": "Biberach an der Riss",
          "country_code": "DE",
          "slug": "biberach-an-der-riss",
          "canonical_path": "/cities/de/biberach-an-der-riss/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2949367",
          "name": "Biblis",
          "country_code": "DE",
          "slug": "biblis",
          "canonical_path": "/cities/de/biblis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2949296",
          "name": "Bickenbach",
          "country_code": "DE",
          "slug": "bickenbach",
          "canonical_path": "/cities/de/bickenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2949240",
          "name": "Biebesheim",
          "country_code": "DE",
          "slug": "biebesheim",
          "canonical_path": "/cities/de/biebesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552554",
          "name": "Biedenkopf",
          "country_code": "DE",
          "slug": "biedenkopf",
          "canonical_path": "/cities/de/biedenkopf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05711000",
          "name": "Bielefeld",
          "country_code": "DE",
          "slug": "bielefeld",
          "canonical_path": "/cities/de/bielefeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2949150",
          "name": "Bienenbüttel",
          "country_code": "DE",
          "slug": "bienenbuttel",
          "canonical_path": "/cities/de/bienenbuttel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541642",
          "name": "Biesenthal",
          "country_code": "DE",
          "slug": "biesenthal",
          "canonical_path": "/cities/de/biesenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2949014",
          "name": "Bietigheim",
          "country_code": "DE",
          "slug": "bietigheim",
          "canonical_path": "/cities/de/bietigheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7067",
          "name": "Bietigheim-Bissingen",
          "country_code": "DE",
          "slug": "bietigheim-bissingen",
          "canonical_path": "/cities/de/bietigheim-bissingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14946",
          "name": "Billerbeck",
          "country_code": "DE",
          "slug": "billerbeck",
          "canonical_path": "/cities/de/billerbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948934",
          "name": "Billigheim",
          "country_code": "DE",
          "slug": "billigheim",
          "canonical_path": "/cities/de/billigheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948840",
          "name": "Bindlach",
          "country_code": "DE",
          "slug": "bindlach",
          "canonical_path": "/cities/de/bindlach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q285879",
          "name": "Bingen am Rhein",
          "country_code": "DE",
          "slug": "bingen-am-rhein",
          "canonical_path": "/cities/de/bingen-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948652",
          "name": "Birkenau",
          "country_code": "DE",
          "slug": "birkenau",
          "canonical_path": "/cities/de/birkenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948503",
          "name": "Birkenwerder",
          "country_code": "DE",
          "slug": "birkenwerder",
          "canonical_path": "/cities/de/birkenwerder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948351",
          "name": "Birstein",
          "country_code": "DE",
          "slug": "birstein",
          "canonical_path": "/cities/de/birstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948339",
          "name": "Bischberg",
          "country_code": "DE",
          "slug": "bischberg",
          "canonical_path": "/cities/de/bischberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948290",
          "name": "Bischofsheim",
          "country_code": "DE",
          "slug": "bischofsheim",
          "canonical_path": "/cities/de/bischofsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541693",
          "name": "Bischofsheim i.d.Rhön",
          "country_code": "DE",
          "slug": "bischofsheim-i-d-rhon",
          "canonical_path": "/cities/de/bischofsheim-i-d-rhon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948287",
          "name": "Bischofsheim in der Rhön",
          "country_code": "DE",
          "slug": "bischofsheim-in-der-rhon",
          "canonical_path": "/cities/de/bischofsheim-in-der-rhon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81717",
          "name": "Bischofswerda",
          "country_code": "DE",
          "slug": "bischofswerda",
          "canonical_path": "/cities/de/bischofswerda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948265",
          "name": "Bischofswiesen",
          "country_code": "DE",
          "slug": "bischofswiesen",
          "canonical_path": "/cities/de/bischofswiesen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948246",
          "name": "Bisingen",
          "country_code": "DE",
          "slug": "bisingen",
          "canonical_path": "/cities/de/bisingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q526337",
          "name": "Bismark (Altmark)",
          "country_code": "DE",
          "slug": "bismark-altmark",
          "canonical_path": "/cities/de/bismark-altmark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948222",
          "name": "Bispingen",
          "country_code": "DE",
          "slug": "bispingen",
          "canonical_path": "/cities/de/bispingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948212",
          "name": "Bissendorf",
          "country_code": "DE",
          "slug": "bissendorf",
          "canonical_path": "/cities/de/bissendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q258974",
          "name": "Bitburg",
          "country_code": "DE",
          "slug": "bitburg",
          "canonical_path": "/cities/de/bitburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7007",
          "name": "Bitterfeld-Wolfen",
          "country_code": "DE",
          "slug": "bitterfeld-wolfen",
          "canonical_path": "/cities/de/bitterfeld-wolfen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948114",
          "name": "Blaichach",
          "country_code": "DE",
          "slug": "blaichach",
          "canonical_path": "/cities/de/blaichach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948071",
          "name": "Blankenburg",
          "country_code": "DE",
          "slug": "blankenburg",
          "canonical_path": "/cities/de/blankenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525960",
          "name": "Blankenburg (Harz)",
          "country_code": "DE",
          "slug": "blankenburg-harz",
          "canonical_path": "/cities/de/blankenburg-harz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948065",
          "name": "Blankenfelde",
          "country_code": "DE",
          "slug": "blankenfelde",
          "canonical_path": "/cities/de/blankenfelde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:13526830",
          "name": "Blankenfelde-Mahlow",
          "country_code": "DE",
          "slug": "blankenfelde-mahlow",
          "canonical_path": "/cities/de/blankenfelde-mahlow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539185",
          "name": "Blankenhain",
          "country_code": "DE",
          "slug": "blankenhain",
          "canonical_path": "/cities/de/blankenhain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2948056",
          "name": "Blankenheim",
          "country_code": "DE",
          "slug": "blankenheim",
          "canonical_path": "/cities/de/blankenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505955",
          "name": "Blaubeuren",
          "country_code": "DE",
          "slug": "blaubeuren",
          "canonical_path": "/cities/de/blaubeuren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2947919",
          "name": "Blaufelden",
          "country_code": "DE",
          "slug": "blaufelden",
          "canonical_path": "/cities/de/blaufelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q535646",
          "name": "Blaustein",
          "country_code": "DE",
          "slug": "blaustein",
          "canonical_path": "/cities/de/blaustein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q567445",
          "name": "Bleckede",
          "country_code": "DE",
          "slug": "bleckede",
          "canonical_path": "/cities/de/bleckede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q517311",
          "name": "Bleicherode",
          "country_code": "DE",
          "slug": "bleicherode",
          "canonical_path": "/cities/de/bleicherode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q523709",
          "name": "Blieskastel",
          "country_code": "DE",
          "slug": "blieskastel",
          "canonical_path": "/cities/de/blieskastel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82430",
          "name": "Blumberg",
          "country_code": "DE",
          "slug": "blumberg",
          "canonical_path": "/cities/de/blumberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2947465",
          "name": "Bobenheim-Roxheim",
          "country_code": "DE",
          "slug": "bobenheim-roxheim",
          "canonical_path": "/cities/de/bobenheim-roxheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3917",
          "name": "Bocholt",
          "country_code": "DE",
          "slug": "bocholt",
          "canonical_path": "/cities/de/bocholt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05911000",
          "name": "Bochum",
          "country_code": "DE",
          "slug": "bochum",
          "canonical_path": "/cities/de/bochum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503392",
          "name": "Bockenem",
          "country_code": "DE",
          "slug": "bockenem",
          "canonical_path": "/cities/de/bockenem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2947312",
          "name": "Bockhorn",
          "country_code": "DE",
          "slug": "bockhorn",
          "canonical_path": "/cities/de/bockhorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2947172",
          "name": "Bodelshausen",
          "country_code": "DE",
          "slug": "bodelshausen",
          "canonical_path": "/cities/de/bodelshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2947133",
          "name": "Bodenheim",
          "country_code": "DE",
          "slug": "bodenheim",
          "canonical_path": "/cities/de/bodenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2947125",
          "name": "Bodenkirchen",
          "country_code": "DE",
          "slug": "bodenkirchen",
          "canonical_path": "/cities/de/bodenkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q58566",
          "name": "Bodenwerder",
          "country_code": "DE",
          "slug": "bodenwerder",
          "canonical_path": "/cities/de/bodenwerder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6931",
          "name": "Boeblingen",
          "country_code": "DE",
          "slug": "boeblingen",
          "canonical_path": "/cities/de/boeblingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q26357",
          "name": "Bogen",
          "country_code": "DE",
          "slug": "bogen",
          "canonical_path": "/cities/de/bogen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3272463",
          "name": "Böhl-Iggelheim",
          "country_code": "DE",
          "slug": "bohl-iggelheim",
          "canonical_path": "/cities/de/bohl-iggelheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10743",
          "name": "Böhlen",
          "country_code": "DE",
          "slug": "bohlen",
          "canonical_path": "/cities/de/bohlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2946950",
          "name": "Böhmenkirch",
          "country_code": "DE",
          "slug": "bohmenkirch",
          "canonical_path": "/cities/de/bohmenkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2946923",
          "name": "Bohmte",
          "country_code": "DE",
          "slug": "bohmte",
          "canonical_path": "/cities/de/bohmte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q160879",
          "name": "Boizenburg/ Elbe",
          "country_code": "DE",
          "slug": "boizenburg-elbe",
          "canonical_path": "/cities/de/boizenburg-elbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2946696",
          "name": "Boll",
          "country_code": "DE",
          "slug": "boll",
          "canonical_path": "/cities/de/boll/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2946524",
          "name": "Bomlitz",
          "country_code": "DE",
          "slug": "bomlitz",
          "canonical_path": "/cities/de/bomlitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2946485",
          "name": "Bondorf",
          "country_code": "DE",
          "slug": "bondorf",
          "canonical_path": "/cities/de/bondorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2946478",
          "name": "Bönen",
          "country_code": "DE",
          "slug": "bonen",
          "canonical_path": "/cities/de/bonen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05314000",
          "name": "Bonn",
          "country_code": "DE",
          "slug": "bonn",
          "canonical_path": "/cities/de/bonn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2946445",
          "name": "Bonndorf",
          "country_code": "DE",
          "slug": "bonndorf",
          "canonical_path": "/cities/de/bonndorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q178703",
          "name": "Bonndorf im Schwarzwald",
          "country_code": "DE",
          "slug": "bonndorf-im-schwarzwald",
          "canonical_path": "/cities/de/bonndorf-im-schwarzwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61837",
          "name": "Bönnigheim",
          "country_code": "DE",
          "slug": "bonnigheim",
          "canonical_path": "/cities/de/bonnigheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628178",
          "name": "Bopfingen",
          "country_code": "DE",
          "slug": "bopfingen",
          "canonical_path": "/cities/de/bopfingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q521148",
          "name": "Boppard",
          "country_code": "DE",
          "slug": "boppard",
          "canonical_path": "/cities/de/boppard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2946321",
          "name": "Bordesholm",
          "country_code": "DE",
          "slug": "bordesholm",
          "canonical_path": "/cities/de/bordesholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q241978",
          "name": "Borgentreich",
          "country_code": "DE",
          "slug": "borgentreich",
          "canonical_path": "/cities/de/borgentreich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q225794",
          "name": "Borgholzhausen",
          "country_code": "DE",
          "slug": "borgholzhausen",
          "canonical_path": "/cities/de/borgholzhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q453",
          "name": "Borken",
          "country_code": "DE",
          "slug": "borken",
          "canonical_path": "/cities/de/borken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565488",
          "name": "Borken (Hessen)",
          "country_code": "DE",
          "slug": "borken-hessen",
          "canonical_path": "/cities/de/borken-hessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q25082",
          "name": "Borkum",
          "country_code": "DE",
          "slug": "borkum",
          "canonical_path": "/cities/de/borkum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10744",
          "name": "Borna",
          "country_code": "DE",
          "slug": "borna",
          "canonical_path": "/cities/de/borna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6852",
          "name": "Bornheim",
          "country_code": "DE",
          "slug": "bornheim",
          "canonical_path": "/cities/de/bornheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2946016",
          "name": "Borsdorf",
          "country_code": "DE",
          "slug": "borsdorf",
          "canonical_path": "/cities/de/borsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2945907",
          "name": "Bösel",
          "country_code": "DE",
          "slug": "bosel",
          "canonical_path": "/cities/de/bosel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2945798",
          "name": "Bothfeld",
          "country_code": "DE",
          "slug": "bothfeld",
          "canonical_path": "/cities/de/bothfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3069",
          "name": "Bottrop",
          "country_code": "DE",
          "slug": "bottrop",
          "canonical_path": "/cities/de/bottrop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2945740",
          "name": "Bötzingen",
          "country_code": "DE",
          "slug": "botzingen",
          "canonical_path": "/cities/de/botzingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2945730",
          "name": "Bous",
          "country_code": "DE",
          "slug": "bous",
          "canonical_path": "/cities/de/bous/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2945726",
          "name": "Bovenden",
          "country_code": "DE",
          "slug": "bovenden",
          "canonical_path": "/cities/de/bovenden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:12216686",
          "name": "Brachenfeld-Ruthenberg",
          "country_code": "DE",
          "slug": "brachenfeld-ruthenberg",
          "canonical_path": "/cities/de/brachenfeld-ruthenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2945601",
          "name": "Brackel",
          "country_code": "DE",
          "slug": "brackel",
          "canonical_path": "/cities/de/brackel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q53751",
          "name": "Brackenheim",
          "country_code": "DE",
          "slug": "brackenheim",
          "canonical_path": "/cities/de/brackenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q501639",
          "name": "Brake (Unterweser)",
          "country_code": "DE",
          "slug": "brake-unterweser",
          "canonical_path": "/cities/de/brake-unterweser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q242149",
          "name": "Brakel",
          "country_code": "DE",
          "slug": "brakel",
          "canonical_path": "/cities/de/brakel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16109",
          "name": "Bramsche",
          "country_code": "DE",
          "slug": "bramsche",
          "canonical_path": "/cities/de/bramsche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71159",
          "name": "Brand-Erbisdorf",
          "country_code": "DE",
          "slug": "brand-erbisdorf",
          "canonical_path": "/cities/de/brand-erbisdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3931",
          "name": "Brandenburg an der Havel",
          "country_code": "DE",
          "slug": "brandenburg-an-der-havel",
          "canonical_path": "/cities/de/brandenburg-an-der-havel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10760",
          "name": "Brandis",
          "country_code": "DE",
          "slug": "brandis",
          "canonical_path": "/cities/de/brandis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2945165",
          "name": "Brannenburg",
          "country_code": "DE",
          "slug": "brannenburg",
          "canonical_path": "/cities/de/brannenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509038",
          "name": "Braubach",
          "country_code": "DE",
          "slug": "braubach",
          "canonical_path": "/cities/de/braubach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525612",
          "name": "Braunfels",
          "country_code": "DE",
          "slug": "braunfels",
          "canonical_path": "/cities/de/braunfels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522992",
          "name": "Braunlage",
          "country_code": "DE",
          "slug": "braunlage",
          "canonical_path": "/cities/de/braunlage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81779",
          "name": "Bräunlingen",
          "country_code": "DE",
          "slug": "braunlingen",
          "canonical_path": "/cities/de/braunlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q519640",
          "name": "Braunsbedra",
          "country_code": "DE",
          "slug": "braunsbedra",
          "canonical_path": "/cities/de/braunsbedra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:03101000",
          "name": "Braunschweig",
          "country_code": "DE",
          "slug": "braunschweig",
          "canonical_path": "/cities/de/braunschweig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2945009",
          "name": "Braunshardt",
          "country_code": "DE",
          "slug": "braunshardt",
          "canonical_path": "/cities/de/braunshardt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2944960",
          "name": "Brechten",
          "country_code": "DE",
          "slug": "brechten",
          "canonical_path": "/cities/de/brechten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11323",
          "name": "Breckerfeld",
          "country_code": "DE",
          "slug": "breckerfeld",
          "canonical_path": "/cities/de/breckerfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20753",
          "name": "Bredstedt",
          "country_code": "DE",
          "slug": "bredstedt",
          "canonical_path": "/cities/de/bredstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2944820",
          "name": "Breidenbach",
          "country_code": "DE",
          "slug": "breidenbach",
          "canonical_path": "/cities/de/breidenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q489911",
          "name": "Breisach am Rhein",
          "country_code": "DE",
          "slug": "breisach-am-rhein",
          "canonical_path": "/cities/de/breisach-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2944630",
          "name": "Breitenbrunn",
          "country_code": "DE",
          "slug": "breitenbrunn",
          "canonical_path": "/cities/de/breitenbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:04011000",
          "name": "Bremen",
          "country_code": "DE",
          "slug": "bremen",
          "canonical_path": "/cities/de/bremen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2706",
          "name": "Bremerhaven",
          "country_code": "DE",
          "slug": "bremerhaven",
          "canonical_path": "/cities/de/bremerhaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q501875",
          "name": "Bremervörde",
          "country_code": "DE",
          "slug": "bremervorde",
          "canonical_path": "/cities/de/bremervorde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2944254",
          "name": "Brensbach",
          "country_code": "DE",
          "slug": "brensbach",
          "canonical_path": "/cities/de/brensbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q495428",
          "name": "Bretten",
          "country_code": "DE",
          "slug": "bretten",
          "canonical_path": "/cities/de/bretten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2944178",
          "name": "Bretzfeld",
          "country_code": "DE",
          "slug": "bretzfeld",
          "canonical_path": "/cities/de/bretzfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572075",
          "name": "Breuberg",
          "country_code": "DE",
          "slug": "breuberg",
          "canonical_path": "/cities/de/breuberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2944126",
          "name": "Brieselang",
          "country_code": "DE",
          "slug": "brieselang",
          "canonical_path": "/cities/de/brieselang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5642",
          "name": "Brilon",
          "country_code": "DE",
          "slug": "brilon",
          "canonical_path": "/cities/de/brilon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2943855",
          "name": "Broitzem",
          "country_code": "DE",
          "slug": "broitzem",
          "canonical_path": "/cities/de/broitzem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q638178",
          "name": "Brotterode-Trusetal",
          "country_code": "DE",
          "slug": "brotterode-trusetal",
          "canonical_path": "/cities/de/brotterode-trusetal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2943587",
          "name": "Bruchhausen-Vilsen",
          "country_code": "DE",
          "slug": "bruchhausen-vilsen",
          "canonical_path": "/cities/de/bruchhausen-vilsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569636",
          "name": "Bruchköbel",
          "country_code": "DE",
          "slug": "bruchkobel",
          "canonical_path": "/cities/de/bruchkobel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3207512",
          "name": "Bruchmühlbach-Miesau",
          "country_code": "DE",
          "slug": "bruchmuhlbach-miesau",
          "canonical_path": "/cities/de/bruchmuhlbach-miesau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7059",
          "name": "Bruchsal",
          "country_code": "DE",
          "slug": "bruchsal",
          "canonical_path": "/cities/de/bruchsal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2943501",
          "name": "Bruckberg",
          "country_code": "DE",
          "slug": "bruckberg",
          "canonical_path": "/cities/de/bruckberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2943408",
          "name": "Bruckmühl",
          "country_code": "DE",
          "slug": "bruckmuhl",
          "canonical_path": "/cities/de/bruckmuhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q559019",
          "name": "Brüel",
          "country_code": "DE",
          "slug": "bruel",
          "canonical_path": "/cities/de/bruel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2943336",
          "name": "Brüggen",
          "country_code": "DE",
          "slug": "bruggen",
          "canonical_path": "/cities/de/bruggen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2943321",
          "name": "Brühl",
          "country_code": "DE",
          "slug": "bruhl",
          "canonical_path": "/cities/de/bruhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516635",
          "name": "Brunsbüttel",
          "country_code": "DE",
          "slug": "brunsbuttel",
          "canonical_path": "/cities/de/brunsbuttel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q537852",
          "name": "Brüssow",
          "country_code": "DE",
          "slug": "brussow",
          "canonical_path": "/cities/de/brussow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2942627",
          "name": "Büchen",
          "country_code": "DE",
          "slug": "buchen",
          "canonical_path": "/cities/de/buchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q179252",
          "name": "Buchen (Odenwald)",
          "country_code": "DE",
          "slug": "buchen-odenwald",
          "canonical_path": "/cities/de/buchen-odenwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2942612",
          "name": "Büchenbach",
          "country_code": "DE",
          "slug": "buchenbach",
          "canonical_path": "/cities/de/buchenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14892",
          "name": "Buchholz in der Nordheide",
          "country_code": "DE",
          "slug": "buchholz-in-der-nordheide",
          "canonical_path": "/cities/de/buchholz-in-der-nordheide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q265110",
          "name": "Buchloe",
          "country_code": "DE",
          "slug": "buchloe",
          "canonical_path": "/cities/de/buchloe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q157035",
          "name": "Bückeburg",
          "country_code": "DE",
          "slug": "buckeburg",
          "canonical_path": "/cities/de/buckeburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552366",
          "name": "Buckow (Märkische Schweiz)",
          "country_code": "DE",
          "slug": "buckow-markische-schweiz",
          "canonical_path": "/cities/de/buckow-markische-schweiz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571940",
          "name": "Büdelsdorf",
          "country_code": "DE",
          "slug": "budelsdorf",
          "canonical_path": "/cities/de/budelsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2942087",
          "name": "Budenheim",
          "country_code": "DE",
          "slug": "budenheim",
          "canonical_path": "/cities/de/budenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q382481",
          "name": "Büdingen",
          "country_code": "DE",
          "slug": "budingen",
          "canonical_path": "/cities/de/budingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505534",
          "name": "Bühl",
          "country_code": "DE",
          "slug": "buhl",
          "canonical_path": "/cities/de/buhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2941928",
          "name": "Bühlertal",
          "country_code": "DE",
          "slug": "buhlertal",
          "canonical_path": "/cities/de/buhlertal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2941693",
          "name": "Bunde",
          "country_code": "DE",
          "slug": "bunde",
          "canonical_path": "/cities/de/bunde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2941595",
          "name": "Burbach",
          "country_code": "DE",
          "slug": "burbach",
          "canonical_path": "/cities/de/burbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q183404",
          "name": "Büren",
          "country_code": "DE",
          "slug": "buren",
          "canonical_path": "/cities/de/buren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525632",
          "name": "Burg",
          "country_code": "DE",
          "slug": "burg",
          "canonical_path": "/cities/de/burg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q45888",
          "name": "Burg Stargard",
          "country_code": "DE",
          "slug": "burg-stargard",
          "canonical_path": "/cities/de/burg-stargard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505896",
          "name": "Burgau",
          "country_code": "DE",
          "slug": "burgau",
          "canonical_path": "/cities/de/burgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502450",
          "name": "Burgbernheim",
          "country_code": "DE",
          "slug": "burgbernheim",
          "canonical_path": "/cities/de/burgbernheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2941403",
          "name": "Burgebrach",
          "country_code": "DE",
          "slug": "burgebrach",
          "canonical_path": "/cities/de/burgebrach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552624",
          "name": "Bürgel",
          "country_code": "DE",
          "slug": "burgel",
          "canonical_path": "/cities/de/burgel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2941283",
          "name": "Burghaun",
          "country_code": "DE",
          "slug": "burghaun",
          "canonical_path": "/cities/de/burghaun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q262669",
          "name": "Burghausen",
          "country_code": "DE",
          "slug": "burghausen",
          "canonical_path": "/cities/de/burghausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2941216",
          "name": "Burgkirchen an der Alz",
          "country_code": "DE",
          "slug": "burgkirchen-an-der-alz",
          "canonical_path": "/cities/de/burgkirchen-an-der-alz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q387411",
          "name": "Burgkunstadt",
          "country_code": "DE",
          "slug": "burgkunstadt",
          "canonical_path": "/cities/de/burgkunstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q589515",
          "name": "Burglengenfeld",
          "country_code": "DE",
          "slug": "burglengenfeld",
          "canonical_path": "/cities/de/burglengenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2941090",
          "name": "Burgthann",
          "country_code": "DE",
          "slug": "burgthann",
          "canonical_path": "/cities/de/burgthann/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q499873",
          "name": "Burgwedel",
          "country_code": "DE",
          "slug": "burgwedel",
          "canonical_path": "/cities/de/burgwedel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2941034",
          "name": "Burkardroth",
          "country_code": "DE",
          "slug": "burkardroth",
          "canonical_path": "/cities/de/burkardroth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2940993",
          "name": "Burkhardtsdorf",
          "country_code": "DE",
          "slug": "burkhardtsdorf",
          "canonical_path": "/cities/de/burkhardtsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q384264",
          "name": "Burladingen",
          "country_code": "DE",
          "slug": "burladingen",
          "canonical_path": "/cities/de/burladingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q245579",
          "name": "Burscheid",
          "country_code": "DE",
          "slug": "burscheid",
          "canonical_path": "/cities/de/burscheid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q524974",
          "name": "Bürstadt",
          "country_code": "DE",
          "slug": "burstadt",
          "canonical_path": "/cities/de/burstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3336894",
          "name": "Butjadingen",
          "country_code": "DE",
          "slug": "butjadingen",
          "canonical_path": "/cities/de/butjadingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2940633",
          "name": "Büttelborn",
          "country_code": "DE",
          "slug": "buttelborn",
          "canonical_path": "/cities/de/buttelborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2940611",
          "name": "Buttenwiesen",
          "country_code": "DE",
          "slug": "buttenwiesen",
          "canonical_path": "/cities/de/buttenwiesen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520037",
          "name": "Buttstädt",
          "country_code": "DE",
          "slug": "buttstadt",
          "canonical_path": "/cities/de/buttstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569680",
          "name": "Butzbach",
          "country_code": "DE",
          "slug": "butzbach",
          "canonical_path": "/cities/de/butzbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14868",
          "name": "Buxtehude",
          "country_code": "DE",
          "slug": "buxtehude",
          "canonical_path": "/cities/de/buxtehude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2940428",
          "name": "Cadolzburg",
          "country_code": "DE",
          "slug": "cadolzburg",
          "canonical_path": "/cities/de/cadolzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q532803",
          "name": "Calau/Kalawa",
          "country_code": "DE",
          "slug": "calau-kalawa",
          "canonical_path": "/cities/de/calau-kalawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2940419",
          "name": "Calbe",
          "country_code": "DE",
          "slug": "calbe",
          "canonical_path": "/cities/de/calbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505176",
          "name": "Calbe (Saale)",
          "country_code": "DE",
          "slug": "calbe-saale",
          "canonical_path": "/cities/de/calbe-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2940412",
          "name": "Calden",
          "country_code": "DE",
          "slug": "calden",
          "canonical_path": "/cities/de/calden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2940397",
          "name": "Callenberg",
          "country_code": "DE",
          "slug": "callenberg",
          "canonical_path": "/cities/de/callenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q487921",
          "name": "Calw",
          "country_code": "DE",
          "slug": "calw",
          "canonical_path": "/cities/de/calw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2940317",
          "name": "Cappeln",
          "country_code": "DE",
          "slug": "cappeln",
          "canonical_path": "/cities/de/cappeln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3898",
          "name": "Castrop-Rauxel",
          "country_code": "DE",
          "slug": "castrop-rauxel",
          "canonical_path": "/cities/de/castrop-rauxel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3933",
          "name": "Celle",
          "country_code": "DE",
          "slug": "celle",
          "canonical_path": "/cities/de/celle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q257859",
          "name": "Cham",
          "country_code": "DE",
          "slug": "cham",
          "canonical_path": "/cities/de/cham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:14511000",
          "name": "Chemnitz",
          "country_code": "DE",
          "slug": "chemnitz",
          "canonical_path": "/cities/de/chemnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2905487",
          "name": "Clarholz",
          "country_code": "DE",
          "slug": "clarholz",
          "canonical_path": "/cities/de/clarholz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504590",
          "name": "Clausthal-Zellerfeld",
          "country_code": "DE",
          "slug": "clausthal-zellerfeld",
          "canonical_path": "/cities/de/clausthal-zellerfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518228",
          "name": "Clingen",
          "country_code": "DE",
          "slug": "clingen",
          "canonical_path": "/cities/de/clingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16059",
          "name": "Cloppenburg",
          "country_code": "DE",
          "slug": "cloppenburg",
          "canonical_path": "/cities/de/cloppenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14821",
          "name": "Coburg",
          "country_code": "DE",
          "slug": "coburg",
          "canonical_path": "/cities/de/coburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502749",
          "name": "Cochem",
          "country_code": "DE",
          "slug": "cochem",
          "canonical_path": "/cities/de/cochem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14914",
          "name": "Coesfeld",
          "country_code": "DE",
          "slug": "coesfeld",
          "canonical_path": "/cities/de/coesfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2939942",
          "name": "Cölbe",
          "country_code": "DE",
          "slug": "colbe",
          "canonical_path": "/cities/de/colbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10762",
          "name": "Colditz",
          "country_code": "DE",
          "slug": "colditz",
          "canonical_path": "/cities/de/colditz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q365",
          "name": "Cologne",
          "country_code": "DE",
          "slug": "cologne",
          "canonical_path": "/cities/de/cologne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2939870",
          "name": "Contwig",
          "country_code": "DE",
          "slug": "contwig",
          "canonical_path": "/cities/de/contwig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2939862",
          "name": "Coppenbrügge",
          "country_code": "DE",
          "slug": "coppenbrugge",
          "canonical_path": "/cities/de/coppenbrugge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8693",
          "name": "Coswig",
          "country_code": "DE",
          "slug": "coswig",
          "canonical_path": "/cities/de/coswig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530197",
          "name": "Coswig (Anhalt)",
          "country_code": "DE",
          "slug": "coswig-anhalt",
          "canonical_path": "/cities/de/coswig-anhalt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3214",
          "name": "Cottbus",
          "country_code": "DE",
          "slug": "cottbus",
          "canonical_path": "/cities/de/cottbus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16048",
          "name": "Crailsheim",
          "country_code": "DE",
          "slug": "crailsheim",
          "canonical_path": "/cities/de/crailsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61617",
          "name": "Creglingen",
          "country_code": "DE",
          "slug": "creglingen",
          "canonical_path": "/cities/de/creglingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2939763",
          "name": "Cremlingen",
          "country_code": "DE",
          "slug": "cremlingen",
          "canonical_path": "/cities/de/cremlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502745",
          "name": "Creußen",
          "country_code": "DE",
          "slug": "creussen",
          "canonical_path": "/cities/de/creussen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20070",
          "name": "Crimmitschau",
          "country_code": "DE",
          "slug": "crimmitschau",
          "canonical_path": "/cities/de/crimmitschau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558985",
          "name": "Crivitz",
          "country_code": "DE",
          "slug": "crivitz",
          "canonical_path": "/cities/de/crivitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2939687",
          "name": "Cunewalde",
          "country_code": "DE",
          "slug": "cunewalde",
          "canonical_path": "/cities/de/cunewalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4197",
          "name": "Cuxhaven",
          "country_code": "DE",
          "slug": "cuxhaven",
          "canonical_path": "/cities/de/cuxhaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569821",
          "name": "Daaden",
          "country_code": "DE",
          "slug": "daaden",
          "canonical_path": "/cities/de/daaden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7077",
          "name": "Dachau",
          "country_code": "DE",
          "slug": "dachau",
          "canonical_path": "/cities/de/dachau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12043",
          "name": "Dahlen",
          "country_code": "DE",
          "slug": "dahlen",
          "canonical_path": "/cities/de/dahlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2939388",
          "name": "Dahme",
          "country_code": "DE",
          "slug": "dahme",
          "canonical_path": "/cities/de/dahme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q622572",
          "name": "Dahme/Mark",
          "country_code": "DE",
          "slug": "dahme-mark",
          "canonical_path": "/cities/de/dahme-mark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570408",
          "name": "Dahn",
          "country_code": "DE",
          "slug": "dahn",
          "canonical_path": "/cities/de/dahn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:6547590",
          "name": "Dallgow-Döberitz",
          "country_code": "DE",
          "slug": "dallgow-doberitz",
          "canonical_path": "/cities/de/dallgow-doberitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q523394",
          "name": "Damme",
          "country_code": "DE",
          "slug": "damme",
          "canonical_path": "/cities/de/damme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938991",
          "name": "Dannenberg",
          "country_code": "DE",
          "slug": "dannenberg",
          "canonical_path": "/cities/de/dannenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q495745",
          "name": "Dannenberg (Elbe)",
          "country_code": "DE",
          "slug": "dannenberg-elbe",
          "canonical_path": "/cities/de/dannenberg-elbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3272455",
          "name": "Dannstadt-Schauernheim",
          "country_code": "DE",
          "slug": "dannstadt-schauernheim",
          "canonical_path": "/cities/de/dannstadt-schauernheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50959",
          "name": "Dargun",
          "country_code": "DE",
          "slug": "dargun",
          "canonical_path": "/cities/de/dargun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2973",
          "name": "Darmstadt",
          "country_code": "DE",
          "slug": "darmstadt",
          "canonical_path": "/cities/de/darmstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938837",
          "name": "Dasing",
          "country_code": "DE",
          "slug": "dasing",
          "canonical_path": "/cities/de/dasing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486556",
          "name": "Dassel",
          "country_code": "DE",
          "slug": "dassel",
          "canonical_path": "/cities/de/dassel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536647",
          "name": "Dassow",
          "country_code": "DE",
          "slug": "dassow",
          "canonical_path": "/cities/de/dassow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14940",
          "name": "Datteln",
          "country_code": "DE",
          "slug": "datteln",
          "canonical_path": "/cities/de/datteln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q161825",
          "name": "Daun",
          "country_code": "DE",
          "slug": "daun",
          "canonical_path": "/cities/de/daun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938662",
          "name": "Debschwitz",
          "country_code": "DE",
          "slug": "debschwitz",
          "canonical_path": "/cities/de/debschwitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16083",
          "name": "Deggendorf",
          "country_code": "DE",
          "slug": "deggendorf",
          "canonical_path": "/cities/de/deggendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938538",
          "name": "Deggingen",
          "country_code": "DE",
          "slug": "deggingen",
          "canonical_path": "/cities/de/deggingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22951",
          "name": "Deidesheim",
          "country_code": "DE",
          "slug": "deidesheim",
          "canonical_path": "/cities/de/deidesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938403",
          "name": "Deißlingen",
          "country_code": "DE",
          "slug": "deisslingen",
          "canonical_path": "/cities/de/deisslingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938391",
          "name": "Deizisau",
          "country_code": "DE",
          "slug": "deizisau",
          "canonical_path": "/cities/de/deizisau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16146",
          "name": "Delbrueck",
          "country_code": "DE",
          "slug": "delbrueck",
          "canonical_path": "/cities/de/delbrueck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12052",
          "name": "Delitzsch",
          "country_code": "DE",
          "slug": "delitzsch",
          "canonical_path": "/cities/de/delitzsch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938344",
          "name": "Delligsen",
          "country_code": "DE",
          "slug": "delligsen",
          "canonical_path": "/cities/de/delligsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3907",
          "name": "Delmenhorst",
          "country_code": "DE",
          "slug": "delmenhorst",
          "canonical_path": "/cities/de/delmenhorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50960",
          "name": "Demmin",
          "country_code": "DE",
          "slug": "demmin",
          "canonical_path": "/cities/de/demmin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938253",
          "name": "Denkendorf",
          "country_code": "DE",
          "slug": "denkendorf",
          "canonical_path": "/cities/de/denkendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938190",
          "name": "Denzlingen",
          "country_code": "DE",
          "slug": "denzlingen",
          "canonical_path": "/cities/de/denzlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2938058",
          "name": "Derne",
          "country_code": "DE",
          "slug": "derne",
          "canonical_path": "/cities/de/derne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937959",
          "name": "Dessau",
          "country_code": "DE",
          "slug": "dessau",
          "canonical_path": "/cities/de/dessau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3828",
          "name": "Dessau-Rosslau",
          "country_code": "DE",
          "slug": "dessau-rosslau",
          "canonical_path": "/cities/de/dessau-rosslau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937937",
          "name": "Detmerode",
          "country_code": "DE",
          "slug": "detmerode",
          "canonical_path": "/cities/de/detmerode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3922",
          "name": "Detmold",
          "country_code": "DE",
          "slug": "detmold",
          "canonical_path": "/cities/de/detmold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504639",
          "name": "Dettelbach",
          "country_code": "DE",
          "slug": "dettelbach",
          "canonical_path": "/cities/de/dettelbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937919",
          "name": "Dettenhausen",
          "country_code": "DE",
          "slug": "dettenhausen",
          "canonical_path": "/cities/de/dettenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937898",
          "name": "Dettingen an der Erms",
          "country_code": "DE",
          "slug": "dettingen-an-der-erms",
          "canonical_path": "/cities/de/dettingen-an-der-erms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937896",
          "name": "Dettingen unter Teck",
          "country_code": "DE",
          "slug": "dettingen-unter-teck",
          "canonical_path": "/cities/de/dettingen-unter-teck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525493",
          "name": "Dieburg",
          "country_code": "DE",
          "slug": "dieburg",
          "canonical_path": "/cities/de/dieburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937553",
          "name": "Diedorf",
          "country_code": "DE",
          "slug": "diedorf",
          "canonical_path": "/cities/de/diedorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937449",
          "name": "Diekholzen",
          "country_code": "DE",
          "slug": "diekholzen",
          "canonical_path": "/cities/de/diekholzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937407",
          "name": "Dielheim",
          "country_code": "DE",
          "slug": "dielheim",
          "canonical_path": "/cities/de/dielheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558638",
          "name": "Diemelstadt",
          "country_code": "DE",
          "slug": "diemelstadt",
          "canonical_path": "/cities/de/diemelstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498534",
          "name": "Diepholz",
          "country_code": "DE",
          "slug": "diepholz",
          "canonical_path": "/cities/de/diepholz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q537915",
          "name": "Dierdorf",
          "country_code": "DE",
          "slug": "dierdorf",
          "canonical_path": "/cities/de/dierdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937217",
          "name": "Dießen am Ammersee",
          "country_code": "DE",
          "slug": "diessen-am-ammersee",
          "canonical_path": "/cities/de/diessen-am-ammersee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q206649",
          "name": "Dietenheim",
          "country_code": "DE",
          "slug": "dietenheim",
          "canonical_path": "/cities/de/dietenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937160",
          "name": "Dietenhofen",
          "country_code": "DE",
          "slug": "dietenhofen",
          "canonical_path": "/cities/de/dietenhofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937110",
          "name": "Dietfurt",
          "country_code": "DE",
          "slug": "dietfurt",
          "canonical_path": "/cities/de/dietfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504648",
          "name": "Dietfurt a.d.Altmühl",
          "country_code": "DE",
          "slug": "dietfurt-a-d-altmuhl",
          "canonical_path": "/cities/de/dietfurt-a-d-altmuhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937077",
          "name": "Dietmannsried",
          "country_code": "DE",
          "slug": "dietmannsried",
          "canonical_path": "/cities/de/dietmannsried/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2937073",
          "name": "Dietramszell",
          "country_code": "DE",
          "slug": "dietramszell",
          "canonical_path": "/cities/de/dietramszell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16033",
          "name": "Dietzenbach",
          "country_code": "DE",
          "slug": "dietzenbach",
          "canonical_path": "/cities/de/dietzenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504031",
          "name": "Diez",
          "country_code": "DE",
          "slug": "diez",
          "canonical_path": "/cities/de/diez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q517381",
          "name": "Dillenburg",
          "country_code": "DE",
          "slug": "dillenburg",
          "canonical_path": "/cities/de/dillenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494702",
          "name": "Dillingen a.d.Donau",
          "country_code": "DE",
          "slug": "dillingen-a-d-donau",
          "canonical_path": "/cities/de/dillingen-a-d-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2936974",
          "name": "Dillingen an der Donau",
          "country_code": "DE",
          "slug": "dillingen-an-der-donau",
          "canonical_path": "/cities/de/dillingen-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q158408",
          "name": "Dillingen/ Saar",
          "country_code": "DE",
          "slug": "dillingen-saar",
          "canonical_path": "/cities/de/dillingen-saar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2936942",
          "name": "Dingden",
          "country_code": "DE",
          "slug": "dingden",
          "canonical_path": "/cities/de/dingden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530075",
          "name": "Dingelstädt",
          "country_code": "DE",
          "slug": "dingelstadt",
          "canonical_path": "/cities/de/dingelstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q225909",
          "name": "Dingolfing",
          "country_code": "DE",
          "slug": "dingolfing",
          "canonical_path": "/cities/de/dingolfing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q491743",
          "name": "Dinkelsbühl",
          "country_code": "DE",
          "slug": "dinkelsbuhl",
          "canonical_path": "/cities/de/dinkelsbuhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2936885",
          "name": "Dinkelscherben",
          "country_code": "DE",
          "slug": "dinkelscherben",
          "canonical_path": "/cities/de/dinkelscherben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509696",
          "name": "Dinklage",
          "country_code": "DE",
          "slug": "dinklage",
          "canonical_path": "/cities/de/dinklage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3939",
          "name": "Dinslaken",
          "country_code": "DE",
          "slug": "dinslaken",
          "canonical_path": "/cities/de/dinslaken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6462",
          "name": "Dippoldiswalde",
          "country_code": "DE",
          "slug": "dippoldiswalde",
          "canonical_path": "/cities/de/dippoldiswalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2936787",
          "name": "Dissen",
          "country_code": "DE",
          "slug": "dissen",
          "canonical_path": "/cities/de/dissen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522086",
          "name": "Dissen am Teutoburger Wald",
          "country_code": "DE",
          "slug": "dissen-am-teutoburger-wald",
          "canonical_path": "/cities/de/dissen-am-teutoburger-wald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2936759",
          "name": "Dittelbrunn",
          "country_code": "DE",
          "slug": "dittelbrunn",
          "canonical_path": "/cities/de/dittelbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61658",
          "name": "Ditzingen",
          "country_code": "DE",
          "slug": "ditzingen",
          "canonical_path": "/cities/de/ditzingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71163",
          "name": "Döbeln",
          "country_code": "DE",
          "slug": "dobeln",
          "canonical_path": "/cities/de/dobeln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q371098",
          "name": "Doberlug-Kirchhain",
          "country_code": "DE",
          "slug": "doberlug-kirchhain",
          "canonical_path": "/cities/de/doberlug-kirchhain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6474",
          "name": "Dohna",
          "country_code": "DE",
          "slug": "dohna",
          "canonical_path": "/cities/de/dohna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536781",
          "name": "Dömitz",
          "country_code": "DE",
          "slug": "domitz",
          "canonical_path": "/cities/de/domitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12045",
          "name": "Dommitzsch",
          "country_code": "DE",
          "slug": "dommitzsch",
          "canonical_path": "/cities/de/dommitzsch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83062",
          "name": "Donaueschingen",
          "country_code": "DE",
          "slug": "donaueschingen",
          "canonical_path": "/cities/de/donaueschingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q53742",
          "name": "Donauwörth",
          "country_code": "DE",
          "slug": "donauworth",
          "canonical_path": "/cities/de/donauworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80874",
          "name": "Donzdorf",
          "country_code": "DE",
          "slug": "donzdorf",
          "canonical_path": "/cities/de/donzdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2936153",
          "name": "Dörentrup",
          "country_code": "DE",
          "slug": "dorentrup",
          "canonical_path": "/cities/de/dorentrup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q264395",
          "name": "Dorfen",
          "country_code": "DE",
          "slug": "dorfen",
          "canonical_path": "/cities/de/dorfen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3978",
          "name": "Dormagen",
          "country_code": "DE",
          "slug": "dormagen",
          "canonical_path": "/cities/de/dormagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q819181",
          "name": "Dornburg-Camburg",
          "country_code": "DE",
          "slug": "dornburg-camburg",
          "canonical_path": "/cities/de/dornburg-camburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83304",
          "name": "Dornhan",
          "country_code": "DE",
          "slug": "dornhan",
          "canonical_path": "/cities/de/dornhan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2935694",
          "name": "Dornheim",
          "country_code": "DE",
          "slug": "dornheim",
          "canonical_path": "/cities/de/dornheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2935647",
          "name": "Dornstadt",
          "country_code": "DE",
          "slug": "dornstadt",
          "canonical_path": "/cities/de/dornstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82299",
          "name": "Dornstetten",
          "country_code": "DE",
          "slug": "dornstetten",
          "canonical_path": "/cities/de/dornstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3886",
          "name": "Dorsten",
          "country_code": "DE",
          "slug": "dorsten",
          "canonical_path": "/cities/de/dorsten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2935527",
          "name": "Dorstfeld",
          "country_code": "DE",
          "slug": "dorstfeld",
          "canonical_path": "/cities/de/dorstfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05913000",
          "name": "Dortmund",
          "country_code": "DE",
          "slug": "dortmund",
          "canonical_path": "/cities/de/dortmund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2935491",
          "name": "Dörverden",
          "country_code": "DE",
          "slug": "dorverden",
          "canonical_path": "/cities/de/dorverden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2935453",
          "name": "Dossenheim",
          "country_code": "DE",
          "slug": "dossenheim",
          "canonical_path": "/cities/de/dossenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2935441",
          "name": "Dötlingen",
          "country_code": "DE",
          "slug": "dotlingen",
          "canonical_path": "/cities/de/dotlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q512225",
          "name": "Dransfeld",
          "country_code": "DE",
          "slug": "dransfeld",
          "canonical_path": "/cities/de/dransfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572518",
          "name": "Drebkau/Drjowk",
          "country_code": "DE",
          "slug": "drebkau-drjowk",
          "canonical_path": "/cities/de/drebkau-drjowk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14845",
          "name": "Dreieich",
          "country_code": "DE",
          "slug": "dreieich",
          "canonical_path": "/cities/de/dreieich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2713",
          "name": "Drensteinfurt",
          "country_code": "DE",
          "slug": "drensteinfurt",
          "canonical_path": "/cities/de/drensteinfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:14612000",
          "name": "Dresden",
          "country_code": "DE",
          "slug": "dresden",
          "canonical_path": "/cities/de/dresden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934965",
          "name": "Driedorf",
          "country_code": "DE",
          "slug": "driedorf",
          "canonical_path": "/cities/de/driedorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934915",
          "name": "Drochtersen",
          "country_code": "DE",
          "slug": "drochtersen",
          "canonical_path": "/cities/de/drochtersen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10890",
          "name": "Drolshagen",
          "country_code": "DE",
          "slug": "drolshagen",
          "canonical_path": "/cities/de/drolshagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934737",
          "name": "Dudenhofen",
          "country_code": "DE",
          "slug": "dudenhofen",
          "canonical_path": "/cities/de/dudenhofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498596",
          "name": "Duderstadt",
          "country_code": "DE",
          "slug": "duderstadt",
          "canonical_path": "/cities/de/duderstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1884",
          "name": "Dueren",
          "country_code": "DE",
          "slug": "dueren",
          "canonical_path": "/cities/de/dueren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05112000",
          "name": "Duisburg",
          "country_code": "DE",
          "slug": "duisburg",
          "canonical_path": "/cities/de/duisburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934560",
          "name": "Dunningen",
          "country_code": "DE",
          "slug": "dunningen",
          "canonical_path": "/cities/de/dunningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934509",
          "name": "Durach",
          "country_code": "DE",
          "slug": "durach",
          "canonical_path": "/cities/de/durach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934462",
          "name": "Durmersheim",
          "country_code": "DE",
          "slug": "durmersheim",
          "canonical_path": "/cities/de/durmersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05111000",
          "name": "Dusseldorf",
          "country_code": "DE",
          "slug": "dusseldorf",
          "canonical_path": "/cities/de/dusseldorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934235",
          "name": "Dusslingen",
          "country_code": "DE",
          "slug": "dusslingen",
          "canonical_path": "/cities/de/dusslingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934163",
          "name": "Duvenstedt",
          "country_code": "DE",
          "slug": "duvenstedt",
          "canonical_path": "/cities/de/duvenstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541705",
          "name": "Ebeleben",
          "country_code": "DE",
          "slug": "ebeleben",
          "canonical_path": "/cities/de/ebeleben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934033",
          "name": "Ebensfeld",
          "country_code": "DE",
          "slug": "ebensfeld",
          "canonical_path": "/cities/de/ebensfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22873",
          "name": "Eberbach",
          "country_code": "DE",
          "slug": "eberbach",
          "canonical_path": "/cities/de/eberbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2934014",
          "name": "Eberdingen",
          "country_code": "DE",
          "slug": "eberdingen",
          "canonical_path": "/cities/de/eberdingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504585",
          "name": "Ebermannstadt",
          "country_code": "DE",
          "slug": "ebermannstadt",
          "canonical_path": "/cities/de/ebermannstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q389298",
          "name": "Ebern",
          "country_code": "DE",
          "slug": "ebern",
          "canonical_path": "/cities/de/ebern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933965",
          "name": "Ebersbach",
          "country_code": "DE",
          "slug": "ebersbach",
          "canonical_path": "/cities/de/ebersbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3209001",
          "name": "Ebersbach",
          "country_code": "DE",
          "slug": "ebersbach-13-00",
          "canonical_path": "/cities/de/ebersbach-13-00/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80844",
          "name": "Ebersbach an der Fils",
          "country_code": "DE",
          "slug": "ebersbach-an-der-fils",
          "canonical_path": "/cities/de/ebersbach-an-der-fils/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q162989",
          "name": "Ebersbach-Neugersdorf",
          "country_code": "DE",
          "slug": "ebersbach-neugersdorf",
          "canonical_path": "/cities/de/ebersbach-neugersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q253003",
          "name": "Ebersberg",
          "country_code": "DE",
          "slug": "ebersberg",
          "canonical_path": "/cities/de/ebersberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933922",
          "name": "Ebersdorf",
          "country_code": "DE",
          "slug": "ebersdorf",
          "canonical_path": "/cities/de/ebersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q9306",
          "name": "Eberswalde",
          "country_code": "DE",
          "slug": "eberswalde",
          "canonical_path": "/cities/de/eberswalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933817",
          "name": "Ebstorf",
          "country_code": "DE",
          "slug": "ebstorf",
          "canonical_path": "/cities/de/ebstorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933799",
          "name": "Eching",
          "country_code": "DE",
          "slug": "eching",
          "canonical_path": "/cities/de/eching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933772",
          "name": "Echzell",
          "country_code": "DE",
          "slug": "echzell",
          "canonical_path": "/cities/de/echzell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530107",
          "name": "Eckartsberga",
          "country_code": "DE",
          "slug": "eckartsberga",
          "canonical_path": "/cities/de/eckartsberga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490453",
          "name": "Eckernförde",
          "country_code": "DE",
          "slug": "eckernforde",
          "canonical_path": "/cities/de/eckernforde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933607",
          "name": "Eckersdorf",
          "country_code": "DE",
          "slug": "eckersdorf",
          "canonical_path": "/cities/de/eckersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q537985",
          "name": "Edenkoben",
          "country_code": "DE",
          "slug": "edenkoben",
          "canonical_path": "/cities/de/edenkoben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:13286471",
          "name": "Edertal",
          "country_code": "DE",
          "slug": "edertal",
          "canonical_path": "/cities/de/edertal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933364",
          "name": "Edewecht",
          "country_code": "DE",
          "slug": "edewecht",
          "canonical_path": "/cities/de/edewecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933345",
          "name": "Edingen-Neckarhausen",
          "country_code": "DE",
          "slug": "edingen-neckarhausen",
          "canonical_path": "/cities/de/edingen-neckarhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933274",
          "name": "Efringen-Kirchen",
          "country_code": "DE",
          "slug": "efringen-kirchen",
          "canonical_path": "/cities/de/efringen-kirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518194",
          "name": "Egeln",
          "country_code": "DE",
          "slug": "egeln",
          "canonical_path": "/cities/de/egeln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933246",
          "name": "Egelsbach",
          "country_code": "DE",
          "slug": "egelsbach",
          "canonical_path": "/cities/de/egelsbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933188",
          "name": "Egestorf",
          "country_code": "DE",
          "slug": "egestorf",
          "canonical_path": "/cities/de/egestorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q255201",
          "name": "Eggenfelden",
          "country_code": "DE",
          "slug": "eggenfelden",
          "canonical_path": "/cities/de/eggenfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933101",
          "name": "Eggenstein-Leopoldshafen",
          "country_code": "DE",
          "slug": "eggenstein-leopoldshafen",
          "canonical_path": "/cities/de/eggenstein-leopoldshafen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572034",
          "name": "Eggesin",
          "country_code": "DE",
          "slug": "eggesin",
          "canonical_path": "/cities/de/eggesin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2933019",
          "name": "Eggolsheim",
          "country_code": "DE",
          "slug": "eggolsheim",
          "canonical_path": "/cities/de/eggolsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932992",
          "name": "Egling",
          "country_code": "DE",
          "slug": "egling",
          "canonical_path": "/cities/de/egling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932924",
          "name": "Ehingen",
          "country_code": "DE",
          "slug": "ehingen",
          "canonical_path": "/cities/de/ehingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q158523",
          "name": "Ehingen (Donau)",
          "country_code": "DE",
          "slug": "ehingen-donau",
          "canonical_path": "/cities/de/ehingen-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932882",
          "name": "Ehningen",
          "country_code": "DE",
          "slug": "ehningen",
          "canonical_path": "/cities/de/ehningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932871",
          "name": "Ehrang",
          "country_code": "DE",
          "slug": "ehrang",
          "canonical_path": "/cities/de/ehrang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57876",
          "name": "Ehrenfriedersdorf",
          "country_code": "DE",
          "slug": "ehrenfriedersdorf",
          "canonical_path": "/cities/de/ehrenfriedersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932788",
          "name": "Ehringshausen",
          "country_code": "DE",
          "slug": "ehringshausen",
          "canonical_path": "/cities/de/ehringshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932756",
          "name": "Eibau",
          "country_code": "DE",
          "slug": "eibau",
          "canonical_path": "/cities/de/eibau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q481834",
          "name": "Eibelstadt",
          "country_code": "DE",
          "slug": "eibelstadt",
          "canonical_path": "/cities/de/eibelstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57881",
          "name": "Eibenstock",
          "country_code": "DE",
          "slug": "eibenstock",
          "canonical_path": "/cities/de/eibenstock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932382",
          "name": "Eichenau",
          "country_code": "DE",
          "slug": "eichenau",
          "canonical_path": "/cities/de/eichenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932321",
          "name": "Eichendorf",
          "country_code": "DE",
          "slug": "eichendorf",
          "canonical_path": "/cities/de/eichendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932266",
          "name": "Eichenzell",
          "country_code": "DE",
          "slug": "eichenzell",
          "canonical_path": "/cities/de/eichenzell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932089",
          "name": "Eichlinghofen",
          "country_code": "DE",
          "slug": "eichlinghofen",
          "canonical_path": "/cities/de/eichlinghofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q252772",
          "name": "Eichstätt",
          "country_code": "DE",
          "slug": "eichstatt",
          "canonical_path": "/cities/de/eichstatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2932040",
          "name": "Eichwalde",
          "country_code": "DE",
          "slug": "eichwalde",
          "canonical_path": "/cities/de/eichwalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2931881",
          "name": "Eil",
          "country_code": "DE",
          "slug": "eil",
          "canonical_path": "/cities/de/eil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12055",
          "name": "Eilenburg",
          "country_code": "DE",
          "slug": "eilenburg",
          "canonical_path": "/cities/de/eilenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q47244",
          "name": "Einbeck",
          "country_code": "DE",
          "slug": "einbeck",
          "canonical_path": "/cities/de/einbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2931779",
          "name": "Einfeld",
          "country_code": "DE",
          "slug": "einfeld",
          "canonical_path": "/cities/de/einfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2931753",
          "name": "Einhausen",
          "country_code": "DE",
          "slug": "einhausen",
          "canonical_path": "/cities/de/einhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486603",
          "name": "Eisenberg (Pfalz)",
          "country_code": "DE",
          "slug": "eisenberg-pfalz",
          "canonical_path": "/cities/de/eisenberg-pfalz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16106",
          "name": "Eisenhüttenstadt",
          "country_code": "DE",
          "slug": "eisenhuttenstadt",
          "canonical_path": "/cities/de/eisenhuttenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486795",
          "name": "Eisfeld",
          "country_code": "DE",
          "slug": "eisfeld",
          "canonical_path": "/cities/de/eisfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q484870",
          "name": "Eisleben",
          "country_code": "DE",
          "slug": "eisleben",
          "canonical_path": "/cities/de/eisleben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:7284571",
          "name": "Eisleben Lutherstadt",
          "country_code": "DE",
          "slug": "eisleben-lutherstadt",
          "canonical_path": "/cities/de/eisleben-lutherstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2931414",
          "name": "Eislingen",
          "country_code": "DE",
          "slug": "eislingen",
          "canonical_path": "/cities/de/eislingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81905",
          "name": "Eislingen/Fils",
          "country_code": "DE",
          "slug": "eislingen-fils",
          "canonical_path": "/cities/de/eislingen-fils/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2931372",
          "name": "Eiterfeld",
          "country_code": "DE",
          "slug": "eiterfeld",
          "canonical_path": "/cities/de/eiterfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2931361",
          "name": "Eitorf",
          "country_code": "DE",
          "slug": "eitorf",
          "canonical_path": "/cities/de/eitorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2931038",
          "name": "Ellerau",
          "country_code": "DE",
          "slug": "ellerau",
          "canonical_path": "/cities/de/ellerau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504544",
          "name": "Ellingen",
          "country_code": "DE",
          "slug": "ellingen",
          "canonical_path": "/cities/de/ellingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518240",
          "name": "Ellrich",
          "country_code": "DE",
          "slug": "ellrich",
          "canonical_path": "/cities/de/ellrich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930889",
          "name": "Ellwangen",
          "country_code": "DE",
          "slug": "ellwangen",
          "canonical_path": "/cities/de/ellwangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q163973",
          "name": "Ellwangen (Jagst)",
          "country_code": "DE",
          "slug": "ellwangen-jagst",
          "canonical_path": "/cities/de/ellwangen-jagst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930831",
          "name": "Elmpt",
          "country_code": "DE",
          "slug": "elmpt",
          "canonical_path": "/cities/de/elmpt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930826",
          "name": "Elmschenhagen",
          "country_code": "DE",
          "slug": "elmschenhagen",
          "canonical_path": "/cities/de/elmschenhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6845",
          "name": "Elmshorn",
          "country_code": "DE",
          "slug": "elmshorn",
          "canonical_path": "/cities/de/elmshorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930747",
          "name": "Elsenfeld",
          "country_code": "DE",
          "slug": "elsenfeld",
          "canonical_path": "/cities/de/elsenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509939",
          "name": "Elsfleth",
          "country_code": "DE",
          "slug": "elsfleth",
          "canonical_path": "/cities/de/elsfleth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46859",
          "name": "Elsterberg",
          "country_code": "DE",
          "slug": "elsterberg",
          "canonical_path": "/cities/de/elsterberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q584473",
          "name": "Elsterwerda",
          "country_code": "DE",
          "slug": "elsterwerda",
          "canonical_path": "/cities/de/elsterwerda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57885",
          "name": "Elterlein",
          "country_code": "DE",
          "slug": "elterlein",
          "canonical_path": "/cities/de/elterlein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504534",
          "name": "Eltmann",
          "country_code": "DE",
          "slug": "eltmann",
          "canonical_path": "/cities/de/eltmann/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930646",
          "name": "Eltville",
          "country_code": "DE",
          "slug": "eltville",
          "canonical_path": "/cities/de/eltville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q275193",
          "name": "Eltville am Rhein",
          "country_code": "DE",
          "slug": "eltville-am-rhein",
          "canonical_path": "/cities/de/eltville-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930628",
          "name": "Elz",
          "country_code": "DE",
          "slug": "elz",
          "canonical_path": "/cities/de/elz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506773",
          "name": "Elzach",
          "country_code": "DE",
          "slug": "elzach",
          "canonical_path": "/cities/de/elzach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518719",
          "name": "Elze",
          "country_code": "DE",
          "slug": "elze",
          "canonical_path": "/cities/de/elze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4174",
          "name": "Emden",
          "country_code": "DE",
          "slug": "emden",
          "canonical_path": "/cities/de/emden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930546",
          "name": "Emlichheim",
          "country_code": "DE",
          "slug": "emlichheim",
          "canonical_path": "/cities/de/emlichheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539565",
          "name": "Emmelshausen",
          "country_code": "DE",
          "slug": "emmelshausen",
          "canonical_path": "/cities/de/emmelshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494521",
          "name": "Emmendingen",
          "country_code": "DE",
          "slug": "emmendingen",
          "canonical_path": "/cities/de/emmendingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930509",
          "name": "Emmerich",
          "country_code": "DE",
          "slug": "emmerich",
          "canonical_path": "/cities/de/emmerich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57006",
          "name": "Emmerich am Rhein",
          "country_code": "DE",
          "slug": "emmerich-am-rhein",
          "canonical_path": "/cities/de/emmerich-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930500",
          "name": "Emmering",
          "country_code": "DE",
          "slug": "emmering",
          "canonical_path": "/cities/de/emmering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930454",
          "name": "Emsbüren",
          "country_code": "DE",
          "slug": "emsburen",
          "canonical_path": "/cities/de/emsburen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14936",
          "name": "Emsdetten",
          "country_code": "DE",
          "slug": "emsdetten",
          "canonical_path": "/cities/de/emsdetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930432",
          "name": "Emskirchen",
          "country_code": "DE",
          "slug": "emskirchen",
          "canonical_path": "/cities/de/emskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930426",
          "name": "Emstek",
          "country_code": "DE",
          "slug": "emstek",
          "canonical_path": "/cities/de/emstek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930383",
          "name": "Endingen",
          "country_code": "DE",
          "slug": "endingen",
          "canonical_path": "/cities/de/endingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q168511",
          "name": "Endingen am Kaiserstuhl",
          "country_code": "DE",
          "slug": "endingen-am-kaiserstuhl",
          "canonical_path": "/cities/de/endingen-am-kaiserstuhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930216",
          "name": "Engelskirchen",
          "country_code": "DE",
          "slug": "engelskirchen",
          "canonical_path": "/cities/de/engelskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515527",
          "name": "Engen",
          "country_code": "DE",
          "slug": "engen",
          "canonical_path": "/cities/de/engen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q53901",
          "name": "Enger",
          "country_code": "DE",
          "slug": "enger",
          "canonical_path": "/cities/de/enger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930080",
          "name": "Eningen unter Achalm",
          "country_code": "DE",
          "slug": "eningen-unter-achalm",
          "canonical_path": "/cities/de/eningen-unter-achalm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930071",
          "name": "Enkenbach-Alsenborn",
          "country_code": "DE",
          "slug": "enkenbach-alsenborn",
          "canonical_path": "/cities/de/enkenbach-alsenborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11301",
          "name": "Ennepetal",
          "country_code": "DE",
          "slug": "ennepetal",
          "canonical_path": "/cities/de/ennepetal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2760",
          "name": "Ennigerloh",
          "country_code": "DE",
          "slug": "ennigerloh",
          "canonical_path": "/cities/de/ennigerloh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2930019",
          "name": "Ensdorf",
          "country_code": "DE",
          "slug": "ensdorf",
          "canonical_path": "/cities/de/ensdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2929865",
          "name": "Eppelborn",
          "country_code": "DE",
          "slug": "eppelborn",
          "canonical_path": "/cities/de/eppelborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82539",
          "name": "Eppelheim",
          "country_code": "DE",
          "slug": "eppelheim",
          "canonical_path": "/cities/de/eppelheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2929837",
          "name": "Eppertshausen",
          "country_code": "DE",
          "slug": "eppertshausen",
          "canonical_path": "/cities/de/eppertshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506450",
          "name": "Eppingen",
          "country_code": "DE",
          "slug": "eppingen",
          "canonical_path": "/cities/de/eppingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q45347",
          "name": "Eppstein",
          "country_code": "DE",
          "slug": "eppstein",
          "canonical_path": "/cities/de/eppstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504596",
          "name": "Erbendorf",
          "country_code": "DE",
          "slug": "erbendorf",
          "canonical_path": "/cities/de/erbendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15980",
          "name": "Erding",
          "country_code": "DE",
          "slug": "erding",
          "canonical_path": "/cities/de/erding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2929692",
          "name": "Erdweg",
          "country_code": "DE",
          "slug": "erdweg",
          "canonical_path": "/cities/de/erdweg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4195",
          "name": "Erftstadt",
          "country_code": "DE",
          "slug": "erftstadt",
          "canonical_path": "/cities/de/erftstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2929650",
          "name": "Ergolding",
          "country_code": "DE",
          "slug": "ergolding",
          "canonical_path": "/cities/de/ergolding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2929649",
          "name": "Ergoldsbach",
          "country_code": "DE",
          "slug": "ergoldsbach",
          "canonical_path": "/cities/de/ergoldsbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7025",
          "name": "Erkelenz",
          "country_code": "DE",
          "slug": "erkelenz",
          "canonical_path": "/cities/de/erkelenz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572392",
          "name": "Erkner",
          "country_code": "DE",
          "slug": "erkner",
          "canonical_path": "/cities/de/erkner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6968",
          "name": "Erkrath",
          "country_code": "DE",
          "slug": "erkrath",
          "canonical_path": "/cities/de/erkrath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3126",
          "name": "Erlangen",
          "country_code": "DE",
          "slug": "erlangen",
          "canonical_path": "/cities/de/erlangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502401",
          "name": "Erlenbach a.Main",
          "country_code": "DE",
          "slug": "erlenbach-a-main",
          "canonical_path": "/cities/de/erlenbach-a-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2929484",
          "name": "Erlenbach am Main",
          "country_code": "DE",
          "slug": "erlenbach-am-main",
          "canonical_path": "/cities/de/erlenbach-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q287204",
          "name": "Erlensee",
          "country_code": "DE",
          "slug": "erlensee",
          "canonical_path": "/cities/de/erlensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2929370",
          "name": "Erndtebrück",
          "country_code": "DE",
          "slug": "erndtebruck",
          "canonical_path": "/cities/de/erndtebruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2929252",
          "name": "Ertingen",
          "country_code": "DE",
          "slug": "ertingen",
          "canonical_path": "/cities/de/ertingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11064",
          "name": "Erwitte",
          "country_code": "DE",
          "slug": "erwitte",
          "canonical_path": "/cities/de/erwitte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2929224",
          "name": "Erzhausen",
          "country_code": "DE",
          "slug": "erzhausen",
          "canonical_path": "/cities/de/erzhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569648",
          "name": "Eschborn",
          "country_code": "DE",
          "slug": "eschborn",
          "canonical_path": "/cities/de/eschborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502786",
          "name": "Eschenbach i.d.OPf.",
          "country_code": "DE",
          "slug": "eschenbach-i-d-opf",
          "canonical_path": "/cities/de/eschenbach-i-d-opf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1468",
          "name": "Eschwege",
          "country_code": "DE",
          "slug": "eschwege",
          "canonical_path": "/cities/de/eschwege/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4083",
          "name": "Eschweiler",
          "country_code": "DE",
          "slug": "eschweiler",
          "canonical_path": "/cities/de/eschweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11611400",
          "name": "Eselsberg",
          "country_code": "DE",
          "slug": "eselsberg",
          "canonical_path": "/cities/de/eselsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509338",
          "name": "Esens",
          "country_code": "DE",
          "slug": "esens",
          "canonical_path": "/cities/de/esens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2928890",
          "name": "Eslohe",
          "country_code": "DE",
          "slug": "eslohe",
          "canonical_path": "/cities/de/eslohe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q182691",
          "name": "Espelkamp",
          "country_code": "DE",
          "slug": "espelkamp",
          "canonical_path": "/cities/de/espelkamp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05113000",
          "name": "Essen",
          "country_code": "DE",
          "slug": "essen",
          "canonical_path": "/cities/de/essen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2928804",
          "name": "Essenbach",
          "country_code": "DE",
          "slug": "essenbach",
          "canonical_path": "/cities/de/essenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2928761",
          "name": "Essingen",
          "country_code": "DE",
          "slug": "essingen",
          "canonical_path": "/cities/de/essingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2928751",
          "name": "Esslingen",
          "country_code": "DE",
          "slug": "esslingen",
          "canonical_path": "/cities/de/esslingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3786",
          "name": "Esslingen am Neckar",
          "country_code": "DE",
          "slug": "esslingen-am-neckar",
          "canonical_path": "/cities/de/esslingen-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2928717",
          "name": "Esterwegen",
          "country_code": "DE",
          "slug": "esterwegen",
          "canonical_path": "/cities/de/esterwegen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506871",
          "name": "Ettenheim",
          "country_code": "DE",
          "slug": "ettenheim",
          "canonical_path": "/cities/de/ettenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14893",
          "name": "Ettlingen",
          "country_code": "DE",
          "slug": "ettlingen",
          "canonical_path": "/cities/de/ettlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4074",
          "name": "Euskirchen",
          "country_code": "DE",
          "slug": "euskirchen",
          "canonical_path": "/cities/de/euskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490445",
          "name": "Eutin",
          "country_code": "DE",
          "slug": "eutin",
          "canonical_path": "/cities/de/eutin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2928379",
          "name": "Eutingen an der Enz",
          "country_code": "DE",
          "slug": "eutingen-an-der-enz",
          "canonical_path": "/cities/de/eutingen-an-der-enz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2928320",
          "name": "Everswinkel",
          "country_code": "DE",
          "slug": "everswinkel",
          "canonical_path": "/cities/de/everswinkel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2928011",
          "name": "Falkenberg",
          "country_code": "DE",
          "slug": "falkenberg",
          "canonical_path": "/cities/de/falkenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570094",
          "name": "Falkenberg/Elster",
          "country_code": "DE",
          "slug": "falkenberg-elster",
          "canonical_path": "/cities/de/falkenberg-elster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14842",
          "name": "Falkensee",
          "country_code": "DE",
          "slug": "falkensee",
          "canonical_path": "/cities/de/falkensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2927913",
          "name": "Falkenstein",
          "country_code": "DE",
          "slug": "falkenstein",
          "canonical_path": "/cities/de/falkenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50871",
          "name": "Falkenstein/Harz",
          "country_code": "DE",
          "slug": "falkenstein-harz",
          "canonical_path": "/cities/de/falkenstein-harz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46863",
          "name": "Falkenstein/Vogtl.",
          "country_code": "DE",
          "slug": "falkenstein-vogtl",
          "canonical_path": "/cities/de/falkenstein-vogtl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2927750",
          "name": "Faßberg",
          "country_code": "DE",
          "slug": "fassberg",
          "canonical_path": "/cities/de/fassberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3172",
          "name": "Fehmarn",
          "country_code": "DE",
          "slug": "fehmarn",
          "canonical_path": "/cities/de/fehmarn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2927564",
          "name": "Fehrbellin",
          "country_code": "DE",
          "slug": "fehrbellin",
          "canonical_path": "/cities/de/fehrbellin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2927347",
          "name": "Feldkirchen",
          "country_code": "DE",
          "slug": "feldkirchen",
          "canonical_path": "/cities/de/feldkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2927339",
          "name": "Feldkirchen-Westerham",
          "country_code": "DE",
          "slug": "feldkirchen-westerham",
          "canonical_path": "/cities/de/feldkirchen-westerham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7022",
          "name": "Fellbach",
          "country_code": "DE",
          "slug": "fellbach",
          "canonical_path": "/cities/de/fellbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1481",
          "name": "Felsberg",
          "country_code": "DE",
          "slug": "felsberg",
          "canonical_path": "/cities/de/felsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2927054",
          "name": "Feucht",
          "country_code": "DE",
          "slug": "feucht",
          "canonical_path": "/cities/de/feucht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502418",
          "name": "Feuchtwangen",
          "country_code": "DE",
          "slug": "feuchtwangen",
          "canonical_path": "/cities/de/feuchtwangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7032",
          "name": "Filderstadt",
          "country_code": "DE",
          "slug": "filderstadt",
          "canonical_path": "/cities/de/filderstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q588905",
          "name": "Finsterwalde",
          "country_code": "DE",
          "slug": "finsterwalde",
          "canonical_path": "/cities/de/finsterwalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2926586",
          "name": "Fischbachau",
          "country_code": "DE",
          "slug": "fischbachau",
          "canonical_path": "/cities/de/fischbachau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q582942",
          "name": "Fladungen",
          "country_code": "DE",
          "slug": "fladungen",
          "canonical_path": "/cities/de/fladungen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2926304",
          "name": "Flein",
          "country_code": "DE",
          "slug": "flein",
          "canonical_path": "/cities/de/flein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3798",
          "name": "Flensburg",
          "country_code": "DE",
          "slug": "flensburg",
          "canonical_path": "/cities/de/flensburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2926226",
          "name": "Flieden",
          "country_code": "DE",
          "slug": "flieden",
          "canonical_path": "/cities/de/flieden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2926178",
          "name": "Flintbek",
          "country_code": "DE",
          "slug": "flintbek",
          "canonical_path": "/cities/de/flintbek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71166",
          "name": "Flöha",
          "country_code": "DE",
          "slug": "floha",
          "canonical_path": "/cities/de/floha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2926120",
          "name": "Flörsheim",
          "country_code": "DE",
          "slug": "florsheim",
          "canonical_path": "/cities/de/florsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q622593",
          "name": "Flörsheim am Main",
          "country_code": "DE",
          "slug": "florsheim-am-main",
          "canonical_path": "/cities/de/florsheim-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570394",
          "name": "Florstadt",
          "country_code": "DE",
          "slug": "florstadt",
          "canonical_path": "/cities/de/florstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2926017",
          "name": "Fockbek",
          "country_code": "DE",
          "slug": "fockbek",
          "canonical_path": "/cities/de/fockbek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2925924",
          "name": "Forbach",
          "country_code": "DE",
          "slug": "forbach",
          "canonical_path": "/cities/de/forbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502780",
          "name": "Forchtenberg",
          "country_code": "DE",
          "slug": "forchtenberg",
          "canonical_path": "/cities/de/forchtenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2925848",
          "name": "Forst",
          "country_code": "DE",
          "slug": "forst-01-082",
          "canonical_path": "/cities/de/forst-01-082/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572545",
          "name": "Forst (Lausitz)/Baršć (Łužyca)",
          "country_code": "DE",
          "slug": "forst-lausitz-barsc-luzyca",
          "canonical_path": "/cities/de/forst-lausitz-barsc-luzyca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q249066",
          "name": "Frankenau",
          "country_code": "DE",
          "slug": "frankenau",
          "canonical_path": "/cities/de/frankenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2925629",
          "name": "Frankenberg",
          "country_code": "DE",
          "slug": "frankenberg",
          "canonical_path": "/cities/de/frankenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2925630",
          "name": "Frankenberg",
          "country_code": "DE",
          "slug": "frankenberg-13-00",
          "canonical_path": "/cities/de/frankenberg-13-00/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q573603",
          "name": "Frankenberg (Eder)",
          "country_code": "DE",
          "slug": "frankenberg-eder",
          "canonical_path": "/cities/de/frankenberg-eder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71104",
          "name": "Frankenberg/Sa.",
          "country_code": "DE",
          "slug": "frankenberg-sa",
          "canonical_path": "/cities/de/frankenberg-sa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6905",
          "name": "Frankenthal Pfalz",
          "country_code": "DE",
          "slug": "frankenthal-pfalz",
          "canonical_path": "/cities/de/frankenthal-pfalz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:06412000",
          "name": "Frankfurt am Main",
          "country_code": "DE",
          "slug": "frankfurt-am-main",
          "canonical_path": "/cities/de/frankfurt-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571954",
          "name": "Franzburg",
          "country_code": "DE",
          "slug": "franzburg",
          "canonical_path": "/cities/de/franzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71108",
          "name": "Frauenstein",
          "country_code": "DE",
          "slug": "frauenstein",
          "canonical_path": "/cities/de/frauenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2925267",
          "name": "Fraureuth",
          "country_code": "DE",
          "slug": "fraureuth",
          "canonical_path": "/cities/de/fraureuth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6823",
          "name": "Frechen",
          "country_code": "DE",
          "slug": "frechen",
          "canonical_path": "/cities/de/frechen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14819",
          "name": "Freiberg",
          "country_code": "DE",
          "slug": "freiberg",
          "canonical_path": "/cities/de/freiberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61840",
          "name": "Freiberg am Neckar",
          "country_code": "DE",
          "slug": "freiberg-am-neckar",
          "canonical_path": "/cities/de/freiberg-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2925177",
          "name": "Freiburg",
          "country_code": "DE",
          "slug": "freiburg",
          "canonical_path": "/cities/de/freiburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:08311000",
          "name": "Freiburg im Breisgau",
          "country_code": "DE",
          "slug": "freiburg-im-breisgau",
          "canonical_path": "/cities/de/freiburg-im-breisgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q278352",
          "name": "Freilassing",
          "country_code": "DE",
          "slug": "freilassing",
          "canonical_path": "/cities/de/freilassing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539630",
          "name": "Freinsheim",
          "country_code": "DE",
          "slug": "freinsheim",
          "canonical_path": "/cities/de/freinsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2925038",
          "name": "Freisen",
          "country_code": "DE",
          "slug": "freisen",
          "canonical_path": "/cities/de/freisen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6998",
          "name": "Freising",
          "country_code": "DE",
          "slug": "freising",
          "canonical_path": "/cities/de/freising/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5870",
          "name": "Freital",
          "country_code": "DE",
          "slug": "freital",
          "canonical_path": "/cities/de/freital/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565523",
          "name": "Freren",
          "country_code": "DE",
          "slug": "freren",
          "canonical_path": "/cities/de/freren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82838",
          "name": "Freudenstadt",
          "country_code": "DE",
          "slug": "freudenstadt",
          "canonical_path": "/cities/de/freudenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529853",
          "name": "Freyburg (Unstrut)",
          "country_code": "DE",
          "slug": "freyburg-unstrut",
          "canonical_path": "/cities/de/freyburg-unstrut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504499",
          "name": "Freystadt",
          "country_code": "DE",
          "slug": "freystadt",
          "canonical_path": "/cities/de/freystadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502378",
          "name": "Freyung",
          "country_code": "DE",
          "slug": "freyung",
          "canonical_path": "/cities/de/freyung/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2924837",
          "name": "Frickenhausen",
          "country_code": "DE",
          "slug": "frickenhausen",
          "canonical_path": "/cities/de/frickenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506549",
          "name": "Fridingen an der Donau",
          "country_code": "DE",
          "slug": "fridingen-an-der-donau",
          "canonical_path": "/cities/de/fridingen-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507194",
          "name": "Friedberg",
          "country_code": "DE",
          "slug": "friedberg",
          "canonical_path": "/cities/de/friedberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516485",
          "name": "Friedberg (Hessen)",
          "country_code": "DE",
          "slug": "friedberg-hessen",
          "canonical_path": "/cities/de/friedberg-hessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2924788",
          "name": "Friedeburg",
          "country_code": "DE",
          "slug": "friedeburg",
          "canonical_path": "/cities/de/friedeburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:9972705",
          "name": "Friedland",
          "country_code": "DE",
          "slug": "friedland-06-00",
          "canonical_path": "/cities/de/friedland-06-00/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520025",
          "name": "Friedrichroda",
          "country_code": "DE",
          "slug": "friedrichroda",
          "canonical_path": "/cities/de/friedrichroda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q627742",
          "name": "Friedrichsdorf",
          "country_code": "DE",
          "slug": "friedrichsdorf",
          "canonical_path": "/cities/de/friedrichsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4051",
          "name": "Friedrichshafen",
          "country_code": "DE",
          "slug": "friedrichshafen",
          "canonical_path": "/cities/de/friedrichshafen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q21065",
          "name": "Friedrichstadt",
          "country_code": "DE",
          "slug": "friedrichstadt",
          "canonical_path": "/cities/de/friedrichstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550828",
          "name": "Friedrichsthal",
          "country_code": "DE",
          "slug": "friedrichsthal",
          "canonical_path": "/cities/de/friedrichsthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2924428",
          "name": "Frielendorf",
          "country_code": "DE",
          "slug": "frielendorf",
          "canonical_path": "/cities/de/frielendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q585632",
          "name": "Friesack",
          "country_code": "DE",
          "slug": "friesack",
          "canonical_path": "/cities/de/friesack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q559637",
          "name": "Friesoythe",
          "country_code": "DE",
          "slug": "friesoythe",
          "canonical_path": "/cities/de/friesoythe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492503",
          "name": "Fritzlar",
          "country_code": "DE",
          "slug": "fritzlar",
          "canonical_path": "/cities/de/fritzlar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10763",
          "name": "Frohburg",
          "country_code": "DE",
          "slug": "frohburg",
          "canonical_path": "/cities/de/frohburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2924206",
          "name": "Fröndenberg",
          "country_code": "DE",
          "slug": "frondenberg",
          "canonical_path": "/cities/de/frondenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10933",
          "name": "Fröndenberg/Ruhr",
          "country_code": "DE",
          "slug": "frondenberg-ruhr",
          "canonical_path": "/cities/de/frondenberg-ruhr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16003",
          "name": "Fuerstenfeldbruck",
          "country_code": "DE",
          "slug": "fuerstenfeldbruck",
          "canonical_path": "/cities/de/fuerstenfeldbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3963",
          "name": "Fulda",
          "country_code": "DE",
          "slug": "fulda",
          "canonical_path": "/cities/de/fulda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2923815",
          "name": "Fuldatal",
          "country_code": "DE",
          "slug": "fuldatal",
          "canonical_path": "/cities/de/fuldatal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505718",
          "name": "Fürstenau",
          "country_code": "DE",
          "slug": "furstenau",
          "canonical_path": "/cities/de/furstenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q311539",
          "name": "Fürstenberg/Havel",
          "country_code": "DE",
          "slug": "furstenberg-havel",
          "canonical_path": "/cities/de/furstenberg-havel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2923584",
          "name": "Fürstenzell",
          "country_code": "DE",
          "slug": "furstenzell",
          "canonical_path": "/cities/de/furstenzell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2923543",
          "name": "Fürth",
          "country_code": "DE",
          "slug": "furth",
          "canonical_path": "/cities/de/furth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502370",
          "name": "Furth im Wald",
          "country_code": "DE",
          "slug": "furth-im-wald",
          "canonical_path": "/cities/de/furth-im-wald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2923521",
          "name": "Furtwangen",
          "country_code": "DE",
          "slug": "furtwangen",
          "canonical_path": "/cities/de/furtwangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82717",
          "name": "Furtwangen im Schwarzwald",
          "country_code": "DE",
          "slug": "furtwangen-im-schwarzwald",
          "canonical_path": "/cities/de/furtwangen-im-schwarzwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q262684",
          "name": "Füssen",
          "country_code": "DE",
          "slug": "fussen",
          "canonical_path": "/cities/de/fussen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506665",
          "name": "Gadebusch",
          "country_code": "DE",
          "slug": "gadebusch",
          "canonical_path": "/cities/de/gadebusch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2923407",
          "name": "Gadeland",
          "country_code": "DE",
          "slug": "gadeland",
          "canonical_path": "/cities/de/gadeland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504451",
          "name": "Gaggenau",
          "country_code": "DE",
          "slug": "gaggenau",
          "canonical_path": "/cities/de/gaggenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81811",
          "name": "Gaildorf",
          "country_code": "DE",
          "slug": "gaildorf",
          "canonical_path": "/cities/de/gaildorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2923305",
          "name": "Gaimersheim",
          "country_code": "DE",
          "slug": "gaimersheim",
          "canonical_path": "/cities/de/gaimersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83088",
          "name": "Gammertingen",
          "country_code": "DE",
          "slug": "gammertingen",
          "canonical_path": "/cities/de/gammertingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922731",
          "name": "Ganderkesee",
          "country_code": "DE",
          "slug": "ganderkesee",
          "canonical_path": "/cities/de/ganderkesee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922722",
          "name": "Gangelt",
          "country_code": "DE",
          "slug": "gangelt",
          "canonical_path": "/cities/de/gangelt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922716",
          "name": "Gangkofen",
          "country_code": "DE",
          "slug": "gangkofen",
          "canonical_path": "/cities/de/gangkofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4001",
          "name": "Garbsen",
          "country_code": "DE",
          "slug": "garbsen",
          "canonical_path": "/cities/de/garbsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922582",
          "name": "Garching",
          "country_code": "DE",
          "slug": "garching",
          "canonical_path": "/cities/de/garching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922583",
          "name": "Garching an der Alz",
          "country_code": "DE",
          "slug": "garching-an-der-alz",
          "canonical_path": "/cities/de/garching-an-der-alz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q264620",
          "name": "Garching b.München",
          "country_code": "DE",
          "slug": "garching-b-munchen",
          "canonical_path": "/cities/de/garching-b-munchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492374",
          "name": "Gardelegen",
          "country_code": "DE",
          "slug": "gardelegen",
          "canonical_path": "/cities/de/gardelegen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q27324",
          "name": "Garding",
          "country_code": "DE",
          "slug": "garding",
          "canonical_path": "/cities/de/garding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922530",
          "name": "Garmisch-Partenkirchen",
          "country_code": "DE",
          "slug": "garmisch-partenkirchen",
          "canonical_path": "/cities/de/garmisch-partenkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922511",
          "name": "Garrel",
          "country_code": "DE",
          "slug": "garrel",
          "canonical_path": "/cities/de/garrel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922436",
          "name": "Gärtringen",
          "country_code": "DE",
          "slug": "gartringen",
          "canonical_path": "/cities/de/gartringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571998",
          "name": "Gartz (Oder)",
          "country_code": "DE",
          "slug": "gartz-oder",
          "canonical_path": "/cities/de/gartz-oder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q161898",
          "name": "Garz/Rügen",
          "country_code": "DE",
          "slug": "garz-rugen",
          "canonical_path": "/cities/de/garz-rugen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570316",
          "name": "Gau-Algesheim",
          "country_code": "DE",
          "slug": "gau-algesheim",
          "canonical_path": "/cities/de/gau-algesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922230",
          "name": "Gauting",
          "country_code": "DE",
          "slug": "gauting",
          "canonical_path": "/cities/de/gauting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529868",
          "name": "Gebesee",
          "country_code": "DE",
          "slug": "gebesee",
          "canonical_path": "/cities/de/gebesee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q560940",
          "name": "Gedern",
          "country_code": "DE",
          "slug": "gedern",
          "canonical_path": "/cities/de/gedern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2922112",
          "name": "Geeste",
          "country_code": "DE",
          "slug": "geeste",
          "canonical_path": "/cities/de/geeste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494790",
          "name": "Geesthacht",
          "country_code": "DE",
          "slug": "geesthacht",
          "canonical_path": "/cities/de/geesthacht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1497761",
          "name": "Geestland",
          "country_code": "DE",
          "slug": "geestland",
          "canonical_path": "/cities/de/geestland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504562",
          "name": "Gefrees",
          "country_code": "DE",
          "slug": "gefrees",
          "canonical_path": "/cities/de/gefrees/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q549864",
          "name": "Gehrden",
          "country_code": "DE",
          "slug": "gehrden",
          "canonical_path": "/cities/de/gehrden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q205050",
          "name": "Geilenkirchen",
          "country_code": "DE",
          "slug": "geilenkirchen",
          "canonical_path": "/cities/de/geilenkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539040",
          "name": "Geisa",
          "country_code": "DE",
          "slug": "geisa",
          "canonical_path": "/cities/de/geisa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q553756",
          "name": "Geiselhöring",
          "country_code": "DE",
          "slug": "geiselhoring",
          "canonical_path": "/cities/de/geiselhoring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q259795",
          "name": "Geisenfeld",
          "country_code": "DE",
          "slug": "geisenfeld",
          "canonical_path": "/cities/de/geisenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2921709",
          "name": "Geisenhausen",
          "country_code": "DE",
          "slug": "geisenhausen",
          "canonical_path": "/cities/de/geisenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558516",
          "name": "Geisenheim",
          "country_code": "DE",
          "slug": "geisenheim",
          "canonical_path": "/cities/de/geisenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506571",
          "name": "Geisingen",
          "country_code": "DE",
          "slug": "geisingen",
          "canonical_path": "/cities/de/geisingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q535267",
          "name": "Geislingen",
          "country_code": "DE",
          "slug": "geislingen",
          "canonical_path": "/cities/de/geislingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80836",
          "name": "Geislingen an der Steige",
          "country_code": "DE",
          "slug": "geislingen-an-der-steige",
          "canonical_path": "/cities/de/geislingen-an-der-steige/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10765",
          "name": "Geithain",
          "country_code": "DE",
          "slug": "geithain",
          "canonical_path": "/cities/de/geithain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16024",
          "name": "Geldern",
          "country_code": "DE",
          "slug": "geldern",
          "canonical_path": "/cities/de/geldern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494733",
          "name": "Gelnhausen",
          "country_code": "DE",
          "slug": "gelnhausen",
          "canonical_path": "/cities/de/gelnhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05513000",
          "name": "Gelsenkirchen",
          "country_code": "DE",
          "slug": "gelsenkirchen",
          "canonical_path": "/cities/de/gelsenkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2921449",
          "name": "Geltendorf",
          "country_code": "DE",
          "slug": "geltendorf",
          "canonical_path": "/cities/de/geltendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2924681",
          "name": "Gemeinde Friedland",
          "country_code": "DE",
          "slug": "gemeinde-friedland",
          "canonical_path": "/cities/de/gemeinde-friedland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q624854",
          "name": "Gemünden (Wohra)",
          "country_code": "DE",
          "slug": "gemunden-wohra",
          "canonical_path": "/cities/de/gemunden-wohra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505332",
          "name": "Gemünden a.Main",
          "country_code": "DE",
          "slug": "gemunden-a-main",
          "canonical_path": "/cities/de/gemunden-a-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505495",
          "name": "Gengenbach",
          "country_code": "DE",
          "slug": "gengenbach",
          "canonical_path": "/cities/de/gengenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q284317",
          "name": "Genthin",
          "country_code": "DE",
          "slug": "genthin",
          "canonical_path": "/cities/de/genthin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2921267",
          "name": "Georgensgmünd",
          "country_code": "DE",
          "slug": "georgensgmund",
          "canonical_path": "/cities/de/georgensgmund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2921261",
          "name": "Georgenthal",
          "country_code": "DE",
          "slug": "georgenthal",
          "canonical_path": "/cities/de/georgenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16078",
          "name": "Georgsmarienhuette",
          "country_code": "DE",
          "slug": "georgsmarienhuette",
          "canonical_path": "/cities/de/georgsmarienhuette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3750",
          "name": "Gera",
          "country_code": "DE",
          "slug": "gera",
          "canonical_path": "/cities/de/gera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83199",
          "name": "Gerabronn",
          "country_code": "DE",
          "slug": "gerabronn",
          "canonical_path": "/cities/de/gerabronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2921165",
          "name": "Gerbrunn",
          "country_code": "DE",
          "slug": "gerbrunn",
          "canonical_path": "/cities/de/gerbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50891",
          "name": "Gerbstedt",
          "country_code": "DE",
          "slug": "gerbstedt",
          "canonical_path": "/cities/de/gerbstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504780",
          "name": "Geretsried",
          "country_code": "DE",
          "slug": "geretsried",
          "canonical_path": "/cities/de/geretsried/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71111",
          "name": "Geringswalde",
          "country_code": "DE",
          "slug": "geringswalde",
          "canonical_path": "/cities/de/geringswalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61843",
          "name": "Gerlingen",
          "country_code": "DE",
          "slug": "gerlingen",
          "canonical_path": "/cities/de/gerlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14898",
          "name": "Germering",
          "country_code": "DE",
          "slug": "germering",
          "canonical_path": "/cities/de/germering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22629",
          "name": "Germersheim",
          "country_code": "DE",
          "slug": "germersheim",
          "canonical_path": "/cities/de/germersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520119",
          "name": "Gernsbach",
          "country_code": "DE",
          "slug": "gernsbach",
          "canonical_path": "/cities/de/gernsbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q625091",
          "name": "Gernsheim",
          "country_code": "DE",
          "slug": "gernsheim",
          "canonical_path": "/cities/de/gernsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q389985",
          "name": "Gerolstein",
          "country_code": "DE",
          "slug": "gerolstein",
          "canonical_path": "/cities/de/gerolstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q519134",
          "name": "Gerolzhofen",
          "country_code": "DE",
          "slug": "gerolzhofen",
          "canonical_path": "/cities/de/gerolzhofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2920926",
          "name": "Gersfeld",
          "country_code": "DE",
          "slug": "gersfeld",
          "canonical_path": "/cities/de/gersfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q593813",
          "name": "Gersfeld (Rhön)",
          "country_code": "DE",
          "slug": "gersfeld-rhon",
          "canonical_path": "/cities/de/gersfeld-rhon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2920921",
          "name": "Gersheim",
          "country_code": "DE",
          "slug": "gersheim",
          "canonical_path": "/cities/de/gersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2920896",
          "name": "Gerstetten",
          "country_code": "DE",
          "slug": "gerstetten",
          "canonical_path": "/cities/de/gerstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502767",
          "name": "Gersthofen",
          "country_code": "DE",
          "slug": "gersthofen",
          "canonical_path": "/cities/de/gersthofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200640",
          "name": "Gescher",
          "country_code": "DE",
          "slug": "gescher",
          "canonical_path": "/cities/de/gescher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11102",
          "name": "Geseke",
          "country_code": "DE",
          "slug": "geseke",
          "canonical_path": "/cities/de/geseke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2920776",
          "name": "Gettorf",
          "country_code": "DE",
          "slug": "gettorf",
          "canonical_path": "/cities/de/gettorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11331",
          "name": "Gevelsberg",
          "country_code": "DE",
          "slug": "gevelsberg",
          "canonical_path": "/cities/de/gevelsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57891",
          "name": "Geyer",
          "country_code": "DE",
          "slug": "geyer",
          "canonical_path": "/cities/de/geyer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q547710",
          "name": "Giengen an der Brenz",
          "country_code": "DE",
          "slug": "giengen-an-der-brenz",
          "canonical_path": "/cities/de/giengen-an-der-brenz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3206402",
          "name": "Giesen",
          "country_code": "DE",
          "slug": "giesen",
          "canonical_path": "/cities/de/giesen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3874",
          "name": "Giessen",
          "country_code": "DE",
          "slug": "giessen",
          "canonical_path": "/cities/de/giessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14813",
          "name": "Gifhorn",
          "country_code": "DE",
          "slug": "gifhorn",
          "canonical_path": "/cities/de/gifhorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2920433",
          "name": "Gilching",
          "country_code": "DE",
          "slug": "gilching",
          "canonical_path": "/cities/de/gilching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q639519",
          "name": "Ginsheim-Gustavsburg",
          "country_code": "DE",
          "slug": "ginsheim-gustavsburg",
          "canonical_path": "/cities/de/ginsheim-gustavsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3905",
          "name": "Gladbeck",
          "country_code": "DE",
          "slug": "gladbeck",
          "canonical_path": "/cities/de/gladbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q551378",
          "name": "Gladenbach",
          "country_code": "DE",
          "slug": "gladenbach",
          "canonical_path": "/cities/de/gladenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2920205",
          "name": "Glandorf",
          "country_code": "DE",
          "slug": "glandorf",
          "canonical_path": "/cities/de/glandorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6696",
          "name": "Glashütte",
          "country_code": "DE",
          "slug": "glashutte",
          "canonical_path": "/cities/de/glashutte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2920085",
          "name": "Glashütten",
          "country_code": "DE",
          "slug": "glashutten",
          "canonical_path": "/cities/de/glashutten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20071",
          "name": "Glauchau",
          "country_code": "DE",
          "slug": "glauchau",
          "canonical_path": "/cities/de/glauchau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919935",
          "name": "Glessen",
          "country_code": "DE",
          "slug": "glessen",
          "canonical_path": "/cities/de/glessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919908",
          "name": "Glienicke",
          "country_code": "DE",
          "slug": "glienicke",
          "canonical_path": "/cities/de/glienicke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569696",
          "name": "Glinde",
          "country_code": "DE",
          "slug": "glinde",
          "canonical_path": "/cities/de/glinde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919765",
          "name": "Glücksburg",
          "country_code": "DE",
          "slug": "glucksburg",
          "canonical_path": "/cities/de/glucksburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494617",
          "name": "Glücksburg (Ostsee)",
          "country_code": "DE",
          "slug": "glucksburg-ostsee",
          "canonical_path": "/cities/de/glucksburg-ostsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q377277",
          "name": "Glückstadt",
          "country_code": "DE",
          "slug": "gluckstadt",
          "canonical_path": "/cities/de/gluckstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919717",
          "name": "Gmund am Tegernsee",
          "country_code": "DE",
          "slug": "gmund-am-tegernsee",
          "canonical_path": "/cities/de/gmund-am-tegernsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919692",
          "name": "Gnarrenburg",
          "country_code": "DE",
          "slug": "gnarrenburg",
          "canonical_path": "/cities/de/gnarrenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536734",
          "name": "Gnoien",
          "country_code": "DE",
          "slug": "gnoien",
          "canonical_path": "/cities/de/gnoien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16006",
          "name": "Goch",
          "country_code": "DE",
          "slug": "goch",
          "canonical_path": "/cities/de/goch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919620",
          "name": "Gochsheim",
          "country_code": "DE",
          "slug": "gochsheim",
          "canonical_path": "/cities/de/gochsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919605",
          "name": "Goddelau",
          "country_code": "DE",
          "slug": "goddelau",
          "canonical_path": "/cities/de/goddelau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4072",
          "name": "Goeppingen",
          "country_code": "DE",
          "slug": "goeppingen",
          "canonical_path": "/cities/de/goeppingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4077",
          "name": "Goerlitz",
          "country_code": "DE",
          "slug": "goerlitz",
          "canonical_path": "/cities/de/goerlitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3033",
          "name": "Goettingen",
          "country_code": "DE",
          "slug": "goettingen",
          "canonical_path": "/cities/de/goettingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919438",
          "name": "Goldbach",
          "country_code": "DE",
          "slug": "goldbach",
          "canonical_path": "/cities/de/goldbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q559014",
          "name": "Goldberg",
          "country_code": "DE",
          "slug": "goldberg",
          "canonical_path": "/cities/de/goldberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919310",
          "name": "Goldenstedt",
          "country_code": "DE",
          "slug": "goldenstedt",
          "canonical_path": "/cities/de/goldenstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503133",
          "name": "Goldkronach",
          "country_code": "DE",
          "slug": "goldkronach",
          "canonical_path": "/cities/de/goldkronach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q544892",
          "name": "Golßen",
          "country_code": "DE",
          "slug": "golssen",
          "canonical_path": "/cities/de/golssen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919146",
          "name": "Gomaringen",
          "country_code": "DE",
          "slug": "gomaringen",
          "canonical_path": "/cities/de/gomaringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50880",
          "name": "Gommern",
          "country_code": "DE",
          "slug": "gommern",
          "canonical_path": "/cities/de/gommern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2919039",
          "name": "Gorbitz",
          "country_code": "DE",
          "slug": "gorbitz",
          "canonical_path": "/cities/de/gorbitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3896",
          "name": "Goslar",
          "country_code": "DE",
          "slug": "goslar",
          "canonical_path": "/cities/de/goslar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572873",
          "name": "Gößnitz",
          "country_code": "DE",
          "slug": "gossnitz",
          "canonical_path": "/cities/de/gossnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6986",
          "name": "Gotha",
          "country_code": "DE",
          "slug": "gotha",
          "canonical_path": "/cities/de/gotha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2918612",
          "name": "Gottmadingen",
          "country_code": "DE",
          "slug": "gottmadingen",
          "canonical_path": "/cities/de/gottmadingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3272459",
          "name": "Graben-Neudorf",
          "country_code": "DE",
          "slug": "graben-neudorf",
          "canonical_path": "/cities/de/graben-neudorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536826",
          "name": "Grabow",
          "country_code": "DE",
          "slug": "grabow",
          "canonical_path": "/cities/de/grabow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2918368",
          "name": "Gräfelfing",
          "country_code": "DE",
          "slug": "grafelfing",
          "canonical_path": "/cities/de/grafelfing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q373077",
          "name": "Gräfenhainichen",
          "country_code": "DE",
          "slug": "grafenhainichen",
          "canonical_path": "/cities/de/grafenhainichen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2918313",
          "name": "Gräfenhausen",
          "country_code": "DE",
          "slug": "grafenhausen",
          "canonical_path": "/cities/de/grafenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529809",
          "name": "Gräfenthal",
          "country_code": "DE",
          "slug": "grafenthal",
          "canonical_path": "/cities/de/grafenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3205858",
          "name": "Grafenwald",
          "country_code": "DE",
          "slug": "grafenwald",
          "canonical_path": "/cities/de/grafenwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q252595",
          "name": "Grafenwöhr",
          "country_code": "DE",
          "slug": "grafenwohr",
          "canonical_path": "/cities/de/grafenwohr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q31606",
          "name": "Grafing b.München",
          "country_code": "DE",
          "slug": "grafing-b-munchen",
          "canonical_path": "/cities/de/grafing-b-munchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q585627",
          "name": "Gransee",
          "country_code": "DE",
          "slug": "gransee",
          "canonical_path": "/cities/de/gransee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2918041",
          "name": "Grasberg",
          "country_code": "DE",
          "slug": "grasberg",
          "canonical_path": "/cities/de/grasberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2918037",
          "name": "Grasbrunn",
          "country_code": "DE",
          "slug": "grasbrunn",
          "canonical_path": "/cities/de/grasbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917978",
          "name": "Grassau",
          "country_code": "DE",
          "slug": "grassau",
          "canonical_path": "/cities/de/grassau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917868",
          "name": "Grävenwiesbach",
          "country_code": "DE",
          "slug": "gravenwiesbach",
          "canonical_path": "/cities/de/gravenwiesbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565525",
          "name": "Grebenau",
          "country_code": "DE",
          "slug": "grebenau",
          "canonical_path": "/cities/de/grebenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917850",
          "name": "Grebenhain",
          "country_code": "DE",
          "slug": "grebenhain",
          "canonical_path": "/cities/de/grebenhain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q260708",
          "name": "Grebenstein",
          "country_code": "DE",
          "slug": "grebenstein",
          "canonical_path": "/cities/de/grebenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q534651",
          "name": "Greding",
          "country_code": "DE",
          "slug": "greding",
          "canonical_path": "/cities/de/greding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917816",
          "name": "Grefrath",
          "country_code": "DE",
          "slug": "grefrath",
          "canonical_path": "/cities/de/grefrath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917793",
          "name": "Greifenstein",
          "country_code": "DE",
          "slug": "greifenstein",
          "canonical_path": "/cities/de/greifenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4098",
          "name": "Greifswald",
          "country_code": "DE",
          "slug": "greifswald",
          "canonical_path": "/cities/de/greifswald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502710",
          "name": "Greiz",
          "country_code": "DE",
          "slug": "greiz",
          "canonical_path": "/cities/de/greiz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917698",
          "name": "Grenzach-Wyhlen",
          "country_code": "DE",
          "slug": "grenzach-wyhlen",
          "canonical_path": "/cities/de/grenzach-wyhlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552683",
          "name": "Greußen",
          "country_code": "DE",
          "slug": "greussen",
          "canonical_path": "/cities/de/greussen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3973",
          "name": "Grevenbroich",
          "country_code": "DE",
          "slug": "grevenbroich",
          "canonical_path": "/cities/de/grevenbroich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q517353",
          "name": "Grevesmühlen",
          "country_code": "DE",
          "slug": "grevesmuhlen",
          "canonical_path": "/cities/de/grevesmuhlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569685",
          "name": "Griesheim",
          "country_code": "DE",
          "slug": "griesheim",
          "canonical_path": "/cities/de/griesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10780",
          "name": "Grimma",
          "country_code": "DE",
          "slug": "grimma",
          "canonical_path": "/cities/de/grimma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571992",
          "name": "Grimmen",
          "country_code": "DE",
          "slug": "grimmen",
          "canonical_path": "/cities/de/grimmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917221",
          "name": "Gröbenzell",
          "country_code": "DE",
          "slug": "grobenzell",
          "canonical_path": "/cities/de/grobenzell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8710",
          "name": "Gröditz",
          "country_code": "DE",
          "slug": "groditz",
          "canonical_path": "/cities/de/groditz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10766",
          "name": "Groitzsch",
          "country_code": "DE",
          "slug": "groitzsch",
          "canonical_path": "/cities/de/groitzsch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917150",
          "name": "Grömitz",
          "country_code": "DE",
          "slug": "gromitz",
          "canonical_path": "/cities/de/gromitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917139",
          "name": "Gronau",
          "country_code": "DE",
          "slug": "gronau-06-00",
          "canonical_path": "/cities/de/gronau-06-00/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q514509",
          "name": "Gronau (Leine)",
          "country_code": "DE",
          "slug": "gronau-leine",
          "canonical_path": "/cities/de/gronau-leine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6924",
          "name": "Gronau Westf",
          "country_code": "DE",
          "slug": "gronau-westf",
          "canonical_path": "/cities/de/gronau-westf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571925",
          "name": "Gröningen",
          "country_code": "DE",
          "slug": "groningen",
          "canonical_path": "/cities/de/groningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915375",
          "name": "Groß Kreutz",
          "country_code": "DE",
          "slug": "gross-kreutz",
          "canonical_path": "/cities/de/gross-kreutz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539579",
          "name": "Groß-Bieberau",
          "country_code": "DE",
          "slug": "gross-bieberau",
          "canonical_path": "/cities/de/gross-bieberau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q251689",
          "name": "Groß-Gerau",
          "country_code": "DE",
          "slug": "gross-gerau",
          "canonical_path": "/cities/de/gross-gerau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516474",
          "name": "Groß-Umstadt",
          "country_code": "DE",
          "slug": "gross-umstadt",
          "canonical_path": "/cities/de/gross-umstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2914801",
          "name": "Groß-Zimmern",
          "country_code": "DE",
          "slug": "gross-zimmern",
          "canonical_path": "/cities/de/gross-zimmern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q538635",
          "name": "Großalmerode",
          "country_code": "DE",
          "slug": "grossalmerode",
          "canonical_path": "/cities/de/grossalmerode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2916996",
          "name": "Großbeeren",
          "country_code": "DE",
          "slug": "grossbeeren",
          "canonical_path": "/cities/de/grossbeeren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61830",
          "name": "Großbottwar",
          "country_code": "DE",
          "slug": "grossbottwar",
          "canonical_path": "/cities/de/grossbottwar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q32510020",
          "name": "Großbreitenbach",
          "country_code": "DE",
          "slug": "grossbreitenbach",
          "canonical_path": "/cities/de/grossbreitenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8714",
          "name": "Großenhain",
          "country_code": "DE",
          "slug": "grossenhain",
          "canonical_path": "/cities/de/grossenhain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2916611",
          "name": "Großenkneten",
          "country_code": "DE",
          "slug": "grossenkneten",
          "canonical_path": "/cities/de/grossenkneten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2916606",
          "name": "Großenlüder",
          "country_code": "DE",
          "slug": "grossenluder",
          "canonical_path": "/cities/de/grossenluder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915556",
          "name": "Großhansdorf",
          "country_code": "DE",
          "slug": "grosshansdorf",
          "canonical_path": "/cities/de/grosshansdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915511",
          "name": "Großheubach",
          "country_code": "DE",
          "slug": "grossheubach",
          "canonical_path": "/cities/de/grossheubach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915438",
          "name": "Großkarolinenfeld",
          "country_code": "DE",
          "slug": "grosskarolinenfeld",
          "canonical_path": "/cities/de/grosskarolinenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915372",
          "name": "Großkrotzenburg",
          "country_code": "DE",
          "slug": "grosskrotzenburg",
          "canonical_path": "/cities/de/grosskrotzenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915196",
          "name": "Großostheim",
          "country_code": "DE",
          "slug": "grossostheim",
          "canonical_path": "/cities/de/grossostheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915173",
          "name": "Großpösna",
          "country_code": "DE",
          "slug": "grossposna",
          "canonical_path": "/cities/de/grossposna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q588844",
          "name": "Großräschen/Rań",
          "country_code": "DE",
          "slug": "grossraschen-ran",
          "canonical_path": "/cities/de/grossraschen-ran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81736",
          "name": "Großröhrsdorf",
          "country_code": "DE",
          "slug": "grossrohrsdorf",
          "canonical_path": "/cities/de/grossrohrsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915116",
          "name": "Großrosseln",
          "country_code": "DE",
          "slug": "grossrosseln",
          "canonical_path": "/cities/de/grossrosseln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71117",
          "name": "Großschirma",
          "country_code": "DE",
          "slug": "grossschirma",
          "canonical_path": "/cities/de/grossschirma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915067",
          "name": "Großschönau",
          "country_code": "DE",
          "slug": "grossschonau",
          "canonical_path": "/cities/de/grossschonau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11611297",
          "name": "Gruiten",
          "country_code": "DE",
          "slug": "gruiten",
          "canonical_path": "/cities/de/gruiten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522469",
          "name": "Grünberg",
          "country_code": "DE",
          "slug": "grunberg",
          "canonical_path": "/cities/de/grunberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57897",
          "name": "Grünhain-Beierfeld",
          "country_code": "DE",
          "slug": "grunhain-beierfeld",
          "canonical_path": "/cities/de/grunhain-beierfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2914177",
          "name": "Grünheide",
          "country_code": "DE",
          "slug": "grunheide",
          "canonical_path": "/cities/de/grunheide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61845",
          "name": "Grünsfeld",
          "country_code": "DE",
          "slug": "grunsfeld",
          "canonical_path": "/cities/de/grunsfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22956",
          "name": "Grünstadt",
          "country_code": "DE",
          "slug": "grunstadt",
          "canonical_path": "/cities/de/grunstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2914064",
          "name": "Grünwald",
          "country_code": "DE",
          "slug": "grunwald",
          "canonical_path": "/cities/de/grunwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2913972",
          "name": "Gschwend",
          "country_code": "DE",
          "slug": "gschwend",
          "canonical_path": "/cities/de/gschwend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494747",
          "name": "Guben",
          "country_code": "DE",
          "slug": "guben",
          "canonical_path": "/cities/de/guben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558498",
          "name": "Gudensberg",
          "country_code": "DE",
          "slug": "gudensberg",
          "canonical_path": "/cities/de/gudensberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3771",
          "name": "Guetersloh",
          "country_code": "DE",
          "slug": "guetersloh",
          "canonical_path": "/cities/de/guetersloh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q53803",
          "name": "Güglingen",
          "country_code": "DE",
          "slug": "guglingen",
          "canonical_path": "/cities/de/guglingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4181",
          "name": "Gummersbach",
          "country_code": "DE",
          "slug": "gummersbach",
          "canonical_path": "/cities/de/gummersbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2913713",
          "name": "Gundelfingen",
          "country_code": "DE",
          "slug": "gundelfingen-01-083",
          "canonical_path": "/cities/de/gundelfingen-01-083/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509648",
          "name": "Gundelfingen a.d.Donau",
          "country_code": "DE",
          "slug": "gundelfingen-a-d-donau",
          "canonical_path": "/cities/de/gundelfingen-a-d-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q489685",
          "name": "Günzburg",
          "country_code": "DE",
          "slug": "gunzburg",
          "canonical_path": "/cities/de/gunzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503640",
          "name": "Gunzenhausen",
          "country_code": "DE",
          "slug": "gunzenhausen",
          "canonical_path": "/cities/de/gunzenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q246502",
          "name": "Güsten",
          "country_code": "DE",
          "slug": "gusten",
          "canonical_path": "/cities/de/gusten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16147",
          "name": "Güstrow",
          "country_code": "DE",
          "slug": "gustrow",
          "canonical_path": "/cities/de/gustrow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498582",
          "name": "Gützkow",
          "country_code": "DE",
          "slug": "gutzkow",
          "canonical_path": "/cities/de/gutzkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2913286",
          "name": "Guxhagen",
          "country_code": "DE",
          "slug": "guxhagen",
          "canonical_path": "/cities/de/guxhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2974",
          "name": "Haan",
          "country_code": "DE",
          "slug": "haan",
          "canonical_path": "/cities/de/haan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2913192",
          "name": "Haar",
          "country_code": "DE",
          "slug": "haar",
          "canonical_path": "/cities/de/haar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q534476",
          "name": "Hachenburg",
          "country_code": "DE",
          "slug": "hachenburg",
          "canonical_path": "/cities/de/hachenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565530",
          "name": "Hadamar",
          "country_code": "DE",
          "slug": "hadamar",
          "canonical_path": "/cities/de/hadamar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2912681",
          "name": "Hage",
          "country_code": "DE",
          "slug": "hage",
          "canonical_path": "/cities/de/hage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05914000",
          "name": "Hagen",
          "country_code": "DE",
          "slug": "hagen",
          "canonical_path": "/cities/de/hagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541669",
          "name": "Hagenbach",
          "country_code": "DE",
          "slug": "hagenbach",
          "canonical_path": "/cities/de/hagenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565611",
          "name": "Hagenow",
          "country_code": "DE",
          "slug": "hagenow",
          "canonical_path": "/cities/de/hagenow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2912351",
          "name": "Hahnbach",
          "country_code": "DE",
          "slug": "hahnbach",
          "canonical_path": "/cities/de/hahnbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2912159",
          "name": "Haibach",
          "country_code": "DE",
          "slug": "haibach",
          "canonical_path": "/cities/de/haibach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516448",
          "name": "Haiger",
          "country_code": "DE",
          "slug": "haiger",
          "canonical_path": "/cities/de/haiger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505856",
          "name": "Haigerloch",
          "country_code": "DE",
          "slug": "haigerloch",
          "canonical_path": "/cities/de/haigerloch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q239370",
          "name": "Haiterbach",
          "country_code": "DE",
          "slug": "haiterbach",
          "canonical_path": "/cities/de/haiterbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7072",
          "name": "Halberstadt",
          "country_code": "DE",
          "slug": "halberstadt",
          "canonical_path": "/cities/de/halberstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q186557",
          "name": "Haldensleben",
          "country_code": "DE",
          "slug": "haldensleben",
          "canonical_path": "/cities/de/haldensleben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2911584",
          "name": "Haldensleben I",
          "country_code": "DE",
          "slug": "haldensleben-i",
          "canonical_path": "/cities/de/haldensleben-i/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2911530",
          "name": "Hallbergmoos",
          "country_code": "DE",
          "slug": "hallbergmoos",
          "canonical_path": "/cities/de/hallbergmoos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2911520",
          "name": "Halle",
          "country_code": "DE",
          "slug": "halle",
          "canonical_path": "/cities/de/halle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:15002000",
          "name": "Halle (Saale)",
          "country_code": "DE",
          "slug": "halle-saale",
          "canonical_path": "/cities/de/halle-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q225774",
          "name": "Halle (Westf.)",
          "country_code": "DE",
          "slug": "halle-westf",
          "canonical_path": "/cities/de/halle-westf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5644",
          "name": "Hallenberg",
          "country_code": "DE",
          "slug": "hallenberg",
          "canonical_path": "/cities/de/hallenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q302632",
          "name": "Hallstadt",
          "country_code": "DE",
          "slug": "hallstadt",
          "canonical_path": "/cities/de/hallstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2911408",
          "name": "Halstenbek",
          "country_code": "DE",
          "slug": "halstenbek",
          "canonical_path": "/cities/de/halstenbek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14900",
          "name": "Haltern am See",
          "country_code": "DE",
          "slug": "haltern-am-see",
          "canonical_path": "/cities/de/haltern-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5567",
          "name": "Halver",
          "country_code": "DE",
          "slug": "halver",
          "canonical_path": "/cities/de/halver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2911322",
          "name": "Hambergen",
          "country_code": "DE",
          "slug": "hambergen",
          "canonical_path": "/cities/de/hambergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2911308",
          "name": "Hambrücken",
          "country_code": "DE",
          "slug": "hambrucken",
          "canonical_path": "/cities/de/hambrucken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2911300",
          "name": "Hambühren",
          "country_code": "DE",
          "slug": "hambuhren",
          "canonical_path": "/cities/de/hambuhren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:02000000",
          "name": "Hamburg",
          "country_code": "DE",
          "slug": "hamburg",
          "canonical_path": "/cities/de/hamburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4062",
          "name": "Hameln",
          "country_code": "DE",
          "slug": "hameln",
          "canonical_path": "/cities/de/hameln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05915000",
          "name": "Hamm",
          "country_code": "DE",
          "slug": "hamm",
          "canonical_path": "/cities/de/hamm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q302785",
          "name": "Hammelburg",
          "country_code": "DE",
          "slug": "hammelburg",
          "canonical_path": "/cities/de/hammelburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q162717",
          "name": "Hamminkeln",
          "country_code": "DE",
          "slug": "hamminkeln",
          "canonical_path": "/cities/de/hamminkeln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3802",
          "name": "Hanau",
          "country_code": "DE",
          "slug": "hanau",
          "canonical_path": "/cities/de/hanau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2911007",
          "name": "Hanau am Main",
          "country_code": "DE",
          "slug": "hanau-am-main",
          "canonical_path": "/cities/de/hanau-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2910986",
          "name": "Handewitt",
          "country_code": "DE",
          "slug": "handewitt",
          "canonical_path": "/cities/de/handewitt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2910875",
          "name": "Hänigsen",
          "country_code": "DE",
          "slug": "hanigsen",
          "canonical_path": "/cities/de/hanigsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q165380",
          "name": "Hann. Münden",
          "country_code": "DE",
          "slug": "hann-munden",
          "canonical_path": "/cities/de/hann-munden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:03241001",
          "name": "Hanover",
          "country_code": "DE",
          "slug": "hanover",
          "canonical_path": "/cities/de/hanover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842112",
          "name": "Hansestadt Salzwedel",
          "country_code": "DE",
          "slug": "hansestadt-salzwedel",
          "canonical_path": "/cities/de/hansestadt-salzwedel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2829901",
          "name": "Hansestadt Stade",
          "country_code": "DE",
          "slug": "hansestadt-stade",
          "canonical_path": "/cities/de/hansestadt-stade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2910686",
          "name": "Harburg",
          "country_code": "DE",
          "slug": "harburg",
          "canonical_path": "/cities/de/harburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503226",
          "name": "Harburg (Schwaben)",
          "country_code": "DE",
          "slug": "harburg-schwaben",
          "canonical_path": "/cities/de/harburg-schwaben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q425877",
          "name": "Hardegsen",
          "country_code": "DE",
          "slug": "hardegsen",
          "canonical_path": "/cities/de/hardegsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2910633",
          "name": "Hardheim",
          "country_code": "DE",
          "slug": "hardheim",
          "canonical_path": "/cities/de/hardheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529185",
          "name": "Haren (Ems)",
          "country_code": "DE",
          "slug": "haren-ems",
          "canonical_path": "/cities/de/haren-ems/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2910302",
          "name": "Harrislee",
          "country_code": "DE",
          "slug": "harrislee",
          "canonical_path": "/cities/de/harrislee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2910280",
          "name": "Harsefeld",
          "country_code": "DE",
          "slug": "harsefeld",
          "canonical_path": "/cities/de/harsefeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q225729",
          "name": "Harsewinkel",
          "country_code": "DE",
          "slug": "harsewinkel",
          "canonical_path": "/cities/de/harsewinkel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2910269",
          "name": "Harsum",
          "country_code": "DE",
          "slug": "harsum",
          "canonical_path": "/cities/de/harsum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71129",
          "name": "Hartha",
          "country_code": "DE",
          "slug": "hartha",
          "canonical_path": "/cities/de/hartha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q526353",
          "name": "Harzgerode",
          "country_code": "DE",
          "slug": "harzgerode",
          "canonical_path": "/cities/de/harzgerode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2909915",
          "name": "Hasbergen",
          "country_code": "DE",
          "slug": "hasbergen",
          "canonical_path": "/cities/de/hasbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498521",
          "name": "Haselünne",
          "country_code": "DE",
          "slug": "haselunne",
          "canonical_path": "/cities/de/haselunne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2909544",
          "name": "Haslach",
          "country_code": "DE",
          "slug": "haslach",
          "canonical_path": "/cities/de/haslach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q519729",
          "name": "Haslach im Kinzigtal",
          "country_code": "DE",
          "slug": "haslach-im-kinzigtal",
          "canonical_path": "/cities/de/haslach-im-kinzigtal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492659",
          "name": "Haßfurt",
          "country_code": "DE",
          "slug": "hassfurt",
          "canonical_path": "/cities/de/hassfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2909313",
          "name": "Haßloch",
          "country_code": "DE",
          "slug": "hassloch",
          "canonical_path": "/cities/de/hassloch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2909268",
          "name": "Hatten",
          "country_code": "DE",
          "slug": "hatten",
          "canonical_path": "/cities/de/hatten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2909240",
          "name": "Hattersheim",
          "country_code": "DE",
          "slug": "hattersheim",
          "canonical_path": "/cities/de/hattersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569626",
          "name": "Hattersheim am Main",
          "country_code": "DE",
          "slug": "hattersheim-am-main",
          "canonical_path": "/cities/de/hattersheim-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4082",
          "name": "Hattingen",
          "country_code": "DE",
          "slug": "hattingen",
          "canonical_path": "/cities/de/hattingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565504",
          "name": "Hatzfeld (Eder)",
          "country_code": "DE",
          "slug": "hatzfeld-eder",
          "canonical_path": "/cities/de/hatzfeld-eder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506856",
          "name": "Hausach",
          "country_code": "DE",
          "slug": "hausach",
          "canonical_path": "/cities/de/hausach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2908783",
          "name": "Hausham",
          "country_code": "DE",
          "slug": "hausham",
          "canonical_path": "/cities/de/hausham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q255888",
          "name": "Hauzenberg",
          "country_code": "DE",
          "slug": "hauzenberg",
          "canonical_path": "/cities/de/hauzenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504040",
          "name": "Havelberg",
          "country_code": "DE",
          "slug": "havelberg",
          "canonical_path": "/cities/de/havelberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q629403",
          "name": "Havelsee",
          "country_code": "DE",
          "slug": "havelsee",
          "canonical_path": "/cities/de/havelsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2908597",
          "name": "Havixbeck",
          "country_code": "DE",
          "slug": "havixbeck",
          "canonical_path": "/cities/de/havixbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82453",
          "name": "Hayingen",
          "country_code": "DE",
          "slug": "hayingen",
          "canonical_path": "/cities/de/hayingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2908529",
          "name": "Hebertshausen",
          "country_code": "DE",
          "slug": "hebertshausen",
          "canonical_path": "/cities/de/hebertshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494529",
          "name": "Hechingen",
          "country_code": "DE",
          "slug": "hechingen",
          "canonical_path": "/cities/de/hechingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q374159",
          "name": "Hecklingen",
          "country_code": "DE",
          "slug": "hecklingen",
          "canonical_path": "/cities/de/hecklingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2908398",
          "name": "Heddesheim",
          "country_code": "DE",
          "slug": "heddesheim",
          "canonical_path": "/cities/de/heddesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2908330",
          "name": "Heek",
          "country_code": "DE",
          "slug": "heek",
          "canonical_path": "/cities/de/heek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11611204",
          "name": "Heidberg",
          "country_code": "DE",
          "slug": "heidberg",
          "canonical_path": "/cities/de/heidberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492322",
          "name": "Heide",
          "country_code": "DE",
          "slug": "heide",
          "canonical_path": "/cities/de/heide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502445",
          "name": "Heideck",
          "country_code": "DE",
          "slug": "heideck",
          "canonical_path": "/cities/de/heideck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2966",
          "name": "Heidelberg",
          "country_code": "DE",
          "slug": "heidelberg",
          "canonical_path": "/cities/de/heidelberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2907889",
          "name": "Heiden",
          "country_code": "DE",
          "slug": "heiden",
          "canonical_path": "/cities/de/heiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6869",
          "name": "Heidenheim an der Brenz",
          "country_code": "DE",
          "slug": "heidenheim-an-der-brenz",
          "canonical_path": "/cities/de/heidenheim-an-der-brenz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2907790",
          "name": "Heidesheim",
          "country_code": "DE",
          "slug": "heidesheim",
          "canonical_path": "/cities/de/heidesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2907685",
          "name": "Heikendorf",
          "country_code": "DE",
          "slug": "heikendorf",
          "canonical_path": "/cities/de/heikendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q564765",
          "name": "Heilbad Heiligenstadt",
          "country_code": "DE",
          "slug": "heilbad-heiligenstadt",
          "canonical_path": "/cities/de/heilbad-heiligenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q715",
          "name": "Heilbronn",
          "country_code": "DE",
          "slug": "heilbronn",
          "canonical_path": "/cities/de/heilbronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516540",
          "name": "Heiligenhafen",
          "country_code": "DE",
          "slug": "heiligenhafen",
          "canonical_path": "/cities/de/heiligenhafen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q161673",
          "name": "Heiligenhaus",
          "country_code": "DE",
          "slug": "heiligenhaus",
          "canonical_path": "/cities/de/heiligenhaus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q427153",
          "name": "Heilsbronn",
          "country_code": "DE",
          "slug": "heilsbronn",
          "canonical_path": "/cities/de/heilsbronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80675",
          "name": "Heimsheim",
          "country_code": "DE",
          "slug": "heimsheim",
          "canonical_path": "/cities/de/heimsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2907280",
          "name": "Heiningen",
          "country_code": "DE",
          "slug": "heiningen",
          "canonical_path": "/cities/de/heiningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14833",
          "name": "Heinsberg",
          "country_code": "DE",
          "slug": "heinsberg",
          "canonical_path": "/cities/de/heinsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505862",
          "name": "Heitersheim",
          "country_code": "DE",
          "slug": "heitersheim",
          "canonical_path": "/cities/de/heitersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1601702",
          "name": "Heldburg",
          "country_code": "DE",
          "slug": "heldburg",
          "canonical_path": "/cities/de/heldburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2906843",
          "name": "Hellenthal",
          "country_code": "DE",
          "slug": "hellenthal",
          "canonical_path": "/cities/de/hellenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494110",
          "name": "Helmbrechts",
          "country_code": "DE",
          "slug": "helmbrechts",
          "canonical_path": "/cities/de/helmbrechts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2906654",
          "name": "Helsa",
          "country_code": "DE",
          "slug": "helsa",
          "canonical_path": "/cities/de/helsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q491402",
          "name": "Hemau",
          "country_code": "DE",
          "slug": "hemau",
          "canonical_path": "/cities/de/hemau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1104",
          "name": "Hemer",
          "country_code": "DE",
          "slug": "hemer",
          "canonical_path": "/cities/de/hemer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2906583",
          "name": "Hemhofen",
          "country_code": "DE",
          "slug": "hemhofen",
          "canonical_path": "/cities/de/hemhofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505729",
          "name": "Hemmoor",
          "country_code": "DE",
          "slug": "hemmoor",
          "canonical_path": "/cities/de/hemmoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81012",
          "name": "Hemsbach",
          "country_code": "DE",
          "slug": "hemsbach",
          "canonical_path": "/cities/de/hemsbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2906464",
          "name": "Hengersberg",
          "country_code": "DE",
          "slug": "hengersberg",
          "canonical_path": "/cities/de/hengersberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q583462",
          "name": "Hennigsdorf",
          "country_code": "DE",
          "slug": "hennigsdorf",
          "canonical_path": "/cities/de/hennigsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q524407",
          "name": "Heppenheim (Bergstraße)",
          "country_code": "DE",
          "slug": "heppenheim-bergstrasse",
          "canonical_path": "/cities/de/heppenheim-bergstrasse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2906268",
          "name": "Heppenheim an der Bergstrasse",
          "country_code": "DE",
          "slug": "heppenheim-an-der-bergstrasse",
          "canonical_path": "/cities/de/heppenheim-an-der-bergstrasse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506864",
          "name": "Herbolzheim",
          "country_code": "DE",
          "slug": "herbolzheim",
          "canonical_path": "/cities/de/herbolzheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1609522",
          "name": "Herbrechtingen",
          "country_code": "DE",
          "slug": "herbrechtingen",
          "canonical_path": "/cities/de/herbrechtingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565528",
          "name": "Herbstein",
          "country_code": "DE",
          "slug": "herbstein",
          "canonical_path": "/cities/de/herbstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11337",
          "name": "Herdecke",
          "country_code": "DE",
          "slug": "herdecke",
          "canonical_path": "/cities/de/herdecke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520240",
          "name": "Herdorf",
          "country_code": "DE",
          "slug": "herdorf",
          "canonical_path": "/cities/de/herdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3971",
          "name": "Herford",
          "country_code": "DE",
          "slug": "herford",
          "canonical_path": "/cities/de/herford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2906088",
          "name": "Heringen",
          "country_code": "DE",
          "slug": "heringen",
          "canonical_path": "/cities/de/heringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570334",
          "name": "Heringen (Werra)",
          "country_code": "DE",
          "slug": "heringen-werra",
          "canonical_path": "/cities/de/heringen-werra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q167528",
          "name": "Heringen/Helme",
          "country_code": "DE",
          "slug": "heringen-helme",
          "canonical_path": "/cities/de/heringen-helme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2906015",
          "name": "Hermannsburg",
          "country_code": "DE",
          "slug": "hermannsburg",
          "canonical_path": "/cities/de/hermannsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q519344",
          "name": "Hermeskeil",
          "country_code": "DE",
          "slug": "hermeskeil",
          "canonical_path": "/cities/de/hermeskeil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2904",
          "name": "Herne",
          "country_code": "DE",
          "slug": "herne",
          "canonical_path": "/cities/de/herne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2905881",
          "name": "Heroldsbach",
          "country_code": "DE",
          "slug": "heroldsbach",
          "canonical_path": "/cities/de/heroldsbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2905878",
          "name": "Heroldsberg",
          "country_code": "DE",
          "slug": "heroldsberg",
          "canonical_path": "/cities/de/heroldsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16100",
          "name": "Herrenberg",
          "country_code": "DE",
          "slug": "herrenberg",
          "canonical_path": "/cities/de/herrenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628190",
          "name": "Herrieden",
          "country_code": "DE",
          "slug": "herrieden",
          "canonical_path": "/cities/de/herrieden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q165140",
          "name": "Herrnhut",
          "country_code": "DE",
          "slug": "herrnhut",
          "canonical_path": "/cities/de/herrnhut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2905604",
          "name": "Herrsching am Ammersee",
          "country_code": "DE",
          "slug": "herrsching-am-ammersee",
          "canonical_path": "/cities/de/herrsching-am-ammersee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502865",
          "name": "Hersbruck",
          "country_code": "DE",
          "slug": "hersbruck",
          "canonical_path": "/cities/de/hersbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2905587",
          "name": "Herscheid",
          "country_code": "DE",
          "slug": "herscheid",
          "canonical_path": "/cities/de/herscheid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3985",
          "name": "Herten",
          "country_code": "DE",
          "slug": "herten",
          "canonical_path": "/cities/de/herten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2905527",
          "name": "Herxheim am Berg",
          "country_code": "DE",
          "slug": "herxheim-am-berg",
          "canonical_path": "/cities/de/herxheim-am-berg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2905504",
          "name": "Herzberg",
          "country_code": "DE",
          "slug": "herzberg",
          "canonical_path": "/cities/de/herzberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q544699",
          "name": "Herzberg (Elster)",
          "country_code": "DE",
          "slug": "herzberg-elster",
          "canonical_path": "/cities/de/herzberg-elster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503181",
          "name": "Herzberg am Harz",
          "country_code": "DE",
          "slug": "herzberg-am-harz",
          "canonical_path": "/cities/de/herzberg-am-harz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1615401",
          "name": "Herzogenaurach",
          "country_code": "DE",
          "slug": "herzogenaurach",
          "canonical_path": "/cities/de/herzogenaurach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6916",
          "name": "Herzogenrath",
          "country_code": "DE",
          "slug": "herzogenrath",
          "canonical_path": "/cities/de/herzogenrath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558563",
          "name": "Hessisch Lichtenau",
          "country_code": "DE",
          "slug": "hessisch-lichtenau",
          "canonical_path": "/cities/de/hessisch-lichtenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q533826",
          "name": "Hessisch Oldendorf",
          "country_code": "DE",
          "slug": "hessisch-oldendorf",
          "canonical_path": "/cities/de/hessisch-oldendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82292",
          "name": "Hettingen",
          "country_code": "DE",
          "slug": "hettingen",
          "canonical_path": "/cities/de/hettingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50883",
          "name": "Hettstedt",
          "country_code": "DE",
          "slug": "hettstedt",
          "canonical_path": "/cities/de/hettstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q326437",
          "name": "Heubach",
          "country_code": "DE",
          "slug": "heubach",
          "canonical_path": "/cities/de/heubach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2905070",
          "name": "Heuchelheim",
          "country_code": "DE",
          "slug": "heuchelheim",
          "canonical_path": "/cities/de/heuchelheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569659",
          "name": "Heusenstamm",
          "country_code": "DE",
          "slug": "heusenstamm",
          "canonical_path": "/cities/de/heusenstamm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2904985",
          "name": "Heusweiler",
          "country_code": "DE",
          "slug": "heusweiler",
          "canonical_path": "/cities/de/heusweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2904886",
          "name": "Hiddenhausen",
          "country_code": "DE",
          "slug": "hiddenhausen",
          "canonical_path": "/cities/de/hiddenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10949",
          "name": "Hilchenbach",
          "country_code": "DE",
          "slug": "hilchenbach",
          "canonical_path": "/cities/de/hilchenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504348",
          "name": "Hildburghausen",
          "country_code": "DE",
          "slug": "hildburghausen",
          "canonical_path": "/cities/de/hildburghausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4094",
          "name": "Hilden",
          "country_code": "DE",
          "slug": "hilden",
          "canonical_path": "/cities/de/hilden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3185",
          "name": "Hildesheim",
          "country_code": "DE",
          "slug": "hildesheim",
          "canonical_path": "/cities/de/hildesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2904771",
          "name": "Hilgen - Dünweg",
          "country_code": "DE",
          "slug": "hilgen-dunweg",
          "canonical_path": "/cities/de/hilgen-dunweg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2904725",
          "name": "Hille",
          "country_code": "DE",
          "slug": "hille",
          "canonical_path": "/cities/de/hille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q521132",
          "name": "Hilpoltstein",
          "country_code": "DE",
          "slug": "hilpoltstein",
          "canonical_path": "/cities/de/hilpoltstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2904607",
          "name": "Hilter",
          "country_code": "DE",
          "slug": "hilter",
          "canonical_path": "/cities/de/hilter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2904591",
          "name": "Hilzingen",
          "country_code": "DE",
          "slug": "hilzingen",
          "canonical_path": "/cities/de/hilzingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2904397",
          "name": "Hinte",
          "country_code": "DE",
          "slug": "hinte",
          "canonical_path": "/cities/de/hinte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2903810",
          "name": "Hirschaid",
          "country_code": "DE",
          "slug": "hirschaid",
          "canonical_path": "/cities/de/hirschaid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502960",
          "name": "Hirschau",
          "country_code": "DE",
          "slug": "hirschau",
          "canonical_path": "/cities/de/hirschau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11670104",
          "name": "Hirschberg an der Bergstraße",
          "country_code": "DE",
          "slug": "hirschberg-an-der-bergstrasse",
          "canonical_path": "/cities/de/hirschberg-an-der-bergstrasse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q643634",
          "name": "Hirschhorn (Neckar)",
          "country_code": "DE",
          "slug": "hirschhorn-neckar",
          "canonical_path": "/cities/de/hirschhorn-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2903470",
          "name": "Hitzacker",
          "country_code": "DE",
          "slug": "hitzacker",
          "canonical_path": "/cities/de/hitzacker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572535",
          "name": "Hitzacker (Elbe)",
          "country_code": "DE",
          "slug": "hitzacker-elbe",
          "canonical_path": "/cities/de/hitzacker-elbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2903327",
          "name": "Höchberg",
          "country_code": "DE",
          "slug": "hochberg",
          "canonical_path": "/cities/de/hochberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q632750",
          "name": "Hochheim am Main",
          "country_code": "DE",
          "slug": "hochheim-am-main",
          "canonical_path": "/cities/de/hochheim-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2902951",
          "name": "Höchst im Odenwald",
          "country_code": "DE",
          "slug": "hochst-im-odenwald",
          "canonical_path": "/cities/de/hochst-im-odenwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q510543",
          "name": "Höchstadt a.d.Aisch",
          "country_code": "DE",
          "slug": "hochstadt-a-d-aisch",
          "canonical_path": "/cities/de/hochstadt-a-d-aisch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505909",
          "name": "Höchstädt a.d.Donau",
          "country_code": "DE",
          "slug": "hochstadt-a-d-donau",
          "canonical_path": "/cities/de/hochstadt-a-d-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2903016",
          "name": "Höchstadt an der Aisch",
          "country_code": "DE",
          "slug": "hochstadt-an-der-aisch",
          "canonical_path": "/cities/de/hochstadt-an-der-aisch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2903012",
          "name": "Höchstädt an der Donau",
          "country_code": "DE",
          "slug": "hochstadt-an-der-donau",
          "canonical_path": "/cities/de/hochstadt-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8336",
          "name": "Hockenheim",
          "country_code": "DE",
          "slug": "hockenheim",
          "canonical_path": "/cities/de/hockenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2902731",
          "name": "Hofbieber",
          "country_code": "DE",
          "slug": "hofbieber",
          "canonical_path": "/cities/de/hofbieber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490449",
          "name": "Hofgeismar",
          "country_code": "DE",
          "slug": "hofgeismar",
          "canonical_path": "/cities/de/hofgeismar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14896",
          "name": "Hofheim am Taunus",
          "country_code": "DE",
          "slug": "hofheim-am-taunus",
          "canonical_path": "/cities/de/hofheim-am-taunus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q164009",
          "name": "Hofheim i.UFr.",
          "country_code": "DE",
          "slug": "hofheim-i-ufr",
          "canonical_path": "/cities/de/hofheim-i-ufr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q545340",
          "name": "Hohen Neuendorf",
          "country_code": "DE",
          "slug": "hohen-neuendorf",
          "canonical_path": "/cities/de/hohen-neuendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q170405",
          "name": "Hohenberg a.d.Eger",
          "country_code": "DE",
          "slug": "hohenberg-a-d-eger",
          "canonical_path": "/cities/de/hohenberg-a-d-eger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2901872",
          "name": "Hohenbrunn",
          "country_code": "DE",
          "slug": "hohenbrunn",
          "canonical_path": "/cities/de/hohenbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2901731",
          "name": "Hohenhameln",
          "country_code": "DE",
          "slug": "hohenhameln",
          "canonical_path": "/cities/de/hohenhameln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3205535",
          "name": "Höhenkirchen-Siegertsbrunn",
          "country_code": "DE",
          "slug": "hohenkirchen-siegertsbrunn",
          "canonical_path": "/cities/de/hohenkirchen-siegertsbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q526430",
          "name": "Hohenleuben",
          "country_code": "DE",
          "slug": "hohenleuben",
          "canonical_path": "/cities/de/hohenleuben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2901621",
          "name": "Hohenlockstedt",
          "country_code": "DE",
          "slug": "hohenlockstedt",
          "canonical_path": "/cities/de/hohenlockstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522390",
          "name": "Hohenmölsen",
          "country_code": "DE",
          "slug": "hohenmolsen",
          "canonical_path": "/cities/de/hohenmolsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20073",
          "name": "Hohenstein-Ernstthal",
          "country_code": "DE",
          "slug": "hohenstein-ernstthal",
          "canonical_path": "/cities/de/hohenstein-ernstthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2901348",
          "name": "Hohenwestedt",
          "country_code": "DE",
          "slug": "hohenwestedt",
          "canonical_path": "/cities/de/hohenwestedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6780",
          "name": "Hohnstein",
          "country_code": "DE",
          "slug": "hohnstein",
          "canonical_path": "/cities/de/hohnstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50899",
          "name": "Höhr-Grenzhausen",
          "country_code": "DE",
          "slug": "hohr-grenzhausen",
          "canonical_path": "/cities/de/hohr-grenzhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2900740",
          "name": "Holdorf",
          "country_code": "DE",
          "slug": "holdorf",
          "canonical_path": "/cities/de/holdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2900623",
          "name": "Holle",
          "country_code": "DE",
          "slug": "holle",
          "canonical_path": "/cities/de/holle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503048",
          "name": "Hollfeld",
          "country_code": "DE",
          "slug": "hollfeld",
          "canonical_path": "/cities/de/hollfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2899915",
          "name": "Holzen",
          "country_code": "DE",
          "slug": "holzen",
          "canonical_path": "/cities/de/holzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q527883",
          "name": "Holzgerlingen",
          "country_code": "DE",
          "slug": "holzgerlingen",
          "canonical_path": "/cities/de/holzgerlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2899676",
          "name": "Holzkirchen",
          "country_code": "DE",
          "slug": "holzkirchen",
          "canonical_path": "/cities/de/holzkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2899538",
          "name": "Holzwickede",
          "country_code": "DE",
          "slug": "holzwickede",
          "canonical_path": "/cities/de/holzwickede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2899478",
          "name": "Homberg",
          "country_code": "DE",
          "slug": "homberg",
          "canonical_path": "/cities/de/homberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2899479",
          "name": "Homberg",
          "country_code": "DE",
          "slug": "homberg-05-065",
          "canonical_path": "/cities/de/homberg-05-065/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558616",
          "name": "Homberg (Efze)",
          "country_code": "DE",
          "slug": "homberg-efze",
          "canonical_path": "/cities/de/homberg-efze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q624176",
          "name": "Homberg (Ohm)",
          "country_code": "DE",
          "slug": "homberg-ohm",
          "canonical_path": "/cities/de/homberg-ohm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7040",
          "name": "Homburg",
          "country_code": "DE",
          "slug": "homburg",
          "canonical_path": "/cities/de/homburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82690",
          "name": "Horb am Neckar",
          "country_code": "DE",
          "slug": "horb-am-neckar",
          "canonical_path": "/cities/de/horb-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q242880",
          "name": "Horn-Bad Meinberg",
          "country_code": "DE",
          "slug": "horn-bad-meinberg",
          "canonical_path": "/cities/de/horn-bad-meinberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628147",
          "name": "Hornbach",
          "country_code": "DE",
          "slug": "hornbach",
          "canonical_path": "/cities/de/hornbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507581",
          "name": "Hornberg",
          "country_code": "DE",
          "slug": "hornberg",
          "canonical_path": "/cities/de/hornberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2898847",
          "name": "Horneburg",
          "country_code": "DE",
          "slug": "horneburg",
          "canonical_path": "/cities/de/horneburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2898640",
          "name": "Horst",
          "country_code": "DE",
          "slug": "horst",
          "canonical_path": "/cities/de/horst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q181504",
          "name": "Hörstel",
          "country_code": "DE",
          "slug": "horstel",
          "canonical_path": "/cities/de/horstel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q181541",
          "name": "Horstmar",
          "country_code": "DE",
          "slug": "horstmar",
          "canonical_path": "/cities/de/horstmar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2898494",
          "name": "Hösbach",
          "country_code": "DE",
          "slug": "hosbach",
          "canonical_path": "/cities/de/hosbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2898364",
          "name": "Hövelhof",
          "country_code": "DE",
          "slug": "hovelhof",
          "canonical_path": "/cities/de/hovelhof/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16107",
          "name": "Höxter",
          "country_code": "DE",
          "slug": "hoxter",
          "canonical_path": "/cities/de/hoxter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q168701",
          "name": "Hoya",
          "country_code": "DE",
          "slug": "hoya",
          "canonical_path": "/cities/de/hoya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14904",
          "name": "Hoyerswerda",
          "country_code": "DE",
          "slug": "hoyerswerda",
          "canonical_path": "/cities/de/hoyerswerda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11038",
          "name": "Hückeswagen",
          "country_code": "DE",
          "slug": "huckeswagen",
          "canonical_path": "/cities/de/huckeswagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2898079",
          "name": "Hude",
          "country_code": "DE",
          "slug": "hude",
          "canonical_path": "/cities/de/hude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14884",
          "name": "Hueckelhoven",
          "country_code": "DE",
          "slug": "hueckelhoven",
          "canonical_path": "/cities/de/hueckelhoven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4060",
          "name": "Huerth",
          "country_code": "DE",
          "slug": "huerth",
          "canonical_path": "/cities/de/huerth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83132",
          "name": "Hüfingen",
          "country_code": "DE",
          "slug": "hufingen",
          "canonical_path": "/cities/de/hufingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2897844",
          "name": "Hüllhorst",
          "country_code": "DE",
          "slug": "hullhorst",
          "canonical_path": "/cities/de/hullhorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569692",
          "name": "Hünfeld",
          "country_code": "DE",
          "slug": "hunfeld",
          "canonical_path": "/cities/de/hunfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q602629",
          "name": "Hungen",
          "country_code": "DE",
          "slug": "hungen",
          "canonical_path": "/cities/de/hungen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2897283",
          "name": "Hünxe",
          "country_code": "DE",
          "slug": "hunxe",
          "canonical_path": "/cities/de/hunxe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896898",
          "name": "Hutthurm",
          "country_code": "DE",
          "slug": "hutthurm",
          "canonical_path": "/cities/de/hutthurm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896877",
          "name": "Hüttlingen",
          "country_code": "DE",
          "slug": "huttlingen",
          "canonical_path": "/cities/de/huttlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4175",
          "name": "Ibbenbueren",
          "country_code": "DE",
          "slug": "ibbenbueren",
          "canonical_path": "/cities/de/ibbenbueren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503202",
          "name": "Ichenhausen",
          "country_code": "DE",
          "slug": "ichenhausen",
          "canonical_path": "/cities/de/ichenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16119",
          "name": "Idar-Oberstein",
          "country_code": "DE",
          "slug": "idar-oberstein",
          "canonical_path": "/cities/de/idar-oberstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525659",
          "name": "Idstein",
          "country_code": "DE",
          "slug": "idstein",
          "canonical_path": "/cities/de/idstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896687",
          "name": "Igersheim",
          "country_code": "DE",
          "slug": "igersheim",
          "canonical_path": "/cities/de/igersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896616",
          "name": "Ihringen",
          "country_code": "DE",
          "slug": "ihringen",
          "canonical_path": "/cities/de/ihringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503295",
          "name": "Illertissen",
          "country_code": "DE",
          "slug": "illertissen",
          "canonical_path": "/cities/de/illertissen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896538",
          "name": "Illingen",
          "country_code": "DE",
          "slug": "illingen",
          "canonical_path": "/cities/de/illingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896539",
          "name": "Illingen",
          "country_code": "DE",
          "slug": "illingen-01-082",
          "canonical_path": "/cities/de/illingen-01-082/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q205929",
          "name": "Ilmenau",
          "country_code": "DE",
          "slug": "ilmenau",
          "canonical_path": "/cities/de/ilmenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3208606",
          "name": "Ilsede",
          "country_code": "DE",
          "slug": "ilsede",
          "canonical_path": "/cities/de/ilsede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896483",
          "name": "Ilsenburg",
          "country_code": "DE",
          "slug": "ilsenburg",
          "canonical_path": "/cities/de/ilsenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529928",
          "name": "Ilsenburg (Harz)",
          "country_code": "DE",
          "slug": "ilsenburg-harz",
          "canonical_path": "/cities/de/ilsenburg-harz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896477",
          "name": "Ilsfeld",
          "country_code": "DE",
          "slug": "ilsfeld",
          "canonical_path": "/cities/de/ilsfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81070",
          "name": "Ilshofen",
          "country_code": "DE",
          "slug": "ilshofen",
          "canonical_path": "/cities/de/ilshofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896468",
          "name": "Ilvesheim",
          "country_code": "DE",
          "slug": "ilvesheim",
          "canonical_path": "/cities/de/ilvesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896288",
          "name": "Immendingen",
          "country_code": "DE",
          "slug": "immendingen",
          "canonical_path": "/cities/de/immendingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570052",
          "name": "Immenhausen",
          "country_code": "DE",
          "slug": "immenhausen",
          "canonical_path": "/cities/de/immenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896263",
          "name": "Immenstaad am Bodensee",
          "country_code": "DE",
          "slug": "immenstaad-am-bodensee",
          "canonical_path": "/cities/de/immenstaad-am-bodensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506278",
          "name": "Immenstadt i.Allgäu",
          "country_code": "DE",
          "slug": "immenstadt-i-allgau",
          "canonical_path": "/cities/de/immenstadt-i-allgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896261",
          "name": "Immenstadt im Allgäu",
          "country_code": "DE",
          "slug": "immenstadt-im-allgau",
          "canonical_path": "/cities/de/immenstadt-im-allgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2896120",
          "name": "Inden",
          "country_code": "DE",
          "slug": "inden",
          "canonical_path": "/cities/de/inden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509666",
          "name": "Ingelfingen",
          "country_code": "DE",
          "slug": "ingelfingen",
          "canonical_path": "/cities/de/ingelfingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q159548",
          "name": "Ingelheim am Rhein",
          "country_code": "DE",
          "slug": "ingelheim-am-rhein",
          "canonical_path": "/cities/de/ingelheim-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q32062404",
          "name": "Ingolstadt",
          "country_code": "DE",
          "slug": "ingolstadt",
          "canonical_path": "/cities/de/ingolstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502741",
          "name": "Iphofen",
          "country_code": "DE",
          "slug": "iphofen",
          "canonical_path": "/cities/de/iphofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2895702",
          "name": "Isen",
          "country_code": "DE",
          "slug": "isen",
          "canonical_path": "/cities/de/isen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2895688",
          "name": "Isenbüttel",
          "country_code": "DE",
          "slug": "isenbuttel",
          "canonical_path": "/cities/de/isenbuttel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1130",
          "name": "Iserlohn",
          "country_code": "DE",
          "slug": "iserlohn",
          "canonical_path": "/cities/de/iserlohn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2895664",
          "name": "Isernhagen Farster Bauerschaft",
          "country_code": "DE",
          "slug": "isernhagen-farster-bauerschaft",
          "canonical_path": "/cities/de/isernhagen-farster-bauerschaft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2895643",
          "name": "Ismaning",
          "country_code": "DE",
          "slug": "ismaning",
          "canonical_path": "/cities/de/ismaning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2895638",
          "name": "Isny",
          "country_code": "DE",
          "slug": "isny",
          "canonical_path": "/cities/de/isny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q513446",
          "name": "Isny im Allgäu",
          "country_code": "DE",
          "slug": "isny-im-allgau",
          "canonical_path": "/cities/de/isny-im-allgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2895636",
          "name": "Ispringen",
          "country_code": "DE",
          "slug": "ispringen",
          "canonical_path": "/cities/de/ispringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200602",
          "name": "Isselburg",
          "country_code": "DE",
          "slug": "isselburg",
          "canonical_path": "/cities/de/isselburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2895617",
          "name": "Issum",
          "country_code": "DE",
          "slug": "issum",
          "canonical_path": "/cities/de/issum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16073",
          "name": "Itzehoe",
          "country_code": "DE",
          "slug": "itzehoe",
          "canonical_path": "/cities/de/itzehoe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11549019",
          "name": "Jade",
          "country_code": "DE",
          "slug": "jade",
          "canonical_path": "/cities/de/jade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2895284",
          "name": "Jahnsdorf",
          "country_code": "DE",
          "slug": "jahnsdorf",
          "canonical_path": "/cities/de/jahnsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571979",
          "name": "Jarmen",
          "country_code": "DE",
          "slug": "jarmen",
          "canonical_path": "/cities/de/jarmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3150",
          "name": "Jena",
          "country_code": "DE",
          "slug": "jena",
          "canonical_path": "/cities/de/jena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530090",
          "name": "Jerichow",
          "country_code": "DE",
          "slug": "jerichow",
          "canonical_path": "/cities/de/jerichow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2894962",
          "name": "Jessen",
          "country_code": "DE",
          "slug": "jessen",
          "canonical_path": "/cities/de/jessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q554771",
          "name": "Jessen (Elster)",
          "country_code": "DE",
          "slug": "jessen-elster",
          "canonical_path": "/cities/de/jessen-elster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2894945",
          "name": "Jesteburg",
          "country_code": "DE",
          "slug": "jesteburg",
          "canonical_path": "/cities/de/jesteburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2894944",
          "name": "Jestetten",
          "country_code": "DE",
          "slug": "jestetten",
          "canonical_path": "/cities/de/jestetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3336896",
          "name": "Jettingen-Scheppach",
          "country_code": "DE",
          "slug": "jettingen-scheppach",
          "canonical_path": "/cities/de/jettingen-scheppach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q31084",
          "name": "Jever",
          "country_code": "DE",
          "slug": "jever",
          "canonical_path": "/cities/de/jever/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q535551",
          "name": "Joachimsthal",
          "country_code": "DE",
          "slug": "joachimsthal",
          "canonical_path": "/cities/de/joachimsthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2894855",
          "name": "Jockgrim",
          "country_code": "DE",
          "slug": "jockgrim",
          "canonical_path": "/cities/de/jockgrim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57903",
          "name": "Johanngeorgenstadt",
          "country_code": "DE",
          "slug": "johanngeorgenstadt",
          "canonical_path": "/cities/de/johanngeorgenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2894742",
          "name": "Jöhlingen",
          "country_code": "DE",
          "slug": "johlingen",
          "canonical_path": "/cities/de/johlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57908",
          "name": "Jöhstadt",
          "country_code": "DE",
          "slug": "johstadt",
          "canonical_path": "/cities/de/johstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2894702",
          "name": "Jork",
          "country_code": "DE",
          "slug": "jork",
          "canonical_path": "/cities/de/jork/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q255416",
          "name": "Jüchen",
          "country_code": "DE",
          "slug": "juchen",
          "canonical_path": "/cities/de/juchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16045",
          "name": "Juelich",
          "country_code": "DE",
          "slug": "juelich",
          "canonical_path": "/cities/de/juelich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486541",
          "name": "Jüterbog",
          "country_code": "DE",
          "slug": "juterbog",
          "canonical_path": "/cities/de/juterbog/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7088",
          "name": "Kaarst",
          "country_code": "DE",
          "slug": "kaarst",
          "canonical_path": "/cities/de/kaarst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2894245",
          "name": "Kahl am Main",
          "country_code": "DE",
          "slug": "kahl-am-main",
          "canonical_path": "/cities/de/kahl-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550808",
          "name": "Kahla",
          "country_code": "DE",
          "slug": "kahla",
          "canonical_path": "/cities/de/kahla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552516",
          "name": "Kaisersesch",
          "country_code": "DE",
          "slug": "kaisersesch",
          "canonical_path": "/cities/de/kaisersesch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3758",
          "name": "Kaiserslautern",
          "country_code": "DE",
          "slug": "kaiserslautern",
          "canonical_path": "/cities/de/kaiserslautern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539118",
          "name": "Kalbe (Milde)",
          "country_code": "DE",
          "slug": "kalbe-milde",
          "canonical_path": "/cities/de/kalbe-milde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2893874",
          "name": "Kaldenkirchen",
          "country_code": "DE",
          "slug": "kaldenkirchen",
          "canonical_path": "/cities/de/kaldenkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2893868",
          "name": "Kalefeld",
          "country_code": "DE",
          "slug": "kalefeld",
          "canonical_path": "/cities/de/kalefeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q243554",
          "name": "Kalkar",
          "country_code": "DE",
          "slug": "kalkar",
          "canonical_path": "/cities/de/kalkar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2893762",
          "name": "Kall",
          "country_code": "DE",
          "slug": "kall",
          "canonical_path": "/cities/de/kall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492390",
          "name": "Kaltenkirchen",
          "country_code": "DE",
          "slug": "kaltenkirchen",
          "canonical_path": "/cities/de/kaltenkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q372482",
          "name": "Kaltennordheim",
          "country_code": "DE",
          "slug": "kaltennordheim",
          "canonical_path": "/cities/de/kaltennordheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7028",
          "name": "Kamen",
          "country_code": "DE",
          "slug": "kamen",
          "canonical_path": "/cities/de/kamen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81722",
          "name": "Kamenz / Kamjenc",
          "country_code": "DE",
          "slug": "kamenz-kamjenc",
          "canonical_path": "/cities/de/kamenz-kamjenc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14895",
          "name": "Kamp-Lintfort",
          "country_code": "DE",
          "slug": "kamp-lintfort",
          "canonical_path": "/cities/de/kamp-lintfort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22957",
          "name": "Kandel",
          "country_code": "DE",
          "slug": "kandel",
          "canonical_path": "/cities/de/kandel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61661",
          "name": "Kandern",
          "country_code": "DE",
          "slug": "kandern",
          "canonical_path": "/cities/de/kandern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2893152",
          "name": "Kapellen",
          "country_code": "DE",
          "slug": "kapellen",
          "canonical_path": "/cities/de/kapellen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2893022",
          "name": "Kappelrodeck",
          "country_code": "DE",
          "slug": "kappelrodeck",
          "canonical_path": "/cities/de/kappelrodeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570057",
          "name": "Karben",
          "country_code": "DE",
          "slug": "karben",
          "canonical_path": "/cities/de/karben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3272458",
          "name": "Karlsdorf-Neuthard",
          "country_code": "DE",
          "slug": "karlsdorf-neuthard",
          "canonical_path": "/cities/de/karlsdorf-neuthard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2892874",
          "name": "Karlsfeld",
          "country_code": "DE",
          "slug": "karlsfeld",
          "canonical_path": "/cities/de/karlsfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2892810",
          "name": "Karlshuld",
          "country_code": "DE",
          "slug": "karlshuld",
          "canonical_path": "/cities/de/karlshuld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:08212000",
          "name": "Karlsruhe",
          "country_code": "DE",
          "slug": "karlsruhe",
          "canonical_path": "/cities/de/karlsruhe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507854",
          "name": "Karlstadt",
          "country_code": "DE",
          "slug": "karlstadt",
          "canonical_path": "/cities/de/karlstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2892648",
          "name": "Karstädt",
          "country_code": "DE",
          "slug": "karstadt",
          "canonical_path": "/cities/de/karstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:06611000",
          "name": "Kassel",
          "country_code": "DE",
          "slug": "kassel",
          "canonical_path": "/cities/de/kassel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539726",
          "name": "Kastellaun",
          "country_code": "DE",
          "slug": "kastellaun",
          "canonical_path": "/cities/de/kastellaun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3207077",
          "name": "Katlenburg-Lindau",
          "country_code": "DE",
          "slug": "katlenburg-lindau",
          "canonical_path": "/cities/de/katlenburg-lindau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q636133",
          "name": "Katzenelnbogen",
          "country_code": "DE",
          "slug": "katzenelnbogen",
          "canonical_path": "/cities/de/katzenelnbogen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q540860",
          "name": "Kaub",
          "country_code": "DE",
          "slug": "kaub",
          "canonical_path": "/cities/de/kaub/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14805",
          "name": "Kaufbeuren",
          "country_code": "DE",
          "slug": "kaufbeuren",
          "canonical_path": "/cities/de/kaufbeuren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2892078",
          "name": "Kaufering",
          "country_code": "DE",
          "slug": "kaufering",
          "canonical_path": "/cities/de/kaufering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3336895",
          "name": "Kaufungen",
          "country_code": "DE",
          "slug": "kaufungen",
          "canonical_path": "/cities/de/kaufungen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15979",
          "name": "Kehl",
          "country_code": "DE",
          "slug": "kehl",
          "canonical_path": "/cities/de/kehl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539059",
          "name": "Kelbra (Kyffhäuser)",
          "country_code": "DE",
          "slug": "kelbra-kyffhauser",
          "canonical_path": "/cities/de/kelbra-kyffhauser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494305",
          "name": "Kelheim",
          "country_code": "DE",
          "slug": "kelheim",
          "canonical_path": "/cities/de/kelheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2891832",
          "name": "Kelkheim",
          "country_code": "DE",
          "slug": "kelkheim",
          "canonical_path": "/cities/de/kelkheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q639667",
          "name": "Kelkheim (Taunus)",
          "country_code": "DE",
          "slug": "kelkheim-taunus",
          "canonical_path": "/cities/de/kelkheim-taunus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515943",
          "name": "Kellinghusen",
          "country_code": "DE",
          "slug": "kellinghusen",
          "canonical_path": "/cities/de/kellinghusen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q635547",
          "name": "Kelsterbach",
          "country_code": "DE",
          "slug": "kelsterbach",
          "canonical_path": "/cities/de/kelsterbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q534792",
          "name": "Kemberg",
          "country_code": "DE",
          "slug": "kemberg",
          "canonical_path": "/cities/de/kemberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516262",
          "name": "Kemnath",
          "country_code": "DE",
          "slug": "kemnath",
          "canonical_path": "/cities/de/kemnath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14929",
          "name": "Kempen",
          "country_code": "DE",
          "slug": "kempen",
          "canonical_path": "/cities/de/kempen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550623",
          "name": "Kenzingen",
          "country_code": "DE",
          "slug": "kenzingen",
          "canonical_path": "/cities/de/kenzingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3959",
          "name": "Kerpen",
          "country_code": "DE",
          "slug": "kerpen",
          "canonical_path": "/cities/de/kerpen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2891343",
          "name": "Ketsch",
          "country_code": "DE",
          "slug": "ketsch",
          "canonical_path": "/cities/de/ketsch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2891282",
          "name": "Ketzin",
          "country_code": "DE",
          "slug": "ketzin",
          "canonical_path": "/cities/de/ketzin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q583450",
          "name": "Ketzin/Havel",
          "country_code": "DE",
          "slug": "ketzin-havel",
          "canonical_path": "/cities/de/ketzin-havel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q243526",
          "name": "Kevelaer",
          "country_code": "DE",
          "slug": "kevelaer",
          "canonical_path": "/cities/de/kevelaer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2891175",
          "name": "Kiefersfelden",
          "country_code": "DE",
          "slug": "kiefersfelden",
          "canonical_path": "/cities/de/kiefersfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:01002000",
          "name": "Kiel",
          "country_code": "DE",
          "slug": "kiel",
          "canonical_path": "/cities/de/kiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5569",
          "name": "Kierspe",
          "country_code": "DE",
          "slug": "kierspe",
          "canonical_path": "/cities/de/kierspe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530154",
          "name": "Kindelbrück",
          "country_code": "DE",
          "slug": "kindelbruck",
          "canonical_path": "/cities/de/kindelbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890795",
          "name": "Kippenheim",
          "country_code": "DE",
          "slug": "kippenheim",
          "canonical_path": "/cities/de/kippenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890769",
          "name": "Kirchardt",
          "country_code": "DE",
          "slug": "kirchardt",
          "canonical_path": "/cities/de/kirchardt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q632275",
          "name": "Kirchberg (Hunsrück)",
          "country_code": "DE",
          "slug": "kirchberg-hunsruck",
          "canonical_path": "/cities/de/kirchberg-hunsruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82372",
          "name": "Kirchberg an der Jagst",
          "country_code": "DE",
          "slug": "kirchberg-an-der-jagst",
          "canonical_path": "/cities/de/kirchberg-an-der-jagst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890602",
          "name": "Kirchdorf am Inn",
          "country_code": "DE",
          "slug": "kirchdorf-am-inn",
          "canonical_path": "/cities/de/kirchdorf-am-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890586",
          "name": "Kirchen",
          "country_code": "DE",
          "slug": "kirchen",
          "canonical_path": "/cities/de/kirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q532613",
          "name": "Kirchen (Sieg)",
          "country_code": "DE",
          "slug": "kirchen-sieg",
          "canonical_path": "/cities/de/kirchen-sieg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507741",
          "name": "Kirchenlamitz",
          "country_code": "DE",
          "slug": "kirchenlamitz",
          "canonical_path": "/cities/de/kirchenlamitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890527",
          "name": "Kirchentellinsfurt",
          "country_code": "DE",
          "slug": "kirchentellinsfurt",
          "canonical_path": "/cities/de/kirchentellinsfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569684",
          "name": "Kirchhain",
          "country_code": "DE",
          "slug": "kirchhain",
          "canonical_path": "/cities/de/kirchhain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890482",
          "name": "Kirchheim am Neckar",
          "country_code": "DE",
          "slug": "kirchheim-am-neckar",
          "canonical_path": "/cities/de/kirchheim-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14866",
          "name": "Kirchheim unter Teck",
          "country_code": "DE",
          "slug": "kirchheim-unter-teck",
          "canonical_path": "/cities/de/kirchheim-unter-teck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200763",
          "name": "Kirchheimbolanden",
          "country_code": "DE",
          "slug": "kirchheimbolanden",
          "canonical_path": "/cities/de/kirchheimbolanden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890442",
          "name": "Kirchhundem",
          "country_code": "DE",
          "slug": "kirchhundem",
          "canonical_path": "/cities/de/kirchhundem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890425",
          "name": "Kirchlengern",
          "country_code": "DE",
          "slug": "kirchlengern",
          "canonical_path": "/cities/de/kirchlengern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890422",
          "name": "Kirchlinde",
          "country_code": "DE",
          "slug": "kirchlinde",
          "canonical_path": "/cities/de/kirchlinde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890420",
          "name": "Kirchlinteln",
          "country_code": "DE",
          "slug": "kirchlinteln",
          "canonical_path": "/cities/de/kirchlinteln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890381",
          "name": "Kirchseeon",
          "country_code": "DE",
          "slug": "kirchseeon",
          "canonical_path": "/cities/de/kirchseeon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890328",
          "name": "Kirchzarten",
          "country_code": "DE",
          "slug": "kirchzarten",
          "canonical_path": "/cities/de/kirchzarten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890322",
          "name": "Kirkel",
          "country_code": "DE",
          "slug": "kirkel",
          "canonical_path": "/cities/de/kirkel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22470",
          "name": "Kirn",
          "country_code": "DE",
          "slug": "kirn",
          "canonical_path": "/cities/de/kirn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570077",
          "name": "Kirtorf",
          "country_code": "DE",
          "slug": "kirtorf",
          "canonical_path": "/cities/de/kirtorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890202",
          "name": "Kissing",
          "country_code": "DE",
          "slug": "kissing",
          "canonical_path": "/cities/de/kissing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890199",
          "name": "Kißlegg",
          "country_code": "DE",
          "slug": "kisslegg",
          "canonical_path": "/cities/de/kisslegg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q269447",
          "name": "Kitzingen",
          "country_code": "DE",
          "slug": "kitzingen",
          "canonical_path": "/cities/de/kitzingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10768",
          "name": "Kitzscher",
          "country_code": "DE",
          "slug": "kitzscher",
          "canonical_path": "/cities/de/kitzscher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2890051",
          "name": "Klarenthal",
          "country_code": "DE",
          "slug": "klarenthal",
          "canonical_path": "/cities/de/klarenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2889990",
          "name": "Klausdorf",
          "country_code": "DE",
          "slug": "klausdorf",
          "canonical_path": "/cities/de/klausdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2888222",
          "name": "Klein Schwülper",
          "country_code": "DE",
          "slug": "klein-schwulper",
          "canonical_path": "/cities/de/klein-schwulper/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2889709",
          "name": "Kleinblittersdorf",
          "country_code": "DE",
          "slug": "kleinblittersdorf",
          "canonical_path": "/cities/de/kleinblittersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2888523",
          "name": "Kleinmachnow",
          "country_code": "DE",
          "slug": "kleinmachnow",
          "canonical_path": "/cities/de/kleinmachnow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2888411",
          "name": "Kleinostheim",
          "country_code": "DE",
          "slug": "kleinostheim",
          "canonical_path": "/cities/de/kleinostheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835496",
          "name": "Kleinschwabhausen",
          "country_code": "DE",
          "slug": "kleinschwabhausen",
          "canonical_path": "/cities/de/kleinschwabhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2888053",
          "name": "Kleinwallstadt",
          "country_code": "DE",
          "slug": "kleinwallstadt",
          "canonical_path": "/cities/de/kleinwallstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502934",
          "name": "Klingenberg a.Main",
          "country_code": "DE",
          "slug": "klingenberg-a-main",
          "canonical_path": "/cities/de/klingenberg-a-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2887736",
          "name": "Klingenberg am Main",
          "country_code": "DE",
          "slug": "klingenberg-am-main",
          "canonical_path": "/cities/de/klingenberg-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2887716",
          "name": "Klingenstein",
          "country_code": "DE",
          "slug": "klingenstein",
          "canonical_path": "/cities/de/klingenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46866",
          "name": "Klingenthal",
          "country_code": "DE",
          "slug": "klingenthal",
          "canonical_path": "/cities/de/klingenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2887645",
          "name": "Klipphausen",
          "country_code": "DE",
          "slug": "klipphausen",
          "canonical_path": "/cities/de/klipphausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50877",
          "name": "Klötze",
          "country_code": "DE",
          "slug": "klotze",
          "canonical_path": "/cities/de/klotze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2887366",
          "name": "Klotzsche",
          "country_code": "DE",
          "slug": "klotzsche",
          "canonical_path": "/cities/de/klotzsche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507165",
          "name": "Klütz",
          "country_code": "DE",
          "slug": "klutz",
          "canonical_path": "/cities/de/klutz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2887194",
          "name": "Knetzgau",
          "country_code": "DE",
          "slug": "knetzgau",
          "canonical_path": "/cities/de/knetzgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80565",
          "name": "Knittlingen",
          "country_code": "DE",
          "slug": "knittlingen",
          "canonical_path": "/cities/de/knittlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2886916",
          "name": "Kochendorf",
          "country_code": "DE",
          "slug": "kochendorf",
          "canonical_path": "/cities/de/kochendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16013",
          "name": "Koenigs Wusterhausen",
          "country_code": "DE",
          "slug": "koenigs-wusterhausen",
          "canonical_path": "/cities/de/koenigs-wusterhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12444",
          "name": "Koenigswinter",
          "country_code": "DE",
          "slug": "koenigswinter",
          "canonical_path": "/cities/de/koenigswinter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q253445",
          "name": "Kolbermoor",
          "country_code": "DE",
          "slug": "kolbermoor",
          "canonical_path": "/cities/de/kolbermoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2886404",
          "name": "Kolitzheim",
          "country_code": "DE",
          "slug": "kolitzheim",
          "canonical_path": "/cities/de/kolitzheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2886382",
          "name": "Kolkwitz",
          "country_code": "DE",
          "slug": "kolkwitz",
          "canonical_path": "/cities/de/kolkwitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539554",
          "name": "Kölleda",
          "country_code": "DE",
          "slug": "kolleda",
          "canonical_path": "/cities/de/kolleda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2886008",
          "name": "Köngen",
          "country_code": "DE",
          "slug": "kongen",
          "canonical_path": "/cities/de/kongen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3206188",
          "name": "Königsbach-Stein",
          "country_code": "DE",
          "slug": "konigsbach-stein",
          "canonical_path": "/cities/de/konigsbach-stein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q517260",
          "name": "Königsberg i.Bay.",
          "country_code": "DE",
          "slug": "konigsberg-i-bay",
          "canonical_path": "/cities/de/konigsberg-i-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2885912",
          "name": "Königsbronn",
          "country_code": "DE",
          "slug": "konigsbronn",
          "canonical_path": "/cities/de/konigsbronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81739",
          "name": "Königsbrück",
          "country_code": "DE",
          "slug": "konigsbruck",
          "canonical_path": "/cities/de/konigsbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509355",
          "name": "Königsbrunn",
          "country_code": "DE",
          "slug": "konigsbrunn",
          "canonical_path": "/cities/de/konigsbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2491564",
          "name": "Königsee",
          "country_code": "DE",
          "slug": "konigsee",
          "canonical_path": "/cities/de/konigsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2885888",
          "name": "Königsfeld im Schwarzwald",
          "country_code": "DE",
          "slug": "konigsfeld-im-schwarzwald",
          "canonical_path": "/cities/de/konigsfeld-im-schwarzwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q39596",
          "name": "Königslutter am Elm",
          "country_code": "DE",
          "slug": "konigslutter-am-elm",
          "canonical_path": "/cities/de/konigslutter-am-elm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569661",
          "name": "Königstein im Taunus",
          "country_code": "DE",
          "slug": "konigstein-im-taunus",
          "canonical_path": "/cities/de/konigstein-im-taunus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518419",
          "name": "Könnern",
          "country_code": "DE",
          "slug": "konnern",
          "canonical_path": "/cities/de/konnern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3834",
          "name": "Konstanz",
          "country_code": "DE",
          "slug": "konstanz",
          "canonical_path": "/cities/de/konstanz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503185",
          "name": "Konz",
          "country_code": "DE",
          "slug": "konz",
          "canonical_path": "/cities/de/konz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2885540",
          "name": "Korb",
          "country_code": "DE",
          "slug": "korb",
          "canonical_path": "/cities/de/korb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q500147",
          "name": "Korbach",
          "country_code": "DE",
          "slug": "korbach",
          "canonical_path": "/cities/de/korbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2885412",
          "name": "Korntal",
          "country_code": "DE",
          "slug": "korntal",
          "canonical_path": "/cities/de/korntal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61663",
          "name": "Korntal-Münchingen",
          "country_code": "DE",
          "slug": "korntal-munchingen",
          "canonical_path": "/cities/de/korntal-munchingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16102",
          "name": "Kornwestheim",
          "country_code": "DE",
          "slug": "kornwestheim",
          "canonical_path": "/cities/de/kornwestheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16042",
          "name": "Korschenbroich",
          "country_code": "DE",
          "slug": "korschenbroich",
          "canonical_path": "/cities/de/korschenbroich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2885237",
          "name": "Köthen",
          "country_code": "DE",
          "slug": "kothen",
          "canonical_path": "/cities/de/kothen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1796771",
          "name": "Köthen (Anhalt)",
          "country_code": "DE",
          "slug": "kothen-anhalt",
          "canonical_path": "/cities/de/kothen-anhalt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2885070",
          "name": "Kötzting",
          "country_code": "DE",
          "slug": "kotzting",
          "canonical_path": "/cities/de/kotzting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q542606",
          "name": "Kraichtal",
          "country_code": "DE",
          "slug": "kraichtal",
          "canonical_path": "/cities/de/kraichtal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2884878",
          "name": "Krailling",
          "country_code": "DE",
          "slug": "krailling",
          "canonical_path": "/cities/de/krailling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536858",
          "name": "Krakow am See",
          "country_code": "DE",
          "slug": "krakow-am-see",
          "canonical_path": "/cities/de/krakow-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2884779",
          "name": "Kranenburg",
          "country_code": "DE",
          "slug": "kranenburg",
          "canonical_path": "/cities/de/kranenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539604",
          "name": "Kranichfeld",
          "country_code": "DE",
          "slug": "kranichfeld",
          "canonical_path": "/cities/de/kranichfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2884667",
          "name": "Krauchenwies",
          "country_code": "DE",
          "slug": "krauchenwies",
          "canonical_path": "/cities/de/krauchenwies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539659",
          "name": "Krautheim",
          "country_code": "DE",
          "slug": "krautheim",
          "canonical_path": "/cities/de/krautheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05114000",
          "name": "Krefeld",
          "country_code": "DE",
          "slug": "krefeld",
          "canonical_path": "/cities/de/krefeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2884482",
          "name": "Kreiensen",
          "country_code": "DE",
          "slug": "kreiensen",
          "canonical_path": "/cities/de/kreiensen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q587094",
          "name": "Kremmen",
          "country_code": "DE",
          "slug": "kremmen",
          "canonical_path": "/cities/de/kremmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539618",
          "name": "Krempe",
          "country_code": "DE",
          "slug": "krempe",
          "canonical_path": "/cities/de/krempe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2884344",
          "name": "Kressbronn am Bodensee",
          "country_code": "DE",
          "slug": "kressbronn-am-bodensee",
          "canonical_path": "/cities/de/kressbronn-am-bodensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2884245",
          "name": "Kreuzau",
          "country_code": "DE",
          "slug": "kreuzau",
          "canonical_path": "/cities/de/kreuzau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5999",
          "name": "Kreuztal",
          "country_code": "DE",
          "slug": "kreuztal",
          "canonical_path": "/cities/de/kreuztal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2883920",
          "name": "Kriftel",
          "country_code": "DE",
          "slug": "kriftel",
          "canonical_path": "/cities/de/kriftel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494537",
          "name": "Kronach",
          "country_code": "DE",
          "slug": "kronach",
          "canonical_path": "/cities/de/kronach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2883777",
          "name": "Kronau",
          "country_code": "DE",
          "slug": "kronau",
          "canonical_path": "/cities/de/kronau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2883754",
          "name": "Kronberg",
          "country_code": "DE",
          "slug": "kronberg",
          "canonical_path": "/cities/de/kronberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569634",
          "name": "Kronberg im Taunus",
          "country_code": "DE",
          "slug": "kronberg-im-taunus",
          "canonical_path": "/cities/de/kronberg-im-taunus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:12035575",
          "name": "Kronberg Tal",
          "country_code": "DE",
          "slug": "kronberg-tal",
          "canonical_path": "/cities/de/kronberg-tal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2883647",
          "name": "Kronshagen",
          "country_code": "DE",
          "slug": "kronshagen",
          "canonical_path": "/cities/de/kronshagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q645814",
          "name": "Kröpelin",
          "country_code": "DE",
          "slug": "kropelin",
          "canonical_path": "/cities/de/kropelin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2883591",
          "name": "Kropp",
          "country_code": "DE",
          "slug": "kropp",
          "canonical_path": "/cities/de/kropp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q573449",
          "name": "Kroppenstedt",
          "country_code": "DE",
          "slug": "kroppenstedt",
          "canonical_path": "/cities/de/kroppenstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2883410",
          "name": "Krumbach",
          "country_code": "DE",
          "slug": "krumbach",
          "canonical_path": "/cities/de/krumbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504803",
          "name": "Krumbach (Schwaben)",
          "country_code": "DE",
          "slug": "krumbach-schwaben",
          "canonical_path": "/cities/de/krumbach-schwaben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2883151",
          "name": "Kuchen",
          "country_code": "DE",
          "slug": "kuchen",
          "canonical_path": "/cities/de/kuchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565620",
          "name": "Kühlungsborn",
          "country_code": "DE",
          "slug": "kuhlungsborn",
          "canonical_path": "/cities/de/kuhlungsborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q157598",
          "name": "Kulmbach",
          "country_code": "DE",
          "slug": "kulmbach",
          "canonical_path": "/cities/de/kulmbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61711",
          "name": "Külsheim",
          "country_code": "DE",
          "slug": "kulsheim",
          "canonical_path": "/cities/de/kulsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2882529",
          "name": "Kümmersbruck",
          "country_code": "DE",
          "slug": "kummersbruck",
          "canonical_path": "/cities/de/kummersbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2882440",
          "name": "Künzell",
          "country_code": "DE",
          "slug": "kunzell",
          "canonical_path": "/cities/de/kunzell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q545177",
          "name": "Künzelsau",
          "country_code": "DE",
          "slug": "kunzelsau",
          "canonical_path": "/cities/de/kunzelsau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505242",
          "name": "Kupferberg",
          "country_code": "DE",
          "slug": "kupferberg",
          "canonical_path": "/cities/de/kupferberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2882399",
          "name": "Kupferzell",
          "country_code": "DE",
          "slug": "kupferzell",
          "canonical_path": "/cities/de/kupferzell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518505",
          "name": "Kuppenheim",
          "country_code": "DE",
          "slug": "kuppenheim",
          "canonical_path": "/cities/de/kuppenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2882366",
          "name": "Küps",
          "country_code": "DE",
          "slug": "kups",
          "canonical_path": "/cities/de/kups/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11611396",
          "name": "Kurl-Husen",
          "country_code": "DE",
          "slug": "kurl-husen",
          "canonical_path": "/cities/de/kurl-husen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2882318",
          "name": "Kürten",
          "country_code": "DE",
          "slug": "kurten",
          "canonical_path": "/cities/de/kurten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22937",
          "name": "Kusel",
          "country_code": "DE",
          "slug": "kusel",
          "canonical_path": "/cities/de/kusel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2882237",
          "name": "Kusterdingen",
          "country_code": "DE",
          "slug": "kusterdingen",
          "canonical_path": "/cities/de/kusterdingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q125124",
          "name": "Kyllburg",
          "country_code": "DE",
          "slug": "kyllburg",
          "canonical_path": "/cities/de/kyllburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505160",
          "name": "Kyritz",
          "country_code": "DE",
          "slug": "kyritz",
          "canonical_path": "/cities/de/kyritz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565635",
          "name": "Laage",
          "country_code": "DE",
          "slug": "laage",
          "canonical_path": "/cities/de/laage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14856",
          "name": "Laatzen",
          "country_code": "DE",
          "slug": "laatzen",
          "canonical_path": "/cities/de/laatzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2882059",
          "name": "Laboe",
          "country_code": "DE",
          "slug": "laboe",
          "canonical_path": "/cities/de/laboe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:8642861",
          "name": "Lachen-Speyerdorf",
          "country_code": "DE",
          "slug": "lachen-speyerdorf",
          "canonical_path": "/cities/de/lachen-speyerdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2882028",
          "name": "Lachendorf",
          "country_code": "DE",
          "slug": "lachendorf",
          "canonical_path": "/cities/de/lachendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881991",
          "name": "Ladbergen",
          "country_code": "DE",
          "slug": "ladbergen",
          "canonical_path": "/cities/de/ladbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83225",
          "name": "Ladenburg",
          "country_code": "DE",
          "slug": "ladenburg",
          "canonical_path": "/cities/de/ladenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881973",
          "name": "Laer",
          "country_code": "DE",
          "slug": "laer",
          "canonical_path": "/cities/de/laer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569639",
          "name": "Lahnstein",
          "country_code": "DE",
          "slug": "lahnstein",
          "canonical_path": "/cities/de/lahnstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881885",
          "name": "Lahr",
          "country_code": "DE",
          "slug": "lahr",
          "canonical_path": "/cities/de/lahr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515438",
          "name": "Laichingen",
          "country_code": "DE",
          "slug": "laichingen",
          "canonical_path": "/cities/de/laichingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628198",
          "name": "Lambrecht (Pfalz)",
          "country_code": "DE",
          "slug": "lambrecht-pfalz",
          "canonical_path": "/cities/de/lambrecht-pfalz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881767",
          "name": "Lambsheim",
          "country_code": "DE",
          "slug": "lambsheim",
          "canonical_path": "/cities/de/lambsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881749",
          "name": "Lamme",
          "country_code": "DE",
          "slug": "lamme",
          "canonical_path": "/cities/de/lamme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16099",
          "name": "Lampertheim",
          "country_code": "DE",
          "slug": "lampertheim",
          "canonical_path": "/cities/de/lampertheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509536",
          "name": "Landau a.d.Isar",
          "country_code": "DE",
          "slug": "landau-a-d-isar",
          "canonical_path": "/cities/de/landau-a-d-isar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881650",
          "name": "Landau an der Isar",
          "country_code": "DE",
          "slug": "landau-an-der-isar",
          "canonical_path": "/cities/de/landau-an-der-isar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7052",
          "name": "Landau in der Pfalz",
          "country_code": "DE",
          "slug": "landau-in-der-pfalz",
          "canonical_path": "/cities/de/landau-in-der-pfalz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q39793",
          "name": "Landsberg",
          "country_code": "DE",
          "slug": "landsberg",
          "canonical_path": "/cities/de/landsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494299",
          "name": "Landsberg am Lech",
          "country_code": "DE",
          "slug": "landsberg-am-lech",
          "canonical_path": "/cities/de/landsberg-am-lech/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3974",
          "name": "Landshut",
          "country_code": "DE",
          "slug": "landshut",
          "canonical_path": "/cities/de/landshut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22950",
          "name": "Landstuhl",
          "country_code": "DE",
          "slug": "landstuhl",
          "canonical_path": "/cities/de/landstuhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628260",
          "name": "Langelsheim",
          "country_code": "DE",
          "slug": "langelsheim",
          "canonical_path": "/cities/de/langelsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881276",
          "name": "Langen",
          "country_code": "DE",
          "slug": "langen",
          "canonical_path": "/cities/de/langen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881279",
          "name": "Langen",
          "country_code": "DE",
          "slug": "langen-05-064",
          "canonical_path": "/cities/de/langen-05-064/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14932",
          "name": "Langen (Hessen)",
          "country_code": "DE",
          "slug": "langen-hessen",
          "canonical_path": "/cities/de/langen-hessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881263",
          "name": "Langenargen",
          "country_code": "DE",
          "slug": "langenargen",
          "canonical_path": "/cities/de/langenargen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q559520",
          "name": "Langenau",
          "country_code": "DE",
          "slug": "langenau",
          "canonical_path": "/cities/de/langenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2881175",
          "name": "Langenberg",
          "country_code": "DE",
          "slug": "langenberg",
          "canonical_path": "/cities/de/langenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82382",
          "name": "Langenburg",
          "country_code": "DE",
          "slug": "langenburg",
          "canonical_path": "/cities/de/langenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4158",
          "name": "Langenhagen",
          "country_code": "DE",
          "slug": "langenhagen",
          "canonical_path": "/cities/de/langenhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q544737",
          "name": "Langenselbold",
          "country_code": "DE",
          "slug": "langenselbold",
          "canonical_path": "/cities/de/langenselbold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2230",
          "name": "Langenzenn",
          "country_code": "DE",
          "slug": "langenzenn",
          "canonical_path": "/cities/de/langenzenn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880726",
          "name": "Langerwehe",
          "country_code": "DE",
          "slug": "langerwehe",
          "canonical_path": "/cities/de/langerwehe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880672",
          "name": "Langgöns",
          "country_code": "DE",
          "slug": "langgons",
          "canonical_path": "/cities/de/langgons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880597",
          "name": "Langquaid",
          "country_code": "DE",
          "slug": "langquaid",
          "canonical_path": "/cities/de/langquaid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880547",
          "name": "Langwedel",
          "country_code": "DE",
          "slug": "langwedel",
          "canonical_path": "/cities/de/langwedel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880539",
          "name": "Langweid",
          "country_code": "DE",
          "slug": "langweid",
          "canonical_path": "/cities/de/langweid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880425",
          "name": "Lappersdorf",
          "country_code": "DE",
          "slug": "lappersdorf",
          "canonical_path": "/cities/de/lappersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q426353",
          "name": "Lassan",
          "country_code": "DE",
          "slug": "lassan",
          "canonical_path": "/cities/de/lassan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880357",
          "name": "Lastrup",
          "country_code": "DE",
          "slug": "lastrup",
          "canonical_path": "/cities/de/lastrup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880351",
          "name": "Lathen",
          "country_code": "DE",
          "slug": "lathen",
          "canonical_path": "/cities/de/lathen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q124803",
          "name": "Laucha an der Unstrut",
          "country_code": "DE",
          "slug": "laucha-an-der-unstrut",
          "canonical_path": "/cities/de/laucha-an-der-unstrut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q589247",
          "name": "Lauchhammer",
          "country_code": "DE",
          "slug": "lauchhammer",
          "canonical_path": "/cities/de/lauchhammer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q574207",
          "name": "Lauchheim",
          "country_code": "DE",
          "slug": "lauchheim",
          "canonical_path": "/cities/de/lauchheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3205666",
          "name": "Lauchringen",
          "country_code": "DE",
          "slug": "lauchringen",
          "canonical_path": "/cities/de/lauchringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61717",
          "name": "Lauda-Königshofen",
          "country_code": "DE",
          "slug": "lauda-konigshofen",
          "canonical_path": "/cities/de/lauda-konigshofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880204",
          "name": "Laudenbach",
          "country_code": "DE",
          "slug": "laudenbach",
          "canonical_path": "/cities/de/laudenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492380",
          "name": "Lauenburg/ Elbe",
          "country_code": "DE",
          "slug": "lauenburg-elbe",
          "canonical_path": "/cities/de/lauenburg-elbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504334",
          "name": "Lauf a. d. Pegnitz",
          "country_code": "DE",
          "slug": "lauf-a-d-pegnitz",
          "canonical_path": "/cities/de/lauf-a-d-pegnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880146",
          "name": "Laufach",
          "country_code": "DE",
          "slug": "laufach",
          "canonical_path": "/cities/de/laufach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q201066",
          "name": "Laufen",
          "country_code": "DE",
          "slug": "laufen",
          "canonical_path": "/cities/de/laufen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2880121",
          "name": "Laufenburg",
          "country_code": "DE",
          "slug": "laufenburg",
          "canonical_path": "/cities/de/laufenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539801",
          "name": "Laufenburg (Baden)",
          "country_code": "DE",
          "slug": "laufenburg-baden",
          "canonical_path": "/cities/de/laufenburg-baden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525720",
          "name": "Lauffen am Neckar",
          "country_code": "DE",
          "slug": "lauffen-am-neckar",
          "canonical_path": "/cities/de/lauffen-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572921",
          "name": "Lauingen (Donau)",
          "country_code": "DE",
          "slug": "lauingen-donau",
          "canonical_path": "/cities/de/lauingen-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q574314",
          "name": "Laupheim",
          "country_code": "DE",
          "slug": "laupheim",
          "canonical_path": "/cities/de/laupheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518383",
          "name": "Lauscha",
          "country_code": "DE",
          "slug": "lauscha",
          "canonical_path": "/cities/de/lauscha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81740",
          "name": "Lauta",
          "country_code": "DE",
          "slug": "lauta",
          "canonical_path": "/cities/de/lauta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2879964",
          "name": "Lauter",
          "country_code": "DE",
          "slug": "lauter",
          "canonical_path": "/cities/de/lauter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1326264",
          "name": "Lauter-Bernsbach",
          "country_code": "DE",
          "slug": "lauter-bernsbach",
          "canonical_path": "/cities/de/lauter-bernsbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2879929",
          "name": "Lauterbach",
          "country_code": "DE",
          "slug": "lauterbach",
          "canonical_path": "/cities/de/lauterbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q622569",
          "name": "Lauterbach (Hessen)",
          "country_code": "DE",
          "slug": "lauterbach-hessen",
          "canonical_path": "/cities/de/lauterbach-hessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q240283",
          "name": "Lauterecken",
          "country_code": "DE",
          "slug": "lauterecken",
          "canonical_path": "/cities/de/lauterecken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80819",
          "name": "Lauterstein",
          "country_code": "DE",
          "slug": "lauterstein",
          "canonical_path": "/cities/de/lauterstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558593",
          "name": "Lebach",
          "country_code": "DE",
          "slug": "lebach",
          "canonical_path": "/cities/de/lebach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q26362",
          "name": "Lebus",
          "country_code": "DE",
          "slug": "lebus",
          "canonical_path": "/cities/de/lebus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2879758",
          "name": "Leck",
          "country_code": "DE",
          "slug": "leck",
          "canonical_path": "/cities/de/leck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2879713",
          "name": "Leegebruch",
          "country_code": "DE",
          "slug": "leegebruch",
          "canonical_path": "/cities/de/leegebruch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2879697",
          "name": "Leer",
          "country_code": "DE",
          "slug": "leer",
          "canonical_path": "/cities/de/leer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15984",
          "name": "Leer (Ostfriesland)",
          "country_code": "DE",
          "slug": "leer-ostfriesland",
          "canonical_path": "/cities/de/leer-ostfriesland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2879653",
          "name": "Legden",
          "country_code": "DE",
          "slug": "legden",
          "canonical_path": "/cities/de/legden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2879378",
          "name": "Lehre",
          "country_code": "DE",
          "slug": "lehre",
          "canonical_path": "/cities/de/lehre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7057",
          "name": "Lehrte",
          "country_code": "DE",
          "slug": "lehrte",
          "canonical_path": "/cities/de/lehrte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q245495",
          "name": "Leichlingen (Rheinland)",
          "country_code": "DE",
          "slug": "leichlingen-rheinland",
          "canonical_path": "/cities/de/leichlingen-rheinland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2879200",
          "name": "Leinburg",
          "country_code": "DE",
          "slug": "leinburg",
          "canonical_path": "/cities/de/leinburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518446",
          "name": "Leinefelde-Worbis",
          "country_code": "DE",
          "slug": "leinefelde-worbis",
          "canonical_path": "/cities/de/leinefelde-worbis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14905",
          "name": "Leinfelden-Echterdingen",
          "country_code": "DE",
          "slug": "leinfelden-echterdingen",
          "canonical_path": "/cities/de/leinfelden-echterdingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q521981",
          "name": "Leingarten",
          "country_code": "DE",
          "slug": "leingarten",
          "canonical_path": "/cities/de/leingarten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504354",
          "name": "Leipheim",
          "country_code": "DE",
          "slug": "leipheim",
          "canonical_path": "/cities/de/leipheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:14713000",
          "name": "Leipzig",
          "country_code": "DE",
          "slug": "leipzig",
          "canonical_path": "/cities/de/leipzig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71133",
          "name": "Leisnig",
          "country_code": "DE",
          "slug": "leisnig",
          "canonical_path": "/cities/de/leisnig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14817",
          "name": "Lemgo",
          "country_code": "DE",
          "slug": "lemgo",
          "canonical_path": "/cities/de/lemgo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878918",
          "name": "Lemsahl-Mellingstedt",
          "country_code": "DE",
          "slug": "lemsahl-mellingstedt",
          "canonical_path": "/cities/de/lemsahl-mellingstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:13192010",
          "name": "Lemwerder",
          "country_code": "DE",
          "slug": "lemwerder",
          "canonical_path": "/cities/de/lemwerder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878879",
          "name": "Lengede",
          "country_code": "DE",
          "slug": "lengede",
          "canonical_path": "/cities/de/lengede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46869",
          "name": "Lengenfeld",
          "country_code": "DE",
          "slug": "lengenfeld",
          "canonical_path": "/cities/de/lengenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878824",
          "name": "Lenggries",
          "country_code": "DE",
          "slug": "lenggries",
          "canonical_path": "/cities/de/lenggries/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "DE",
      "path": "cities/de-2.json",
      "city_count": 1594,
      "cities": [
        {
          "entity_id": "city:de:wikidata:Q10893",
          "name": "Lennestadt",
          "country_code": "DE",
          "slug": "lennestadt",
          "canonical_path": "/cities/de/lennestadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11670107",
          "name": "Lenningen",
          "country_code": "DE",
          "slug": "lenningen",
          "canonical_path": "/cities/de/lenningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878773",
          "name": "Lensahn",
          "country_code": "DE",
          "slug": "lensahn",
          "canonical_path": "/cities/de/lensahn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q625768",
          "name": "Lenzen (Elbe)",
          "country_code": "DE",
          "slug": "lenzen-elbe",
          "canonical_path": "/cities/de/lenzen-elbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878702",
          "name": "Lenzkirch",
          "country_code": "DE",
          "slug": "lenzkirch",
          "canonical_path": "/cities/de/lenzkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878673",
          "name": "Leopoldshöhe",
          "country_code": "DE",
          "slug": "leopoldshohe",
          "canonical_path": "/cities/de/leopoldshohe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571778",
          "name": "Leun",
          "country_code": "DE",
          "slug": "leun",
          "canonical_path": "/cities/de/leun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505191",
          "name": "Leuna",
          "country_code": "DE",
          "slug": "leuna",
          "canonical_path": "/cities/de/leuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878313",
          "name": "Leutenbach",
          "country_code": "DE",
          "slug": "leutenbach",
          "canonical_path": "/cities/de/leutenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550813",
          "name": "Leutenberg",
          "country_code": "DE",
          "slug": "leutenberg",
          "canonical_path": "/cities/de/leutenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q389945",
          "name": "Leutershausen",
          "country_code": "DE",
          "slug": "leutershausen",
          "canonical_path": "/cities/de/leutershausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878270",
          "name": "Leutkirch",
          "country_code": "DE",
          "slug": "leutkirch",
          "canonical_path": "/cities/de/leutkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539645",
          "name": "Leutkirch im Allgäu",
          "country_code": "DE",
          "slug": "leutkirch-im-allgau",
          "canonical_path": "/cities/de/leutkirch-im-allgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05316000",
          "name": "Leverkusen",
          "country_code": "DE",
          "slug": "leverkusen",
          "canonical_path": "/cities/de/leverkusen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q632282",
          "name": "Lich",
          "country_code": "DE",
          "slug": "lich",
          "canonical_path": "/cities/de/lich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878037",
          "name": "Lichtenstein",
          "country_code": "DE",
          "slug": "lichtenstein",
          "canonical_path": "/cities/de/lichtenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20081",
          "name": "Lichtenstein/Sa.",
          "country_code": "DE",
          "slug": "lichtenstein-sa",
          "canonical_path": "/cities/de/lichtenstein-sa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2878027",
          "name": "Lichtentanne",
          "country_code": "DE",
          "slug": "lichtentanne",
          "canonical_path": "/cities/de/lichtentanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2877969",
          "name": "Liebenburg",
          "country_code": "DE",
          "slug": "liebenburg",
          "canonical_path": "/cities/de/liebenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q583458",
          "name": "Liebenwalde",
          "country_code": "DE",
          "slug": "liebenwalde",
          "canonical_path": "/cities/de/liebenwalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q584485",
          "name": "Lieberose",
          "country_code": "DE",
          "slug": "lieberose",
          "canonical_path": "/cities/de/lieberose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8199",
          "name": "Liebstadt",
          "country_code": "DE",
          "slug": "liebstadt",
          "canonical_path": "/cities/de/liebstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3208086",
          "name": "Liederbach",
          "country_code": "DE",
          "slug": "liederbach",
          "canonical_path": "/cities/de/liederbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2877843",
          "name": "Lienen",
          "country_code": "DE",
          "slug": "lienen",
          "canonical_path": "/cities/de/lienen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2877709",
          "name": "Lilienthal",
          "country_code": "DE",
          "slug": "lilienthal",
          "canonical_path": "/cities/de/lilienthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20076",
          "name": "Limbach-Oberfrohna",
          "country_code": "DE",
          "slug": "limbach-oberfrohna",
          "canonical_path": "/cities/de/limbach-oberfrohna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16026",
          "name": "Limburg a. d. Lahn",
          "country_code": "DE",
          "slug": "limburg-a-d-lahn",
          "canonical_path": "/cities/de/limburg-a-d-lahn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2877647",
          "name": "Limburgerhof",
          "country_code": "DE",
          "slug": "limburgerhof",
          "canonical_path": "/cities/de/limburgerhof/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2877550",
          "name": "Lindau",
          "country_code": "DE",
          "slug": "lindau",
          "canonical_path": "/cities/de/lindau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q153969",
          "name": "Lindau (Bodensee)",
          "country_code": "DE",
          "slug": "lindau-bodensee",
          "canonical_path": "/cities/de/lindau-bodensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2877336",
          "name": "Lindenberg",
          "country_code": "DE",
          "slug": "lindenberg",
          "canonical_path": "/cities/de/lindenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q544744",
          "name": "Lindenberg i.Allgäu",
          "country_code": "DE",
          "slug": "lindenberg-i-allgau",
          "canonical_path": "/cities/de/lindenberg-i-allgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1826180",
          "name": "Lindenfels",
          "country_code": "DE",
          "slug": "lindenfels",
          "canonical_path": "/cities/de/lindenfels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2877262",
          "name": "Lindenhorst",
          "country_code": "DE",
          "slug": "lindenhorst",
          "canonical_path": "/cities/de/lindenhorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2877142",
          "name": "Lindlar",
          "country_code": "DE",
          "slug": "lindlar",
          "canonical_path": "/cities/de/lindlar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q625741",
          "name": "Lindow (Mark)",
          "country_code": "DE",
          "slug": "lindow-mark",
          "canonical_path": "/cities/de/lindow-mark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2877082",
          "name": "Lingenfeld",
          "country_code": "DE",
          "slug": "lingenfeld",
          "canonical_path": "/cities/de/lingenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3272461",
          "name": "Linkenheim-Hochstetten",
          "country_code": "DE",
          "slug": "linkenheim-hochstetten",
          "canonical_path": "/cities/de/linkenheim-hochstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200122",
          "name": "Linnich",
          "country_code": "DE",
          "slug": "linnich",
          "canonical_path": "/cities/de/linnich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q390125",
          "name": "Linz am Rhein",
          "country_code": "DE",
          "slug": "linz-am-rhein",
          "canonical_path": "/cities/de/linz-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3943",
          "name": "Lippstadt",
          "country_code": "DE",
          "slug": "lippstadt",
          "canonical_path": "/cities/de/lippstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2876787",
          "name": "Litzendorf",
          "country_code": "DE",
          "slug": "litzendorf",
          "canonical_path": "/cities/de/litzendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q156768",
          "name": "Löbau",
          "country_code": "DE",
          "slug": "lobau",
          "canonical_path": "/cities/de/lobau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2876683",
          "name": "Löbtau",
          "country_code": "DE",
          "slug": "lobtau",
          "canonical_path": "/cities/de/lobtau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2876604",
          "name": "Löchgau",
          "country_code": "DE",
          "slug": "lochgau",
          "canonical_path": "/cities/de/lochgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14863",
          "name": "Loehne",
          "country_code": "DE",
          "slug": "loehne",
          "canonical_path": "/cities/de/loehne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4231",
          "name": "Loerrach",
          "country_code": "DE",
          "slug": "loerrach",
          "canonical_path": "/cities/de/loerrach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q527610",
          "name": "Löffingen",
          "country_code": "DE",
          "slug": "loffingen",
          "canonical_path": "/cities/de/loffingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2876282",
          "name": "Lohfelden",
          "country_code": "DE",
          "slug": "lohfelden",
          "canonical_path": "/cities/de/lohfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12449",
          "name": "Lohmar",
          "country_code": "DE",
          "slug": "lohmar",
          "canonical_path": "/cities/de/lohmar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2876185",
          "name": "Lohne",
          "country_code": "DE",
          "slug": "lohne",
          "canonical_path": "/cities/de/lohne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2876186",
          "name": "Lohne",
          "country_code": "DE",
          "slug": "lohne-06-00",
          "canonical_path": "/cities/de/lohne-06-00/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539693",
          "name": "Lohne (Oldenburg)",
          "country_code": "DE",
          "slug": "lohne-oldenburg",
          "canonical_path": "/cities/de/lohne-oldenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504774",
          "name": "Lohr a.Main",
          "country_code": "DE",
          "slug": "lohr-a-main",
          "canonical_path": "/cities/de/lohr-a-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2876147",
          "name": "Lohr am Main",
          "country_code": "DE",
          "slug": "lohr-am-main",
          "canonical_path": "/cities/de/lohr-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2876144",
          "name": "Lohra",
          "country_code": "DE",
          "slug": "lohra",
          "canonical_path": "/cities/de/lohra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572048",
          "name": "Loitz",
          "country_code": "DE",
          "slug": "loitz",
          "canonical_path": "/cities/de/loitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q625061",
          "name": "Lollar",
          "country_code": "DE",
          "slug": "lollar",
          "canonical_path": "/cities/de/lollar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8734",
          "name": "Lommatzsch",
          "country_code": "DE",
          "slug": "lommatzsch",
          "canonical_path": "/cities/de/lommatzsch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q559561",
          "name": "Löningen",
          "country_code": "DE",
          "slug": "loningen",
          "canonical_path": "/cities/de/loningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q524939",
          "name": "Lorsch",
          "country_code": "DE",
          "slug": "lorsch",
          "canonical_path": "/cities/de/lorsch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2875831",
          "name": "Losheim",
          "country_code": "DE",
          "slug": "losheim",
          "canonical_path": "/cities/de/losheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2875815",
          "name": "Loßburg",
          "country_code": "DE",
          "slug": "lossburg",
          "canonical_path": "/cities/de/lossburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57921",
          "name": "Lößnitz",
          "country_code": "DE",
          "slug": "lossnitz",
          "canonical_path": "/cities/de/lossnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2875760",
          "name": "Lotte",
          "country_code": "DE",
          "slug": "lotte",
          "canonical_path": "/cities/de/lotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522474",
          "name": "Löwenstein",
          "country_code": "DE",
          "slug": "lowenstein",
          "canonical_path": "/cities/de/lowenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2875645",
          "name": "Loxstedt",
          "country_code": "DE",
          "slug": "loxstedt",
          "canonical_path": "/cities/de/loxstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q182805",
          "name": "Lübbecke",
          "country_code": "DE",
          "slug": "lubbecke",
          "canonical_path": "/cities/de/lubbecke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q584815",
          "name": "Lübben (Spreewald) / Lubin (Błota)",
          "country_code": "DE",
          "slug": "lubben-spreewald-lubin-blota",
          "canonical_path": "/cities/de/lubben-spreewald-lubin-blota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q147895",
          "name": "Lübbenau/Spreewald / Lubnjow/Błota",
          "country_code": "DE",
          "slug": "lubbenau-spreewald-lubnjow-blota",
          "canonical_path": "/cities/de/lubbenau-spreewald-lubnjow-blota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536722",
          "name": "Lübtheen",
          "country_code": "DE",
          "slug": "lubtheen",
          "canonical_path": "/cities/de/lubtheen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q559033",
          "name": "Lübz",
          "country_code": "DE",
          "slug": "lubz",
          "canonical_path": "/cities/de/lubz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2875542",
          "name": "Lüchow",
          "country_code": "DE",
          "slug": "luchow",
          "canonical_path": "/cities/de/luchow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q705643",
          "name": "Lüchow (Wendland)",
          "country_code": "DE",
          "slug": "luchow-wendland",
          "canonical_path": "/cities/de/luchow-wendland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q285171",
          "name": "Lucka",
          "country_code": "DE",
          "slug": "lucka",
          "canonical_path": "/cities/de/lucka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539288",
          "name": "Luckau",
          "country_code": "DE",
          "slug": "luckau",
          "canonical_path": "/cities/de/luckau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q574146",
          "name": "Luckenwalde",
          "country_code": "DE",
          "slug": "luckenwalde",
          "canonical_path": "/cities/de/luckenwalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14934",
          "name": "Lüdinghausen",
          "country_code": "DE",
          "slug": "ludinghausen",
          "canonical_path": "/cities/de/ludinghausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q622",
          "name": "Ludwigsburg",
          "country_code": "DE",
          "slug": "ludwigsburg",
          "canonical_path": "/cities/de/ludwigsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q574170",
          "name": "Ludwigsfelde",
          "country_code": "DE",
          "slug": "ludwigsfelde",
          "canonical_path": "/cities/de/ludwigsfelde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:07314000",
          "name": "Ludwigshafen am Rhein",
          "country_code": "DE",
          "slug": "ludwigshafen-am-rhein",
          "canonical_path": "/cities/de/ludwigshafen-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q156119",
          "name": "Ludwigslust",
          "country_code": "DE",
          "slug": "ludwigslust",
          "canonical_path": "/cities/de/ludwigslust/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q163024",
          "name": "Ludwigsstadt",
          "country_code": "DE",
          "slug": "ludwigsstadt",
          "canonical_path": "/cities/de/ludwigsstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:01003000",
          "name": "Luebeck",
          "country_code": "DE",
          "slug": "luebeck",
          "canonical_path": "/cities/de/luebeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3893",
          "name": "Luedenscheid",
          "country_code": "DE",
          "slug": "luedenscheid",
          "canonical_path": "/cities/de/luedenscheid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3920",
          "name": "Lueneburg",
          "country_code": "DE",
          "slug": "lueneburg",
          "canonical_path": "/cities/de/lueneburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3822",
          "name": "Luenen",
          "country_code": "DE",
          "slug": "luenen",
          "canonical_path": "/cities/de/luenen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2875286",
          "name": "Lugau",
          "country_code": "DE",
          "slug": "lugau",
          "canonical_path": "/cities/de/lugau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57924",
          "name": "Lugau/Erzgeb.",
          "country_code": "DE",
          "slug": "lugau-erzgeb",
          "canonical_path": "/cities/de/lugau-erzgeb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q242810",
          "name": "Lügde",
          "country_code": "DE",
          "slug": "lugde",
          "canonical_path": "/cities/de/lugde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71137",
          "name": "Lunzenau",
          "country_code": "DE",
          "slug": "lunzenau",
          "canonical_path": "/cities/de/lunzenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874946",
          "name": "Lütgendortmund",
          "country_code": "DE",
          "slug": "lutgendortmund",
          "canonical_path": "/cities/de/lutgendortmund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q221840",
          "name": "Lütjenburg",
          "country_code": "DE",
          "slug": "lutjenburg",
          "canonical_path": "/cities/de/lutjenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874768",
          "name": "Lützelbach",
          "country_code": "DE",
          "slug": "lutzelbach",
          "canonical_path": "/cities/de/lutzelbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q517174",
          "name": "Lützen",
          "country_code": "DE",
          "slug": "lutzen",
          "canonical_path": "/cities/de/lutzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q635901",
          "name": "Lychen",
          "country_code": "DE",
          "slug": "lychen",
          "canonical_path": "/cities/de/lychen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874642",
          "name": "Machern",
          "country_code": "DE",
          "slug": "machern",
          "canonical_path": "/cities/de/machern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q555609",
          "name": "Magdala",
          "country_code": "DE",
          "slug": "magdala",
          "canonical_path": "/cities/de/magdala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:15003000",
          "name": "Magdeburg",
          "country_code": "DE",
          "slug": "magdeburg",
          "canonical_path": "/cities/de/magdeburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874509",
          "name": "Magstadt",
          "country_code": "DE",
          "slug": "magstadt",
          "canonical_path": "/cities/de/magstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q532167",
          "name": "Mahlberg",
          "country_code": "DE",
          "slug": "mahlberg",
          "canonical_path": "/cities/de/mahlberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874461",
          "name": "Mahlow",
          "country_code": "DE",
          "slug": "mahlow",
          "canonical_path": "/cities/de/mahlow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874263",
          "name": "Mainaschaff",
          "country_code": "DE",
          "slug": "mainaschaff",
          "canonical_path": "/cities/de/mainaschaff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504861",
          "name": "Mainbernheim",
          "country_code": "DE",
          "slug": "mainbernheim",
          "canonical_path": "/cities/de/mainbernheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503661",
          "name": "Mainburg",
          "country_code": "DE",
          "slug": "mainburg",
          "canonical_path": "/cities/de/mainburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874246",
          "name": "Mainhardt",
          "country_code": "DE",
          "slug": "mainhardt",
          "canonical_path": "/cities/de/mainhardt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874239",
          "name": "Mainleus",
          "country_code": "DE",
          "slug": "mainleus",
          "canonical_path": "/cities/de/mainleus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14897",
          "name": "Maintal",
          "country_code": "DE",
          "slug": "maintal",
          "canonical_path": "/cities/de/maintal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:07315000",
          "name": "Mainz",
          "country_code": "DE",
          "slug": "mainz",
          "canonical_path": "/cities/de/mainz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874200",
          "name": "Maisach",
          "country_code": "DE",
          "slug": "maisach",
          "canonical_path": "/cities/de/maisach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50957",
          "name": "Malchin",
          "country_code": "DE",
          "slug": "malchin",
          "canonical_path": "/cities/de/malchin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20291",
          "name": "Malchow",
          "country_code": "DE",
          "slug": "malchow",
          "canonical_path": "/cities/de/malchow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874111",
          "name": "Malente",
          "country_code": "DE",
          "slug": "malente",
          "canonical_path": "/cities/de/malente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3206682",
          "name": "Mallersdorf-Pfaffenberg",
          "country_code": "DE",
          "slug": "mallersdorf-pfaffenberg",
          "canonical_path": "/cities/de/mallersdorf-pfaffenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2874048",
          "name": "Malsch",
          "country_code": "DE",
          "slug": "malsch",
          "canonical_path": "/cities/de/malsch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2873992",
          "name": "Manching",
          "country_code": "DE",
          "slug": "manching",
          "canonical_path": "/cities/de/manching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:08222000",
          "name": "Mannheim",
          "country_code": "DE",
          "slug": "mannheim",
          "canonical_path": "/cities/de/mannheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502926",
          "name": "Mansfeld",
          "country_code": "DE",
          "slug": "mansfeld",
          "canonical_path": "/cities/de/mansfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61890",
          "name": "Marbach am Neckar",
          "country_code": "DE",
          "slug": "marbach-am-neckar",
          "canonical_path": "/cities/de/marbach-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3869",
          "name": "Marburg",
          "country_code": "DE",
          "slug": "marburg",
          "canonical_path": "/cities/de/marburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2873759",
          "name": "Marburg an der Lahn",
          "country_code": "DE",
          "slug": "marburg-an-der-lahn",
          "canonical_path": "/cities/de/marburg-an-der-lahn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57951",
          "name": "Marienberg",
          "country_code": "DE",
          "slug": "marienberg",
          "canonical_path": "/cities/de/marienberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2873574",
          "name": "Marienheide",
          "country_code": "DE",
          "slug": "marienheide",
          "canonical_path": "/cities/de/marienheide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q241655",
          "name": "Marienmünster",
          "country_code": "DE",
          "slug": "marienmunster",
          "canonical_path": "/cities/de/marienmunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q573239",
          "name": "Markdorf",
          "country_code": "DE",
          "slug": "markdorf",
          "canonical_path": "/cities/de/markdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q13896",
          "name": "Markgröningen",
          "country_code": "DE",
          "slug": "markgroningen",
          "canonical_path": "/cities/de/markgroningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q544844",
          "name": "Märkisch Buchholz",
          "country_code": "DE",
          "slug": "markisch-buchholz",
          "canonical_path": "/cities/de/markisch-buchholz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10782",
          "name": "Markkleeberg",
          "country_code": "DE",
          "slug": "markkleeberg",
          "canonical_path": "/cities/de/markkleeberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46875",
          "name": "Markneukirchen",
          "country_code": "DE",
          "slug": "markneukirchen",
          "canonical_path": "/cities/de/markneukirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10770",
          "name": "Markranstädt",
          "country_code": "DE",
          "slug": "markranstadt",
          "canonical_path": "/cities/de/markranstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2873304",
          "name": "Markt Erlbach",
          "country_code": "DE",
          "slug": "markt-erlbach",
          "canonical_path": "/cities/de/markt-erlbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2873300",
          "name": "Markt Indersdorf",
          "country_code": "DE",
          "slug": "markt-indersdorf",
          "canonical_path": "/cities/de/markt-indersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2873285",
          "name": "Markt Schwaben",
          "country_code": "DE",
          "slug": "markt-schwaben",
          "canonical_path": "/cities/de/markt-schwaben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522651",
          "name": "Marktbreit",
          "country_code": "DE",
          "slug": "marktbreit",
          "canonical_path": "/cities/de/marktbreit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506528",
          "name": "Marktheidenfeld",
          "country_code": "DE",
          "slug": "marktheidenfeld",
          "canonical_path": "/cities/de/marktheidenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506289",
          "name": "Marktleuthen",
          "country_code": "DE",
          "slug": "marktleuthen",
          "canonical_path": "/cities/de/marktleuthen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502955",
          "name": "Marktoberdorf",
          "country_code": "DE",
          "slug": "marktoberdorf",
          "canonical_path": "/cities/de/marktoberdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q508231",
          "name": "Marktredwitz",
          "country_code": "DE",
          "slug": "marktredwitz",
          "canonical_path": "/cities/de/marktredwitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502965",
          "name": "Marktsteft",
          "country_code": "DE",
          "slug": "marktsteft",
          "canonical_path": "/cities/de/marktsteft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536765",
          "name": "Marlow",
          "country_code": "DE",
          "slug": "marlow",
          "canonical_path": "/cities/de/marlow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q542799",
          "name": "Marne",
          "country_code": "DE",
          "slug": "marne",
          "canonical_path": "/cities/de/marne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2873224",
          "name": "Marpingen",
          "country_code": "DE",
          "slug": "marpingen",
          "canonical_path": "/cities/de/marpingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5645",
          "name": "Marsberg",
          "country_code": "DE",
          "slug": "marsberg",
          "canonical_path": "/cities/de/marsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2873172",
          "name": "Marten",
          "country_code": "DE",
          "slug": "marten",
          "canonical_path": "/cities/de/marten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80560",
          "name": "Maulbronn",
          "country_code": "DE",
          "slug": "maulbronn",
          "canonical_path": "/cities/de/maulbronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2872686",
          "name": "Maxdorf",
          "country_code": "DE",
          "slug": "maxdorf",
          "canonical_path": "/cities/de/maxdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q250866",
          "name": "Maxhütte-Haidhof",
          "country_code": "DE",
          "slug": "maxhutte-haidhof",
          "canonical_path": "/cities/de/maxhutte-haidhof/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516611",
          "name": "Mayen",
          "country_code": "DE",
          "slug": "mayen",
          "canonical_path": "/cities/de/mayen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q164458",
          "name": "Mechernich",
          "country_code": "DE",
          "slug": "mechernich",
          "canonical_path": "/cities/de/mechernich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2872585",
          "name": "Meckenbeuren",
          "country_code": "DE",
          "slug": "meckenbeuren",
          "canonical_path": "/cities/de/meckenbeuren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2872580",
          "name": "Meckesheim",
          "country_code": "DE",
          "slug": "meckesheim",
          "canonical_path": "/cities/de/meckesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10919",
          "name": "Medebach",
          "country_code": "DE",
          "slug": "medebach",
          "canonical_path": "/cities/de/medebach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20083",
          "name": "Meerane",
          "country_code": "DE",
          "slug": "meerane",
          "canonical_path": "/cities/de/meerane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4105",
          "name": "Meerbusch",
          "country_code": "DE",
          "slug": "meerbusch",
          "canonical_path": "/cities/de/meerbusch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498212",
          "name": "Meersburg",
          "country_code": "DE",
          "slug": "meersburg",
          "canonical_path": "/cities/de/meersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2872380",
          "name": "Mehrhoog",
          "country_code": "DE",
          "slug": "mehrhoog",
          "canonical_path": "/cities/de/mehrhoog/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2872244",
          "name": "Meinersen",
          "country_code": "DE",
          "slug": "meinersen",
          "canonical_path": "/cities/de/meinersen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5573",
          "name": "Meinerzhagen",
          "country_code": "DE",
          "slug": "meinerzhagen",
          "canonical_path": "/cities/de/meinerzhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q487278",
          "name": "Meiningen",
          "country_code": "DE",
          "slug": "meiningen",
          "canonical_path": "/cities/de/meiningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520103",
          "name": "Meisenheim",
          "country_code": "DE",
          "slug": "meisenheim",
          "canonical_path": "/cities/de/meisenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2872155",
          "name": "Meissen",
          "country_code": "DE",
          "slug": "meissen-13-00",
          "canonical_path": "/cities/de/meissen-13-00/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2872126",
          "name": "Meitingen",
          "country_code": "DE",
          "slug": "meitingen",
          "canonical_path": "/cities/de/meitingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498545",
          "name": "Meldorf",
          "country_code": "DE",
          "slug": "meldorf",
          "canonical_path": "/cities/de/meldorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6954",
          "name": "Melle",
          "country_code": "DE",
          "slug": "melle",
          "canonical_path": "/cities/de/melle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552523",
          "name": "Mellrichstadt",
          "country_code": "DE",
          "slug": "mellrichstadt",
          "canonical_path": "/cities/de/mellrichstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552495",
          "name": "Melsungen",
          "country_code": "DE",
          "slug": "melsungen",
          "canonical_path": "/cities/de/melsungen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2872003",
          "name": "Memmelsdorf",
          "country_code": "DE",
          "slug": "memmelsdorf",
          "canonical_path": "/cities/de/memmelsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14825",
          "name": "Memmingen",
          "country_code": "DE",
          "slug": "memmingen",
          "canonical_path": "/cities/de/memmingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4086",
          "name": "Menden Sauerland",
          "country_code": "DE",
          "slug": "menden-sauerland",
          "canonical_path": "/cities/de/menden-sauerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570085",
          "name": "Mendig",
          "country_code": "DE",
          "slug": "mendig",
          "canonical_path": "/cities/de/mendig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871970",
          "name": "Mengede",
          "country_code": "DE",
          "slug": "mengede",
          "canonical_path": "/cities/de/mengede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82279",
          "name": "Mengen",
          "country_code": "DE",
          "slug": "mengen",
          "canonical_path": "/cities/de/mengen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871953",
          "name": "Mengerskirchen",
          "country_code": "DE",
          "slug": "mengerskirchen",
          "canonical_path": "/cities/de/mengerskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871950",
          "name": "Mengkofen",
          "country_code": "DE",
          "slug": "mengkofen",
          "canonical_path": "/cities/de/mengkofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15977",
          "name": "Meppen",
          "country_code": "DE",
          "slug": "meppen",
          "canonical_path": "/cities/de/meppen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871832",
          "name": "Merchweiler",
          "country_code": "DE",
          "slug": "merchweiler",
          "canonical_path": "/cities/de/merchweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871813",
          "name": "Mering",
          "country_code": "DE",
          "slug": "mering",
          "canonical_path": "/cities/de/mering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509522",
          "name": "Merkendorf",
          "country_code": "DE",
          "slug": "merkendorf",
          "canonical_path": "/cities/de/merkendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14945",
          "name": "Merseburg",
          "country_code": "DE",
          "slug": "merseburg",
          "canonical_path": "/cities/de/merseburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16130",
          "name": "Merzig",
          "country_code": "DE",
          "slug": "merzig",
          "canonical_path": "/cities/de/merzig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5632",
          "name": "Meschede",
          "country_code": "DE",
          "slug": "meschede",
          "canonical_path": "/cities/de/meschede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82724",
          "name": "Meßkirch",
          "country_code": "DE",
          "slug": "messkirch",
          "canonical_path": "/cities/de/messkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515661",
          "name": "Meßstetten",
          "country_code": "DE",
          "slug": "messstetten",
          "canonical_path": "/cities/de/messstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871591",
          "name": "Metelen",
          "country_code": "DE",
          "slug": "metelen",
          "canonical_path": "/cities/de/metelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871540",
          "name": "Mettingen",
          "country_code": "DE",
          "slug": "mettingen",
          "canonical_path": "/cities/de/mettingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14878",
          "name": "Mettmann",
          "country_code": "DE",
          "slug": "mettmann",
          "canonical_path": "/cities/de/mettmann/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82881",
          "name": "Metzingen",
          "country_code": "DE",
          "slug": "metzingen",
          "canonical_path": "/cities/de/metzingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518356",
          "name": "Meuselwitz",
          "country_code": "DE",
          "slug": "meuselwitz",
          "canonical_path": "/cities/de/meuselwitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628105",
          "name": "Meyenburg",
          "country_code": "DE",
          "slug": "meyenburg",
          "canonical_path": "/cities/de/meyenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871367",
          "name": "Michelau",
          "country_code": "DE",
          "slug": "michelau",
          "canonical_path": "/cities/de/michelau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516517",
          "name": "Michelstadt",
          "country_code": "DE",
          "slug": "michelstadt",
          "canonical_path": "/cities/de/michelstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871279",
          "name": "Michendorf",
          "country_code": "DE",
          "slug": "michendorf",
          "canonical_path": "/cities/de/michendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2871264",
          "name": "Mickten",
          "country_code": "DE",
          "slug": "mickten",
          "canonical_path": "/cities/de/mickten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q269157",
          "name": "Miesbach",
          "country_code": "DE",
          "slug": "miesbach",
          "canonical_path": "/cities/de/miesbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502681",
          "name": "Miltenberg",
          "country_code": "DE",
          "slug": "miltenberg",
          "canonical_path": "/cities/de/miltenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518579",
          "name": "Mindelheim",
          "country_code": "DE",
          "slug": "mindelheim",
          "canonical_path": "/cities/de/mindelheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20320",
          "name": "Mirow",
          "country_code": "DE",
          "slug": "mirow",
          "canonical_path": "/cities/de/mirow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2870911",
          "name": "Mittegroßefehn",
          "country_code": "DE",
          "slug": "mittegrossefehn",
          "canonical_path": "/cities/de/mittegrossefehn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2870584",
          "name": "Mittelschöntal",
          "country_code": "DE",
          "slug": "mittelschontal",
          "canonical_path": "/cities/de/mittelschontal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2870490",
          "name": "Mittenaar",
          "country_code": "DE",
          "slug": "mittenaar",
          "canonical_path": "/cities/de/mittenaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2870482",
          "name": "Mittenwald",
          "country_code": "DE",
          "slug": "mittenwald",
          "canonical_path": "/cities/de/mittenwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q253371",
          "name": "Mitterteich",
          "country_code": "DE",
          "slug": "mitterteich",
          "canonical_path": "/cities/de/mitterteich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71170",
          "name": "Mittweida",
          "country_code": "DE",
          "slug": "mittweida",
          "canonical_path": "/cities/de/mittweida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504447",
          "name": "Möckmühl",
          "country_code": "DE",
          "slug": "mockmuhl",
          "canonical_path": "/cities/de/mockmuhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2870266",
          "name": "Mockrehna",
          "country_code": "DE",
          "slug": "mockrehna",
          "canonical_path": "/cities/de/mockrehna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05116000",
          "name": "Moenchengladbach",
          "country_code": "DE",
          "slug": "moenchengladbach",
          "canonical_path": "/cities/de/moenchengladbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16007",
          "name": "Moerfelden-Walldorf",
          "country_code": "DE",
          "slug": "moerfelden-walldorf",
          "canonical_path": "/cities/de/moerfelden-walldorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3132",
          "name": "Moers",
          "country_code": "DE",
          "slug": "moers",
          "canonical_path": "/cities/de/moers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2870194",
          "name": "Möglingen",
          "country_code": "DE",
          "slug": "moglingen",
          "canonical_path": "/cities/de/moglingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3207377",
          "name": "Möhnesee",
          "country_code": "DE",
          "slug": "mohnesee",
          "canonical_path": "/cities/de/mohnesee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2870094",
          "name": "Molbergen",
          "country_code": "DE",
          "slug": "molbergen",
          "canonical_path": "/cities/de/molbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2870079",
          "name": "Molfsee",
          "country_code": "DE",
          "slug": "molfsee",
          "canonical_path": "/cities/de/molfsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2869936",
          "name": "Mömbris",
          "country_code": "DE",
          "slug": "mombris",
          "canonical_path": "/cities/de/mombris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2869934",
          "name": "Mömlingen",
          "country_code": "DE",
          "slug": "momlingen",
          "canonical_path": "/cities/de/momlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504521",
          "name": "Monheim",
          "country_code": "DE",
          "slug": "monheim",
          "canonical_path": "/cities/de/monheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7062",
          "name": "Monheim am Rhein",
          "country_code": "DE",
          "slug": "monheim-am-rhein",
          "canonical_path": "/cities/de/monheim-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200783",
          "name": "Monschau",
          "country_code": "DE",
          "slug": "monschau",
          "canonical_path": "/cities/de/monschau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q632991",
          "name": "Montabaur",
          "country_code": "DE",
          "slug": "montabaur",
          "canonical_path": "/cities/de/montabaur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2869689",
          "name": "Moordorf",
          "country_code": "DE",
          "slug": "moordorf",
          "canonical_path": "/cities/de/moordorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2869449",
          "name": "Moosburg",
          "country_code": "DE",
          "slug": "moosburg",
          "canonical_path": "/cities/de/moosburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q31872",
          "name": "Moosburg a.d.Isar",
          "country_code": "DE",
          "slug": "moosburg-a-d-isar",
          "canonical_path": "/cities/de/moosburg-a-d-isar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2869361",
          "name": "Moosinning",
          "country_code": "DE",
          "slug": "moosinning",
          "canonical_path": "/cities/de/moosinning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2869306",
          "name": "Morbach",
          "country_code": "DE",
          "slug": "morbach",
          "canonical_path": "/cities/de/morbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520064",
          "name": "Moringen",
          "country_code": "DE",
          "slug": "moringen",
          "canonical_path": "/cities/de/moringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2869244",
          "name": "Moritzburg",
          "country_code": "DE",
          "slug": "moritzburg",
          "canonical_path": "/cities/de/moritzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2869221",
          "name": "Mörlenbach",
          "country_code": "DE",
          "slug": "morlenbach",
          "canonical_path": "/cities/de/morlenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2869196",
          "name": "Morsbach",
          "country_code": "DE",
          "slug": "morsbach",
          "canonical_path": "/cities/de/morsbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q23008",
          "name": "Mosbach",
          "country_code": "DE",
          "slug": "mosbach",
          "canonical_path": "/cities/de/mosbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525575",
          "name": "Mössingen",
          "country_code": "DE",
          "slug": "mossingen",
          "canonical_path": "/cities/de/mossingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2868936",
          "name": "Much",
          "country_code": "DE",
          "slug": "much",
          "canonical_path": "/cities/de/much/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2868933",
          "name": "Mücheln",
          "country_code": "DE",
          "slug": "mucheln",
          "canonical_path": "/cities/de/mucheln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530212",
          "name": "Mücheln (Geiseltal)",
          "country_code": "DE",
          "slug": "mucheln-geiseltal",
          "canonical_path": "/cities/de/mucheln-geiseltal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2868867",
          "name": "Mudau",
          "country_code": "DE",
          "slug": "mudau",
          "canonical_path": "/cities/de/mudau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2868861",
          "name": "Müden",
          "country_code": "DE",
          "slug": "muden",
          "canonical_path": "/cities/de/muden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2868853",
          "name": "Mudersbach",
          "country_code": "DE",
          "slug": "mudersbach",
          "canonical_path": "/cities/de/mudersbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05117000",
          "name": "Muelheim an der Ruhr",
          "country_code": "DE",
          "slug": "muelheim-an-der-ruhr",
          "canonical_path": "/cities/de/muelheim-an-der-ruhr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05515000",
          "name": "Muenster",
          "country_code": "DE",
          "slug": "muenster",
          "canonical_path": "/cities/de/muenster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12047",
          "name": "Mügeln",
          "country_code": "DE",
          "slug": "mugeln",
          "canonical_path": "/cities/de/mugeln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2868807",
          "name": "Muggensturm",
          "country_code": "DE",
          "slug": "muggensturm",
          "canonical_path": "/cities/de/muggensturm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80670",
          "name": "Mühlacker",
          "country_code": "DE",
          "slug": "muhlacker",
          "canonical_path": "/cities/de/muhlacker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q170301",
          "name": "Mühlberg/Elbe",
          "country_code": "DE",
          "slug": "muhlberg-elbe",
          "canonical_path": "/cities/de/muhlberg-elbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2868506",
          "name": "Mühldorf",
          "country_code": "DE",
          "slug": "muhldorf",
          "canonical_path": "/cities/de/muhldorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502615",
          "name": "Mühldorf a.Inn",
          "country_code": "DE",
          "slug": "muhldorf-a-inn",
          "canonical_path": "/cities/de/muhldorf-a-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11608781",
          "name": "Mühlenberg",
          "country_code": "DE",
          "slug": "muhlenberg",
          "canonical_path": "/cities/de/muhlenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2868004",
          "name": "Mühlhausen",
          "country_code": "DE",
          "slug": "muhlhausen",
          "canonical_path": "/cities/de/muhlhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q639902",
          "name": "Mühlheim am Main",
          "country_code": "DE",
          "slug": "muhlheim-am-main",
          "canonical_path": "/cities/de/muhlheim-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529127",
          "name": "Mühlheim an der Donau",
          "country_code": "DE",
          "slug": "muhlheim-an-der-donau",
          "canonical_path": "/cities/de/muhlheim-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867838",
          "name": "Mülheim",
          "country_code": "DE",
          "slug": "mulheim",
          "canonical_path": "/cities/de/mulheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558577",
          "name": "Mülheim-Kärlich",
          "country_code": "DE",
          "slug": "mulheim-karlich",
          "canonical_path": "/cities/de/mulheim-karlich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867770",
          "name": "Müllheim",
          "country_code": "DE",
          "slug": "mullheim",
          "canonical_path": "/cities/de/mullheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505468",
          "name": "Müllheim im Markgräflerland",
          "country_code": "DE",
          "slug": "mullheim-im-markgraflerland",
          "canonical_path": "/cities/de/mullheim-im-markgraflerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q638607",
          "name": "Müllrose",
          "country_code": "DE",
          "slug": "mullrose",
          "canonical_path": "/cities/de/mullrose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867753",
          "name": "Mülsen",
          "country_code": "DE",
          "slug": "mulsen",
          "canonical_path": "/cities/de/mulsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q160986",
          "name": "Münchberg",
          "country_code": "DE",
          "slug": "munchberg",
          "canonical_path": "/cities/de/munchberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q202498",
          "name": "Müncheberg",
          "country_code": "DE",
          "slug": "muncheberg",
          "canonical_path": "/cities/de/muncheberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q526374",
          "name": "Münchenbernsdorf",
          "country_code": "DE",
          "slug": "munchenbernsdorf",
          "canonical_path": "/cities/de/munchenbernsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515163",
          "name": "Munderkingen",
          "country_code": "DE",
          "slug": "munderkingen",
          "canonical_path": "/cities/de/munderkingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571922",
          "name": "Münnerstadt",
          "country_code": "DE",
          "slug": "munnerstadt",
          "canonical_path": "/cities/de/munnerstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q557809",
          "name": "Münsingen",
          "country_code": "DE",
          "slug": "munsingen",
          "canonical_path": "/cities/de/munsingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q514762",
          "name": "Münstermaifeld",
          "country_code": "DE",
          "slug": "munstermaifeld",
          "canonical_path": "/cities/de/munstermaifeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:6559224",
          "name": "Münstertal/Schwarzwald",
          "country_code": "DE",
          "slug": "munstertal-schwarzwald",
          "canonical_path": "/cities/de/munstertal-schwarzwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570892",
          "name": "Münzenberg",
          "country_code": "DE",
          "slug": "munzenberg",
          "canonical_path": "/cities/de/munzenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867467",
          "name": "Murg",
          "country_code": "DE",
          "slug": "murg",
          "canonical_path": "/cities/de/murg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867445",
          "name": "Murnau am Staffelsee",
          "country_code": "DE",
          "slug": "murnau-am-staffelsee",
          "canonical_path": "/cities/de/murnau-am-staffelsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867436",
          "name": "Murr",
          "country_code": "DE",
          "slug": "murr",
          "canonical_path": "/cities/de/murr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81768",
          "name": "Murrhardt",
          "country_code": "DE",
          "slug": "murrhardt",
          "canonical_path": "/cities/de/murrhardt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867335",
          "name": "Mutlangen",
          "country_code": "DE",
          "slug": "mutlangen",
          "canonical_path": "/cities/de/mutlangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867310",
          "name": "Mutterstadt",
          "country_code": "DE",
          "slug": "mutterstadt",
          "canonical_path": "/cities/de/mutterstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q534634",
          "name": "Nabburg",
          "country_code": "DE",
          "slug": "nabburg",
          "canonical_path": "/cities/de/nabburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867252",
          "name": "Nachrodt-Wiblingwerde",
          "country_code": "DE",
          "slug": "nachrodt-wiblingwerde",
          "canonical_path": "/cities/de/nachrodt-wiblingwerde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867229",
          "name": "Nackenheim",
          "country_code": "DE",
          "slug": "nackenheim",
          "canonical_path": "/cities/de/nackenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q26344",
          "name": "Nagold",
          "country_code": "DE",
          "slug": "nagold",
          "canonical_path": "/cities/de/nagold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503450",
          "name": "Naila",
          "country_code": "DE",
          "slug": "naila",
          "canonical_path": "/cities/de/naila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867127",
          "name": "Nalbach",
          "country_code": "DE",
          "slug": "nalbach",
          "canonical_path": "/cities/de/nalbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867120",
          "name": "Namborn",
          "country_code": "DE",
          "slug": "namborn",
          "canonical_path": "/cities/de/namborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2867112",
          "name": "Nandlstadt",
          "country_code": "DE",
          "slug": "nandlstadt",
          "canonical_path": "/cities/de/nandlstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q158216",
          "name": "Nassau",
          "country_code": "DE",
          "slug": "nassau",
          "canonical_path": "/cities/de/nassau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552491",
          "name": "Nastätten",
          "country_code": "DE",
          "slug": "nastatten",
          "canonical_path": "/cities/de/nastatten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2866942",
          "name": "Nattheim",
          "country_code": "DE",
          "slug": "nattheim",
          "canonical_path": "/cities/de/nattheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q581994",
          "name": "Nauen",
          "country_code": "DE",
          "slug": "nauen",
          "canonical_path": "/cities/de/nauen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2866917",
          "name": "Nauheim",
          "country_code": "DE",
          "slug": "nauheim",
          "canonical_path": "/cities/de/nauheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q641014",
          "name": "Naumburg",
          "country_code": "DE",
          "slug": "naumburg",
          "canonical_path": "/cities/de/naumburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15986",
          "name": "Naumburg (Saale)",
          "country_code": "DE",
          "slug": "naumburg-saale",
          "canonical_path": "/cities/de/naumburg-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10771",
          "name": "Naunhof",
          "country_code": "DE",
          "slug": "naunhof",
          "canonical_path": "/cities/de/naunhof/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q553571",
          "name": "Nebra (Unstrut)",
          "country_code": "DE",
          "slug": "nebra-unstrut",
          "canonical_path": "/cities/de/nebra-unstrut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82362",
          "name": "Neckarbischofsheim",
          "country_code": "DE",
          "slug": "neckarbischofsheim",
          "canonical_path": "/cities/de/neckarbischofsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82927",
          "name": "Neckargemünd",
          "country_code": "DE",
          "slug": "neckargemund",
          "canonical_path": "/cities/de/neckargemund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1973855",
          "name": "Neckarsteinach",
          "country_code": "DE",
          "slug": "neckarsteinach",
          "canonical_path": "/cities/de/neckarsteinach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q488708",
          "name": "Neckarsulm",
          "country_code": "DE",
          "slug": "neckarsulm",
          "canonical_path": "/cities/de/neckarsulm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2866755",
          "name": "Neckartenzlingen",
          "country_code": "DE",
          "slug": "neckartenzlingen",
          "canonical_path": "/cities/de/neckartenzlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2866694",
          "name": "Neersen",
          "country_code": "DE",
          "slug": "neersen",
          "canonical_path": "/cities/de/neersen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572431",
          "name": "Neresheim",
          "country_code": "DE",
          "slug": "neresheim",
          "canonical_path": "/cities/de/neresheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2866473",
          "name": "Nersingen",
          "country_code": "DE",
          "slug": "nersingen",
          "canonical_path": "/cities/de/nersingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10950",
          "name": "Netphen",
          "country_code": "DE",
          "slug": "netphen",
          "canonical_path": "/cities/de/netphen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2866369",
          "name": "Nette",
          "country_code": "DE",
          "slug": "nette",
          "canonical_path": "/cities/de/nette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2866336",
          "name": "Nettersheim",
          "country_code": "DE",
          "slug": "nettersheim",
          "canonical_path": "/cities/de/nettersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14810",
          "name": "Nettetal",
          "country_code": "DE",
          "slug": "nettetal",
          "canonical_path": "/cities/de/nettetal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46890",
          "name": "Netzschkau",
          "country_code": "DE",
          "slug": "netzschkau",
          "canonical_path": "/cities/de/netzschkau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2863795",
          "name": "Neu Wulmstorf",
          "country_code": "DE",
          "slug": "neu-wulmstorf",
          "canonical_path": "/cities/de/neu-wulmstorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q622562",
          "name": "Neu-Anspach",
          "country_code": "DE",
          "slug": "neu-anspach",
          "canonical_path": "/cities/de/neu-anspach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14920",
          "name": "Neu-Isenburg",
          "country_code": "DE",
          "slug": "neu-isenburg",
          "canonical_path": "/cities/de/neu-isenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4120",
          "name": "Neu-Ulm",
          "country_code": "DE",
          "slug": "neu-ulm",
          "canonical_path": "/cities/de/neu-ulm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2866174",
          "name": "Neubiberg",
          "country_code": "DE",
          "slug": "neubiberg",
          "canonical_path": "/cities/de/neubiberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3958",
          "name": "Neubrandenburg",
          "country_code": "DE",
          "slug": "neubrandenburg",
          "canonical_path": "/cities/de/neubrandenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2866110",
          "name": "Neubrück",
          "country_code": "DE",
          "slug": "neubruck",
          "canonical_path": "/cities/de/neubruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q9638",
          "name": "Neubukow",
          "country_code": "DE",
          "slug": "neubukow",
          "canonical_path": "/cities/de/neubukow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541843",
          "name": "Neubulach",
          "country_code": "DE",
          "slug": "neubulach",
          "canonical_path": "/cities/de/neubulach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q125652",
          "name": "Neuburg a. d. Donau",
          "country_code": "DE",
          "slug": "neuburg-a-d-donau",
          "canonical_path": "/cities/de/neuburg-a-d-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503291",
          "name": "Neudenau",
          "country_code": "DE",
          "slug": "neudenau",
          "canonical_path": "/cities/de/neudenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2865854",
          "name": "Neue Kolonie Westhausen",
          "country_code": "DE",
          "slug": "neue-kolonie-westhausen",
          "canonical_path": "/cities/de/neue-kolonie-westhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80759",
          "name": "Neuenbürg",
          "country_code": "DE",
          "slug": "neuenburg",
          "canonical_path": "/cities/de/neuenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509783",
          "name": "Neuenburg am Rhein",
          "country_code": "DE",
          "slug": "neuenburg-am-rhein",
          "canonical_path": "/cities/de/neuenburg-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2865798",
          "name": "Neuendettelsau",
          "country_code": "DE",
          "slug": "neuendettelsau",
          "canonical_path": "/cities/de/neuendettelsau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2865716",
          "name": "Neuenhagen",
          "country_code": "DE",
          "slug": "neuenhagen",
          "canonical_path": "/cities/de/neuenhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572280",
          "name": "Neuenhaus",
          "country_code": "DE",
          "slug": "neuenhaus",
          "canonical_path": "/cities/de/neuenhaus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2865637",
          "name": "Neuenkirchen",
          "country_code": "DE",
          "slug": "neuenkirchen",
          "canonical_path": "/cities/de/neuenkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2865641",
          "name": "Neuenkirchen",
          "country_code": "DE",
          "slug": "neuenkirchen-07-055",
          "canonical_path": "/cities/de/neuenkirchen-07-055/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5535",
          "name": "Neuenrade",
          "country_code": "DE",
          "slug": "neuenrade",
          "canonical_path": "/cities/de/neuenrade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503145",
          "name": "Neuenstadt am Kocher",
          "country_code": "DE",
          "slug": "neuenstadt-am-kocher",
          "canonical_path": "/cities/de/neuenstadt-am-kocher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q543370",
          "name": "Neuerburg",
          "country_code": "DE",
          "slug": "neuerburg",
          "canonical_path": "/cities/de/neuerburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2865376",
          "name": "Neufahrn bei Freising",
          "country_code": "DE",
          "slug": "neufahrn-bei-freising",
          "canonical_path": "/cities/de/neufahrn-bei-freising/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82520",
          "name": "Neuffen",
          "country_code": "DE",
          "slug": "neuffen",
          "canonical_path": "/cities/de/neuffen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2865155",
          "name": "Neuhaus",
          "country_code": "DE",
          "slug": "neuhaus",
          "canonical_path": "/cities/de/neuhaus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q371158",
          "name": "Neuhaus am Rennweg",
          "country_code": "DE",
          "slug": "neuhaus-am-rennweg",
          "canonical_path": "/cities/de/neuhaus-am-rennweg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2865104",
          "name": "Neuhausen",
          "country_code": "DE",
          "slug": "neuhausen",
          "canonical_path": "/cities/de/neuhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2865086",
          "name": "Neuhausen auf den Fildern",
          "country_code": "DE",
          "slug": "neuhausen-auf-den-fildern",
          "canonical_path": "/cities/de/neuhausen-auf-den-fildern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864936",
          "name": "Neuhof",
          "country_code": "DE",
          "slug": "neuhof",
          "canonical_path": "/cities/de/neuhof/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864869",
          "name": "Neuhofen",
          "country_code": "DE",
          "slug": "neuhofen",
          "canonical_path": "/cities/de/neuhofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50958",
          "name": "Neukalen",
          "country_code": "DE",
          "slug": "neukalen",
          "canonical_path": "/cities/de/neukalen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864771",
          "name": "Neukirch/Lausitz",
          "country_code": "DE",
          "slug": "neukirch-lausitz",
          "canonical_path": "/cities/de/neukirch-lausitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q162771",
          "name": "Neukirchen-Vluyn",
          "country_code": "DE",
          "slug": "neukirchen-vluyn",
          "canonical_path": "/cities/de/neukirchen-vluyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q540063",
          "name": "Neukloster",
          "country_code": "DE",
          "slug": "neukloster",
          "canonical_path": "/cities/de/neukloster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864577",
          "name": "Neulußheim",
          "country_code": "DE",
          "slug": "neulussheim",
          "canonical_path": "/cities/de/neulussheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q161129",
          "name": "Neumarkt-Sankt Veit",
          "country_code": "DE",
          "slug": "neumarkt-sankt-veit",
          "canonical_path": "/cities/de/neumarkt-sankt-veit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522691",
          "name": "Neunburg vorm Wald",
          "country_code": "DE",
          "slug": "neunburg-vorm-wald",
          "canonical_path": "/cities/de/neunburg-vorm-wald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:6694210",
          "name": "Neunkirchen am Brand",
          "country_code": "DE",
          "slug": "neunkirchen-am-brand",
          "canonical_path": "/cities/de/neunkirchen-am-brand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864422",
          "name": "Neunkirchen am Main",
          "country_code": "DE",
          "slug": "neunkirchen-am-main",
          "canonical_path": "/cities/de/neunkirchen-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q269473",
          "name": "Neuötting",
          "country_code": "DE",
          "slug": "neuotting",
          "canonical_path": "/cities/de/neuotting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864303",
          "name": "Neuried",
          "country_code": "DE",
          "slug": "neuried",
          "canonical_path": "/cities/de/neuried/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16085",
          "name": "Neuruppin",
          "country_code": "DE",
          "slug": "neuruppin",
          "canonical_path": "/cities/de/neuruppin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q165153",
          "name": "Neusalza-Spremberg",
          "country_code": "DE",
          "slug": "neusalza-spremberg",
          "canonical_path": "/cities/de/neusalza-spremberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503208",
          "name": "Neusäß",
          "country_code": "DE",
          "slug": "neusass",
          "canonical_path": "/cities/de/neusass/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2948",
          "name": "Neuss",
          "country_code": "DE",
          "slug": "neuss",
          "canonical_path": "/cities/de/neuss/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q205383",
          "name": "Neustadt (Dosse)",
          "country_code": "DE",
          "slug": "neustadt-dosse",
          "canonical_path": "/cities/de/neustadt-dosse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502991",
          "name": "Neustadt (Hessen)",
          "country_code": "DE",
          "slug": "neustadt-hessen",
          "canonical_path": "/cities/de/neustadt-hessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q31503",
          "name": "Neustadt a.d.Aisch",
          "country_code": "DE",
          "slug": "neustadt-a-d-aisch",
          "canonical_path": "/cities/de/neustadt-a-d-aisch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q269010",
          "name": "Neustadt a.d.Donau",
          "country_code": "DE",
          "slug": "neustadt-a-d-donau",
          "canonical_path": "/cities/de/neustadt-a-d-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q262594",
          "name": "Neustadt a.d.Waldnaab",
          "country_code": "DE",
          "slug": "neustadt-a-d-waldnaab",
          "canonical_path": "/cities/de/neustadt-a-d-waldnaab/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q31598",
          "name": "Neustadt am Kulm",
          "country_code": "DE",
          "slug": "neustadt-am-kulm",
          "canonical_path": "/cities/de/neustadt-am-kulm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7014",
          "name": "Neustadt am Ruebenberge",
          "country_code": "DE",
          "slug": "neustadt-am-ruebenberge",
          "canonical_path": "/cities/de/neustadt-am-ruebenberge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864057",
          "name": "Neustadt an der Aisch",
          "country_code": "DE",
          "slug": "neustadt-an-der-aisch",
          "canonical_path": "/cities/de/neustadt-an-der-aisch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864056",
          "name": "Neustadt an der Donau",
          "country_code": "DE",
          "slug": "neustadt-an-der-donau",
          "canonical_path": "/cities/de/neustadt-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505196",
          "name": "Neustadt an der Orla",
          "country_code": "DE",
          "slug": "neustadt-an-der-orla",
          "canonical_path": "/cities/de/neustadt-an-der-orla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864055",
          "name": "Neustadt an der Waldnaab",
          "country_code": "DE",
          "slug": "neustadt-an-der-waldnaab",
          "canonical_path": "/cities/de/neustadt-an-der-waldnaab/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4149",
          "name": "Neustadt an der Weinstrasse",
          "country_code": "DE",
          "slug": "neustadt-an-der-weinstrasse",
          "canonical_path": "/cities/de/neustadt-an-der-weinstrasse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q32074",
          "name": "Neustadt b.Coburg",
          "country_code": "DE",
          "slug": "neustadt-b-coburg",
          "canonical_path": "/cities/de/neustadt-b-coburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2864053",
          "name": "Neustadt bei Coburg",
          "country_code": "DE",
          "slug": "neustadt-bei-coburg",
          "canonical_path": "/cities/de/neustadt-bei-coburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q499861",
          "name": "Neustadt in Holstein",
          "country_code": "DE",
          "slug": "neustadt-in-holstein",
          "canonical_path": "/cities/de/neustadt-in-holstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8210",
          "name": "Neustadt in Sachsen",
          "country_code": "DE",
          "slug": "neustadt-in-sachsen",
          "canonical_path": "/cities/de/neustadt-in-sachsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q540120",
          "name": "Neustadt-Glewe",
          "country_code": "DE",
          "slug": "neustadt-glewe",
          "canonical_path": "/cities/de/neustadt-glewe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20352",
          "name": "Neustrelitz",
          "country_code": "DE",
          "slug": "neustrelitz",
          "canonical_path": "/cities/de/neustrelitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q488625",
          "name": "Neutraubling",
          "country_code": "DE",
          "slug": "neutraubling",
          "canonical_path": "/cities/de/neutraubling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3967",
          "name": "Neuwied",
          "country_code": "DE",
          "slug": "neuwied",
          "canonical_path": "/cities/de/neuwied/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569625",
          "name": "Nidda",
          "country_code": "DE",
          "slug": "nidda",
          "canonical_path": "/cities/de/nidda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q622391",
          "name": "Niddatal",
          "country_code": "DE",
          "slug": "niddatal",
          "canonical_path": "/cities/de/niddatal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q540743",
          "name": "Nidderau",
          "country_code": "DE",
          "slug": "nidderau",
          "canonical_path": "/cities/de/nidderau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200105",
          "name": "Nideggen",
          "country_code": "DE",
          "slug": "nideggen",
          "canonical_path": "/cities/de/nideggen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q21014",
          "name": "Niebüll",
          "country_code": "DE",
          "slug": "niebull",
          "canonical_path": "/cities/de/niebull/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570414",
          "name": "Niedenstein",
          "country_code": "DE",
          "slug": "niedenstein",
          "canonical_path": "/cities/de/niedenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552643",
          "name": "Nieder-Olm",
          "country_code": "DE",
          "slug": "nieder-olm",
          "canonical_path": "/cities/de/nieder-olm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2863638",
          "name": "Niederaula",
          "country_code": "DE",
          "slug": "niederaula",
          "canonical_path": "/cities/de/niederaula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2863457",
          "name": "Niedereschach",
          "country_code": "DE",
          "slug": "niedereschach",
          "canonical_path": "/cities/de/niedereschach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2863441",
          "name": "Niederfischbach",
          "country_code": "DE",
          "slug": "niederfischbach",
          "canonical_path": "/cities/de/niederfischbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2863401",
          "name": "Niedergörsdorf",
          "country_code": "DE",
          "slug": "niedergorsdorf",
          "canonical_path": "/cities/de/niedergorsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12472",
          "name": "Niederkassel",
          "country_code": "DE",
          "slug": "niederkassel",
          "canonical_path": "/cities/de/niederkassel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2863199",
          "name": "Niederkrüchten",
          "country_code": "DE",
          "slug": "niederkruchten",
          "canonical_path": "/cities/de/niederkruchten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q386998",
          "name": "Niedernhall",
          "country_code": "DE",
          "slug": "niedernhall",
          "canonical_path": "/cities/de/niedernhall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2863046",
          "name": "Niedernhausen",
          "country_code": "DE",
          "slug": "niedernhausen",
          "canonical_path": "/cities/de/niedernhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61713",
          "name": "Niederstetten",
          "country_code": "DE",
          "slug": "niederstetten",
          "canonical_path": "/cities/de/niederstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q584682",
          "name": "Niederstotzingen",
          "country_code": "DE",
          "slug": "niederstotzingen",
          "canonical_path": "/cities/de/niederstotzingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862737",
          "name": "Niederwenigern",
          "country_code": "DE",
          "slug": "niederwenigern",
          "canonical_path": "/cities/de/niederwenigern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862733",
          "name": "Niederwerrn",
          "country_code": "DE",
          "slug": "niederwerrn",
          "canonical_path": "/cities/de/niederwerrn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862724",
          "name": "Niederwiesa",
          "country_code": "DE",
          "slug": "niederwiesa",
          "canonical_path": "/cities/de/niederwiesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862698",
          "name": "Niederzier",
          "country_code": "DE",
          "slug": "niederzier",
          "canonical_path": "/cities/de/niederzier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3206254",
          "name": "Niefern-Öschelbronn",
          "country_code": "DE",
          "slug": "niefern-oschelbronn",
          "canonical_path": "/cities/de/niefern-oschelbronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q241761",
          "name": "Nieheim",
          "country_code": "DE",
          "slug": "nieheim",
          "canonical_path": "/cities/de/nieheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q635620",
          "name": "Niemegk",
          "country_code": "DE",
          "slug": "niemegk",
          "canonical_path": "/cities/de/niemegk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862632",
          "name": "Nienberge",
          "country_code": "DE",
          "slug": "nienberge",
          "canonical_path": "/cities/de/nienberge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862620",
          "name": "Nienburg",
          "country_code": "DE",
          "slug": "nienburg",
          "canonical_path": "/cities/de/nienburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q551940",
          "name": "Nienburg (Saale)",
          "country_code": "DE",
          "slug": "nienburg-saale",
          "canonical_path": "/cities/de/nienburg-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16079",
          "name": "Nienburg (Weser)",
          "country_code": "DE",
          "slug": "nienburg-weser",
          "canonical_path": "/cities/de/nienburg-weser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q680403",
          "name": "Nierstein",
          "country_code": "DE",
          "slug": "nierstein",
          "canonical_path": "/cities/de/nierstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q165160",
          "name": "Niesky",
          "country_code": "DE",
          "slug": "niesky",
          "canonical_path": "/cities/de/niesky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529176",
          "name": "Nittenau",
          "country_code": "DE",
          "slug": "nittenau",
          "canonical_path": "/cities/de/nittenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862347",
          "name": "Nittendorf",
          "country_code": "DE",
          "slug": "nittendorf",
          "canonical_path": "/cities/de/nittendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862294",
          "name": "Nohfelden",
          "country_code": "DE",
          "slug": "nohfelden",
          "canonical_path": "/cities/de/nohfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862174",
          "name": "Nonnweiler",
          "country_code": "DE",
          "slug": "nonnweiler",
          "canonical_path": "/cities/de/nonnweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492366",
          "name": "Norden",
          "country_code": "DE",
          "slug": "norden",
          "canonical_path": "/cities/de/norden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503711",
          "name": "Nordenham",
          "country_code": "DE",
          "slug": "nordenham",
          "canonical_path": "/cities/de/nordenham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2862100",
          "name": "Nordenstadt",
          "country_code": "DE",
          "slug": "nordenstadt",
          "canonical_path": "/cities/de/nordenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q23968",
          "name": "Norderney",
          "country_code": "DE",
          "slug": "norderney",
          "canonical_path": "/cities/de/norderney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3928",
          "name": "Norderstedt",
          "country_code": "DE",
          "slug": "norderstedt",
          "canonical_path": "/cities/de/norderstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7033",
          "name": "Nordhausen",
          "country_code": "DE",
          "slug": "nordhausen",
          "canonical_path": "/cities/de/nordhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861973",
          "name": "Nordheim",
          "country_code": "DE",
          "slug": "nordheim",
          "canonical_path": "/cities/de/nordheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861939",
          "name": "Nordholz",
          "country_code": "DE",
          "slug": "nordholz",
          "canonical_path": "/cities/de/nordholz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4133",
          "name": "Nordhorn",
          "country_code": "DE",
          "slug": "nordhorn",
          "canonical_path": "/cities/de/nordhorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861923",
          "name": "Nordkirchen",
          "country_code": "DE",
          "slug": "nordkirchen",
          "canonical_path": "/cities/de/nordkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q489902",
          "name": "Nördlingen",
          "country_code": "DE",
          "slug": "nordlingen",
          "canonical_path": "/cities/de/nordlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11611382",
          "name": "Nordstadt",
          "country_code": "DE",
          "slug": "nordstadt",
          "canonical_path": "/cities/de/nordstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861866",
          "name": "Nordstemmen",
          "country_code": "DE",
          "slug": "nordstemmen",
          "canonical_path": "/cities/de/nordstemmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861847",
          "name": "Nordwalde",
          "country_code": "DE",
          "slug": "nordwalde",
          "canonical_path": "/cities/de/nordwalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861817",
          "name": "Nörten-Hardenberg",
          "country_code": "DE",
          "slug": "norten-hardenberg",
          "canonical_path": "/cities/de/norten-hardenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498575",
          "name": "Northeim",
          "country_code": "DE",
          "slug": "northeim",
          "canonical_path": "/cities/de/northeim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861801",
          "name": "Nörvenich",
          "country_code": "DE",
          "slug": "norvenich",
          "canonical_path": "/cities/de/norvenich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8751",
          "name": "Nossen",
          "country_code": "DE",
          "slug": "nossen",
          "canonical_path": "/cities/de/nossen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71166816",
          "name": "Nottertal-Heilinger Höhen",
          "country_code": "DE",
          "slug": "nottertal-heilinger-hohen",
          "canonical_path": "/cities/de/nottertal-heilinger-hohen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861733",
          "name": "Nottuln",
          "country_code": "DE",
          "slug": "nottuln",
          "canonical_path": "/cities/de/nottuln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14853",
          "name": "Nuertingen",
          "country_code": "DE",
          "slug": "nuertingen",
          "canonical_path": "/cities/de/nuertingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861690",
          "name": "Nufringen",
          "country_code": "DE",
          "slug": "nufringen",
          "canonical_path": "/cities/de/nufringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861677",
          "name": "Nümbrecht",
          "country_code": "DE",
          "slug": "numbrecht",
          "canonical_path": "/cities/de/numbrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861671",
          "name": "Nünchritz",
          "country_code": "DE",
          "slug": "nunchritz",
          "canonical_path": "/cities/de/nunchritz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:09564000",
          "name": "Nuremberg",
          "country_code": "DE",
          "slug": "nuremberg",
          "canonical_path": "/cities/de/nuremberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861579",
          "name": "Nußloch",
          "country_code": "DE",
          "slug": "nussloch",
          "canonical_path": "/cities/de/nussloch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2859739",
          "name": "Ober-Mörlen",
          "country_code": "DE",
          "slug": "ober-morlen",
          "canonical_path": "/cities/de/ober-morlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569633",
          "name": "Ober-Ramstadt",
          "country_code": "DE",
          "slug": "ober-ramstadt",
          "canonical_path": "/cities/de/ober-ramstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2859199",
          "name": "Ober-Saulheim",
          "country_code": "DE",
          "slug": "ober-saulheim",
          "canonical_path": "/cities/de/ober-saulheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861422",
          "name": "Oberammergau",
          "country_code": "DE",
          "slug": "oberammergau",
          "canonical_path": "/cities/de/oberammergau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504751",
          "name": "Oberasbach",
          "country_code": "DE",
          "slug": "oberasbach",
          "canonical_path": "/cities/de/oberasbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861232",
          "name": "Oberboihingen",
          "country_code": "DE",
          "slug": "oberboihingen",
          "canonical_path": "/cities/de/oberboihingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q542545",
          "name": "Oberderdingen",
          "country_code": "DE",
          "slug": "oberderdingen",
          "canonical_path": "/cities/de/oberderdingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2861096",
          "name": "Oberding",
          "country_code": "DE",
          "slug": "oberding",
          "canonical_path": "/cities/de/oberding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2860540",
          "name": "Obergünzburg",
          "country_code": "DE",
          "slug": "obergunzburg",
          "canonical_path": "/cities/de/obergunzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2860525",
          "name": "Oberhaching",
          "country_code": "DE",
          "slug": "oberhaching",
          "canonical_path": "/cities/de/oberhaching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q703001",
          "name": "Oberharz am Brocken",
          "country_code": "DE",
          "slug": "oberharz-am-brocken",
          "canonical_path": "/cities/de/oberharz-am-brocken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05119000",
          "name": "Oberhausen",
          "country_code": "DE",
          "slug": "oberhausen",
          "canonical_path": "/cities/de/oberhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2860400",
          "name": "Oberhausen-Rheinhausen",
          "country_code": "DE",
          "slug": "oberhausen-rheinhausen",
          "canonical_path": "/cities/de/oberhausen-rheinhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q489215",
          "name": "Oberhof",
          "country_code": "DE",
          "slug": "oberhof",
          "canonical_path": "/cities/de/oberhof/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2860104",
          "name": "Oberkassel",
          "country_code": "DE",
          "slug": "oberkassel",
          "canonical_path": "/cities/de/oberkassel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541381",
          "name": "Oberkirch",
          "country_code": "DE",
          "slug": "oberkirch",
          "canonical_path": "/cities/de/oberkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q521397",
          "name": "Oberkochen",
          "country_code": "DE",
          "slug": "oberkochen",
          "canonical_path": "/cities/de/oberkochen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2860021",
          "name": "Oberkotzau",
          "country_code": "DE",
          "slug": "oberkotzau",
          "canonical_path": "/cities/de/oberkotzau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20084",
          "name": "Oberlungwitz",
          "country_code": "DE",
          "slug": "oberlungwitz",
          "canonical_path": "/cities/de/oberlungwitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q23034",
          "name": "Obermoschel",
          "country_code": "DE",
          "slug": "obermoschel",
          "canonical_path": "/cities/de/obermoschel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503030",
          "name": "Obernburg a.Main",
          "country_code": "DE",
          "slug": "obernburg-a-main",
          "canonical_path": "/cities/de/obernburg-a-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2859675",
          "name": "Obernburg am Main",
          "country_code": "DE",
          "slug": "obernburg-am-main",
          "canonical_path": "/cities/de/obernburg-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2859654",
          "name": "Oberndorf",
          "country_code": "DE",
          "slug": "oberndorf",
          "canonical_path": "/cities/de/oberndorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83206",
          "name": "Oberndorf am Neckar",
          "country_code": "DE",
          "slug": "oberndorf-am-neckar",
          "canonical_path": "/cities/de/oberndorf-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570427",
          "name": "Obernkirchen",
          "country_code": "DE",
          "slug": "obernkirchen",
          "canonical_path": "/cities/de/obernkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61704",
          "name": "Oberriexingen",
          "country_code": "DE",
          "slug": "oberriexingen",
          "canonical_path": "/cities/de/oberriexingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2859147",
          "name": "Oberschleißheim",
          "country_code": "DE",
          "slug": "oberschleissheim",
          "canonical_path": "/cities/de/oberschleissheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2858966",
          "name": "Oberstaufen",
          "country_code": "DE",
          "slug": "oberstaufen",
          "canonical_path": "/cities/de/oberstaufen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2858964",
          "name": "Oberstdorf",
          "country_code": "DE",
          "slug": "oberstdorf",
          "canonical_path": "/cities/de/oberstdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2858906",
          "name": "Oberstenfeld",
          "country_code": "DE",
          "slug": "oberstenfeld",
          "canonical_path": "/cities/de/oberstenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2858807",
          "name": "Oberthal",
          "country_code": "DE",
          "slug": "oberthal",
          "canonical_path": "/cities/de/oberthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2858787",
          "name": "Oberthulba",
          "country_code": "DE",
          "slug": "oberthulba",
          "canonical_path": "/cities/de/oberthulba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2858773",
          "name": "Obertraubling",
          "country_code": "DE",
          "slug": "obertraubling",
          "canonical_path": "/cities/de/obertraubling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569628",
          "name": "Obertshausen",
          "country_code": "DE",
          "slug": "obertshausen",
          "canonical_path": "/cities/de/obertshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7044",
          "name": "Oberursel Taunus",
          "country_code": "DE",
          "slug": "oberursel-taunus",
          "canonical_path": "/cities/de/oberursel-taunus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q257823",
          "name": "Oberviechtach",
          "country_code": "DE",
          "slug": "oberviechtach",
          "canonical_path": "/cities/de/oberviechtach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q668327",
          "name": "Oberwesel",
          "country_code": "DE",
          "slug": "oberwesel",
          "canonical_path": "/cities/de/oberwesel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57926",
          "name": "Oberwiesenthal",
          "country_code": "DE",
          "slug": "oberwiesenthal",
          "canonical_path": "/cities/de/oberwiesenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1682542",
          "name": "Oberzent",
          "country_code": "DE",
          "slug": "oberzent",
          "canonical_path": "/cities/de/oberzent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2858417",
          "name": "Obrigheim",
          "country_code": "DE",
          "slug": "obrigheim",
          "canonical_path": "/cities/de/obrigheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504849",
          "name": "Ochsenfurt",
          "country_code": "DE",
          "slug": "ochsenfurt",
          "canonical_path": "/cities/de/ochsenfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522526",
          "name": "Ochsenhausen",
          "country_code": "DE",
          "slug": "ochsenhausen",
          "canonical_path": "/cities/de/ochsenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2858253",
          "name": "Ochtendung",
          "country_code": "DE",
          "slug": "ochtendung",
          "canonical_path": "/cities/de/ochtendung/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q181673",
          "name": "Ochtrup",
          "country_code": "DE",
          "slug": "ochtrup",
          "canonical_path": "/cities/de/ochtrup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2858103",
          "name": "Odenthal",
          "country_code": "DE",
          "slug": "odenthal",
          "canonical_path": "/cities/de/odenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q553202",
          "name": "Oderberg",
          "country_code": "DE",
          "slug": "oderberg",
          "canonical_path": "/cities/de/oderberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857985",
          "name": "Oebisfelde",
          "country_code": "DE",
          "slug": "oebisfelde",
          "canonical_path": "/cities/de/oebisfelde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q668316",
          "name": "Oebisfelde-Weferlingen",
          "country_code": "DE",
          "slug": "oebisfelde-weferlingen",
          "canonical_path": "/cities/de/oebisfelde-weferlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71141",
          "name": "Oederan",
          "country_code": "DE",
          "slug": "oederan",
          "canonical_path": "/cities/de/oederan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857967",
          "name": "Oedheim",
          "country_code": "DE",
          "slug": "oedheim",
          "canonical_path": "/cities/de/oedheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2752",
          "name": "Oelde",
          "country_code": "DE",
          "slug": "oelde",
          "canonical_path": "/cities/de/oelde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857918",
          "name": "Oelsnitz",
          "country_code": "DE",
          "slug": "oelsnitz",
          "canonical_path": "/cities/de/oelsnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857919",
          "name": "Oelsnitz",
          "country_code": "DE",
          "slug": "oelsnitz-13-00",
          "canonical_path": "/cities/de/oelsnitz-13-00/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57929",
          "name": "Oelsnitz/Erzgeb.",
          "country_code": "DE",
          "slug": "oelsnitz-erzgeb",
          "canonical_path": "/cities/de/oelsnitz-erzgeb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46845",
          "name": "Oelsnitz/Vogtl.",
          "country_code": "DE",
          "slug": "oelsnitz-vogtl",
          "canonical_path": "/cities/de/oelsnitz-vogtl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16138",
          "name": "Oer-Erkenschwick",
          "country_code": "DE",
          "slug": "oer-erkenschwick",
          "canonical_path": "/cities/de/oer-erkenschwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857075",
          "name": "Oerlenbach",
          "country_code": "DE",
          "slug": "oerlenbach",
          "canonical_path": "/cities/de/oerlenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q242757",
          "name": "Oerlinghausen",
          "country_code": "DE",
          "slug": "oerlinghausen",
          "canonical_path": "/cities/de/oerlinghausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857861",
          "name": "Oestrich",
          "country_code": "DE",
          "slug": "oestrich",
          "canonical_path": "/cities/de/oestrich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571737",
          "name": "Oestrich-Winkel",
          "country_code": "DE",
          "slug": "oestrich-winkel",
          "canonical_path": "/cities/de/oestrich-winkel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q556312",
          "name": "Oettingen i.Bay.",
          "country_code": "DE",
          "slug": "oettingen-i-bay",
          "canonical_path": "/cities/de/oettingen-i-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857847",
          "name": "Oettingen in Bayern",
          "country_code": "DE",
          "slug": "oettingen-in-bayern",
          "canonical_path": "/cities/de/oettingen-in-bayern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857807",
          "name": "Offenbach",
          "country_code": "DE",
          "slug": "offenbach",
          "canonical_path": "/cities/de/offenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3042",
          "name": "Offenbach am Main",
          "country_code": "DE",
          "slug": "offenbach-am-main",
          "canonical_path": "/cities/de/offenbach-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857803",
          "name": "Offenbach an der Queich",
          "country_code": "DE",
          "slug": "offenbach-an-der-queich",
          "canonical_path": "/cities/de/offenbach-an-der-queich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4044",
          "name": "Offenburg",
          "country_code": "DE",
          "slug": "offenburg",
          "canonical_path": "/cities/de/offenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857752",
          "name": "Oftersheim",
          "country_code": "DE",
          "slug": "oftersheim",
          "canonical_path": "/cities/de/oftersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502714",
          "name": "Ohrdruf",
          "country_code": "DE",
          "slug": "ohrdruf",
          "canonical_path": "/cities/de/ohrdruf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q294783",
          "name": "Öhringen",
          "country_code": "DE",
          "slug": "ohringen",
          "canonical_path": "/cities/de/ohringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57933",
          "name": "Olbernhau",
          "country_code": "DE",
          "slug": "olbernhau",
          "canonical_path": "/cities/de/olbernhau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857481",
          "name": "Olbersdorf",
          "country_code": "DE",
          "slug": "olbersdorf",
          "canonical_path": "/cities/de/olbersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q178486",
          "name": "Olching",
          "country_code": "DE",
          "slug": "olching",
          "canonical_path": "/cities/de/olching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:03403000",
          "name": "Oldenburg",
          "country_code": "DE",
          "slug": "oldenburg",
          "canonical_path": "/cities/de/oldenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q496435",
          "name": "Oldenburg in Holstein",
          "country_code": "DE",
          "slug": "oldenburg-in-holstein",
          "canonical_path": "/cities/de/oldenburg-in-holstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14937",
          "name": "Olfen",
          "country_code": "DE",
          "slug": "olfen",
          "canonical_path": "/cities/de/olfen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10898",
          "name": "Olpe",
          "country_code": "DE",
          "slug": "olpe",
          "canonical_path": "/cities/de/olpe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10921",
          "name": "Olsberg",
          "country_code": "DE",
          "slug": "olsberg",
          "canonical_path": "/cities/de/olsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857185",
          "name": "Opladen",
          "country_code": "DE",
          "slug": "opladen",
          "canonical_path": "/cities/de/opladen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515470",
          "name": "Oppenau",
          "country_code": "DE",
          "slug": "oppenau",
          "canonical_path": "/cities/de/oppenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518690",
          "name": "Oppenheim",
          "country_code": "DE",
          "slug": "oppenheim",
          "canonical_path": "/cities/de/oppenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q694755",
          "name": "Oranienbaum-Wörlitz",
          "country_code": "DE",
          "slug": "oranienbaum-worlitz",
          "canonical_path": "/cities/de/oranienbaum-worlitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14808",
          "name": "Oranienburg",
          "country_code": "DE",
          "slug": "oranienburg",
          "canonical_path": "/cities/de/oranienburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530022",
          "name": "Orlamünde",
          "country_code": "DE",
          "slug": "orlamunde",
          "canonical_path": "/cities/de/orlamunde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572242",
          "name": "Ornbau",
          "country_code": "DE",
          "slug": "ornbau",
          "canonical_path": "/cities/de/ornbau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2857011",
          "name": "Ortenburg",
          "country_code": "DE",
          "slug": "ortenburg",
          "canonical_path": "/cities/de/ortenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572503",
          "name": "Ortrand",
          "country_code": "DE",
          "slug": "ortrand",
          "canonical_path": "/cities/de/ortrand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12056",
          "name": "Oschatz",
          "country_code": "DE",
          "slug": "oschatz",
          "canonical_path": "/cities/de/oschatz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856930",
          "name": "Oschersleben",
          "country_code": "DE",
          "slug": "oschersleben",
          "canonical_path": "/cities/de/oschersleben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525392",
          "name": "Oschersleben (Bode)",
          "country_code": "DE",
          "slug": "oschersleben-bode",
          "canonical_path": "/cities/de/oschersleben-bode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:03404000",
          "name": "Osnabrueck",
          "country_code": "DE",
          "slug": "osnabrueck",
          "canonical_path": "/cities/de/osnabrueck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856816",
          "name": "Ostbevern",
          "country_code": "DE",
          "slug": "ostbevern",
          "canonical_path": "/cities/de/ostbevern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856639",
          "name": "Osterburg",
          "country_code": "DE",
          "slug": "osterburg",
          "canonical_path": "/cities/de/osterburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504010",
          "name": "Osterburg (Altmark)",
          "country_code": "DE",
          "slug": "osterburg-altmark",
          "canonical_path": "/cities/de/osterburg-altmark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529154",
          "name": "Osterburken",
          "country_code": "DE",
          "slug": "osterburken",
          "canonical_path": "/cities/de/osterburken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856629",
          "name": "Ostercappeln",
          "country_code": "DE",
          "slug": "ostercappeln",
          "canonical_path": "/cities/de/ostercappeln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550872",
          "name": "Osterfeld",
          "country_code": "DE",
          "slug": "osterfeld",
          "canonical_path": "/cities/de/osterfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503156",
          "name": "Osterhofen",
          "country_code": "DE",
          "slug": "osterhofen",
          "canonical_path": "/cities/de/osterhofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16141",
          "name": "Osterholz-Scharmbeck",
          "country_code": "DE",
          "slug": "osterholz-scharmbeck",
          "canonical_path": "/cities/de/osterholz-scharmbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:8739828",
          "name": "Osternienburger Land",
          "country_code": "DE",
          "slug": "osternienburger-land",
          "canonical_path": "/cities/de/osternienburger-land/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q327727",
          "name": "Osterode am Harz",
          "country_code": "DE",
          "slug": "osterode-am-harz",
          "canonical_path": "/cities/de/osterode-am-harz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856390",
          "name": "Osterrönfeld",
          "country_code": "DE",
          "slug": "osterronfeld",
          "canonical_path": "/cities/de/osterronfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q547619",
          "name": "Osterwieck",
          "country_code": "DE",
          "slug": "osterwieck",
          "canonical_path": "/cities/de/osterwieck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14916",
          "name": "Ostfildern",
          "country_code": "DE",
          "slug": "ostfildern",
          "canonical_path": "/cities/de/ostfildern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q534579",
          "name": "Ostheim v.d.Rhön",
          "country_code": "DE",
          "slug": "ostheim-v-d-rhon",
          "canonical_path": "/cities/de/ostheim-v-d-rhon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q655880",
          "name": "Osthofen",
          "country_code": "DE",
          "slug": "osthofen",
          "canonical_path": "/cities/de/osthofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856222",
          "name": "Ostrach",
          "country_code": "DE",
          "slug": "ostrach",
          "canonical_path": "/cities/de/ostrach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856213",
          "name": "Ostrhauderfehn",
          "country_code": "DE",
          "slug": "ostrhauderfehn",
          "canonical_path": "/cities/de/ostrhauderfehn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q307399",
          "name": "Östringen",
          "country_code": "DE",
          "slug": "ostringen",
          "canonical_path": "/cities/de/ostringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q165167",
          "name": "Ostritz",
          "country_code": "DE",
          "slug": "ostritz",
          "canonical_path": "/cities/de/ostritz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856198",
          "name": "Ostseebad Binz",
          "country_code": "DE",
          "slug": "ostseebad-binz",
          "canonical_path": "/cities/de/ostseebad-binz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856193",
          "name": "Ostseebad Kühlungsborn",
          "country_code": "DE",
          "slug": "ostseebad-kuhlungsborn",
          "canonical_path": "/cities/de/ostseebad-kuhlungsborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856184",
          "name": "Oststeinbek",
          "country_code": "DE",
          "slug": "oststeinbek",
          "canonical_path": "/cities/de/oststeinbek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856107",
          "name": "Ottendorf-Okrilla",
          "country_code": "DE",
          "slug": "ottendorf-okrilla",
          "canonical_path": "/cities/de/ottendorf-okrilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q632266",
          "name": "Otterberg",
          "country_code": "DE",
          "slug": "otterberg",
          "canonical_path": "/cities/de/otterberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q514493",
          "name": "Otterndorf",
          "country_code": "DE",
          "slug": "otterndorf",
          "canonical_path": "/cities/de/otterndorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2856014",
          "name": "Ottersberg",
          "country_code": "DE",
          "slug": "ottersberg",
          "canonical_path": "/cities/de/ottersberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2855984",
          "name": "Ottersweier",
          "country_code": "DE",
          "slug": "ottersweier",
          "canonical_path": "/cities/de/ottersweier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2855937",
          "name": "Ottobeuren",
          "country_code": "DE",
          "slug": "ottobeuren",
          "canonical_path": "/cities/de/ottobeuren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2855935",
          "name": "Ottobrunn bei München",
          "country_code": "DE",
          "slug": "ottobrunn-bei-munchen",
          "canonical_path": "/cities/de/ottobrunn-bei-munchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q562147",
          "name": "Ottweiler",
          "country_code": "DE",
          "slug": "ottweiler",
          "canonical_path": "/cities/de/ottweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2855881",
          "name": "Ovelgönne",
          "country_code": "DE",
          "slug": "ovelgonne",
          "canonical_path": "/cities/de/ovelgonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q245438",
          "name": "Overath",
          "country_code": "DE",
          "slug": "overath",
          "canonical_path": "/cities/de/overath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81006",
          "name": "Owen",
          "country_code": "DE",
          "slug": "owen",
          "canonical_path": "/cities/de/owen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2855794",
          "name": "Oyten",
          "country_code": "DE",
          "slug": "oyten",
          "canonical_path": "/cities/de/oyten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2971",
          "name": "Paderborn",
          "country_code": "DE",
          "slug": "paderborn",
          "canonical_path": "/cities/de/paderborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14957",
          "name": "Papenburg",
          "country_code": "DE",
          "slug": "papenburg",
          "canonical_path": "/cities/de/papenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503763",
          "name": "Pappenheim",
          "country_code": "DE",
          "slug": "pappenheim",
          "canonical_path": "/cities/de/pappenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q559010",
          "name": "Parchim",
          "country_code": "DE",
          "slug": "parchim",
          "canonical_path": "/cities/de/parchim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509925",
          "name": "Parsberg",
          "country_code": "DE",
          "slug": "parsberg",
          "canonical_path": "/cities/de/parsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q493924",
          "name": "Pasewalk",
          "country_code": "DE",
          "slug": "pasewalk",
          "canonical_path": "/cities/de/pasewalk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4190",
          "name": "Passau",
          "country_code": "DE",
          "slug": "passau",
          "canonical_path": "/cities/de/passau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q501636",
          "name": "Pattensen",
          "country_code": "DE",
          "slug": "pattensen",
          "canonical_path": "/cities/de/pattensen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5416160",
          "name": "Pausa-Mühltroff",
          "country_code": "DE",
          "slug": "pausa-muhltroff",
          "canonical_path": "/cities/de/pausa-muhltroff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10773",
          "name": "Pegau",
          "country_code": "DE",
          "slug": "pegau",
          "canonical_path": "/cities/de/pegau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q26461",
          "name": "Pegnitz",
          "country_code": "DE",
          "slug": "pegnitz",
          "canonical_path": "/cities/de/pegnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6850",
          "name": "Peine",
          "country_code": "DE",
          "slug": "peine",
          "canonical_path": "/cities/de/peine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2855029",
          "name": "Peißenberg",
          "country_code": "DE",
          "slug": "peissenberg",
          "canonical_path": "/cities/de/peissenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2855025",
          "name": "Peiting",
          "country_code": "DE",
          "slug": "peiting",
          "canonical_path": "/cities/de/peiting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q574791",
          "name": "Peitz/Picnjo",
          "country_code": "DE",
          "slug": "peitz-picnjo",
          "canonical_path": "/cities/de/peitz-picnjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71145",
          "name": "Penig",
          "country_code": "DE",
          "slug": "penig",
          "canonical_path": "/cities/de/penig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572013",
          "name": "Penkun",
          "country_code": "DE",
          "slug": "penkun",
          "canonical_path": "/cities/de/penkun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2854928",
          "name": "Pentling",
          "country_code": "DE",
          "slug": "pentling",
          "canonical_path": "/cities/de/pentling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q254271",
          "name": "Penzberg",
          "country_code": "DE",
          "slug": "penzberg",
          "canonical_path": "/cities/de/penzberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20314",
          "name": "Penzlin",
          "country_code": "DE",
          "slug": "penzlin",
          "canonical_path": "/cities/de/penzlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498540",
          "name": "Perleberg",
          "country_code": "DE",
          "slug": "perleberg",
          "canonical_path": "/cities/de/perleberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2854737",
          "name": "Petersaurach",
          "country_code": "DE",
          "slug": "petersaurach",
          "canonical_path": "/cities/de/petersaurach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810706",
          "name": "Petersberg",
          "country_code": "DE",
          "slug": "petersberg",
          "canonical_path": "/cities/de/petersberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q182857",
          "name": "Petershagen",
          "country_code": "DE",
          "slug": "petershagen",
          "canonical_path": "/cities/de/petershagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2854646",
          "name": "Petershausen",
          "country_code": "DE",
          "slug": "petershausen",
          "canonical_path": "/cities/de/petershausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490319",
          "name": "Pfaffenhofen a. d. Ilm",
          "country_code": "DE",
          "slug": "pfaffenhofen-a-d-ilm",
          "canonical_path": "/cities/de/pfaffenhofen-a-d-ilm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2854384",
          "name": "Pfaffenhofen an der Roth",
          "country_code": "DE",
          "slug": "pfaffenhofen-an-der-roth",
          "canonical_path": "/cities/de/pfaffenhofen-an-der-roth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2854266",
          "name": "Pfalzdorf",
          "country_code": "DE",
          "slug": "pfalzdorf",
          "canonical_path": "/cities/de/pfalzdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2854252",
          "name": "Pfalzgrafenweiler",
          "country_code": "DE",
          "slug": "pfalzgrafenweiler",
          "canonical_path": "/cities/de/pfalzgrafenweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q545359",
          "name": "Pfarrkirchen",
          "country_code": "DE",
          "slug": "pfarrkirchen",
          "canonical_path": "/cities/de/pfarrkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2854152",
          "name": "Pfedelbach",
          "country_code": "DE",
          "slug": "pfedelbach",
          "canonical_path": "/cities/de/pfedelbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3046",
          "name": "Pforzheim",
          "country_code": "DE",
          "slug": "pforzheim",
          "canonical_path": "/cities/de/pforzheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522639",
          "name": "Pfreimd",
          "country_code": "DE",
          "slug": "pfreimd",
          "canonical_path": "/cities/de/pfreimd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853949",
          "name": "Pfronten",
          "country_code": "DE",
          "slug": "pfronten",
          "canonical_path": "/cities/de/pfronten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82917",
          "name": "Pfullendorf",
          "country_code": "DE",
          "slug": "pfullendorf",
          "canonical_path": "/cities/de/pfullendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82053",
          "name": "Pfullingen",
          "country_code": "DE",
          "slug": "pfullingen",
          "canonical_path": "/cities/de/pfullingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516500",
          "name": "Pfungstadt",
          "country_code": "DE",
          "slug": "pfungstadt",
          "canonical_path": "/cities/de/pfungstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541161",
          "name": "Philippsburg",
          "country_code": "DE",
          "slug": "philippsburg",
          "canonical_path": "/cities/de/philippsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853855",
          "name": "Piding",
          "country_code": "DE",
          "slug": "piding",
          "canonical_path": "/cities/de/piding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853691",
          "name": "Pilsting",
          "country_code": "DE",
          "slug": "pilsting",
          "canonical_path": "/cities/de/pilsting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7074",
          "name": "Pinneberg",
          "country_code": "DE",
          "slug": "pinneberg",
          "canonical_path": "/cities/de/pinneberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14849",
          "name": "Pirmasens",
          "country_code": "DE",
          "slug": "pirmasens",
          "canonical_path": "/cities/de/pirmasens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6477",
          "name": "Pirna",
          "country_code": "DE",
          "slug": "pirna",
          "canonical_path": "/cities/de/pirna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853471",
          "name": "Plaidt",
          "country_code": "DE",
          "slug": "plaidt",
          "canonical_path": "/cities/de/plaidt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853463",
          "name": "Planegg",
          "country_code": "DE",
          "slug": "planegg",
          "canonical_path": "/cities/de/planegg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853435",
          "name": "Plankstadt",
          "country_code": "DE",
          "slug": "plankstadt",
          "canonical_path": "/cities/de/plankstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509566",
          "name": "Plattling",
          "country_code": "DE",
          "slug": "plattling",
          "canonical_path": "/cities/de/plattling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q53887",
          "name": "Plau am See",
          "country_code": "DE",
          "slug": "plau-am-see",
          "canonical_path": "/cities/de/plau-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552628",
          "name": "Plaue",
          "country_code": "DE",
          "slug": "plaue",
          "canonical_path": "/cities/de/plaue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3952",
          "name": "Plauen",
          "country_code": "DE",
          "slug": "plauen",
          "canonical_path": "/cities/de/plauen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853266",
          "name": "Pleidelsheim",
          "country_code": "DE",
          "slug": "pleidelsheim",
          "canonical_path": "/cities/de/pleidelsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853260",
          "name": "Pleinfeld",
          "country_code": "DE",
          "slug": "pleinfeld",
          "canonical_path": "/cities/de/pleinfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5542",
          "name": "Plettenberg",
          "country_code": "DE",
          "slug": "plettenberg",
          "canonical_path": "/cities/de/plettenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503149",
          "name": "Pleystein",
          "country_code": "DE",
          "slug": "pleystein",
          "canonical_path": "/cities/de/pleystein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853192",
          "name": "Pliezhausen",
          "country_code": "DE",
          "slug": "pliezhausen",
          "canonical_path": "/cities/de/pliezhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82274",
          "name": "Plochingen",
          "country_code": "DE",
          "slug": "plochingen",
          "canonical_path": "/cities/de/plochingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q497060",
          "name": "Plön",
          "country_code": "DE",
          "slug": "plon",
          "canonical_path": "/cities/de/plon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2853107",
          "name": "Plüderhausen",
          "country_code": "DE",
          "slug": "pluderhausen",
          "canonical_path": "/cities/de/pluderhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15474520",
          "name": "Pockau-Lengefeld",
          "country_code": "DE",
          "slug": "pockau-lengefeld",
          "canonical_path": "/cities/de/pockau-lengefeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569668",
          "name": "Pohlheim",
          "country_code": "DE",
          "slug": "pohlheim",
          "canonical_path": "/cities/de/pohlheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2852939",
          "name": "Poing",
          "country_code": "DE",
          "slug": "poing",
          "canonical_path": "/cities/de/poing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q629314",
          "name": "Polch",
          "country_code": "DE",
          "slug": "polch",
          "canonical_path": "/cities/de/polch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2852772",
          "name": "Pommelsbrunn",
          "country_code": "DE",
          "slug": "pommelsbrunn",
          "canonical_path": "/cities/de/pommelsbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14954",
          "name": "Porta Westfalica",
          "country_code": "DE",
          "slug": "porta-westfalica",
          "canonical_path": "/cities/de/porta-westfalica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505185",
          "name": "Pößneck",
          "country_code": "DE",
          "slug": "possneck",
          "canonical_path": "/cities/de/possneck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3206934",
          "name": "Postbauer-Heng",
          "country_code": "DE",
          "slug": "postbauer-heng",
          "canonical_path": "/cities/de/postbauer-heng/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:12054000",
          "name": "Potsdam",
          "country_code": "DE",
          "slug": "potsdam",
          "canonical_path": "/cities/de/potsdam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504762",
          "name": "Pottenstein",
          "country_code": "DE",
          "slug": "pottenstein",
          "canonical_path": "/cities/de/pottenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2852422",
          "name": "Pöttmes",
          "country_code": "DE",
          "slug": "pottmes",
          "canonical_path": "/cities/de/pottmes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q585620",
          "name": "Premnitz",
          "country_code": "DE",
          "slug": "premnitz",
          "canonical_path": "/cities/de/premnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q537214",
          "name": "Prenzlau",
          "country_code": "DE",
          "slug": "prenzlau",
          "canonical_path": "/cities/de/prenzlau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502947",
          "name": "Pressath",
          "country_code": "DE",
          "slug": "pressath",
          "canonical_path": "/cities/de/pressath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q182938",
          "name": "Preußisch Oldendorf",
          "country_code": "DE",
          "slug": "preussisch-oldendorf",
          "canonical_path": "/cities/de/preussisch-oldendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502636",
          "name": "Prichsenstadt",
          "country_code": "DE",
          "slug": "prichsenstadt",
          "canonical_path": "/cities/de/prichsenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2852101",
          "name": "Prien am Chiemsee",
          "country_code": "DE",
          "slug": "prien-am-chiemsee",
          "canonical_path": "/cities/de/prien-am-chiemsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509952",
          "name": "Pritzwalk",
          "country_code": "DE",
          "slug": "pritzwalk",
          "canonical_path": "/cities/de/pritzwalk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q253696",
          "name": "Prüm",
          "country_code": "DE",
          "slug": "prum",
          "canonical_path": "/cities/de/prum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q254778",
          "name": "Puchheim",
          "country_code": "DE",
          "slug": "puchheim",
          "canonical_path": "/cities/de/puchheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4113",
          "name": "Pulheim",
          "country_code": "DE",
          "slug": "pulheim",
          "canonical_path": "/cities/de/pulheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2851739",
          "name": "Pullach im Isartal",
          "country_code": "DE",
          "slug": "pullach-im-isartal",
          "canonical_path": "/cities/de/pullach-im-isartal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81743",
          "name": "Pulsnitz",
          "country_code": "DE",
          "slug": "pulsnitz",
          "canonical_path": "/cities/de/pulsnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572006",
          "name": "Putbus",
          "country_code": "DE",
          "slug": "putbus",
          "canonical_path": "/cities/de/putbus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565732",
          "name": "Putlitz",
          "country_code": "DE",
          "slug": "putlitz",
          "canonical_path": "/cities/de/putlitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q544908",
          "name": "Püttlingen",
          "country_code": "DE",
          "slug": "puttlingen",
          "canonical_path": "/cities/de/puttlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2851567",
          "name": "Putzbrunn",
          "country_code": "DE",
          "slug": "putzbrunn",
          "canonical_path": "/cities/de/putzbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2851543",
          "name": "Pyrbaum",
          "country_code": "DE",
          "slug": "pyrbaum",
          "canonical_path": "/cities/de/pyrbaum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498219",
          "name": "Quakenbrück",
          "country_code": "DE",
          "slug": "quakenbruck",
          "canonical_path": "/cities/de/quakenbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q40623",
          "name": "Quedlinburg",
          "country_code": "DE",
          "slug": "quedlinburg",
          "canonical_path": "/cities/de/quedlinburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518204",
          "name": "Querfurt",
          "country_code": "DE",
          "slug": "querfurt",
          "canonical_path": "/cities/de/querfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2851337",
          "name": "Quierschied",
          "country_code": "DE",
          "slug": "quierschied",
          "canonical_path": "/cities/de/quierschied/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81729",
          "name": "Radeberg",
          "country_code": "DE",
          "slug": "radeberg",
          "canonical_path": "/cities/de/radeberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8762",
          "name": "Radebeul",
          "country_code": "DE",
          "slug": "radebeul",
          "canonical_path": "/cities/de/radebeul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8770",
          "name": "Radeburg",
          "country_code": "DE",
          "slug": "radeburg",
          "canonical_path": "/cities/de/radeburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11039",
          "name": "Radevormwald",
          "country_code": "DE",
          "slug": "radevormwald",
          "canonical_path": "/cities/de/radevormwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850954",
          "name": "Radolfzell",
          "country_code": "DE",
          "slug": "radolfzell",
          "canonical_path": "/cities/de/radolfzell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16113",
          "name": "Radolfzell am Bodensee",
          "country_code": "DE",
          "slug": "radolfzell-am-bodensee",
          "canonical_path": "/cities/de/radolfzell-am-bodensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850942",
          "name": "Raesfeld",
          "country_code": "DE",
          "slug": "raesfeld",
          "canonical_path": "/cities/de/raesfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q701011",
          "name": "Raguhn-Jeßnitz",
          "country_code": "DE",
          "slug": "raguhn-jessnitz",
          "canonical_path": "/cities/de/raguhn-jessnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q182979",
          "name": "Rahden",
          "country_code": "DE",
          "slug": "rahden",
          "canonical_path": "/cities/de/rahden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850869",
          "name": "Rahm",
          "country_code": "DE",
          "slug": "rahm",
          "canonical_path": "/cities/de/rahm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850777",
          "name": "Raisdorf",
          "country_code": "DE",
          "slug": "raisdorf",
          "canonical_path": "/cities/de/raisdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22867",
          "name": "Ramstein-Miesenbach",
          "country_code": "DE",
          "slug": "ramstein-miesenbach",
          "canonical_path": "/cities/de/ramstein-miesenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850496",
          "name": "Rangendingen",
          "country_code": "DE",
          "slug": "rangendingen",
          "canonical_path": "/cities/de/rangendingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850490",
          "name": "Rangsdorf",
          "country_code": "DE",
          "slug": "rangsdorf",
          "canonical_path": "/cities/de/rangsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550275",
          "name": "Ranis",
          "country_code": "DE",
          "slug": "ranis",
          "canonical_path": "/cities/de/ranis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552481",
          "name": "Ransbach-Baumbach",
          "country_code": "DE",
          "slug": "ransbach-baumbach",
          "canonical_path": "/cities/de/ransbach-baumbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850425",
          "name": "Ranstadt",
          "country_code": "DE",
          "slug": "ranstadt",
          "canonical_path": "/cities/de/ranstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6874",
          "name": "Rastatt",
          "country_code": "DE",
          "slug": "rastatt",
          "canonical_path": "/cities/de/rastatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850253",
          "name": "Rastede",
          "country_code": "DE",
          "slug": "rastede",
          "canonical_path": "/cities/de/rastede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552604",
          "name": "Rastenberg",
          "country_code": "DE",
          "slug": "rastenberg",
          "canonical_path": "/cities/de/rastenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850235",
          "name": "Ratekau",
          "country_code": "DE",
          "slug": "ratekau",
          "canonical_path": "/cities/de/ratekau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525425",
          "name": "Rathenow",
          "country_code": "DE",
          "slug": "rathenow",
          "canonical_path": "/cities/de/rathenow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3791",
          "name": "Ratingen",
          "country_code": "DE",
          "slug": "ratingen",
          "canonical_path": "/cities/de/ratingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490025",
          "name": "Ratzeburg",
          "country_code": "DE",
          "slug": "ratzeburg",
          "canonical_path": "/cities/de/ratzeburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2850085",
          "name": "Raubling",
          "country_code": "DE",
          "slug": "raubling",
          "canonical_path": "/cities/de/raubling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q60556",
          "name": "Rauenberg",
          "country_code": "DE",
          "slug": "rauenberg",
          "canonical_path": "/cities/de/rauenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q623474",
          "name": "Raunheim",
          "country_code": "DE",
          "slug": "raunheim",
          "canonical_path": "/cities/de/raunheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q627435",
          "name": "Rauschenberg",
          "country_code": "DE",
          "slug": "rauschenberg",
          "canonical_path": "/cities/de/rauschenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6832",
          "name": "Ravensburg",
          "country_code": "DE",
          "slug": "ravensburg",
          "canonical_path": "/cities/de/ravensburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552513",
          "name": "Ravenstein",
          "country_code": "DE",
          "slug": "ravenstein",
          "canonical_path": "/cities/de/ravenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2849740",
          "name": "Rechberghausen",
          "country_code": "DE",
          "slug": "rechberghausen",
          "canonical_path": "/cities/de/rechberghausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2849689",
          "name": "Recke",
          "country_code": "DE",
          "slug": "recke",
          "canonical_path": "/cities/de/recke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3050",
          "name": "Recklinghausen",
          "country_code": "DE",
          "slug": "recklinghausen",
          "canonical_path": "/cities/de/recklinghausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2849568",
          "name": "Rednitzhembach",
          "country_code": "DE",
          "slug": "rednitzhembach",
          "canonical_path": "/cities/de/rednitzhembach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q243474",
          "name": "Rees",
          "country_code": "DE",
          "slug": "rees",
          "canonical_path": "/cities/de/rees/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q489059",
          "name": "Regen",
          "country_code": "DE",
          "slug": "regen",
          "canonical_path": "/cities/de/regen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2978",
          "name": "Regensburg",
          "country_code": "DE",
          "slug": "regensburg",
          "canonical_path": "/cities/de/regensburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2849476",
          "name": "Regenstauf",
          "country_code": "DE",
          "slug": "regenstauf",
          "canonical_path": "/cities/de/regenstauf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10774",
          "name": "Regis-Breitingen",
          "country_code": "DE",
          "slug": "regis-breitingen",
          "canonical_path": "/cities/de/regis-breitingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q49814",
          "name": "Rehau",
          "country_code": "DE",
          "slug": "rehau",
          "canonical_path": "/cities/de/rehau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541873",
          "name": "Rehburg-Loccum",
          "country_code": "DE",
          "slug": "rehburg-loccum",
          "canonical_path": "/cities/de/rehburg-loccum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565584",
          "name": "Rehna",
          "country_code": "DE",
          "slug": "rehna",
          "canonical_path": "/cities/de/rehna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2849197",
          "name": "Reichelsheim",
          "country_code": "DE",
          "slug": "reichelsheim",
          "canonical_path": "/cities/de/reichelsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2849198",
          "name": "Reichelsheim",
          "country_code": "DE",
          "slug": "reichelsheim-05-064",
          "canonical_path": "/cities/de/reichelsheim-05-064/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628635",
          "name": "Reichelsheim (Wetterau)",
          "country_code": "DE",
          "slug": "reichelsheim-wetterau",
          "canonical_path": "/cities/de/reichelsheim-wetterau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3209418",
          "name": "Reichenau",
          "country_code": "DE",
          "slug": "reichenau",
          "canonical_path": "/cities/de/reichenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2849118",
          "name": "Reichenbach an der Fils",
          "country_code": "DE",
          "slug": "reichenbach-an-der-fils",
          "canonical_path": "/cities/de/reichenbach-an-der-fils/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46849",
          "name": "Reichenbach im Vogtland",
          "country_code": "DE",
          "slug": "reichenbach-im-vogtland",
          "canonical_path": "/cities/de/reichenbach-im-vogtland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q157462",
          "name": "Reichenbach/O.L.",
          "country_code": "DE",
          "slug": "reichenbach-o-l",
          "canonical_path": "/cities/de/reichenbach-o-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2849156",
          "name": "Reichenbach/Vogtland",
          "country_code": "DE",
          "slug": "reichenbach-vogtland",
          "canonical_path": "/cities/de/reichenbach-vogtland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2849017",
          "name": "Reichertshofen",
          "country_code": "DE",
          "slug": "reichertshofen",
          "canonical_path": "/cities/de/reichertshofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2848867",
          "name": "Reilingen",
          "country_code": "DE",
          "slug": "reilingen",
          "canonical_path": "/cities/de/reilingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516405",
          "name": "Reinbek",
          "country_code": "DE",
          "slug": "reinbek",
          "canonical_path": "/cities/de/reinbek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2848811",
          "name": "Reinfeld",
          "country_code": "DE",
          "slug": "reinfeld",
          "canonical_path": "/cities/de/reinfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539463",
          "name": "Reinfeld (Holstein)",
          "country_code": "DE",
          "slug": "reinfeld-holstein",
          "canonical_path": "/cities/de/reinfeld-holstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q122753",
          "name": "Reinheim",
          "country_code": "DE",
          "slug": "reinheim",
          "canonical_path": "/cities/de/reinheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2848725",
          "name": "Reinsdorf",
          "country_code": "DE",
          "slug": "reinsdorf",
          "canonical_path": "/cities/de/reinsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2848621",
          "name": "Reisbach",
          "country_code": "DE",
          "slug": "reisbach",
          "canonical_path": "/cities/de/reisbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2848543",
          "name": "Reiskirchen",
          "country_code": "DE",
          "slug": "reiskirchen",
          "canonical_path": "/cities/de/reiskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2915151",
          "name": "Reken",
          "country_code": "DE",
          "slug": "reken",
          "canonical_path": "/cities/de/reken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2848340",
          "name": "Rellingen",
          "country_code": "DE",
          "slug": "rellingen",
          "canonical_path": "/cities/de/rellingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486548",
          "name": "Remagen",
          "country_code": "DE",
          "slug": "remagen",
          "canonical_path": "/cities/de/remagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3097",
          "name": "Remscheid",
          "country_code": "DE",
          "slug": "remscheid",
          "canonical_path": "/cities/de/remscheid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61668",
          "name": "Remseck am Neckar",
          "country_code": "DE",
          "slug": "remseck-am-neckar",
          "canonical_path": "/cities/de/remseck-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q534613",
          "name": "Renchen",
          "country_code": "DE",
          "slug": "renchen",
          "canonical_path": "/cities/de/renchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490457",
          "name": "Rendsburg",
          "country_code": "DE",
          "slug": "rendsburg",
          "canonical_path": "/cities/de/rendsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558712",
          "name": "Rennerod",
          "country_code": "DE",
          "slug": "rennerod",
          "canonical_path": "/cities/de/rennerod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2848181",
          "name": "Rennertshofen",
          "country_code": "DE",
          "slug": "rennertshofen",
          "canonical_path": "/cities/de/rennertshofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550676",
          "name": "Renningen",
          "country_code": "DE",
          "slug": "renningen",
          "canonical_path": "/cities/de/renningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2848110",
          "name": "Reppenstedt",
          "country_code": "DE",
          "slug": "reppenstedt",
          "canonical_path": "/cities/de/reppenstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536844",
          "name": "Rerik",
          "country_code": "DE",
          "slug": "rerik",
          "canonical_path": "/cities/de/rerik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q145741",
          "name": "Rethem (Aller)",
          "country_code": "DE",
          "slug": "rethem-aller",
          "canonical_path": "/cities/de/rethem-aller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3085",
          "name": "Reutlingen",
          "country_code": "DE",
          "slug": "reutlingen",
          "canonical_path": "/cities/de/reutlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2847710",
          "name": "Rhade",
          "country_code": "DE",
          "slug": "rhade",
          "canonical_path": "/cities/de/rhade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6896",
          "name": "Rheda-Wiedenbrueck",
          "country_code": "DE",
          "slug": "rheda-wiedenbrueck",
          "canonical_path": "/cities/de/rheda-wiedenbrueck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200581",
          "name": "Rhede",
          "country_code": "DE",
          "slug": "rhede",
          "canonical_path": "/cities/de/rhede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12547",
          "name": "Rheinbach",
          "country_code": "DE",
          "slug": "rheinbach",
          "canonical_path": "/cities/de/rheinbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16086",
          "name": "Rheinberg",
          "country_code": "DE",
          "slug": "rheinberg",
          "canonical_path": "/cities/de/rheinberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q166223",
          "name": "Rheinböllen",
          "country_code": "DE",
          "slug": "rheinbollen",
          "canonical_path": "/cities/de/rheinbollen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3890",
          "name": "Rheine",
          "country_code": "DE",
          "slug": "rheine",
          "canonical_path": "/cities/de/rheine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2847639",
          "name": "Rheinfelden",
          "country_code": "DE",
          "slug": "rheinfelden",
          "canonical_path": "/cities/de/rheinfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16077",
          "name": "Rheinfelden (Baden)",
          "country_code": "DE",
          "slug": "rheinfelden-baden",
          "canonical_path": "/cities/de/rheinfelden-baden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q537268",
          "name": "Rheinsberg",
          "country_code": "DE",
          "slug": "rheinsberg",
          "canonical_path": "/cities/de/rheinsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520595",
          "name": "Rheinstetten",
          "country_code": "DE",
          "slug": "rheinstetten",
          "canonical_path": "/cities/de/rheinstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552498",
          "name": "Rhens",
          "country_code": "DE",
          "slug": "rhens",
          "canonical_path": "/cities/de/rhens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2847586",
          "name": "Rheurdt",
          "country_code": "DE",
          "slug": "rheurdt",
          "canonical_path": "/cities/de/rheurdt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q532037",
          "name": "Rhinow",
          "country_code": "DE",
          "slug": "rhinow",
          "canonical_path": "/cities/de/rhinow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571959",
          "name": "Ribnitz-Damgarten",
          "country_code": "DE",
          "slug": "ribnitz-damgarten",
          "canonical_path": "/cities/de/ribnitz-damgarten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571963",
          "name": "Richtenberg",
          "country_code": "DE",
          "slug": "richtenberg",
          "canonical_path": "/cities/de/richtenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2847233",
          "name": "Riedenberg",
          "country_code": "DE",
          "slug": "riedenberg",
          "canonical_path": "/cities/de/riedenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503693",
          "name": "Riedenburg",
          "country_code": "DE",
          "slug": "riedenburg",
          "canonical_path": "/cities/de/riedenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2847195",
          "name": "Riedering",
          "country_code": "DE",
          "slug": "riedering",
          "canonical_path": "/cities/de/riedering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505967",
          "name": "Riedlingen",
          "country_code": "DE",
          "slug": "riedlingen",
          "canonical_path": "/cities/de/riedlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569656",
          "name": "Riedstadt",
          "country_code": "DE",
          "slug": "riedstadt",
          "canonical_path": "/cities/de/riedstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2847033",
          "name": "Riegelsberg",
          "country_code": "DE",
          "slug": "riegelsberg",
          "canonical_path": "/cities/de/riegelsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2847003",
          "name": "Rielasingen-Worblingen",
          "country_code": "DE",
          "slug": "rielasingen-worblingen",
          "canonical_path": "/cities/de/rielasingen-worblingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507487",
          "name": "Rieneck",
          "country_code": "DE",
          "slug": "rieneck",
          "canonical_path": "/cities/de/rieneck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8775",
          "name": "Riesa",
          "country_code": "DE",
          "slug": "riesa",
          "canonical_path": "/cities/de/riesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q225621",
          "name": "Rietberg",
          "country_code": "DE",
          "slug": "rietberg",
          "canonical_path": "/cities/de/rietberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2846754",
          "name": "Rimbach",
          "country_code": "DE",
          "slug": "rimbach",
          "canonical_path": "/cities/de/rimbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2846722",
          "name": "Rimpar",
          "country_code": "DE",
          "slug": "rimpar",
          "canonical_path": "/cities/de/rimpar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498571",
          "name": "Rinteln",
          "country_code": "DE",
          "slug": "rinteln",
          "canonical_path": "/cities/de/rinteln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2846398",
          "name": "Ritterhude",
          "country_code": "DE",
          "slug": "ritterhude",
          "canonical_path": "/cities/de/ritterhude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2846286",
          "name": "Röbel",
          "country_code": "DE",
          "slug": "robel",
          "canonical_path": "/cities/de/robel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20265",
          "name": "Röbel/Müritz",
          "country_code": "DE",
          "slug": "robel-muritz",
          "canonical_path": "/cities/de/robel-muritz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71180",
          "name": "Rochlitz",
          "country_code": "DE",
          "slug": "rochlitz",
          "canonical_path": "/cities/de/rochlitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22955",
          "name": "Rockenhausen",
          "country_code": "DE",
          "slug": "rockenhausen",
          "canonical_path": "/cities/de/rockenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536247",
          "name": "Rodalben",
          "country_code": "DE",
          "slug": "rodalben",
          "canonical_path": "/cities/de/rodalben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2846063",
          "name": "Rodenbach",
          "country_code": "DE",
          "slug": "rodenbach",
          "canonical_path": "/cities/de/rodenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565492",
          "name": "Rodenberg",
          "country_code": "DE",
          "slug": "rodenberg",
          "canonical_path": "/cities/de/rodenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572701",
          "name": "Rödental",
          "country_code": "DE",
          "slug": "rodental",
          "canonical_path": "/cities/de/rodental/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569688",
          "name": "Rödermark",
          "country_code": "DE",
          "slug": "rodermark",
          "canonical_path": "/cities/de/rodermark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46900",
          "name": "Rodewisch",
          "country_code": "DE",
          "slug": "rodewisch",
          "canonical_path": "/cities/de/rodewisch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7053",
          "name": "Rodgau",
          "country_code": "DE",
          "slug": "rodgau",
          "canonical_path": "/cities/de/rodgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q273949",
          "name": "Roding",
          "country_code": "DE",
          "slug": "roding",
          "canonical_path": "/cities/de/roding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2845919",
          "name": "Rödinghausen",
          "country_code": "DE",
          "slug": "rodinghausen",
          "canonical_path": "/cities/de/rodinghausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2844277",
          "name": "Roetgen",
          "country_code": "DE",
          "slug": "roetgen",
          "canonical_path": "/cities/de/roetgen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2845751",
          "name": "Rohr",
          "country_code": "DE",
          "slug": "rohr",
          "canonical_path": "/cities/de/rohr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2845721",
          "name": "Rohrbach",
          "country_code": "DE",
          "slug": "rohrbach",
          "canonical_path": "/cities/de/rohrbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2845723",
          "name": "Rohrbach",
          "country_code": "DE",
          "slug": "rohrbach-02-091",
          "canonical_path": "/cities/de/rohrbach-02-091/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2845641",
          "name": "Rohrdorf",
          "country_code": "DE",
          "slug": "rohrdorf",
          "canonical_path": "/cities/de/rohrdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2845565",
          "name": "Röhrmoos",
          "country_code": "DE",
          "slug": "rohrmoos",
          "canonical_path": "/cities/de/rohrmoos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11611211",
          "name": "Rombergpark-Lücklemberg",
          "country_code": "DE",
          "slug": "rombergpark-lucklemberg",
          "canonical_path": "/cities/de/rombergpark-lucklemberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q535758",
          "name": "Römhild",
          "country_code": "DE",
          "slug": "romhild",
          "canonical_path": "/cities/de/romhild/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2845273",
          "name": "Rommerskirchen",
          "country_code": "DE",
          "slug": "rommerskirchen",
          "canonical_path": "/cities/de/rommerskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q175771",
          "name": "Romrod",
          "country_code": "DE",
          "slug": "romrod",
          "canonical_path": "/cities/de/romrod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q555643",
          "name": "Ronnenberg",
          "country_code": "DE",
          "slug": "ronnenberg",
          "canonical_path": "/cities/de/ronnenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q621237",
          "name": "Rosbach v. d. Höhe",
          "country_code": "DE",
          "slug": "rosbach-v-d-hohe",
          "canonical_path": "/cities/de/rosbach-v-d-hohe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2845131",
          "name": "Rosdorf",
          "country_code": "DE",
          "slug": "rosdorf",
          "canonical_path": "/cities/de/rosdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q146373",
          "name": "Rosenfeld",
          "country_code": "DE",
          "slug": "rosenfeld",
          "canonical_path": "/cities/de/rosenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4007",
          "name": "Rosenheim",
          "country_code": "DE",
          "slug": "rosenheim",
          "canonical_path": "/cities/de/rosenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q624787",
          "name": "Rosenthal",
          "country_code": "DE",
          "slug": "rosenthal",
          "canonical_path": "/cities/de/rosenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q245376",
          "name": "Rösrath",
          "country_code": "DE",
          "slug": "rosrath",
          "canonical_path": "/cities/de/rosrath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2844756",
          "name": "Roßdorf",
          "country_code": "DE",
          "slug": "rossdorf",
          "canonical_path": "/cities/de/rossdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2844651",
          "name": "Roßleben",
          "country_code": "DE",
          "slug": "rossleben",
          "canonical_path": "/cities/de/rossleben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q59773282",
          "name": "Roßleben-Wiehe",
          "country_code": "DE",
          "slug": "rossleben-wiehe",
          "canonical_path": "/cities/de/rossleben-wiehe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2844616",
          "name": "Roßtal",
          "country_code": "DE",
          "slug": "rosstal",
          "canonical_path": "/cities/de/rosstal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71148",
          "name": "Roßwein",
          "country_code": "DE",
          "slug": "rosswein",
          "canonical_path": "/cities/de/rosswein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:13003000",
          "name": "Rostock",
          "country_code": "DE",
          "slug": "rostock",
          "canonical_path": "/cities/de/rostock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2844567",
          "name": "Rot am See",
          "country_code": "DE",
          "slug": "rot-am-see",
          "canonical_path": "/cities/de/rot-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2844437",
          "name": "Rotenburg",
          "country_code": "DE",
          "slug": "rotenburg",
          "canonical_path": "/cities/de/rotenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498560",
          "name": "Rotenburg (Wümme)",
          "country_code": "DE",
          "slug": "rotenburg-wumme",
          "canonical_path": "/cities/de/rotenburg-wumme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558631",
          "name": "Rotenburg a. d. Fulda",
          "country_code": "DE",
          "slug": "rotenburg-a-d-fulda",
          "canonical_path": "/cities/de/rotenburg-a-d-fulda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10776",
          "name": "Rötha",
          "country_code": "DE",
          "slug": "rotha",
          "canonical_path": "/cities/de/rotha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q521204",
          "name": "Röthenbach a.d.Pegnitz",
          "country_code": "DE",
          "slug": "rothenbach-a-d-pegnitz",
          "canonical_path": "/cities/de/rothenbach-a-d-pegnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2844126",
          "name": "Röthenbach an der Pegnitz",
          "country_code": "DE",
          "slug": "rothenbach-an-der-pegnitz",
          "canonical_path": "/cities/de/rothenbach-an-der-pegnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2844062",
          "name": "Rothenburg",
          "country_code": "DE",
          "slug": "rothenburg",
          "canonical_path": "/cities/de/rothenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q153494",
          "name": "Rothenburg ob der Tauber",
          "country_code": "DE",
          "slug": "rothenburg-ob-der-tauber",
          "canonical_path": "/cities/de/rothenburg-ob-der-tauber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q157095",
          "name": "Rothenburg/O.L.",
          "country_code": "DE",
          "slug": "rothenburg-o-l",
          "canonical_path": "/cities/de/rothenburg-o-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628163",
          "name": "Rothenfels",
          "country_code": "DE",
          "slug": "rothenfels",
          "canonical_path": "/cities/de/rothenfels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843775",
          "name": "Rottach-Egern",
          "country_code": "DE",
          "slug": "rottach-egern",
          "canonical_path": "/cities/de/rottach-egern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843729",
          "name": "Rottenburg",
          "country_code": "DE",
          "slug": "rottenburg",
          "canonical_path": "/cities/de/rottenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q170243",
          "name": "Rottenburg a.d.Laaber",
          "country_code": "DE",
          "slug": "rottenburg-a-d-laaber",
          "canonical_path": "/cities/de/rottenburg-a-d-laaber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7078",
          "name": "Rottenburg am Neckar",
          "country_code": "DE",
          "slug": "rottenburg-am-neckar",
          "canonical_path": "/cities/de/rottenburg-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843728",
          "name": "Rottenburg an der Laaber",
          "country_code": "DE",
          "slug": "rottenburg-an-der-laaber",
          "canonical_path": "/cities/de/rottenburg-an-der-laaber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843724",
          "name": "Rottendorf",
          "country_code": "DE",
          "slug": "rottendorf",
          "canonical_path": "/cities/de/rottendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843691",
          "name": "Röttgen",
          "country_code": "DE",
          "slug": "rottgen",
          "canonical_path": "/cities/de/rottgen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843682",
          "name": "Rotthalmünster",
          "country_code": "DE",
          "slug": "rotthalmunster",
          "canonical_path": "/cities/de/rotthalmunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506515",
          "name": "Röttingen",
          "country_code": "DE",
          "slug": "rottingen",
          "canonical_path": "/cities/de/rottingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82960",
          "name": "Rottweil",
          "country_code": "DE",
          "slug": "rottweil",
          "canonical_path": "/cities/de/rottweil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506282",
          "name": "Rötz",
          "country_code": "DE",
          "slug": "rotz",
          "canonical_path": "/cities/de/rotz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843415",
          "name": "Rudersberg",
          "country_code": "DE",
          "slug": "rudersberg",
          "canonical_path": "/cities/de/rudersberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628118",
          "name": "Rüdesheim am Rhein",
          "country_code": "DE",
          "slug": "rudesheim-am-rhein",
          "canonical_path": "/cities/de/rudesheim-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q517107",
          "name": "Rudolstadt",
          "country_code": "DE",
          "slug": "rudolstadt",
          "canonical_path": "/cities/de/rudolstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494627",
          "name": "Ruhla",
          "country_code": "DE",
          "slug": "ruhla",
          "canonical_path": "/cities/de/ruhla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572601",
          "name": "Ruhland",
          "country_code": "DE",
          "slug": "ruhland",
          "canonical_path": "/cities/de/ruhland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843203",
          "name": "Ruhpolding",
          "country_code": "DE",
          "slug": "ruhpolding",
          "canonical_path": "/cities/de/ruhpolding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843185",
          "name": "Ruhstorf",
          "country_code": "DE",
          "slug": "ruhstorf",
          "canonical_path": "/cities/de/ruhstorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2843146",
          "name": "Rülzheim",
          "country_code": "DE",
          "slug": "rulzheim",
          "canonical_path": "/cities/de/rulzheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q635806",
          "name": "Runkel",
          "country_code": "DE",
          "slug": "runkel",
          "canonical_path": "/cities/de/runkel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842960",
          "name": "Ruppichteroth",
          "country_code": "DE",
          "slug": "ruppichteroth",
          "canonical_path": "/cities/de/ruppichteroth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q538643",
          "name": "Rutesheim",
          "country_code": "DE",
          "slug": "rutesheim",
          "canonical_path": "/cities/de/rutesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11114",
          "name": "Rüthen",
          "country_code": "DE",
          "slug": "ruthen",
          "canonical_path": "/cities/de/ruthen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842728",
          "name": "Saal",
          "country_code": "DE",
          "slug": "saal",
          "canonical_path": "/cities/de/saal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518398",
          "name": "Saalburg-Ebersdorf",
          "country_code": "DE",
          "slug": "saalburg-ebersdorf",
          "canonical_path": "/cities/de/saalburg-ebersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842688",
          "name": "Saalfeld",
          "country_code": "DE",
          "slug": "saalfeld",
          "canonical_path": "/cities/de/saalfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q155984",
          "name": "Saalfeld/Saale",
          "country_code": "DE",
          "slug": "saalfeld-saale",
          "canonical_path": "/cities/de/saalfeld-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:10041100",
          "name": "Saarbruecken",
          "country_code": "DE",
          "slug": "saarbruecken",
          "canonical_path": "/cities/de/saarbruecken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q543639",
          "name": "Saarburg",
          "country_code": "DE",
          "slug": "saarburg",
          "canonical_path": "/cities/de/saarburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14912",
          "name": "Saarlouis",
          "country_code": "DE",
          "slug": "saarlouis",
          "canonical_path": "/cities/de/saarlouis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842621",
          "name": "Saarwellingen",
          "country_code": "DE",
          "slug": "saarwellingen",
          "canonical_path": "/cities/de/saarwellingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628865",
          "name": "Sachsenhagen",
          "country_code": "DE",
          "slug": "sachsenhagen",
          "canonical_path": "/cities/de/sachsenhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61920",
          "name": "Sachsenheim",
          "country_code": "DE",
          "slug": "sachsenheim",
          "canonical_path": "/cities/de/sachsenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842441",
          "name": "Saerbeck",
          "country_code": "DE",
          "slug": "saerbeck",
          "canonical_path": "/cities/de/saerbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11611473",
          "name": "Sahlkamp",
          "country_code": "DE",
          "slug": "sahlkamp",
          "canonical_path": "/cities/de/sahlkamp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842331",
          "name": "Salach",
          "country_code": "DE",
          "slug": "salach",
          "canonical_path": "/cities/de/salach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:6639586",
          "name": "Salem",
          "country_code": "DE",
          "slug": "salem",
          "canonical_path": "/cities/de/salem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842175",
          "name": "Salzbergen",
          "country_code": "DE",
          "slug": "salzbergen",
          "canonical_path": "/cities/de/salzbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3200",
          "name": "Salzgitter",
          "country_code": "DE",
          "slug": "salzgitter",
          "canonical_path": "/cities/de/salzgitter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842143",
          "name": "Salzhemmendorf",
          "country_code": "DE",
          "slug": "salzhemmendorf",
          "canonical_path": "/cities/de/salzhemmendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q183515",
          "name": "Salzkotten",
          "country_code": "DE",
          "slug": "salzkotten",
          "canonical_path": "/cities/de/salzkotten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486985",
          "name": "Salzwedel",
          "country_code": "DE",
          "slug": "salzwedel",
          "canonical_path": "/cities/de/salzwedel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2842109",
          "name": "Salzweg",
          "country_code": "DE",
          "slug": "salzweg",
          "canonical_path": "/cities/de/salzweg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529820",
          "name": "Sandau (Elbe)",
          "country_code": "DE",
          "slug": "sandau-elbe",
          "canonical_path": "/cities/de/sandau-elbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841895",
          "name": "Sande",
          "country_code": "DE",
          "slug": "sande",
          "canonical_path": "/cities/de/sande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841879",
          "name": "Sandersdorf",
          "country_code": "DE",
          "slug": "sandersdorf",
          "canonical_path": "/cities/de/sandersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2885796",
          "name": "Sandersdorf-Brehna",
          "country_code": "DE",
          "slug": "sandersdorf-brehna",
          "canonical_path": "/cities/de/sandersdorf-brehna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841835",
          "name": "Sandhausen",
          "country_code": "DE",
          "slug": "sandhausen",
          "canonical_path": "/cities/de/sandhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502434",
          "name": "Sangerhausen",
          "country_code": "DE",
          "slug": "sangerhausen",
          "canonical_path": "/cities/de/sangerhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4090",
          "name": "Sankt Augustin",
          "country_code": "DE",
          "slug": "sankt-augustin",
          "canonical_path": "/cities/de/sankt-augustin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841619",
          "name": "Sankt Georgen im Schwarzwald",
          "country_code": "DE",
          "slug": "sankt-georgen-im-schwarzwald",
          "canonical_path": "/cities/de/sankt-georgen-im-schwarzwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q186037",
          "name": "Sankt Goar",
          "country_code": "DE",
          "slug": "sankt-goar",
          "canonical_path": "/cities/de/sankt-goar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q564757",
          "name": "Sankt Goarshausen",
          "country_code": "DE",
          "slug": "sankt-goarshausen",
          "canonical_path": "/cities/de/sankt-goarshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841590",
          "name": "Sankt Ingbert",
          "country_code": "DE",
          "slug": "sankt-ingbert",
          "canonical_path": "/cities/de/sankt-ingbert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841577",
          "name": "Sankt Johann",
          "country_code": "DE",
          "slug": "sankt-johann",
          "canonical_path": "/cities/de/sankt-johann/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3272456",
          "name": "Sankt Leon-Rot",
          "country_code": "DE",
          "slug": "sankt-leon-rot",
          "canonical_path": "/cities/de/sankt-leon-rot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841463",
          "name": "Sankt Wendel",
          "country_code": "DE",
          "slug": "sankt-wendel",
          "canonical_path": "/cities/de/sankt-wendel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558620",
          "name": "Sarstedt",
          "country_code": "DE",
          "slug": "sarstedt",
          "canonical_path": "/cities/de/sarstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841380",
          "name": "Sasbach",
          "country_code": "DE",
          "slug": "sasbach",
          "canonical_path": "/cities/de/sasbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2794",
          "name": "Sassenberg",
          "country_code": "DE",
          "slug": "sassenberg",
          "canonical_path": "/cities/de/sassenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3208618",
          "name": "Sassenburg",
          "country_code": "DE",
          "slug": "sassenburg",
          "canonical_path": "/cities/de/sassenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q494631",
          "name": "Sassnitz",
          "country_code": "DE",
          "slug": "sassnitz",
          "canonical_path": "/cities/de/sassnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841290",
          "name": "Satteldorf",
          "country_code": "DE",
          "slug": "satteldorf",
          "canonical_path": "/cities/de/satteldorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841178",
          "name": "Sauerlach",
          "country_code": "DE",
          "slug": "sauerlach",
          "canonical_path": "/cities/de/sauerlach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71151",
          "name": "Sayda",
          "country_code": "DE",
          "slug": "sayda",
          "canonical_path": "/cities/de/sayda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2841039",
          "name": "Schaafheim",
          "country_code": "DE",
          "slug": "schaafheim",
          "canonical_path": "/cities/de/schaafheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2840634",
          "name": "Schäftlarn",
          "country_code": "DE",
          "slug": "schaftlarn",
          "canonical_path": "/cities/de/schaftlarn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q535603",
          "name": "Schalkau",
          "country_code": "DE",
          "slug": "schalkau",
          "canonical_path": "/cities/de/schalkau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2840555",
          "name": "Schalksmühle",
          "country_code": "DE",
          "slug": "schalksmuhle",
          "canonical_path": "/cities/de/schalksmuhle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2840526",
          "name": "Schallstadt",
          "country_code": "DE",
          "slug": "schallstadt",
          "canonical_path": "/cities/de/schallstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2840393",
          "name": "Scharbeutz",
          "country_code": "DE",
          "slug": "scharbeutz",
          "canonical_path": "/cities/de/scharbeutz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502580",
          "name": "Schauenstein",
          "country_code": "DE",
          "slug": "schauenstein",
          "canonical_path": "/cities/de/schauenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83144",
          "name": "Scheer",
          "country_code": "DE",
          "slug": "scheer",
          "canonical_path": "/cities/de/scheer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2840070",
          "name": "Scheeßel",
          "country_code": "DE",
          "slug": "scheessel",
          "canonical_path": "/cities/de/scheessel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57936",
          "name": "Scheibenberg",
          "country_code": "DE",
          "slug": "scheibenberg",
          "canonical_path": "/cities/de/scheibenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504872",
          "name": "Scheinfeld",
          "country_code": "DE",
          "slug": "scheinfeld",
          "canonical_path": "/cities/de/scheinfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515086",
          "name": "Schelklingen",
          "country_code": "DE",
          "slug": "schelklingen",
          "canonical_path": "/cities/de/schelklingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2839819",
          "name": "Schellerten",
          "country_code": "DE",
          "slug": "schellerten",
          "canonical_path": "/cities/de/schellerten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2839674",
          "name": "Schermbeck",
          "country_code": "DE",
          "slug": "schermbeck",
          "canonical_path": "/cities/de/schermbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q238951",
          "name": "Scheßlitz",
          "country_code": "DE",
          "slug": "schesslitz",
          "canonical_path": "/cities/de/schesslitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50889",
          "name": "Schieder-Schwalenberg",
          "country_code": "DE",
          "slug": "schieder-schwalenberg",
          "canonical_path": "/cities/de/schieder-schwalenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2839393",
          "name": "Schierling",
          "country_code": "DE",
          "slug": "schierling",
          "canonical_path": "/cities/de/schierling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2839345",
          "name": "Schiffdorf",
          "country_code": "DE",
          "slug": "schiffdorf",
          "canonical_path": "/cities/de/schiffdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q23002",
          "name": "Schifferstadt",
          "country_code": "DE",
          "slug": "schifferstadt",
          "canonical_path": "/cities/de/schifferstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2839316",
          "name": "Schiffweiler",
          "country_code": "DE",
          "slug": "schiffweiler",
          "canonical_path": "/cities/de/schiffweiler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2839258",
          "name": "Schilksee",
          "country_code": "DE",
          "slug": "schilksee",
          "canonical_path": "/cities/de/schilksee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502971",
          "name": "Schillingsfürst",
          "country_code": "DE",
          "slug": "schillingsfurst",
          "canonical_path": "/cities/de/schillingsfurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83039",
          "name": "Schiltach",
          "country_code": "DE",
          "slug": "schiltach",
          "canonical_path": "/cities/de/schiltach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2839101",
          "name": "Schipkau",
          "country_code": "DE",
          "slug": "schipkau",
          "canonical_path": "/cities/de/schipkau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81749",
          "name": "Schirgiswalde-Kirschau",
          "country_code": "DE",
          "slug": "schirgiswalde-kirschau",
          "canonical_path": "/cities/de/schirgiswalde-kirschau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12058",
          "name": "Schkeuditz",
          "country_code": "DE",
          "slug": "schkeuditz",
          "canonical_path": "/cities/de/schkeuditz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552485",
          "name": "Schkölen",
          "country_code": "DE",
          "slug": "schkolen",
          "canonical_path": "/cities/de/schkolen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2839010",
          "name": "Schladen",
          "country_code": "DE",
          "slug": "schladen",
          "canonical_path": "/cities/de/schladen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2838922",
          "name": "Schlangen",
          "country_code": "DE",
          "slug": "schlangen",
          "canonical_path": "/cities/de/schlangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2838918",
          "name": "Schlangenbad",
          "country_code": "DE",
          "slug": "schlangenbad",
          "canonical_path": "/cities/de/schlangenbad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q241358",
          "name": "Schleiden",
          "country_code": "DE",
          "slug": "schleiden",
          "canonical_path": "/cities/de/schleiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506738",
          "name": "Schleiz",
          "country_code": "DE",
          "slug": "schleiz",
          "canonical_path": "/cities/de/schleiz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q501661",
          "name": "Schleswig",
          "country_code": "DE",
          "slug": "schleswig",
          "canonical_path": "/cities/de/schleswig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57939",
          "name": "Schlettau",
          "country_code": "DE",
          "slug": "schlettau",
          "canonical_path": "/cities/de/schlettau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504914",
          "name": "Schleusingen",
          "country_code": "DE",
          "slug": "schleusingen",
          "canonical_path": "/cities/de/schleusingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507017",
          "name": "Schlieben",
          "country_code": "DE",
          "slug": "schlieben",
          "canonical_path": "/cities/de/schlieben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2838534",
          "name": "Schliengen",
          "country_code": "DE",
          "slug": "schliengen",
          "canonical_path": "/cities/de/schliengen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2838502",
          "name": "Schliersee",
          "country_code": "DE",
          "slug": "schliersee",
          "canonical_path": "/cities/de/schliersee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552477",
          "name": "Schlitz",
          "country_code": "DE",
          "slug": "schlitz",
          "canonical_path": "/cities/de/schlitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q225432",
          "name": "Schloß Holte-Stukenbrock",
          "country_code": "DE",
          "slug": "schloss-holte-stukenbrock",
          "canonical_path": "/cities/de/schloss-holte-stukenbrock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569671",
          "name": "Schlüchtern",
          "country_code": "DE",
          "slug": "schluchtern",
          "canonical_path": "/cities/de/schluchtern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515958",
          "name": "Schlüsselfeld",
          "country_code": "DE",
          "slug": "schlusselfeld",
          "canonical_path": "/cities/de/schlusselfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q489147",
          "name": "Schmalkalden",
          "country_code": "DE",
          "slug": "schmalkalden",
          "canonical_path": "/cities/de/schmalkalden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5628",
          "name": "Schmallenberg",
          "country_code": "DE",
          "slug": "schmallenberg",
          "canonical_path": "/cities/de/schmallenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2837954",
          "name": "Schmelz",
          "country_code": "DE",
          "slug": "schmelz",
          "canonical_path": "/cities/de/schmelz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2837706",
          "name": "Schmitten",
          "country_code": "DE",
          "slug": "schmitten",
          "canonical_path": "/cities/de/schmitten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572864",
          "name": "Schmölln",
          "country_code": "DE",
          "slug": "schmolln",
          "canonical_path": "/cities/de/schmolln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q638404",
          "name": "Schnackenburg",
          "country_code": "DE",
          "slug": "schnackenburg",
          "canonical_path": "/cities/de/schnackenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2837572",
          "name": "Schnaittach",
          "country_code": "DE",
          "slug": "schnaittach",
          "canonical_path": "/cities/de/schnaittach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506887",
          "name": "Schnaittenbach",
          "country_code": "DE",
          "slug": "schnaittenbach",
          "canonical_path": "/cities/de/schnaittenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503006",
          "name": "Schneverdingen",
          "country_code": "DE",
          "slug": "schneverdingen",
          "canonical_path": "/cities/de/schneverdingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3208118",
          "name": "Schöffengrund",
          "country_code": "DE",
          "slug": "schoffengrund",
          "canonical_path": "/cities/de/schoffengrund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2837134",
          "name": "Schöllnach",
          "country_code": "DE",
          "slug": "schollnach",
          "canonical_path": "/cities/de/schollnach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2837093",
          "name": "Schönaich",
          "country_code": "DE",
          "slug": "schonaich",
          "canonical_path": "/cities/de/schonaich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2837085",
          "name": "Schönau am Königssee",
          "country_code": "DE",
          "slug": "schonau-am-konigssee",
          "canonical_path": "/cities/de/schonau-am-konigssee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61731",
          "name": "Schönau im Schwarzwald",
          "country_code": "DE",
          "slug": "schonau-im-schwarzwald",
          "canonical_path": "/cities/de/schonau-im-schwarzwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2836809",
          "name": "Schönebeck",
          "country_code": "DE",
          "slug": "schonebeck",
          "canonical_path": "/cities/de/schonebeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46903",
          "name": "Schöneck/Vogtl.",
          "country_code": "DE",
          "slug": "schoneck-vogtl",
          "canonical_path": "/cities/de/schoneck-vogtl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2836761",
          "name": "Schönefeld",
          "country_code": "DE",
          "slug": "schonefeld",
          "canonical_path": "/cities/de/schonefeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2836746",
          "name": "Schöneiche",
          "country_code": "DE",
          "slug": "schoneiche",
          "canonical_path": "/cities/de/schoneiche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3207540",
          "name": "Schönenberg-Kübelberg",
          "country_code": "DE",
          "slug": "schonenberg-kubelberg",
          "canonical_path": "/cities/de/schonenberg-kubelberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522738",
          "name": "Schönewalde",
          "country_code": "DE",
          "slug": "schonewalde",
          "canonical_path": "/cities/de/schonewalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518663",
          "name": "Schongau",
          "country_code": "DE",
          "slug": "schongau",
          "canonical_path": "/cities/de/schongau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2836581",
          "name": "Schönheide",
          "country_code": "DE",
          "slug": "schonheide",
          "canonical_path": "/cities/de/schonheide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2836532",
          "name": "Schönkirchen",
          "country_code": "DE",
          "slug": "schonkirchen",
          "canonical_path": "/cities/de/schonkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529137",
          "name": "Schönsee",
          "country_code": "DE",
          "slug": "schonsee",
          "canonical_path": "/cities/de/schonsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2836455",
          "name": "Schonungen",
          "country_code": "DE",
          "slug": "schonungen",
          "canonical_path": "/cities/de/schonungen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61734",
          "name": "Schopfheim",
          "country_code": "DE",
          "slug": "schopfheim",
          "canonical_path": "/cities/de/schopfheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q262655",
          "name": "Schöppenstedt",
          "country_code": "DE",
          "slug": "schoppenstedt",
          "canonical_path": "/cities/de/schoppenstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2836390",
          "name": "Schöppingen",
          "country_code": "DE",
          "slug": "schoppingen",
          "canonical_path": "/cities/de/schoppingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q382061",
          "name": "Schortens",
          "country_code": "DE",
          "slug": "schortens",
          "canonical_path": "/cities/de/schortens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q26368",
          "name": "Schotten",
          "country_code": "DE",
          "slug": "schotten",
          "canonical_path": "/cities/de/schotten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82886",
          "name": "Schramberg",
          "country_code": "DE",
          "slug": "schramberg",
          "canonical_path": "/cities/de/schramberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550853",
          "name": "Schraplau",
          "country_code": "DE",
          "slug": "schraplau",
          "canonical_path": "/cities/de/schraplau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83292",
          "name": "Schriesheim",
          "country_code": "DE",
          "slug": "schriesheim",
          "canonical_path": "/cities/de/schriesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504746",
          "name": "Schrobenhausen",
          "country_code": "DE",
          "slug": "schrobenhausen",
          "canonical_path": "/cities/de/schrobenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83135",
          "name": "Schrozberg",
          "country_code": "DE",
          "slug": "schrozberg",
          "canonical_path": "/cities/de/schrozberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835787",
          "name": "Schulzendorf",
          "country_code": "DE",
          "slug": "schulzendorf",
          "canonical_path": "/cities/de/schulzendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835596",
          "name": "Schutterwald",
          "country_code": "DE",
          "slug": "schutterwald",
          "canonical_path": "/cities/de/schutterwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515046",
          "name": "Schüttorf",
          "country_code": "DE",
          "slug": "schuttorf",
          "canonical_path": "/cities/de/schuttorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536809",
          "name": "Schwaan",
          "country_code": "DE",
          "slug": "schwaan",
          "canonical_path": "/cities/de/schwaan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14889",
          "name": "Schwabach",
          "country_code": "DE",
          "slug": "schwabach",
          "canonical_path": "/cities/de/schwabach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509676",
          "name": "Schwabmünchen",
          "country_code": "DE",
          "slug": "schwabmunchen",
          "canonical_path": "/cities/de/schwabmunchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4037",
          "name": "Schwaebisch Gmuend",
          "country_code": "DE",
          "slug": "schwaebisch-gmuend",
          "canonical_path": "/cities/de/schwaebisch-gmuend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14910",
          "name": "Schwaebisch Hall",
          "country_code": "DE",
          "slug": "schwaebisch-hall",
          "canonical_path": "/cities/de/schwaebisch-hall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835421",
          "name": "Schwaig",
          "country_code": "DE",
          "slug": "schwaig",
          "canonical_path": "/cities/de/schwaig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507592",
          "name": "Schwaigern",
          "country_code": "DE",
          "slug": "schwaigern",
          "canonical_path": "/cities/de/schwaigern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835385",
          "name": "Schwaikheim",
          "country_code": "DE",
          "slug": "schwaikheim",
          "canonical_path": "/cities/de/schwaikheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835382",
          "name": "Schwalbach",
          "country_code": "DE",
          "slug": "schwalbach",
          "canonical_path": "/cities/de/schwalbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q632432",
          "name": "Schwalbach am Taunus",
          "country_code": "DE",
          "slug": "schwalbach-am-taunus",
          "canonical_path": "/cities/de/schwalbach-am-taunus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516599",
          "name": "Schwalmstadt",
          "country_code": "DE",
          "slug": "schwalmstadt",
          "canonical_path": "/cities/de/schwalmstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835342",
          "name": "Schwalmtal",
          "country_code": "DE",
          "slug": "schwalmtal",
          "canonical_path": "/cities/de/schwalmtal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:7117230",
          "name": "Schwanau",
          "country_code": "DE",
          "slug": "schwanau",
          "canonical_path": "/cities/de/schwanau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504768",
          "name": "Schwandorf",
          "country_code": "DE",
          "slug": "schwandorf",
          "canonical_path": "/cities/de/schwandorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835297",
          "name": "Schwandorf in Bayern",
          "country_code": "DE",
          "slug": "schwandorf-in-bayern",
          "canonical_path": "/cities/de/schwandorf-in-bayern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50862",
          "name": "Schwanebeck",
          "country_code": "DE",
          "slug": "schwanebeck",
          "canonical_path": "/cities/de/schwanebeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835260",
          "name": "Schwanewede",
          "country_code": "DE",
          "slug": "schwanewede",
          "canonical_path": "/cities/de/schwanewede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835220",
          "name": "Schwarmstedt",
          "country_code": "DE",
          "slug": "schwarmstedt",
          "canonical_path": "/cities/de/schwarmstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q59775088",
          "name": "Schwarzatal",
          "country_code": "DE",
          "slug": "schwarzatal",
          "canonical_path": "/cities/de/schwarzatal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503422",
          "name": "Schwarzenbach a.d.Saale",
          "country_code": "DE",
          "slug": "schwarzenbach-a-d-saale",
          "canonical_path": "/cities/de/schwarzenbach-a-d-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502392",
          "name": "Schwarzenbach a.Wald",
          "country_code": "DE",
          "slug": "schwarzenbach-a-wald",
          "canonical_path": "/cities/de/schwarzenbach-a-wald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2835018",
          "name": "Schwarzenbach an der Saale",
          "country_code": "DE",
          "slug": "schwarzenbach-an-der-saale",
          "canonical_path": "/cities/de/schwarzenbach-an-der-saale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569643",
          "name": "Schwarzenbek",
          "country_code": "DE",
          "slug": "schwarzenbek",
          "canonical_path": "/cities/de/schwarzenbek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2834978",
          "name": "Schwarzenberg",
          "country_code": "DE",
          "slug": "schwarzenberg",
          "canonical_path": "/cities/de/schwarzenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57953",
          "name": "Schwarzenberg/Erzgeb.",
          "country_code": "DE",
          "slug": "schwarzenberg-erzgeb",
          "canonical_path": "/cities/de/schwarzenberg-erzgeb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2834955",
          "name": "Schwarzenbruck",
          "country_code": "DE",
          "slug": "schwarzenbruck",
          "canonical_path": "/cities/de/schwarzenbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2834945",
          "name": "Schwarzenfeld",
          "country_code": "DE",
          "slug": "schwarzenfeld",
          "canonical_path": "/cities/de/schwarzenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q584474",
          "name": "Schwarzheide",
          "country_code": "DE",
          "slug": "schwarzheide",
          "canonical_path": "/cities/de/schwarzheide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16008",
          "name": "Schwedt",
          "country_code": "DE",
          "slug": "schwedt",
          "canonical_path": "/cities/de/schwedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q212570",
          "name": "Schweich",
          "country_code": "DE",
          "slug": "schweich",
          "canonical_path": "/cities/de/schweich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4126",
          "name": "Schweinfurt",
          "country_code": "DE",
          "slug": "schweinfurt",
          "canonical_path": "/cities/de/schweinfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11293",
          "name": "Schwelm",
          "country_code": "DE",
          "slug": "schwelm",
          "canonical_path": "/cities/de/schwelm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2834334",
          "name": "Schwendi",
          "country_code": "DE",
          "slug": "schwendi",
          "canonical_path": "/cities/de/schwendi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q640402",
          "name": "Schwentinental",
          "country_code": "DE",
          "slug": "schwentinental",
          "canonical_path": "/cities/de/schwentinental/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6863",
          "name": "Schwerte",
          "country_code": "DE",
          "slug": "schwerte",
          "canonical_path": "/cities/de/schwerte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3232",
          "name": "Schwetzingen",
          "country_code": "DE",
          "slug": "schwetzingen",
          "canonical_path": "/cities/de/schwetzingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2834226",
          "name": "Schwieberdingen",
          "country_code": "DE",
          "slug": "schwieberdingen",
          "canonical_path": "/cities/de/schwieberdingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6483",
          "name": "Sebnitz",
          "country_code": "DE",
          "slug": "sebnitz",
          "canonical_path": "/cities/de/sebnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2834086",
          "name": "Sechtem",
          "country_code": "DE",
          "slug": "sechtem",
          "canonical_path": "/cities/de/sechtem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2833866",
          "name": "Seefeld",
          "country_code": "DE",
          "slug": "seefeld",
          "canonical_path": "/cities/de/seefeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q513395",
          "name": "Seehausen (Altmark)",
          "country_code": "DE",
          "slug": "seehausen-altmark",
          "canonical_path": "/cities/de/seehausen-altmark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3337504",
          "name": "Seeheim-Jugenheim",
          "country_code": "DE",
          "slug": "seeheim-jugenheim",
          "canonical_path": "/cities/de/seeheim-jugenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50856",
          "name": "Seeland",
          "country_code": "DE",
          "slug": "seeland",
          "canonical_path": "/cities/de/seeland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2833704",
          "name": "Seelbach",
          "country_code": "DE",
          "slug": "seelbach",
          "canonical_path": "/cities/de/seelbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q587069",
          "name": "Seelow",
          "country_code": "DE",
          "slug": "seelow",
          "canonical_path": "/cities/de/seelow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16052",
          "name": "Seelze",
          "country_code": "DE",
          "slug": "seelze",
          "canonical_path": "/cities/de/seelze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q540934",
          "name": "Seesen",
          "country_code": "DE",
          "slug": "seesen",
          "canonical_path": "/cities/de/seesen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2833564",
          "name": "Seevetal",
          "country_code": "DE",
          "slug": "seevetal",
          "canonical_path": "/cities/de/seevetal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q625095",
          "name": "Sehnde",
          "country_code": "DE",
          "slug": "sehnde",
          "canonical_path": "/cities/de/sehnde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q165195",
          "name": "Seifhennersdorf",
          "country_code": "DE",
          "slug": "seifhennersdorf",
          "canonical_path": "/cities/de/seifhennersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q49812",
          "name": "Selb",
          "country_code": "DE",
          "slug": "selb",
          "canonical_path": "/cities/de/selb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q60090",
          "name": "Selbitz",
          "country_code": "DE",
          "slug": "selbitz",
          "canonical_path": "/cities/de/selbitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516529",
          "name": "Seligenstadt",
          "country_code": "DE",
          "slug": "seligenstadt",
          "canonical_path": "/cities/de/seligenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10935",
          "name": "Selm",
          "country_code": "DE",
          "slug": "selm",
          "canonical_path": "/cities/de/selm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2833139",
          "name": "Selters",
          "country_code": "DE",
          "slug": "selters",
          "canonical_path": "/cities/de/selters/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q685486",
          "name": "Selters (Westerwald)",
          "country_code": "DE",
          "slug": "selters-westerwald",
          "canonical_path": "/cities/de/selters-westerwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2740",
          "name": "Sendenhorst",
          "country_code": "DE",
          "slug": "sendenhorst",
          "canonical_path": "/cities/de/sendenhorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q491754",
          "name": "Senftenberg",
          "country_code": "DE",
          "slug": "senftenberg",
          "canonical_path": "/cities/de/senftenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2832939",
          "name": "Sersheim",
          "country_code": "DE",
          "slug": "sersheim",
          "canonical_path": "/cities/de/sersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572667",
          "name": "Seßlach",
          "country_code": "DE",
          "slug": "sesslach",
          "canonical_path": "/cities/de/sesslach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2832884",
          "name": "Seubersdorf",
          "country_code": "DE",
          "slug": "seubersdorf",
          "canonical_path": "/cities/de/seubersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3208620",
          "name": "Sickte",
          "country_code": "DE",
          "slug": "sickte",
          "canonical_path": "/cities/de/sickte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14870",
          "name": "Siegburg",
          "country_code": "DE",
          "slug": "siegburg",
          "canonical_path": "/cities/de/siegburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3167",
          "name": "Siegen",
          "country_code": "DE",
          "slug": "siegen",
          "canonical_path": "/cities/de/siegen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2832424",
          "name": "Siegsdorf",
          "country_code": "DE",
          "slug": "siegsdorf",
          "canonical_path": "/cities/de/siegsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82858",
          "name": "Sigmaringen",
          "country_code": "DE",
          "slug": "sigmaringen",
          "canonical_path": "/cities/de/sigmaringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q253236",
          "name": "Simbach a.Inn",
          "country_code": "DE",
          "slug": "simbach-a-inn",
          "canonical_path": "/cities/de/simbach-a-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2832043",
          "name": "Simbach am Inn",
          "country_code": "DE",
          "slug": "simbach-am-inn",
          "canonical_path": "/cities/de/simbach-am-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2832023",
          "name": "Simmerath",
          "country_code": "DE",
          "slug": "simmerath",
          "canonical_path": "/cities/de/simmerath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q275636",
          "name": "Simmern/ Hunsrück",
          "country_code": "DE",
          "slug": "simmern-hunsruck",
          "canonical_path": "/cities/de/simmern-hunsruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4019",
          "name": "Sindelfingen",
          "country_code": "DE",
          "slug": "sindelfingen",
          "canonical_path": "/cities/de/sindelfingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6979",
          "name": "Singen Hohentwiel",
          "country_code": "DE",
          "slug": "singen-hohentwiel",
          "canonical_path": "/cities/de/singen-hohentwiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831896",
          "name": "Sinn",
          "country_code": "DE",
          "slug": "sinn",
          "canonical_path": "/cities/de/sinn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831888",
          "name": "Sinnersdorf",
          "country_code": "DE",
          "slug": "sinnersdorf",
          "canonical_path": "/cities/de/sinnersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14950",
          "name": "Sinsheim",
          "country_code": "DE",
          "slug": "sinsheim",
          "canonical_path": "/cities/de/sinsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831853",
          "name": "Sinzheim",
          "country_code": "DE",
          "slug": "sinzheim",
          "canonical_path": "/cities/de/sinzheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q548989",
          "name": "Sinzig",
          "country_code": "DE",
          "slug": "sinzig",
          "canonical_path": "/cities/de/sinzig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831847",
          "name": "Sinzing",
          "country_code": "DE",
          "slug": "sinzing",
          "canonical_path": "/cities/de/sinzing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831802",
          "name": "Sittensen",
          "country_code": "DE",
          "slug": "sittensen",
          "canonical_path": "/cities/de/sittensen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6149",
          "name": "Soest",
          "country_code": "DE",
          "slug": "soest",
          "canonical_path": "/cities/de/soest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831699",
          "name": "Sögel",
          "country_code": "DE",
          "slug": "sogel",
          "canonical_path": "/cities/de/sogel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831685",
          "name": "Sohland",
          "country_code": "DE",
          "slug": "sohland",
          "canonical_path": "/cities/de/sohland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831671",
          "name": "Söhlde",
          "country_code": "DE",
          "slug": "sohlde",
          "canonical_path": "/cities/de/sohlde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831597",
          "name": "Sölde",
          "country_code": "DE",
          "slug": "solde",
          "canonical_path": "/cities/de/solde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831588",
          "name": "Sölderholz",
          "country_code": "DE",
          "slug": "solderholz",
          "canonical_path": "/cities/de/solderholz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05122000",
          "name": "Solingen",
          "country_code": "DE",
          "slug": "solingen",
          "canonical_path": "/cities/de/solingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q566156",
          "name": "Solms",
          "country_code": "DE",
          "slug": "solms",
          "canonical_path": "/cities/de/solms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504754",
          "name": "Soltau",
          "country_code": "DE",
          "slug": "soltau",
          "canonical_path": "/cities/de/soltau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530794",
          "name": "Sömmerda",
          "country_code": "DE",
          "slug": "sommerda",
          "canonical_path": "/cities/de/sommerda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q517407",
          "name": "Sondershausen",
          "country_code": "DE",
          "slug": "sondershausen",
          "canonical_path": "/cities/de/sondershausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q499278",
          "name": "Sonneberg",
          "country_code": "DE",
          "slug": "sonneberg",
          "canonical_path": "/cities/de/sonneberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831239",
          "name": "Sonnefeld",
          "country_code": "DE",
          "slug": "sonnefeld",
          "canonical_path": "/cities/de/sonnefeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831194",
          "name": "Sonnenberg",
          "country_code": "DE",
          "slug": "sonnenberg",
          "canonical_path": "/cities/de/sonnenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q544969",
          "name": "Sonnewalde",
          "country_code": "DE",
          "slug": "sonnewalde",
          "canonical_path": "/cities/de/sonnewalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831105",
          "name": "Sonsbeck",
          "country_code": "DE",
          "slug": "sonsbeck",
          "canonical_path": "/cities/de/sonsbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2831091",
          "name": "Sontheim an der Brenz",
          "country_code": "DE",
          "slug": "sontheim-an-der-brenz",
          "canonical_path": "/cities/de/sontheim-an-der-brenz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q162845",
          "name": "Sonthofen",
          "country_code": "DE",
          "slug": "sonthofen",
          "canonical_path": "/cities/de/sonthofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q549971",
          "name": "Sontra",
          "country_code": "DE",
          "slug": "sontra",
          "canonical_path": "/cities/de/sontra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2830880",
          "name": "Sottrum",
          "country_code": "DE",
          "slug": "sottrum",
          "canonical_path": "/cities/de/sottrum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q519688",
          "name": "Spaichingen",
          "country_code": "DE",
          "slug": "spaichingen",
          "canonical_path": "/cities/de/spaichingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q312335",
          "name": "Spalt",
          "country_code": "DE",
          "slug": "spalt",
          "canonical_path": "/cities/de/spalt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628667",
          "name": "Spangenberg",
          "country_code": "DE",
          "slug": "spangenberg",
          "canonical_path": "/cities/de/spangenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q683808",
          "name": "Speicher",
          "country_code": "DE",
          "slug": "speicher",
          "canonical_path": "/cities/de/speicher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2830670",
          "name": "Speichersdorf",
          "country_code": "DE",
          "slug": "speichersdorf",
          "canonical_path": "/cities/de/speichersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2830652",
          "name": "Spelle",
          "country_code": "DE",
          "slug": "spelle",
          "canonical_path": "/cities/de/spelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q53904",
          "name": "Spenge",
          "country_code": "DE",
          "slug": "spenge",
          "canonical_path": "/cities/de/spenge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6829",
          "name": "Speyer",
          "country_code": "DE",
          "slug": "speyer",
          "canonical_path": "/cities/de/speyer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2830452",
          "name": "Spiesen-Elversberg",
          "country_code": "DE",
          "slug": "spiesen-elversberg",
          "canonical_path": "/cities/de/spiesen-elversberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q622891",
          "name": "Springe",
          "country_code": "DE",
          "slug": "springe",
          "canonical_path": "/cities/de/springe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11340",
          "name": "Sprockhövel",
          "country_code": "DE",
          "slug": "sprockhovel",
          "canonical_path": "/cities/de/sprockhovel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q145008",
          "name": "St. Blasien",
          "country_code": "DE",
          "slug": "st-blasien",
          "canonical_path": "/cities/de/st-blasien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83036",
          "name": "St. Georgen im Schwarzwald",
          "country_code": "DE",
          "slug": "st-georgen-im-schwarzwald",
          "canonical_path": "/cities/de/st-georgen-im-schwarzwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14907",
          "name": "St. Ingbert",
          "country_code": "DE",
          "slug": "st-ingbert",
          "canonical_path": "/cities/de/st-ingbert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569676",
          "name": "St. Wendel",
          "country_code": "DE",
          "slug": "st-wendel",
          "canonical_path": "/cities/de/st-wendel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6949",
          "name": "Stade",
          "country_code": "DE",
          "slug": "stade",
          "canonical_path": "/cities/de/stade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8240",
          "name": "Stadt Wehlen",
          "country_code": "DE",
          "slug": "stadt-wehlen",
          "canonical_path": "/cities/de/stadt-wehlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q573514",
          "name": "Stadtallendorf",
          "country_code": "DE",
          "slug": "stadtallendorf",
          "canonical_path": "/cities/de/stadtallendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503300",
          "name": "Stadtbergen",
          "country_code": "DE",
          "slug": "stadtbergen",
          "canonical_path": "/cities/de/stadtbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q544501",
          "name": "Stadthagen",
          "country_code": "DE",
          "slug": "stadthagen",
          "canonical_path": "/cities/de/stadthagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552637",
          "name": "Stadtilm",
          "country_code": "DE",
          "slug": "stadtilm",
          "canonical_path": "/cities/de/stadtilm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200567",
          "name": "Stadtlohn",
          "country_code": "DE",
          "slug": "stadtlohn",
          "canonical_path": "/cities/de/stadtlohn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q58572",
          "name": "Stadtoldendorf",
          "country_code": "DE",
          "slug": "stadtoldendorf",
          "canonical_path": "/cities/de/stadtoldendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502939",
          "name": "Stadtprozelten",
          "country_code": "DE",
          "slug": "stadtprozelten",
          "canonical_path": "/cities/de/stadtprozelten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520088",
          "name": "Stadtroda",
          "country_code": "DE",
          "slug": "stadtroda",
          "canonical_path": "/cities/de/stadtroda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q427292",
          "name": "Stadtsteinach",
          "country_code": "DE",
          "slug": "stadtsteinach",
          "canonical_path": "/cities/de/stadtsteinach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2829657",
          "name": "Stahnsdorf",
          "country_code": "DE",
          "slug": "stahnsdorf",
          "canonical_path": "/cities/de/stahnsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61936",
          "name": "Starnberg",
          "country_code": "DE",
          "slug": "starnberg",
          "canonical_path": "/cities/de/starnberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525409",
          "name": "Staßfurt",
          "country_code": "DE",
          "slug": "stassfurt",
          "canonical_path": "/cities/de/stassfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q528062",
          "name": "Staufen im Breisgau",
          "country_code": "DE",
          "slug": "staufen-im-breisgau",
          "canonical_path": "/cities/de/staufen-im-breisgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50986",
          "name": "Stavenhagen",
          "country_code": "DE",
          "slug": "stavenhagen",
          "canonical_path": "/cities/de/stavenhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2829145",
          "name": "Stegaurach",
          "country_code": "DE",
          "slug": "stegaurach",
          "canonical_path": "/cities/de/stegaurach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q263974",
          "name": "Steinau an der Straße",
          "country_code": "DE",
          "slug": "steinau-an-der-strasse",
          "canonical_path": "/cities/de/steinau-an-der-strasse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q622573",
          "name": "Steinbach (Taunus)",
          "country_code": "DE",
          "slug": "steinbach-taunus",
          "canonical_path": "/cities/de/steinbach-taunus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2828737",
          "name": "Steinbach am Taunus",
          "country_code": "DE",
          "slug": "steinbach-am-taunus",
          "canonical_path": "/cities/de/steinbach-am-taunus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q551984",
          "name": "Steinbach-Hallenberg",
          "country_code": "DE",
          "slug": "steinbach-hallenberg",
          "canonical_path": "/cities/de/steinbach-hallenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2828228",
          "name": "Steinen",
          "country_code": "DE",
          "slug": "steinen",
          "canonical_path": "/cities/de/steinen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2828206",
          "name": "Steinenbronn",
          "country_code": "DE",
          "slug": "steinenbronn",
          "canonical_path": "/cities/de/steinenbronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2828136",
          "name": "Steinfeld",
          "country_code": "DE",
          "slug": "steinfeld",
          "canonical_path": "/cities/de/steinfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16018",
          "name": "Steinfurt",
          "country_code": "DE",
          "slug": "steinfurt",
          "canonical_path": "/cities/de/steinfurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2828050",
          "name": "Steinhagen",
          "country_code": "DE",
          "slug": "steinhagen",
          "canonical_path": "/cities/de/steinhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q202377",
          "name": "Steinheim",
          "country_code": "DE",
          "slug": "steinheim",
          "canonical_path": "/cities/de/steinheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2827989",
          "name": "Steinheim am Albuch",
          "country_code": "DE",
          "slug": "steinheim-am-albuch",
          "canonical_path": "/cities/de/steinheim-am-albuch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61707",
          "name": "Steinheim an der Murr",
          "country_code": "DE",
          "slug": "steinheim-an-der-murr",
          "canonical_path": "/cities/de/steinheim-an-der-murr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2827574",
          "name": "Stelle",
          "country_code": "DE",
          "slug": "stelle",
          "canonical_path": "/cities/de/stelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7082",
          "name": "Stendal",
          "country_code": "DE",
          "slug": "stendal",
          "canonical_path": "/cities/de/stendal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2827406",
          "name": "Stephanskirchen",
          "country_code": "DE",
          "slug": "stephanskirchen",
          "canonical_path": "/cities/de/stephanskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q157266",
          "name": "Sternberg",
          "country_code": "DE",
          "slug": "sternberg",
          "canonical_path": "/cities/de/sternberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2827216",
          "name": "Stetten am Kalten Markt",
          "country_code": "DE",
          "slug": "stetten-am-kalten-markt",
          "canonical_path": "/cities/de/stetten-am-kalten-markt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2827166",
          "name": "Steyerberg",
          "country_code": "DE",
          "slug": "steyerberg",
          "canonical_path": "/cities/de/steyerberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61752",
          "name": "Stockach",
          "country_code": "DE",
          "slug": "stockach",
          "canonical_path": "/cities/de/stockach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2826861",
          "name": "Stockelsdorf",
          "country_code": "DE",
          "slug": "stockelsdorf",
          "canonical_path": "/cities/de/stockelsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2826743",
          "name": "Stockheim",
          "country_code": "DE",
          "slug": "stockheim",
          "canonical_path": "/cities/de/stockheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2826670",
          "name": "Stockstadt am Main",
          "country_code": "DE",
          "slug": "stockstadt-am-main",
          "canonical_path": "/cities/de/stockstadt-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2826671",
          "name": "Stockstadt am Rhein",
          "country_code": "DE",
          "slug": "stockstadt-am-rhein",
          "canonical_path": "/cities/de/stockstadt-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2826659",
          "name": "Stockum",
          "country_code": "DE",
          "slug": "stockum",
          "canonical_path": "/cities/de/stockum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2826584",
          "name": "Stollberg",
          "country_code": "DE",
          "slug": "stollberg",
          "canonical_path": "/cities/de/stollberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57955",
          "name": "Stollberg/Erzgeb.",
          "country_code": "DE",
          "slug": "stollberg-erzgeb",
          "canonical_path": "/cities/de/stollberg-erzgeb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8243",
          "name": "Stolpen",
          "country_code": "DE",
          "slug": "stolpen",
          "canonical_path": "/cities/de/stolpen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2826503",
          "name": "Stolzenau",
          "country_code": "DE",
          "slug": "stolzenau",
          "canonical_path": "/cities/de/stolzenau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2826403",
          "name": "Storkow",
          "country_code": "DE",
          "slug": "storkow",
          "canonical_path": "/cities/de/storkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q586991",
          "name": "Storkow (Mark)",
          "country_code": "DE",
          "slug": "storkow-mark",
          "canonical_path": "/cities/de/storkow-mark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550848",
          "name": "Stößen",
          "country_code": "DE",
          "slug": "stossen",
          "canonical_path": "/cities/de/stossen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8856",
          "name": "Straelen",
          "country_code": "DE",
          "slug": "straelen",
          "canonical_path": "/cities/de/straelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4065",
          "name": "Stralsund",
          "country_code": "DE",
          "slug": "stralsund",
          "canonical_path": "/cities/de/stralsund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2826258",
          "name": "Strasburg",
          "country_code": "DE",
          "slug": "strasburg",
          "canonical_path": "/cities/de/strasburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565624",
          "name": "Strasburg (Uckermark)",
          "country_code": "DE",
          "slug": "strasburg-uckermark",
          "canonical_path": "/cities/de/strasburg-uckermark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7027",
          "name": "Straubing",
          "country_code": "DE",
          "slug": "straubing",
          "canonical_path": "/cities/de/straubing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q490521",
          "name": "Strausberg",
          "country_code": "DE",
          "slug": "strausberg",
          "canonical_path": "/cities/de/strausberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8792",
          "name": "Strehla",
          "country_code": "DE",
          "slug": "strehla",
          "canonical_path": "/cities/de/strehla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q628290",
          "name": "Stromberg",
          "country_code": "DE",
          "slug": "stromberg",
          "canonical_path": "/cities/de/stromberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2825638",
          "name": "Strullendorf",
          "country_code": "DE",
          "slug": "strullendorf",
          "canonical_path": "/cities/de/strullendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q527783",
          "name": "Stühlingen",
          "country_code": "DE",
          "slug": "stuhlingen",
          "canonical_path": "/cities/de/stuhlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2825422",
          "name": "Stuhr",
          "country_code": "DE",
          "slug": "stuhr",
          "canonical_path": "/cities/de/stuhr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22884",
          "name": "Stutensee",
          "country_code": "DE",
          "slug": "stutensee",
          "canonical_path": "/cities/de/stutensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:08111000",
          "name": "Stuttgart",
          "country_code": "DE",
          "slug": "stuttgart",
          "canonical_path": "/cities/de/stuttgart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q703023",
          "name": "Südliches Anhalt",
          "country_code": "DE",
          "slug": "sudliches-anhalt",
          "canonical_path": "/cities/de/sudliches-anhalt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2824998",
          "name": "Südlohn",
          "country_code": "DE",
          "slug": "sudlohn",
          "canonical_path": "/cities/de/sudlohn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14891",
          "name": "Suhl",
          "country_code": "DE",
          "slug": "suhl",
          "canonical_path": "/cities/de/suhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q268485",
          "name": "Sulingen",
          "country_code": "DE",
          "slug": "sulingen",
          "canonical_path": "/cities/de/sulingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11611370",
          "name": "Sülldorf",
          "country_code": "DE",
          "slug": "sulldorf",
          "canonical_path": "/cities/de/sulldorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83167",
          "name": "Sulz am Neckar",
          "country_code": "DE",
          "slug": "sulz-am-neckar",
          "canonical_path": "/cities/de/sulz-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2824837",
          "name": "Sulzbach",
          "country_code": "DE",
          "slug": "sulzbach",
          "canonical_path": "/cities/de/sulzbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2824806",
          "name": "Sulzbach am Main",
          "country_code": "DE",
          "slug": "sulzbach-am-main",
          "canonical_path": "/cities/de/sulzbach-am-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2824804",
          "name": "Sulzbach an der Murr",
          "country_code": "DE",
          "slug": "sulzbach-an-der-murr",
          "canonical_path": "/cities/de/sulzbach-an-der-murr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503633",
          "name": "Sulzbach-Rosenberg",
          "country_code": "DE",
          "slug": "sulzbach-rosenberg",
          "canonical_path": "/cities/de/sulzbach-rosenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q616258",
          "name": "Sulzbach/ Saar",
          "country_code": "DE",
          "slug": "sulzbach-saar",
          "canonical_path": "/cities/de/sulzbach-saar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505849",
          "name": "Sulzburg",
          "country_code": "DE",
          "slug": "sulzburg",
          "canonical_path": "/cities/de/sulzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2824655",
          "name": "Sundern",
          "country_code": "DE",
          "slug": "sundern",
          "canonical_path": "/cities/de/sundern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6015",
          "name": "Sundern (Sauerland)",
          "country_code": "DE",
          "slug": "sundern-sauerland",
          "canonical_path": "/cities/de/sundern-sauerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2824564",
          "name": "Süsel",
          "country_code": "DE",
          "slug": "susel",
          "canonical_path": "/cities/de/susel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80849",
          "name": "Süßen",
          "country_code": "DE",
          "slug": "sussen",
          "canonical_path": "/cities/de/sussen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503751",
          "name": "Syke",
          "country_code": "DE",
          "slug": "syke",
          "canonical_path": "/cities/de/syke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2824420",
          "name": "Tacherting",
          "country_code": "DE",
          "slug": "tacherting",
          "canonical_path": "/cities/de/tacherting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61733",
          "name": "Tamm",
          "country_code": "DE",
          "slug": "tamm",
          "canonical_path": "/cities/de/tamm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50859",
          "name": "Tangerhütte",
          "country_code": "DE",
          "slug": "tangerhutte",
          "canonical_path": "/cities/de/tangerhutte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498565",
          "name": "Tangermünde",
          "country_code": "DE",
          "slug": "tangermunde",
          "canonical_path": "/cities/de/tangermunde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2824245",
          "name": "Tangstedt",
          "country_code": "DE",
          "slug": "tangstedt",
          "canonical_path": "/cities/de/tangstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q585043",
          "name": "Tann (Rhön)",
          "country_code": "DE",
          "slug": "tann-rhon",
          "canonical_path": "/cities/de/tann-rhon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q706897",
          "name": "Tanna",
          "country_code": "DE",
          "slug": "tanna",
          "canonical_path": "/cities/de/tanna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2823978",
          "name": "Tarp",
          "country_code": "DE",
          "slug": "tarp",
          "canonical_path": "/cities/de/tarp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61724",
          "name": "Tauberbischofsheim",
          "country_code": "DE",
          "slug": "tauberbischofsheim",
          "canonical_path": "/cities/de/tauberbischofsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12050",
          "name": "Taucha",
          "country_code": "DE",
          "slug": "taucha",
          "canonical_path": "/cities/de/taucha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2823810",
          "name": "Taufkirchen",
          "country_code": "DE",
          "slug": "taufkirchen",
          "canonical_path": "/cities/de/taufkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2823812",
          "name": "Taufkirchen",
          "country_code": "DE",
          "slug": "taufkirchen-02-091",
          "canonical_path": "/cities/de/taufkirchen-02-091/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569664",
          "name": "Taunusstein",
          "country_code": "DE",
          "slug": "taunusstein",
          "canonical_path": "/cities/de/taunusstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q181745",
          "name": "Tecklenburg",
          "country_code": "DE",
          "slug": "tecklenburg",
          "canonical_path": "/cities/de/tecklenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q260130",
          "name": "Tegernsee",
          "country_code": "DE",
          "slug": "tegernsee",
          "canonical_path": "/cities/de/tegernsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2823611",
          "name": "Teisendorf",
          "country_code": "DE",
          "slug": "teisendorf",
          "canonical_path": "/cities/de/teisendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2789",
          "name": "Telgte",
          "country_code": "DE",
          "slug": "telgte",
          "canonical_path": "/cities/de/telgte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572512",
          "name": "Teltow",
          "country_code": "DE",
          "slug": "teltow",
          "canonical_path": "/cities/de/teltow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q519157",
          "name": "Templin",
          "country_code": "DE",
          "slug": "templin",
          "canonical_path": "/cities/de/templin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520054",
          "name": "Tengen",
          "country_code": "DE",
          "slug": "tengen",
          "canonical_path": "/cities/de/tengen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2823504",
          "name": "Teningen",
          "country_code": "DE",
          "slug": "teningen",
          "canonical_path": "/cities/de/teningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q326057",
          "name": "Tessin",
          "country_code": "DE",
          "slug": "tessin",
          "canonical_path": "/cities/de/tessin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q645748",
          "name": "Teterow",
          "country_code": "DE",
          "slug": "teterow",
          "canonical_path": "/cities/de/teterow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506323",
          "name": "Tettnang",
          "country_code": "DE",
          "slug": "tettnang",
          "canonical_path": "/cities/de/tettnang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q507731",
          "name": "Teublitz",
          "country_code": "DE",
          "slug": "teublitz",
          "canonical_path": "/cities/de/teublitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q534715",
          "name": "Teuchern",
          "country_code": "DE",
          "slug": "teuchern",
          "canonical_path": "/cities/de/teuchern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569554",
          "name": "Teupitz",
          "country_code": "DE",
          "slug": "teupitz",
          "canonical_path": "/cities/de/teupitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502604",
          "name": "Teuschnitz",
          "country_code": "DE",
          "slug": "teuschnitz",
          "canonical_path": "/cities/de/teuschnitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2823230",
          "name": "Teutschenthal",
          "country_code": "DE",
          "slug": "teutschenthal",
          "canonical_path": "/cities/de/teutschenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506460",
          "name": "Thale",
          "country_code": "DE",
          "slug": "thale",
          "canonical_path": "/cities/de/thale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2823081",
          "name": "Thalheim",
          "country_code": "DE",
          "slug": "thalheim",
          "canonical_path": "/cities/de/thalheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57993",
          "name": "Thalheim/Erzgeb.",
          "country_code": "DE",
          "slug": "thalheim-erzgeb",
          "canonical_path": "/cities/de/thalheim-erzgeb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2823044",
          "name": "Thalmässing",
          "country_code": "DE",
          "slug": "thalmassing",
          "canonical_path": "/cities/de/thalmassing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q266156",
          "name": "Thannhausen",
          "country_code": "DE",
          "slug": "thannhausen",
          "canonical_path": "/cities/de/thannhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8245",
          "name": "Tharandt",
          "country_code": "DE",
          "slug": "tharandt",
          "canonical_path": "/cities/de/tharandt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518346",
          "name": "Themar",
          "country_code": "DE",
          "slug": "themar",
          "canonical_path": "/cities/de/themar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2822713",
          "name": "Tholey",
          "country_code": "DE",
          "slug": "tholey",
          "canonical_path": "/cities/de/tholey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57996",
          "name": "Thum",
          "country_code": "DE",
          "slug": "thum",
          "canonical_path": "/cities/de/thum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2822401",
          "name": "Tiefenbronn",
          "country_code": "DE",
          "slug": "tiefenbronn",
          "canonical_path": "/cities/de/tiefenbronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2822160",
          "name": "Timmendorfer Strand",
          "country_code": "DE",
          "slug": "timmendorfer-strand",
          "canonical_path": "/cities/de/timmendorfer-strand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q205436",
          "name": "Tirschenreuth",
          "country_code": "DE",
          "slug": "tirschenreuth",
          "canonical_path": "/cities/de/tirschenreuth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505504",
          "name": "Titisee-Neustadt",
          "country_code": "DE",
          "slug": "titisee-neustadt",
          "canonical_path": "/cities/de/titisee-neustadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505158",
          "name": "Tittmoning",
          "country_code": "DE",
          "slug": "tittmoning",
          "canonical_path": "/cities/de/tittmoning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2822073",
          "name": "Titz",
          "country_code": "DE",
          "slug": "titz",
          "canonical_path": "/cities/de/titz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61665",
          "name": "Todtnau",
          "country_code": "DE",
          "slug": "todtnau",
          "canonical_path": "/cities/de/todtnau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q256375",
          "name": "Töging a.Inn",
          "country_code": "DE",
          "slug": "toging-a-inn",
          "canonical_path": "/cities/de/toging-a-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2821963",
          "name": "Töging am Inn",
          "country_code": "DE",
          "slug": "toging-am-inn",
          "canonical_path": "/cities/de/toging-am-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q163570",
          "name": "Tönisvorst",
          "country_code": "DE",
          "slug": "tonisvorst",
          "canonical_path": "/cities/de/tonisvorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q21018",
          "name": "Tönning",
          "country_code": "DE",
          "slug": "tonning",
          "canonical_path": "/cities/de/tonning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q12062",
          "name": "Torgau",
          "country_code": "DE",
          "slug": "torgau",
          "canonical_path": "/cities/de/torgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q571970",
          "name": "Torgelow",
          "country_code": "DE",
          "slug": "torgelow",
          "canonical_path": "/cities/de/torgelow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504812",
          "name": "Tornesch",
          "country_code": "DE",
          "slug": "tornesch",
          "canonical_path": "/cities/de/tornesch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2821736",
          "name": "Tostedt",
          "country_code": "DE",
          "slug": "tostedt",
          "canonical_path": "/cities/de/tostedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q540919",
          "name": "Traben-Trarbach",
          "country_code": "DE",
          "slug": "traben-trarbach",
          "canonical_path": "/cities/de/traben-trarbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2821558",
          "name": "Trappenkamp",
          "country_code": "DE",
          "slug": "trappenkamp",
          "canonical_path": "/cities/de/trappenkamp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q257379",
          "name": "Traunreut",
          "country_code": "DE",
          "slug": "traunreut",
          "canonical_path": "/cities/de/traunreut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q253119",
          "name": "Traunstein",
          "country_code": "DE",
          "slug": "traunstein",
          "canonical_path": "/cities/de/traunstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570114",
          "name": "Trebbin",
          "country_code": "DE",
          "slug": "trebbin",
          "canonical_path": "/cities/de/trebbin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10777",
          "name": "Trebsen/Mulde",
          "country_code": "DE",
          "slug": "trebsen-mulde",
          "canonical_path": "/cities/de/trebsen-mulde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2821416",
          "name": "Trebur",
          "country_code": "DE",
          "slug": "trebur",
          "canonical_path": "/cities/de/trebur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q546754",
          "name": "Treffurt",
          "country_code": "DE",
          "slug": "treffurt",
          "canonical_path": "/cities/de/treffurt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515941",
          "name": "Trendelburg",
          "country_code": "DE",
          "slug": "trendelburg",
          "canonical_path": "/cities/de/trendelburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q252466",
          "name": "Treuchtlingen",
          "country_code": "DE",
          "slug": "treuchtlingen",
          "canonical_path": "/cities/de/treuchtlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q46909",
          "name": "Treuen",
          "country_code": "DE",
          "slug": "treuen",
          "canonical_path": "/cities/de/treuen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q625078",
          "name": "Treuenbrietzen",
          "country_code": "DE",
          "slug": "treuenbrietzen",
          "canonical_path": "/cities/de/treuenbrietzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2821216",
          "name": "Triberg",
          "country_code": "DE",
          "slug": "triberg",
          "canonical_path": "/cities/de/triberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83271",
          "name": "Triberg im Schwarzwald",
          "country_code": "DE",
          "slug": "triberg-im-schwarzwald",
          "canonical_path": "/cities/de/triberg-im-schwarzwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572060",
          "name": "Tribsees",
          "country_code": "DE",
          "slug": "tribsees",
          "canonical_path": "/cities/de/tribsees/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3138",
          "name": "Trier",
          "country_code": "DE",
          "slug": "trier",
          "canonical_path": "/cities/de/trier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2821143",
          "name": "Triftern",
          "country_code": "DE",
          "slug": "triftern",
          "canonical_path": "/cities/de/triftern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q266510",
          "name": "Triptis",
          "country_code": "DE",
          "slug": "triptis",
          "canonical_path": "/cities/de/triptis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2821085",
          "name": "Trittau",
          "country_code": "DE",
          "slug": "trittau",
          "canonical_path": "/cities/de/trittau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82285",
          "name": "Trochtelfingen",
          "country_code": "DE",
          "slug": "trochtelfingen",
          "canonical_path": "/cities/de/trochtelfingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3900",
          "name": "Troisdorf",
          "country_code": "DE",
          "slug": "troisdorf",
          "canonical_path": "/cities/de/troisdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505529",
          "name": "Trossingen",
          "country_code": "DE",
          "slug": "trossingen",
          "canonical_path": "/cities/de/trossingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q31644",
          "name": "Trostberg",
          "country_code": "DE",
          "slug": "trostberg",
          "canonical_path": "/cities/de/trostberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820964",
          "name": "Trostberg an der Alz",
          "country_code": "DE",
          "slug": "trostberg-an-der-alz",
          "canonical_path": "/cities/de/trostberg-an-der-alz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3806",
          "name": "Tuebingen",
          "country_code": "DE",
          "slug": "tuebingen",
          "canonical_path": "/cities/de/tuebingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820791",
          "name": "Tungendorf",
          "country_code": "DE",
          "slug": "tungendorf",
          "canonical_path": "/cities/de/tungendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820775",
          "name": "Tuntenhausen",
          "country_code": "DE",
          "slug": "tuntenhausen",
          "canonical_path": "/cities/de/tuntenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820752",
          "name": "Türkheim",
          "country_code": "DE",
          "slug": "turkheim",
          "canonical_path": "/cities/de/turkheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15987",
          "name": "Tuttlingen",
          "country_code": "DE",
          "slug": "tuttlingen",
          "canonical_path": "/cities/de/tuttlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820692",
          "name": "Tutzing",
          "country_code": "DE",
          "slug": "tutzing",
          "canonical_path": "/cities/de/tutzing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820649",
          "name": "Twist",
          "country_code": "DE",
          "slug": "twist",
          "canonical_path": "/cities/de/twist/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503418",
          "name": "Twistringen",
          "country_code": "DE",
          "slug": "twistringen",
          "canonical_path": "/cities/de/twistringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q204966",
          "name": "Übach-Palenberg",
          "country_code": "DE",
          "slug": "ubach-palenberg",
          "canonical_path": "/cities/de/ubach-palenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820583",
          "name": "Überherrn",
          "country_code": "DE",
          "slug": "uberherrn",
          "canonical_path": "/cities/de/uberherrn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q332952",
          "name": "Überlingen",
          "country_code": "DE",
          "slug": "uberlingen",
          "canonical_path": "/cities/de/uberlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3272450",
          "name": "Ubstadt-Weiher",
          "country_code": "DE",
          "slug": "ubstadt-weiher",
          "canonical_path": "/cities/de/ubstadt-weiher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q516707",
          "name": "Uebigau-Wahrenbrück",
          "country_code": "DE",
          "slug": "uebigau-wahrenbruck",
          "canonical_path": "/cities/de/uebigau-wahrenbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506700",
          "name": "Ueckermünde",
          "country_code": "DE",
          "slug": "ueckermunde",
          "canonical_path": "/cities/de/ueckermunde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820465",
          "name": "Uedem",
          "country_code": "DE",
          "slug": "uedem",
          "canonical_path": "/cities/de/uedem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820458",
          "name": "Uelsen",
          "country_code": "DE",
          "slug": "uelsen",
          "canonical_path": "/cities/de/uelsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15989",
          "name": "Uelzen",
          "country_code": "DE",
          "slug": "uelzen",
          "canonical_path": "/cities/de/uelzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1404",
          "name": "Uetersen",
          "country_code": "DE",
          "slug": "uetersen",
          "canonical_path": "/cities/de/uetersen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820436",
          "name": "Uetze",
          "country_code": "DE",
          "slug": "uetze",
          "canonical_path": "/cities/de/uetze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572410",
          "name": "Uffenheim",
          "country_code": "DE",
          "slug": "uffenheim",
          "canonical_path": "/cities/de/uffenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80826",
          "name": "Uhingen",
          "country_code": "DE",
          "slug": "uhingen",
          "canonical_path": "/cities/de/uhingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3205690",
          "name": "Uhldingen-Mühlhofen",
          "country_code": "DE",
          "slug": "uhldingen-muhlhofen",
          "canonical_path": "/cities/de/uhldingen-muhlhofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3205691",
          "name": "Ühlingen-Birkendorf",
          "country_code": "DE",
          "slug": "uhlingen-birkendorf",
          "canonical_path": "/cities/de/uhlingen-birkendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3012",
          "name": "Ulm",
          "country_code": "DE",
          "slug": "ulm",
          "canonical_path": "/cities/de/ulm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q570101",
          "name": "Ulmen",
          "country_code": "DE",
          "slug": "ulmen",
          "canonical_path": "/cities/de/ulmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q565534",
          "name": "Ulrichstein",
          "country_code": "DE",
          "slug": "ulrichstein",
          "canonical_path": "/cities/de/ulrichstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2820190",
          "name": "Umkirch",
          "country_code": "DE",
          "slug": "umkirch",
          "canonical_path": "/cities/de/umkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q535689",
          "name": "Ummerstadt",
          "country_code": "DE",
          "slug": "ummerstadt",
          "canonical_path": "/cities/de/ummerstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2917788",
          "name": "Universitäts- und Hansestadt Greifswald",
          "country_code": "DE",
          "slug": "universitats-und-hansestadt-greifswald",
          "canonical_path": "/cities/de/universitats-und-hansestadt-greifswald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q498589",
          "name": "Unkel",
          "country_code": "DE",
          "slug": "unkel",
          "canonical_path": "/cities/de/unkel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3949",
          "name": "Unna",
          "country_code": "DE",
          "slug": "unna",
          "canonical_path": "/cities/de/unna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2819568",
          "name": "Unterföhring",
          "country_code": "DE",
          "slug": "unterfohring",
          "canonical_path": "/cities/de/unterfohring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2819497",
          "name": "Untergriesbach",
          "country_code": "DE",
          "slug": "untergriesbach",
          "canonical_path": "/cities/de/untergriesbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2819479",
          "name": "Untergruppenbach",
          "country_code": "DE",
          "slug": "untergruppenbach",
          "canonical_path": "/cities/de/untergruppenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2819465",
          "name": "Unterhaching",
          "country_code": "DE",
          "slug": "unterhaching",
          "canonical_path": "/cities/de/unterhaching/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2819399",
          "name": "Unterhausen",
          "country_code": "DE",
          "slug": "unterhausen",
          "canonical_path": "/cities/de/unterhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2819081",
          "name": "Untermeitingen",
          "country_code": "DE",
          "slug": "untermeitingen",
          "canonical_path": "/cities/de/untermeitingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q59096",
          "name": "Unterschleißheim",
          "country_code": "DE",
          "slug": "unterschleissheim",
          "canonical_path": "/cities/de/unterschleissheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3206285",
          "name": "Urbach",
          "country_code": "DE",
          "slug": "urbach",
          "canonical_path": "/cities/de/urbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q29076",
          "name": "Usedom",
          "country_code": "DE",
          "slug": "usedom",
          "canonical_path": "/cities/de/usedom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q622565",
          "name": "Usingen",
          "country_code": "DE",
          "slug": "usingen",
          "canonical_path": "/cities/de/usingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q159814",
          "name": "Uslar",
          "country_code": "DE",
          "slug": "uslar",
          "canonical_path": "/cities/de/uslar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q551954",
          "name": "Vacha",
          "country_code": "DE",
          "slug": "vacha",
          "canonical_path": "/cities/de/vacha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:11611456",
          "name": "Vahrenheide",
          "country_code": "DE",
          "slug": "vahrenheide",
          "canonical_path": "/cities/de/vahrenheide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61928",
          "name": "Vaihingen an der Enz",
          "country_code": "DE",
          "slug": "vaihingen-an-der-enz",
          "canonical_path": "/cities/de/vaihingen-an-der-enz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536559",
          "name": "Vallendar",
          "country_code": "DE",
          "slug": "vallendar",
          "canonical_path": "/cities/de/vallendar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q496056",
          "name": "Varel",
          "country_code": "DE",
          "slug": "varel",
          "canonical_path": "/cities/de/varel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817818",
          "name": "Vaterstetten",
          "country_code": "DE",
          "slug": "vaterstetten",
          "canonical_path": "/cities/de/vaterstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817813",
          "name": "Vechelde",
          "country_code": "DE",
          "slug": "vechelde",
          "canonical_path": "/cities/de/vechelde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16096",
          "name": "Vechta",
          "country_code": "DE",
          "slug": "vechta",
          "canonical_path": "/cities/de/vechta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817736",
          "name": "Veitsbronn",
          "country_code": "DE",
          "slug": "veitsbronn",
          "canonical_path": "/cities/de/veitsbronn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817733",
          "name": "Veitshöchheim",
          "country_code": "DE",
          "slug": "veitshochheim",
          "canonical_path": "/cities/de/veitshochheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3840",
          "name": "Velbert",
          "country_code": "DE",
          "slug": "velbert",
          "canonical_path": "/cities/de/velbert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504758",
          "name": "Velburg",
          "country_code": "DE",
          "slug": "velburg",
          "canonical_path": "/cities/de/velburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200549",
          "name": "Velen",
          "country_code": "DE",
          "slug": "velen",
          "canonical_path": "/cities/de/velen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81061",
          "name": "Vellberg",
          "country_code": "DE",
          "slug": "vellberg",
          "canonical_path": "/cities/de/vellberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q569651",
          "name": "Vellmar",
          "country_code": "DE",
          "slug": "vellmar",
          "canonical_path": "/cities/de/vellmar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q585613",
          "name": "Velten",
          "country_code": "DE",
          "slug": "velten",
          "canonical_path": "/cities/de/velten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817599",
          "name": "Verden",
          "country_code": "DE",
          "slug": "verden",
          "canonical_path": "/cities/de/verden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q486551",
          "name": "Verden (Aller)",
          "country_code": "DE",
          "slug": "verden-aller",
          "canonical_path": "/cities/de/verden-aller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82304",
          "name": "Veringenstadt",
          "country_code": "DE",
          "slug": "veringenstadt",
          "canonical_path": "/cities/de/veringenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q225375",
          "name": "Verl",
          "country_code": "DE",
          "slug": "verl",
          "canonical_path": "/cities/de/verl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q225334",
          "name": "Versmold",
          "country_code": "DE",
          "slug": "versmold",
          "canonical_path": "/cities/de/versmold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q147633",
          "name": "Vetschau/Spreewald / Wětošow/Błota",
          "country_code": "DE",
          "slug": "vetschau-spreewald-wetosow-blota",
          "canonical_path": "/cities/de/vetschau-spreewald-wetosow-blota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817506",
          "name": "Vettweiß",
          "country_code": "DE",
          "slug": "vettweiss",
          "canonical_path": "/cities/de/vettweiss/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q258787",
          "name": "Viechtach",
          "country_code": "DE",
          "slug": "viechtach",
          "canonical_path": "/cities/de/viechtach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817394",
          "name": "Vienenburg",
          "country_code": "DE",
          "slug": "vienenburg",
          "canonical_path": "/cities/de/vienenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16055",
          "name": "Viernheim",
          "country_code": "DE",
          "slug": "viernheim",
          "canonical_path": "/cities/de/viernheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3902",
          "name": "Viersen",
          "country_code": "DE",
          "slug": "viersen",
          "canonical_path": "/cities/de/viersen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3865",
          "name": "Villingen-Schwenningen",
          "country_code": "DE",
          "slug": "villingen-schwenningen",
          "canonical_path": "/cities/de/villingen-schwenningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817217",
          "name": "Villmar",
          "country_code": "DE",
          "slug": "villmar",
          "canonical_path": "/cities/de/villmar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q521018",
          "name": "Vilsbiburg",
          "country_code": "DE",
          "slug": "vilsbiburg",
          "canonical_path": "/cities/de/vilsbiburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q508107",
          "name": "Vilseck",
          "country_code": "DE",
          "slug": "vilseck",
          "canonical_path": "/cities/de/vilseck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817202",
          "name": "Vilshofen",
          "country_code": "DE",
          "slug": "vilshofen",
          "canonical_path": "/cities/de/vilshofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q278312",
          "name": "Vilshofen an der Donau",
          "country_code": "DE",
          "slug": "vilshofen-an-der-donau",
          "canonical_path": "/cities/de/vilshofen-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817139",
          "name": "Visbek",
          "country_code": "DE",
          "slug": "visbek",
          "canonical_path": "/cities/de/visbek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q499867",
          "name": "Visselhövede",
          "country_code": "DE",
          "slug": "visselhovede",
          "canonical_path": "/cities/de/visselhovede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q53907",
          "name": "Vlotho",
          "country_code": "DE",
          "slug": "vlotho",
          "canonical_path": "/cities/de/vlotho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2817065",
          "name": "Voerde",
          "country_code": "DE",
          "slug": "voerde",
          "canonical_path": "/cities/de/voerde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14903",
          "name": "Voerde (Niederrhein)",
          "country_code": "DE",
          "slug": "voerde-niederrhein",
          "canonical_path": "/cities/de/voerde-niederrhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3209420",
          "name": "Vogtsburg",
          "country_code": "DE",
          "slug": "vogtsburg",
          "canonical_path": "/cities/de/vogtsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505478",
          "name": "Vogtsburg im Kaiserstuhl",
          "country_code": "DE",
          "slug": "vogtsburg-im-kaiserstuhl",
          "canonical_path": "/cities/de/vogtsburg-im-kaiserstuhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q251778",
          "name": "Vohburg a.d.Donau",
          "country_code": "DE",
          "slug": "vohburg-a-d-donau",
          "canonical_path": "/cities/de/vohburg-a-d-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2816776",
          "name": "Vohburg an der Donau",
          "country_code": "DE",
          "slug": "vohburg-an-der-donau",
          "canonical_path": "/cities/de/vohburg-an-der-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503140",
          "name": "Vohenstrauß",
          "country_code": "DE",
          "slug": "vohenstrauss",
          "canonical_path": "/cities/de/vohenstrauss/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2816769",
          "name": "Vöhl",
          "country_code": "DE",
          "slug": "vohl",
          "canonical_path": "/cities/de/vohl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q83117",
          "name": "Vöhrenbach",
          "country_code": "DE",
          "slug": "vohrenbach",
          "canonical_path": "/cities/de/vohrenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504787",
          "name": "Volkach",
          "country_code": "DE",
          "slug": "volkach",
          "canonical_path": "/cities/de/volkach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q533535",
          "name": "Volkmarsen",
          "country_code": "DE",
          "slug": "volkmarsen",
          "canonical_path": "/cities/de/volkmarsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2816024",
          "name": "Vorst",
          "country_code": "DE",
          "slug": "vorst",
          "canonical_path": "/cities/de/vorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q200528",
          "name": "Vreden",
          "country_code": "DE",
          "slug": "vreden",
          "canonical_path": "/cities/de/vreden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815804",
          "name": "Waakirchen",
          "country_code": "DE",
          "slug": "waakirchen",
          "canonical_path": "/cities/de/waakirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815784",
          "name": "Wabern",
          "country_code": "DE",
          "slug": "wabern",
          "canonical_path": "/cities/de/wabern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50897",
          "name": "Wachenheim an der Weinstraße",
          "country_code": "DE",
          "slug": "wachenheim-an-der-weinstrasse",
          "canonical_path": "/cities/de/wachenheim-an-der-weinstrasse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815678",
          "name": "Wachtberg",
          "country_code": "DE",
          "slug": "wachtberg",
          "canonical_path": "/cities/de/wachtberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815651",
          "name": "Wachtendonk",
          "country_code": "DE",
          "slug": "wachtendonk",
          "canonical_path": "/cities/de/wachtendonk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q558612",
          "name": "Wächtersbach",
          "country_code": "DE",
          "slug": "wachtersbach",
          "canonical_path": "/cities/de/wachtersbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529164",
          "name": "Wadern",
          "country_code": "DE",
          "slug": "wadern",
          "canonical_path": "/cities/de/wadern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815563",
          "name": "Wadersloh",
          "country_code": "DE",
          "slug": "wadersloh",
          "canonical_path": "/cities/de/wadersloh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815559",
          "name": "Wadgassen",
          "country_code": "DE",
          "slug": "wadgassen",
          "canonical_path": "/cities/de/wadgassen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815523",
          "name": "Wagenfeld",
          "country_code": "DE",
          "slug": "wagenfeld",
          "canonical_path": "/cities/de/wagenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504457",
          "name": "Waghäusel",
          "country_code": "DE",
          "slug": "waghausel",
          "canonical_path": "/cities/de/waghausel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815484",
          "name": "Waging am See",
          "country_code": "DE",
          "slug": "waging-am-see",
          "canonical_path": "/cities/de/waging-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536506",
          "name": "Wahlstedt",
          "country_code": "DE",
          "slug": "wahlstedt",
          "canonical_path": "/cities/de/wahlstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815375",
          "name": "Wahn-Heide",
          "country_code": "DE",
          "slug": "wahn-heide",
          "canonical_path": "/cities/de/wahn-heide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4140",
          "name": "Waiblingen",
          "country_code": "DE",
          "slug": "waiblingen",
          "canonical_path": "/cities/de/waiblingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82141",
          "name": "Waibstadt",
          "country_code": "DE",
          "slug": "waibstadt",
          "canonical_path": "/cities/de/waibstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503128",
          "name": "Waischenfeld",
          "country_code": "DE",
          "slug": "waischenfeld",
          "canonical_path": "/cities/de/waischenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814853",
          "name": "Wald-Michelbach",
          "country_code": "DE",
          "slug": "wald-michelbach",
          "canonical_path": "/cities/de/wald-michelbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11040",
          "name": "Waldbröl",
          "country_code": "DE",
          "slug": "waldbrol",
          "canonical_path": "/cities/de/waldbrol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3208129",
          "name": "Waldbrunn",
          "country_code": "DE",
          "slug": "waldbrunn",
          "canonical_path": "/cities/de/waldbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815127",
          "name": "Waldbüttelbrunn",
          "country_code": "DE",
          "slug": "waldbuttelbrunn",
          "canonical_path": "/cities/de/waldbuttelbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3208130",
          "name": "Waldems",
          "country_code": "DE",
          "slug": "waldems",
          "canonical_path": "/cities/de/waldems/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515637",
          "name": "Waldenbuch",
          "country_code": "DE",
          "slug": "waldenbuch",
          "canonical_path": "/cities/de/waldenbuch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505972",
          "name": "Waldershof",
          "country_code": "DE",
          "slug": "waldershof",
          "canonical_path": "/cities/de/waldershof/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815035",
          "name": "Waldfeucht",
          "country_code": "DE",
          "slug": "waldfeucht",
          "canonical_path": "/cities/de/waldfeucht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2815032",
          "name": "Waldfischbach-Burgalben",
          "country_code": "DE",
          "slug": "waldfischbach-burgalben",
          "canonical_path": "/cities/de/waldfischbach-burgalben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q71154",
          "name": "Waldheim",
          "country_code": "DE",
          "slug": "waldheim",
          "canonical_path": "/cities/de/waldheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q550835",
          "name": "Waldkappel",
          "country_code": "DE",
          "slug": "waldkappel",
          "canonical_path": "/cities/de/waldkappel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505447",
          "name": "Waldkirch",
          "country_code": "DE",
          "slug": "waldkirch",
          "canonical_path": "/cities/de/waldkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505961",
          "name": "Waldkirchen",
          "country_code": "DE",
          "slug": "waldkirchen",
          "canonical_path": "/cities/de/waldkirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q282458",
          "name": "Waldkraiburg",
          "country_code": "DE",
          "slug": "waldkraiburg",
          "canonical_path": "/cities/de/waldkraiburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552671",
          "name": "Waldmohr",
          "country_code": "DE",
          "slug": "waldmohr",
          "canonical_path": "/cities/de/waldmohr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503213",
          "name": "Waldmünchen",
          "country_code": "DE",
          "slug": "waldmunchen",
          "canonical_path": "/cities/de/waldmunchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q241889",
          "name": "Waldsassen",
          "country_code": "DE",
          "slug": "waldsassen",
          "canonical_path": "/cities/de/waldsassen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814795",
          "name": "Waldsee",
          "country_code": "DE",
          "slug": "waldsee",
          "canonical_path": "/cities/de/waldsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505433",
          "name": "Waldshut-Tiengen",
          "country_code": "DE",
          "slug": "waldshut-tiengen",
          "canonical_path": "/cities/de/waldshut-tiengen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814775",
          "name": "Waldstetten",
          "country_code": "DE",
          "slug": "waldstetten",
          "canonical_path": "/cities/de/waldstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814746",
          "name": "Walheim - Hahn",
          "country_code": "DE",
          "slug": "walheim-hahn",
          "canonical_path": "/cities/de/walheim-hahn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22872",
          "name": "Walldorf",
          "country_code": "DE",
          "slug": "walldorf",
          "canonical_path": "/cities/de/walldorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503285",
          "name": "Walldürn",
          "country_code": "DE",
          "slug": "walldurn",
          "canonical_path": "/cities/de/walldurn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502574",
          "name": "Wallenfels",
          "country_code": "DE",
          "slug": "wallenfels",
          "canonical_path": "/cities/de/wallenfels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814632",
          "name": "Wallenhorst",
          "country_code": "DE",
          "slug": "wallenhorst",
          "canonical_path": "/cities/de/wallenhorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814613",
          "name": "Wallerfangen",
          "country_code": "DE",
          "slug": "wallerfangen",
          "canonical_path": "/cities/de/wallerfangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814599",
          "name": "Wallersdorf",
          "country_code": "DE",
          "slug": "wallersdorf",
          "canonical_path": "/cities/de/wallersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3208134",
          "name": "Walluf",
          "country_code": "DE",
          "slug": "walluf",
          "canonical_path": "/cities/de/walluf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q520369",
          "name": "Walsrode",
          "country_code": "DE",
          "slug": "walsrode",
          "canonical_path": "/cities/de/walsrode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814445",
          "name": "Waltenhofen",
          "country_code": "DE",
          "slug": "waltenhofen",
          "canonical_path": "/cities/de/waltenhofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506743",
          "name": "Waltershausen",
          "country_code": "DE",
          "slug": "waltershausen",
          "canonical_path": "/cities/de/waltershausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q161575",
          "name": "Waltrop",
          "country_code": "DE",
          "slug": "waltrop",
          "canonical_path": "/cities/de/waltrop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814305",
          "name": "Wandlitz",
          "country_code": "DE",
          "slug": "wandlitz",
          "canonical_path": "/cities/de/wandlitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1432",
          "name": "Wanfried",
          "country_code": "DE",
          "slug": "wanfried",
          "canonical_path": "/cities/de/wanfried/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814270",
          "name": "Wangen",
          "country_code": "DE",
          "slug": "wangen",
          "canonical_path": "/cities/de/wangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q165015",
          "name": "Wangen im Allgäu",
          "country_code": "DE",
          "slug": "wangen-im-allgau",
          "canonical_path": "/cities/de/wangen-im-allgau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814195",
          "name": "Wannweil",
          "country_code": "DE",
          "slug": "wannweil",
          "canonical_path": "/cities/de/wannweil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814181",
          "name": "Wanzleben",
          "country_code": "DE",
          "slug": "wanzleben",
          "canonical_path": "/cities/de/wanzleben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q700769",
          "name": "Wanzleben-Börde",
          "country_code": "DE",
          "slug": "wanzleben-borde",
          "canonical_path": "/cities/de/wanzleben-borde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q968",
          "name": "Warburg",
          "country_code": "DE",
          "slug": "warburg",
          "canonical_path": "/cities/de/warburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814146",
          "name": "Wardenburg",
          "country_code": "DE",
          "slug": "wardenburg",
          "canonical_path": "/cities/de/wardenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2814131",
          "name": "Waren",
          "country_code": "DE",
          "slug": "waren",
          "canonical_path": "/cities/de/waren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4346",
          "name": "Waren (Müritz)",
          "country_code": "DE",
          "slug": "waren-muritz",
          "canonical_path": "/cities/de/waren-muritz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2769",
          "name": "Warendorf",
          "country_code": "DE",
          "slug": "warendorf",
          "canonical_path": "/cities/de/warendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q536697",
          "name": "Warin",
          "country_code": "DE",
          "slug": "warin",
          "canonical_path": "/cities/de/warin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11119",
          "name": "Warstein",
          "country_code": "DE",
          "slug": "warstein",
          "canonical_path": "/cities/de/warstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q204919",
          "name": "Wassenberg",
          "country_code": "DE",
          "slug": "wassenberg",
          "canonical_path": "/cities/de/wassenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q259617",
          "name": "Wasserburg a.Inn",
          "country_code": "DE",
          "slug": "wasserburg-a-inn",
          "canonical_path": "/cities/de/wasserburg-a-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2813755",
          "name": "Wasserburg am Inn",
          "country_code": "DE",
          "slug": "wasserburg-am-inn",
          "canonical_path": "/cities/de/wasserburg-am-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502762",
          "name": "Wassertrüdingen",
          "country_code": "DE",
          "slug": "wassertrudingen",
          "canonical_path": "/cities/de/wassertrudingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q546530",
          "name": "Wasungen",
          "country_code": "DE",
          "slug": "wasungen",
          "canonical_path": "/cities/de/wasungen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2813660",
          "name": "Wathlingen",
          "country_code": "DE",
          "slug": "wathlingen",
          "canonical_path": "/cities/de/wathlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2813635",
          "name": "Wattenscheid",
          "country_code": "DE",
          "slug": "wattenscheid",
          "canonical_path": "/cities/de/wattenscheid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4356",
          "name": "Wedel",
          "country_code": "DE",
          "slug": "wedel",
          "canonical_path": "/cities/de/wedel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504533",
          "name": "Weener",
          "country_code": "DE",
          "slug": "weener",
          "canonical_path": "/cities/de/weener/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2813410",
          "name": "Weeze",
          "country_code": "DE",
          "slug": "weeze",
          "canonical_path": "/cities/de/weeze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q204860",
          "name": "Wegberg",
          "country_code": "DE",
          "slug": "wegberg",
          "canonical_path": "/cities/de/wegberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50854",
          "name": "Wegeleben",
          "country_code": "DE",
          "slug": "wegeleben",
          "canonical_path": "/cities/de/wegeleben/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2813344",
          "name": "Wegscheid",
          "country_code": "DE",
          "slug": "wegscheid",
          "canonical_path": "/cities/de/wegscheid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2813241",
          "name": "Wehrda",
          "country_code": "DE",
          "slug": "wehrda",
          "canonical_path": "/cities/de/wehrda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2813216",
          "name": "Wehrheim",
          "country_code": "DE",
          "slug": "wehrheim",
          "canonical_path": "/cities/de/wehrheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q519751",
          "name": "Weida",
          "country_code": "DE",
          "slug": "weida",
          "canonical_path": "/cities/de/weida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14803",
          "name": "Weiden in der Oberpfalz",
          "country_code": "DE",
          "slug": "weiden-in-der-oberpfalz",
          "canonical_path": "/cities/de/weiden-in-der-oberpfalz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61835",
          "name": "Weikersheim",
          "country_code": "DE",
          "slug": "weikersheim",
          "canonical_path": "/cities/de/weikersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61909",
          "name": "Weil am Rhein",
          "country_code": "DE",
          "slug": "weil-am-rhein",
          "canonical_path": "/cities/de/weil-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q505147",
          "name": "Weil der Stadt",
          "country_code": "DE",
          "slug": "weil-der-stadt",
          "canonical_path": "/cities/de/weil-der-stadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2812502",
          "name": "Weil im Schönbuch",
          "country_code": "DE",
          "slug": "weil-im-schonbuch",
          "canonical_path": "/cities/de/weil-im-schonbuch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q573599",
          "name": "Weilburg",
          "country_code": "DE",
          "slug": "weilburg",
          "canonical_path": "/cities/de/weilburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:3205641",
          "name": "Weiler-Simmerberg",
          "country_code": "DE",
          "slug": "weiler-simmerberg",
          "canonical_path": "/cities/de/weiler-simmerberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2812522",
          "name": "Weilerswist",
          "country_code": "DE",
          "slug": "weilerswist",
          "canonical_path": "/cities/de/weilerswist/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2812515",
          "name": "Weilheim",
          "country_code": "DE",
          "slug": "weilheim",
          "canonical_path": "/cities/de/weilheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80678",
          "name": "Weilheim an der Teck",
          "country_code": "DE",
          "slug": "weilheim-an-der-teck",
          "canonical_path": "/cities/de/weilheim-an-der-teck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q535674",
          "name": "Weilheim i.OB",
          "country_code": "DE",
          "slug": "weilheim-i-ob",
          "canonical_path": "/cities/de/weilheim-i-ob/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2812497",
          "name": "Weilmünster",
          "country_code": "DE",
          "slug": "weilmunster",
          "canonical_path": "/cities/de/weilmunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3955",
          "name": "Weimar",
          "country_code": "DE",
          "slug": "weimar",
          "canonical_path": "/cities/de/weimar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2812225",
          "name": "Weinböhla",
          "country_code": "DE",
          "slug": "weinbohla",
          "canonical_path": "/cities/de/weinbohla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572427",
          "name": "Weingarten",
          "country_code": "DE",
          "slug": "weingarten",
          "canonical_path": "/cities/de/weingarten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7050",
          "name": "Weinheim",
          "country_code": "DE",
          "slug": "weinheim",
          "canonical_path": "/cities/de/weinheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q1584",
          "name": "Weinsberg",
          "country_code": "DE",
          "slug": "weinsberg",
          "canonical_path": "/cities/de/weinsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82911",
          "name": "Weinstadt",
          "country_code": "DE",
          "slug": "weinstadt",
          "canonical_path": "/cities/de/weinstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2812145",
          "name": "Weinstadt-Endersbach",
          "country_code": "DE",
          "slug": "weinstadt-endersbach",
          "canonical_path": "/cities/de/weinstadt-endersbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2812086",
          "name": "Weisendorf",
          "country_code": "DE",
          "slug": "weisendorf",
          "canonical_path": "/cities/de/weisendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2812071",
          "name": "Weiskirchen",
          "country_code": "DE",
          "slug": "weiskirchen",
          "canonical_path": "/cities/de/weiskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502610",
          "name": "Weismain",
          "country_code": "DE",
          "slug": "weismain",
          "canonical_path": "/cities/de/weismain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2812053",
          "name": "Weissach",
          "country_code": "DE",
          "slug": "weissach",
          "canonical_path": "/cities/de/weissach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q44500",
          "name": "Weißenburg i.Bay.",
          "country_code": "DE",
          "slug": "weissenburg-i-bay",
          "canonical_path": "/cities/de/weissenburg-i-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811909",
          "name": "Weißenburg in Bayern",
          "country_code": "DE",
          "slug": "weissenburg-in-bayern",
          "canonical_path": "/cities/de/weissenburg-in-bayern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14815",
          "name": "Weissenfels",
          "country_code": "DE",
          "slug": "weissenfels",
          "canonical_path": "/cities/de/weissenfels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q519677",
          "name": "Weißenhorn",
          "country_code": "DE",
          "slug": "weissenhorn",
          "canonical_path": "/cities/de/weissenhorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529798",
          "name": "Weißensee",
          "country_code": "DE",
          "slug": "weissensee",
          "canonical_path": "/cities/de/weissensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q515933",
          "name": "Weißenstadt",
          "country_code": "DE",
          "slug": "weissenstadt",
          "canonical_path": "/cities/de/weissenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541616",
          "name": "Weißenthurm",
          "country_code": "DE",
          "slug": "weissenthurm",
          "canonical_path": "/cities/de/weissenthurm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811698",
          "name": "Weißwasser",
          "country_code": "DE",
          "slug": "weisswasser",
          "canonical_path": "/cities/de/weisswasser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q44498",
          "name": "Weißwasser/O.L.",
          "country_code": "DE",
          "slug": "weisswasser-o-l",
          "canonical_path": "/cities/de/weisswasser-o-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q285140",
          "name": "Weiterstadt",
          "country_code": "DE",
          "slug": "weiterstadt",
          "canonical_path": "/cities/de/weiterstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811614",
          "name": "Weitnau",
          "country_code": "DE",
          "slug": "weitnau",
          "canonical_path": "/cities/de/weitnau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811611",
          "name": "Weitramsdorf",
          "country_code": "DE",
          "slug": "weitramsdorf",
          "canonical_path": "/cities/de/weitramsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811465",
          "name": "Wellinghofen",
          "country_code": "DE",
          "slug": "wellinghofen",
          "canonical_path": "/cities/de/wellinghofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811361",
          "name": "Welver",
          "country_code": "DE",
          "slug": "welver",
          "canonical_path": "/cities/de/welver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82421",
          "name": "Welzheim",
          "country_code": "DE",
          "slug": "welzheim",
          "canonical_path": "/cities/de/welzheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502758",
          "name": "Wemding",
          "country_code": "DE",
          "slug": "wemding",
          "canonical_path": "/cities/de/wemding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811317",
          "name": "Wendeburg",
          "country_code": "DE",
          "slug": "wendeburg",
          "canonical_path": "/cities/de/wendeburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811292",
          "name": "Wendelstein",
          "country_code": "DE",
          "slug": "wendelstein",
          "canonical_path": "/cities/de/wendelstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811278",
          "name": "Wenden",
          "country_code": "DE",
          "slug": "wenden",
          "canonical_path": "/cities/de/wenden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81860",
          "name": "Wendlingen am Neckar",
          "country_code": "DE",
          "slug": "wendlingen-am-neckar",
          "canonical_path": "/cities/de/wendlingen-am-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811072",
          "name": "Wennigsen",
          "country_code": "DE",
          "slug": "wennigsen",
          "canonical_path": "/cities/de/wennigsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811031",
          "name": "Wentorf bei Hamburg",
          "country_code": "DE",
          "slug": "wentorf-bei-hamburg",
          "canonical_path": "/cities/de/wentorf-bei-hamburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2811013",
          "name": "Wenzenbach",
          "country_code": "DE",
          "slug": "wenzenbach",
          "canonical_path": "/cities/de/wenzenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q504889",
          "name": "Werben (Elbe)",
          "country_code": "DE",
          "slug": "werben-elbe",
          "canonical_path": "/cities/de/werben-elbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20077",
          "name": "Werdau",
          "country_code": "DE",
          "slug": "werdau",
          "canonical_path": "/cities/de/werdau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810945",
          "name": "Werder",
          "country_code": "DE",
          "slug": "werder",
          "canonical_path": "/cities/de/werder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q525686",
          "name": "Werder (Havel)",
          "country_code": "DE",
          "slug": "werder-havel",
          "canonical_path": "/cities/de/werder-havel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5575",
          "name": "Werdohl",
          "country_code": "DE",
          "slug": "werdohl",
          "canonical_path": "/cities/de/werdohl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11120",
          "name": "Werl",
          "country_code": "DE",
          "slug": "werl",
          "canonical_path": "/cities/de/werl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q673655",
          "name": "Werlte",
          "country_code": "DE",
          "slug": "werlte",
          "canonical_path": "/cities/de/werlte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7507",
          "name": "Wermelskirchen",
          "country_code": "DE",
          "slug": "wermelskirchen",
          "canonical_path": "/cities/de/wermelskirchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810848",
          "name": "Wermsdorf",
          "country_code": "DE",
          "slug": "wermsdorf",
          "canonical_path": "/cities/de/wermsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810841",
          "name": "Wernau",
          "country_code": "DE",
          "slug": "wernau",
          "canonical_path": "/cities/de/wernau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82346",
          "name": "Wernau (Neckar)",
          "country_code": "DE",
          "slug": "wernau-neckar",
          "canonical_path": "/cities/de/wernau-neckar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810840",
          "name": "Wernberg-Köblitz",
          "country_code": "DE",
          "slug": "wernberg-koblitz",
          "canonical_path": "/cities/de/wernberg-koblitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10936",
          "name": "Werne",
          "country_code": "DE",
          "slug": "werne",
          "canonical_path": "/cities/de/werne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810832",
          "name": "Werneck",
          "country_code": "DE",
          "slug": "werneck",
          "canonical_path": "/cities/de/werneck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502855",
          "name": "Werneuchen",
          "country_code": "DE",
          "slug": "werneuchen",
          "canonical_path": "/cities/de/werneuchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q15982",
          "name": "Wernigerode",
          "country_code": "DE",
          "slug": "wernigerode",
          "canonical_path": "/cities/de/wernigerode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q59775095",
          "name": "Werra-Suhl-Tal",
          "country_code": "DE",
          "slug": "werra-suhl-tal",
          "canonical_path": "/cities/de/werra-suhl-tal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61912",
          "name": "Wertheim",
          "country_code": "DE",
          "slug": "wertheim",
          "canonical_path": "/cities/de/wertheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810710",
          "name": "Werther",
          "country_code": "DE",
          "slug": "werther",
          "canonical_path": "/cities/de/werther/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q32750",
          "name": "Werther (Westf.)",
          "country_code": "DE",
          "slug": "werther-westf",
          "canonical_path": "/cities/de/werther-westf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502930",
          "name": "Wertingen",
          "country_code": "DE",
          "slug": "wertingen",
          "canonical_path": "/cities/de/wertingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4011",
          "name": "Wesel",
          "country_code": "DE",
          "slug": "wesel",
          "canonical_path": "/cities/de/wesel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q518460",
          "name": "Wesselburen",
          "country_code": "DE",
          "slug": "wesselburen",
          "canonical_path": "/cities/de/wesselburen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14956",
          "name": "Wesseling",
          "country_code": "DE",
          "slug": "wesseling",
          "canonical_path": "/cities/de/wesseling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810587",
          "name": "Weßling",
          "country_code": "DE",
          "slug": "wessling",
          "canonical_path": "/cities/de/wessling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q537491",
          "name": "Westerburg",
          "country_code": "DE",
          "slug": "westerburg",
          "canonical_path": "/cities/de/westerburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810370",
          "name": "Westerfilde",
          "country_code": "DE",
          "slug": "westerfilde",
          "canonical_path": "/cities/de/westerfilde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810289",
          "name": "Westerkappeln",
          "country_code": "DE",
          "slug": "westerkappeln",
          "canonical_path": "/cities/de/westerkappeln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810284",
          "name": "Westerland",
          "country_code": "DE",
          "slug": "westerland",
          "canonical_path": "/cities/de/westerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810204",
          "name": "Westerrönfeld",
          "country_code": "DE",
          "slug": "westerronfeld",
          "canonical_path": "/cities/de/westerronfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492360",
          "name": "Westerstede",
          "country_code": "DE",
          "slug": "westerstede",
          "canonical_path": "/cities/de/westerstede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810136",
          "name": "Westhausen",
          "country_code": "DE",
          "slug": "westhausen",
          "canonical_path": "/cities/de/westhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810109",
          "name": "Westhofen",
          "country_code": "DE",
          "slug": "westhofen",
          "canonical_path": "/cities/de/westhofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2810007",
          "name": "Wettbergen",
          "country_code": "DE",
          "slug": "wettbergen",
          "canonical_path": "/cities/de/wettbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809984",
          "name": "Wetter",
          "country_code": "DE",
          "slug": "wetter",
          "canonical_path": "/cities/de/wetter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809985",
          "name": "Wetter",
          "country_code": "DE",
          "slug": "wetter-05-065",
          "canonical_path": "/cities/de/wetter-05-065/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q598058",
          "name": "Wetter (Hessen)",
          "country_code": "DE",
          "slug": "wetter-hessen",
          "canonical_path": "/cities/de/wetter-hessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11343",
          "name": "Wetter (Ruhr)",
          "country_code": "DE",
          "slug": "wetter-ruhr",
          "canonical_path": "/cities/de/wetter-ruhr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q703029",
          "name": "Wettin-Löbejün",
          "country_code": "DE",
          "slug": "wettin-lobejun",
          "canonical_path": "/cities/de/wettin-lobejun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809919",
          "name": "Wettringen",
          "country_code": "DE",
          "slug": "wettringen",
          "canonical_path": "/cities/de/wettringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4178",
          "name": "Wetzlar",
          "country_code": "DE",
          "slug": "wetzlar",
          "canonical_path": "/cities/de/wetzlar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809777",
          "name": "Wickede",
          "country_code": "DE",
          "slug": "wickede",
          "canonical_path": "/cities/de/wickede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809778",
          "name": "Wickede",
          "country_code": "DE",
          "slug": "wickede-07-059",
          "canonical_path": "/cities/de/wickede-07-059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502408",
          "name": "Widdern",
          "country_code": "DE",
          "slug": "widdern",
          "canonical_path": "/cities/de/widdern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809544",
          "name": "Wiefelstede",
          "country_code": "DE",
          "slug": "wiefelstede",
          "canonical_path": "/cities/de/wiefelstede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11043",
          "name": "Wiehl",
          "country_code": "DE",
          "slug": "wiehl",
          "canonical_path": "/cities/de/wiehl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809403",
          "name": "Wiernsheim",
          "country_code": "DE",
          "slug": "wiernsheim",
          "canonical_path": "/cities/de/wiernsheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:06414000",
          "name": "Wiesbaden",
          "country_code": "DE",
          "slug": "wiesbaden",
          "canonical_path": "/cities/de/wiesbaden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809259",
          "name": "Wiesenburg",
          "country_code": "DE",
          "slug": "wiesenburg",
          "canonical_path": "/cities/de/wiesenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q80854",
          "name": "Wiesensteig",
          "country_code": "DE",
          "slug": "wiesensteig",
          "canonical_path": "/cities/de/wiesensteig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q22874",
          "name": "Wiesloch",
          "country_code": "DE",
          "slug": "wiesloch",
          "canonical_path": "/cities/de/wiesloch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q511989",
          "name": "Wiesmoor",
          "country_code": "DE",
          "slug": "wiesmoor",
          "canonical_path": "/cities/de/wiesmoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809100",
          "name": "Wietmarschen",
          "country_code": "DE",
          "slug": "wietmarschen",
          "canonical_path": "/cities/de/wietmarschen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809092",
          "name": "Wietze",
          "country_code": "DE",
          "slug": "wietze",
          "canonical_path": "/cities/de/wietze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2809065",
          "name": "Wiggensbach",
          "country_code": "DE",
          "slug": "wiggensbach",
          "canonical_path": "/cities/de/wiggensbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q566233",
          "name": "Wildau",
          "country_code": "DE",
          "slug": "wildau",
          "canonical_path": "/cities/de/wildau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20087",
          "name": "Wildenfels",
          "country_code": "DE",
          "slug": "wildenfels",
          "canonical_path": "/cities/de/wildenfels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q501626",
          "name": "Wildeshausen",
          "country_code": "DE",
          "slug": "wildeshausen",
          "canonical_path": "/cities/de/wildeshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3857",
          "name": "Wilhelmshaven",
          "country_code": "DE",
          "slug": "wilhelmshaven",
          "canonical_path": "/cities/de/wilhelmshaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2808649",
          "name": "Wilhermsdorf",
          "country_code": "DE",
          "slug": "wilhermsdorf",
          "canonical_path": "/cities/de/wilhermsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20088",
          "name": "Wilkau-Haßlau",
          "country_code": "DE",
          "slug": "wilkau-hasslau",
          "canonical_path": "/cities/de/wilkau-hasslau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q241866",
          "name": "Willebadessen",
          "country_code": "DE",
          "slug": "willebadessen",
          "canonical_path": "/cities/de/willebadessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4171",
          "name": "Willich",
          "country_code": "DE",
          "slug": "willich",
          "canonical_path": "/cities/de/willich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2808544",
          "name": "Willingen",
          "country_code": "DE",
          "slug": "willingen",
          "canonical_path": "/cities/de/willingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2808533",
          "name": "Willingshausen",
          "country_code": "DE",
          "slug": "willingshausen",
          "canonical_path": "/cities/de/willingshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2808493",
          "name": "Willstätt",
          "country_code": "DE",
          "slug": "willstatt",
          "canonical_path": "/cities/de/willstatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2808461",
          "name": "Wilnsdorf",
          "country_code": "DE",
          "slug": "wilnsdorf",
          "canonical_path": "/cities/de/wilnsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q8248",
          "name": "Wilsdruff",
          "country_code": "DE",
          "slug": "wilsdruff",
          "canonical_path": "/cities/de/wilsdruff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506560",
          "name": "Wilster",
          "country_code": "DE",
          "slug": "wilster",
          "canonical_path": "/cities/de/wilster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81756",
          "name": "Wilthen",
          "country_code": "DE",
          "slug": "wilthen",
          "canonical_path": "/cities/de/wilthen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502642",
          "name": "Windischeschenbach",
          "country_code": "DE",
          "slug": "windischeschenbach",
          "canonical_path": "/cities/de/windischeschenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502441",
          "name": "Windsbach",
          "country_code": "DE",
          "slug": "windsbach",
          "canonical_path": "/cities/de/windsbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q82741",
          "name": "Winnenden",
          "country_code": "DE",
          "slug": "winnenden",
          "canonical_path": "/cities/de/winnenden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2807845",
          "name": "Winsen",
          "country_code": "DE",
          "slug": "winsen",
          "canonical_path": "/cities/de/winsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2807846",
          "name": "Winsen",
          "country_code": "DE",
          "slug": "winsen-06-00",
          "canonical_path": "/cities/de/winsen-06-00/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16000",
          "name": "Winsen (Luhe)",
          "country_code": "DE",
          "slug": "winsen-luhe",
          "canonical_path": "/cities/de/winsen-luhe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2807825",
          "name": "Winterbach",
          "country_code": "DE",
          "slug": "winterbach",
          "canonical_path": "/cities/de/winterbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10923",
          "name": "Winterberg",
          "country_code": "DE",
          "slug": "winterberg",
          "canonical_path": "/cities/de/winterberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2807736",
          "name": "Winterlingen",
          "country_code": "DE",
          "slug": "winterlingen",
          "canonical_path": "/cities/de/winterlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q11045",
          "name": "Wipperfürth",
          "country_code": "DE",
          "slug": "wipperfurth",
          "canonical_path": "/cities/de/wipperfurth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q542642",
          "name": "Wirges",
          "country_code": "DE",
          "slug": "wirges",
          "canonical_path": "/cities/de/wirges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q7030",
          "name": "Wismar",
          "country_code": "DE",
          "slug": "wismar",
          "canonical_path": "/cities/de/wismar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q26364",
          "name": "Wissen",
          "country_code": "DE",
          "slug": "wissen",
          "canonical_path": "/cities/de/wissen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3764",
          "name": "Witten",
          "country_code": "DE",
          "slug": "witten",
          "canonical_path": "/cities/de/witten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q6837",
          "name": "Wittenberg",
          "country_code": "DE",
          "slug": "wittenberg",
          "canonical_path": "/cities/de/wittenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q541956",
          "name": "Wittenberge",
          "country_code": "DE",
          "slug": "wittenberge",
          "canonical_path": "/cities/de/wittenberge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506651",
          "name": "Wittenburg",
          "country_code": "DE",
          "slug": "wittenburg",
          "canonical_path": "/cities/de/wittenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q81760",
          "name": "Wittichenau / Kulow",
          "country_code": "DE",
          "slug": "wittichenau-kulow",
          "canonical_path": "/cities/de/wittichenau-kulow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q552390",
          "name": "Wittingen",
          "country_code": "DE",
          "slug": "wittingen",
          "canonical_path": "/cities/de/wittingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q559514",
          "name": "Wittlich",
          "country_code": "DE",
          "slug": "wittlich",
          "canonical_path": "/cities/de/wittlich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q509353",
          "name": "Wittmund",
          "country_code": "DE",
          "slug": "wittmund",
          "canonical_path": "/cities/de/wittmund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2807201",
          "name": "Wittstock",
          "country_code": "DE",
          "slug": "wittstock",
          "canonical_path": "/cities/de/wittstock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q159572",
          "name": "Wittstock/Dosse",
          "country_code": "DE",
          "slug": "wittstock-dosse",
          "canonical_path": "/cities/de/wittstock-dosse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q564827",
          "name": "Witzenhausen",
          "country_code": "DE",
          "slug": "witzenhausen",
          "canonical_path": "/cities/de/witzenhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2807141",
          "name": "Wixhausen",
          "country_code": "DE",
          "slug": "wixhausen",
          "canonical_path": "/cities/de/wixhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q50945",
          "name": "Woldegk",
          "country_code": "DE",
          "slug": "woldegk",
          "canonical_path": "/cities/de/woldegk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q506780",
          "name": "Wolfach",
          "country_code": "DE",
          "slug": "wolfach",
          "canonical_path": "/cities/de/wolfach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2806919",
          "name": "Wolfen",
          "country_code": "DE",
          "slug": "wolfen",
          "canonical_path": "/cities/de/wolfen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q4122",
          "name": "Wolfenbuettel",
          "country_code": "DE",
          "slug": "wolfenbuettel",
          "canonical_path": "/cities/de/wolfenbuettel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2806852",
          "name": "Wölfersheim",
          "country_code": "DE",
          "slug": "wolfersheim",
          "canonical_path": "/cities/de/wolfersheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q539592",
          "name": "Wolfhagen",
          "country_code": "DE",
          "slug": "wolfhagen",
          "canonical_path": "/cities/de/wolfhagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q502591",
          "name": "Wolframs-Eschenbach",
          "country_code": "DE",
          "slug": "wolframs-eschenbach",
          "canonical_path": "/cities/de/wolframs-eschenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q503160",
          "name": "Wolfratshausen",
          "country_code": "DE",
          "slug": "wolfratshausen",
          "canonical_path": "/cities/de/wolfratshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3014",
          "name": "Wolfsburg",
          "country_code": "DE",
          "slug": "wolfsburg",
          "canonical_path": "/cities/de/wolfsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2806646",
          "name": "Wolfschlugen",
          "country_code": "DE",
          "slug": "wolfschlugen",
          "canonical_path": "/cities/de/wolfschlugen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q529194",
          "name": "Wolfstein",
          "country_code": "DE",
          "slug": "wolfstein",
          "canonical_path": "/cities/de/wolfstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q492543",
          "name": "Wolgast",
          "country_code": "DE",
          "slug": "wolgast",
          "canonical_path": "/cities/de/wolgast/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q57997",
          "name": "Wolkenstein",
          "country_code": "DE",
          "slug": "wolkenstein",
          "canonical_path": "/cities/de/wolkenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2806382",
          "name": "Wollmatingen",
          "country_code": "DE",
          "slug": "wollmatingen",
          "canonical_path": "/cities/de/wollmatingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q653962",
          "name": "Wolmirstedt",
          "country_code": "DE",
          "slug": "wolmirstedt",
          "canonical_path": "/cities/de/wolmirstedt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2806339",
          "name": "Wolnzach",
          "country_code": "DE",
          "slug": "wolnzach",
          "canonical_path": "/cities/de/wolnzach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2806287",
          "name": "Woltersdorf",
          "country_code": "DE",
          "slug": "woltersdorf",
          "canonical_path": "/cities/de/woltersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2806192",
          "name": "Worbis",
          "country_code": "DE",
          "slug": "worbis",
          "canonical_path": "/cities/de/worbis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3852",
          "name": "Worms",
          "country_code": "DE",
          "slug": "worms",
          "canonical_path": "/cities/de/worms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2806108",
          "name": "Worpswede",
          "country_code": "DE",
          "slug": "worpswede",
          "canonical_path": "/cities/de/worpswede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q543978",
          "name": "Wörrstadt",
          "country_code": "DE",
          "slug": "worrstadt",
          "canonical_path": "/cities/de/worrstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q488592",
          "name": "Wörth a.d.Donau",
          "country_code": "DE",
          "slug": "worth-a-d-donau",
          "canonical_path": "/cities/de/worth-a-d-donau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q76995",
          "name": "Wörth a.Main",
          "country_code": "DE",
          "slug": "worth-a-main",
          "canonical_path": "/cities/de/worth-a-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q522165",
          "name": "Wörth am Rhein",
          "country_code": "DE",
          "slug": "worth-am-rhein",
          "canonical_path": "/cities/de/worth-am-rhein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q588598",
          "name": "Wriezen",
          "country_code": "DE",
          "slug": "wriezen",
          "canonical_path": "/cities/de/wriezen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14901",
          "name": "Wuerselen",
          "country_code": "DE",
          "slug": "wuerselen",
          "canonical_path": "/cities/de/wuerselen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q2999",
          "name": "Wuerzburg",
          "country_code": "DE",
          "slug": "wuerzburg",
          "canonical_path": "/cities/de/wuerzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q161729",
          "name": "Wülfrath",
          "country_code": "DE",
          "slug": "wulfrath",
          "canonical_path": "/cities/de/wulfrath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q495778",
          "name": "Wunsiedel",
          "country_code": "DE",
          "slug": "wunsiedel",
          "canonical_path": "/cities/de/wunsiedel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q14827",
          "name": "Wunstorf",
          "country_code": "DE",
          "slug": "wunstorf",
          "canonical_path": "/cities/de/wunstorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:ags:05124000",
          "name": "Wuppertal",
          "country_code": "DE",
          "slug": "wuppertal",
          "canonical_path": "/cities/de/wuppertal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q530139",
          "name": "Wurzbach",
          "country_code": "DE",
          "slug": "wurzbach",
          "canonical_path": "/cities/de/wurzbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10784",
          "name": "Wurzen",
          "country_code": "DE",
          "slug": "wurzen",
          "canonical_path": "/cities/de/wurzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2805497",
          "name": "Wüstenrot",
          "country_code": "DE",
          "slug": "wustenrot",
          "canonical_path": "/cities/de/wustenrot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2805483",
          "name": "Wusterhausen",
          "country_code": "DE",
          "slug": "wusterhausen",
          "canonical_path": "/cities/de/wusterhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2805480",
          "name": "Wustermark",
          "country_code": "DE",
          "slug": "wustermark",
          "canonical_path": "/cities/de/wustermark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q572549",
          "name": "Wustrow (Wendland)",
          "country_code": "DE",
          "slug": "wustrow-wendland",
          "canonical_path": "/cities/de/wustrow-wendland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2805419",
          "name": "Wutöschingen",
          "country_code": "DE",
          "slug": "wutoschingen",
          "canonical_path": "/cities/de/wutoschingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q20771",
          "name": "Wyk auf Föhr",
          "country_code": "DE",
          "slug": "wyk-auf-fohr",
          "canonical_path": "/cities/de/wyk-auf-fohr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q162890",
          "name": "Xanten",
          "country_code": "DE",
          "slug": "xanten",
          "canonical_path": "/cities/de/xanten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q143401",
          "name": "Zahna-Elster",
          "country_code": "DE",
          "slug": "zahna-elster",
          "canonical_path": "/cities/de/zahna-elster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2805228",
          "name": "Zapfendorf",
          "country_code": "DE",
          "slug": "zapfendorf",
          "canonical_path": "/cities/de/zapfendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q148091",
          "name": "Zarrentin am Schaalsee",
          "country_code": "DE",
          "slug": "zarrentin-am-schaalsee",
          "canonical_path": "/cities/de/zarrentin-am-schaalsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q184481",
          "name": "Zehdenick",
          "country_code": "DE",
          "slug": "zehdenick",
          "canonical_path": "/cities/de/zehdenick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2805008",
          "name": "Zeil",
          "country_code": "DE",
          "slug": "zeil",
          "canonical_path": "/cities/de/zeil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q184873",
          "name": "Zeil a.Main",
          "country_code": "DE",
          "slug": "zeil-a-main",
          "canonical_path": "/cities/de/zeil-a-main/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2804939",
          "name": "Zeithain",
          "country_code": "DE",
          "slug": "zeithain",
          "canonical_path": "/cities/de/zeithain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2804933",
          "name": "Zeitlarn",
          "country_code": "DE",
          "slug": "zeitlarn",
          "canonical_path": "/cities/de/zeitlarn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16087",
          "name": "Zeitz",
          "country_code": "DE",
          "slug": "zeitz",
          "canonical_path": "/cities/de/zeitz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2804895",
          "name": "Zell",
          "country_code": "DE",
          "slug": "zell",
          "canonical_path": "/cities/de/zell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q187500",
          "name": "Zell (Mosel)",
          "country_code": "DE",
          "slug": "zell-mosel",
          "canonical_path": "/cities/de/zell-mosel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q187544",
          "name": "Zell am Harmersbach",
          "country_code": "DE",
          "slug": "zell-am-harmersbach",
          "canonical_path": "/cities/de/zell-am-harmersbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q61618",
          "name": "Zell im Wiesental",
          "country_code": "DE",
          "slug": "zell-im-wiesental",
          "canonical_path": "/cities/de/zell-im-wiesental/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q187636",
          "name": "Zella-Mehlis",
          "country_code": "DE",
          "slug": "zella-mehlis",
          "canonical_path": "/cities/de/zella-mehlis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2804808",
          "name": "Zellingen",
          "country_code": "DE",
          "slug": "zellingen",
          "canonical_path": "/cities/de/zellingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2804748",
          "name": "Zerbst",
          "country_code": "DE",
          "slug": "zerbst",
          "canonical_path": "/cities/de/zerbst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q155981",
          "name": "Zerbst/Anhalt",
          "country_code": "DE",
          "slug": "zerbst-anhalt",
          "canonical_path": "/cities/de/zerbst-anhalt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2804697",
          "name": "Zetel",
          "country_code": "DE",
          "slug": "zetel",
          "canonical_path": "/cities/de/zetel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2804654",
          "name": "Zeulenroda",
          "country_code": "DE",
          "slug": "zeulenroda",
          "canonical_path": "/cities/de/zeulenroda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q62268",
          "name": "Zeulenroda-Triebes",
          "country_code": "DE",
          "slug": "zeulenroda-triebes",
          "canonical_path": "/cities/de/zeulenroda-triebes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2804646",
          "name": "Zeuthen",
          "country_code": "DE",
          "slug": "zeuthen",
          "canonical_path": "/cities/de/zeuthen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q197045",
          "name": "Zeven",
          "country_code": "DE",
          "slug": "zeven",
          "canonical_path": "/cities/de/zeven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q198831",
          "name": "Ziegenrück",
          "country_code": "DE",
          "slug": "ziegenruck",
          "canonical_path": "/cities/de/ziegenruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q199094",
          "name": "Zierenberg",
          "country_code": "DE",
          "slug": "zierenberg",
          "canonical_path": "/cities/de/zierenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q199233",
          "name": "Ziesar",
          "country_code": "DE",
          "slug": "ziesar",
          "canonical_path": "/cities/de/ziesar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2804159",
          "name": "Zimmern ob Rottweil",
          "country_code": "DE",
          "slug": "zimmern-ob-rottweil",
          "canonical_path": "/cities/de/zimmern-ob-rottweil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q72977",
          "name": "Zirndorf",
          "country_code": "DE",
          "slug": "zirndorf",
          "canonical_path": "/cities/de/zirndorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q157200",
          "name": "Zittau",
          "country_code": "DE",
          "slug": "zittau",
          "canonical_path": "/cities/de/zittau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2803908",
          "name": "Zons",
          "country_code": "DE",
          "slug": "zons",
          "canonical_path": "/cities/de/zons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q247868",
          "name": "Zörbig",
          "country_code": "DE",
          "slug": "zorbig",
          "canonical_path": "/cities/de/zorbig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2803884",
          "name": "Zorneding",
          "country_code": "DE",
          "slug": "zorneding",
          "canonical_path": "/cities/de/zorneding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q226884",
          "name": "Zossen",
          "country_code": "DE",
          "slug": "zossen",
          "canonical_path": "/cities/de/zossen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q58006",
          "name": "Zschopau",
          "country_code": "DE",
          "slug": "zschopau",
          "canonical_path": "/cities/de/zschopau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2803786",
          "name": "Zschorlau",
          "country_code": "DE",
          "slug": "zschorlau",
          "canonical_path": "/cities/de/zschorlau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q5398",
          "name": "Zülpich",
          "country_code": "DE",
          "slug": "zulpich",
          "canonical_path": "/cities/de/zulpich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2803692",
          "name": "Zündorf",
          "country_code": "DE",
          "slug": "zundorf",
          "canonical_path": "/cities/de/zundorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:geonames:2803655",
          "name": "Zusmarshausen",
          "country_code": "DE",
          "slug": "zusmarshausen",
          "canonical_path": "/cities/de/zusmarshausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q16017",
          "name": "Zweibruecken",
          "country_code": "DE",
          "slug": "zweibruecken",
          "canonical_path": "/cities/de/zweibruecken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q10779",
          "name": "Zwenkau",
          "country_code": "DE",
          "slug": "zwenkau",
          "canonical_path": "/cities/de/zwenkau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q3778",
          "name": "Zwickau",
          "country_code": "DE",
          "slug": "zwickau",
          "canonical_path": "/cities/de/zwickau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q163091",
          "name": "Zwiesel",
          "country_code": "DE",
          "slug": "zwiesel",
          "canonical_path": "/cities/de/zwiesel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:de:wikidata:Q58002",
          "name": "Zwönitz",
          "country_code": "DE",
          "slug": "zwonitz",
          "canonical_path": "/cities/de/zwonitz/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "GR",
      "path": "cities/gr.json",
      "city_count": 274,
      "cities": [
        {
          "entity_id": "city:gr:geonames:265488",
          "name": "Acharnés",
          "country_code": "GR",
          "slug": "acharnes",
          "canonical_path": "/cities/gr/acharnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265502",
          "name": "Aegina",
          "country_code": "GR",
          "slug": "aegina",
          "canonical_path": "/cities/gr/aegina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:408685",
          "name": "Afántou",
          "country_code": "GR",
          "slug": "afantou",
          "canonical_path": "/cities/gr/afantou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264194",
          "name": "Agía Paraskeví",
          "country_code": "GR",
          "slug": "agia-paraskevi",
          "canonical_path": "/cities/gr/agia-paraskevi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264111",
          "name": "Agía Varvára",
          "country_code": "GR",
          "slug": "agia-varvara",
          "canonical_path": "/cities/gr/agia-varvara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:8358563",
          "name": "Ágioi Anárgyroi",
          "country_code": "GR",
          "slug": "agioi-anargyroi",
          "canonical_path": "/cities/gr/agioi-anargyroi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736621",
          "name": "Ágios Athanásios",
          "country_code": "GR",
          "slug": "agios-athanasios",
          "canonical_path": "/cities/gr/agios-athanasios/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:263986",
          "name": "Agios Dimitrios",
          "country_code": "GR",
          "slug": "agios-dimitrios",
          "canonical_path": "/cities/gr/agios-dimitrios/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:8478257",
          "name": "Agios Ioannis Rentis",
          "country_code": "GR",
          "slug": "agios-ioannis-rentis",
          "canonical_path": "/cities/gr/agios-ioannis-rentis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:263824",
          "name": "Ágios Nikólaos",
          "country_code": "GR",
          "slug": "agios-nikolaos",
          "canonical_path": "/cities/gr/agios-nikolaos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:263725",
          "name": "Ágios Stéfanos",
          "country_code": "GR",
          "slug": "agios-stefanos",
          "canonical_path": "/cities/gr/agios-stefanos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265601",
          "name": "Agriá",
          "country_code": "GR",
          "slug": "agria",
          "canonical_path": "/cities/gr/agria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265560",
          "name": "Agrínio",
          "country_code": "GR",
          "slug": "agrinio",
          "canonical_path": "/cities/gr/agrinio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265533",
          "name": "Aigáleo",
          "country_code": "GR",
          "slug": "aigaleo",
          "canonical_path": "/cities/gr/aigaleo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265500",
          "name": "Aígio",
          "country_code": "GR",
          "slug": "aigio",
          "canonical_path": "/cities/gr/aigio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265507",
          "name": "Aitolikó",
          "country_code": "GR",
          "slug": "aitoliko",
          "canonical_path": "/cities/gr/aitoliko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736929",
          "name": "Alexándreia",
          "country_code": "GR",
          "slug": "alexandreia",
          "canonical_path": "/cities/gr/alexandreia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736928",
          "name": "Alexandroupoli",
          "country_code": "GR",
          "slug": "alexandroupoli",
          "canonical_path": "/cities/gr/alexandroupoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261614",
          "name": "Álimos",
          "country_code": "GR",
          "slug": "alimos",
          "canonical_path": "/cities/gr/alimos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265309",
          "name": "Alivéri",
          "country_code": "GR",
          "slug": "aliveri",
          "canonical_path": "/cities/gr/aliveri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265292",
          "name": "Almyrós",
          "country_code": "GR",
          "slug": "almyros",
          "canonical_path": "/cities/gr/almyros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265252",
          "name": "Amaliáda",
          "country_code": "GR",
          "slug": "amaliada",
          "canonical_path": "/cities/gr/amaliada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265245",
          "name": "Amárynthos",
          "country_code": "GR",
          "slug": "amarynthos",
          "canonical_path": "/cities/gr/amarynthos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265187",
          "name": "Ámfissa",
          "country_code": "GR",
          "slug": "amfissa",
          "canonical_path": "/cities/gr/amfissa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265240",
          "name": "Ampelákia",
          "country_code": "GR",
          "slug": "ampelakia",
          "canonical_path": "/cities/gr/ampelakia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265206",
          "name": "Ampelóna",
          "country_code": "GR",
          "slug": "ampelona",
          "canonical_path": "/cities/gr/ampelona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265107",
          "name": "Anatolí",
          "country_code": "GR",
          "slug": "anatoli",
          "canonical_path": "/cities/gr/anatoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265100",
          "name": "Anávyssos",
          "country_code": "GR",
          "slug": "anavyssos",
          "canonical_path": "/cities/gr/anavyssos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264888",
          "name": "Áno Liósia",
          "country_code": "GR",
          "slug": "ano-liosia",
          "canonical_path": "/cities/gr/ano-liosia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264929",
          "name": "Anoixi",
          "country_code": "GR",
          "slug": "anoixi",
          "canonical_path": "/cities/gr/anoixi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264637",
          "name": "Archaía Olympía",
          "country_code": "GR",
          "slug": "archaia-olympia",
          "canonical_path": "/cities/gr/archaia-olympia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:408686",
          "name": "Archángelos",
          "country_code": "GR",
          "slug": "archangelos",
          "canonical_path": "/cities/gr/archangelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264670",
          "name": "Árgos",
          "country_code": "GR",
          "slug": "argos",
          "canonical_path": "/cities/gr/argos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736754",
          "name": "Argos Orestiko",
          "country_code": "GR",
          "slug": "argos-orestiko",
          "canonical_path": "/cities/gr/argos-orestiko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264516",
          "name": "Argyroúpoli",
          "country_code": "GR",
          "slug": "argyroupoli",
          "canonical_path": "/cities/gr/argyroupoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736753",
          "name": "Aridaía",
          "country_code": "GR",
          "slug": "aridaia",
          "canonical_path": "/cities/gr/aridaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264642",
          "name": "Arkalochóri",
          "country_code": "GR",
          "slug": "arkalochori",
          "canonical_path": "/cities/gr/arkalochori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736727",
          "name": "Arrianá",
          "country_code": "GR",
          "slug": "arriana",
          "canonical_path": "/cities/gr/arriana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264559",
          "name": "Árta",
          "country_code": "GR",
          "slug": "arta",
          "canonical_path": "/cities/gr/arta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258038",
          "name": "Artémida",
          "country_code": "GR",
          "slug": "artemida",
          "canonical_path": "/cities/gr/artemida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264496",
          "name": "Asíni",
          "country_code": "GR",
          "slug": "asini",
          "canonical_path": "/cities/gr/asini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264445",
          "name": "Asprópyrgos",
          "country_code": "GR",
          "slug": "aspropyrgos",
          "canonical_path": "/cities/gr/aspropyrgos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264416",
          "name": "Astakós",
          "country_code": "GR",
          "slug": "astakos",
          "canonical_path": "/cities/gr/astakos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736687",
          "name": "Asvestochóri",
          "country_code": "GR",
          "slug": "asvestochori",
          "canonical_path": "/cities/gr/asvestochori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:wikidata:Q1524",
          "name": "Athens",
          "country_code": "GR",
          "slug": "athens",
          "canonical_path": "/cities/gr/athens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:264359",
          "name": "Atsipópoulo",
          "country_code": "GR",
          "slug": "atsipopoulo",
          "canonical_path": "/cities/gr/atsipopoulo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:263854",
          "name": "Áyios Konstandínos",
          "country_code": "GR",
          "slug": "ayios-konstandinos",
          "canonical_path": "/cities/gr/ayios-konstandinos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260183",
          "name": "Chaïdári",
          "country_code": "GR",
          "slug": "chaidari",
          "canonical_path": "/cities/gr/chaidari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734622",
          "name": "Chalástra",
          "country_code": "GR",
          "slug": "chalastra",
          "canonical_path": "/cities/gr/chalastra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260133",
          "name": "Chalkída",
          "country_code": "GR",
          "slug": "chalkida",
          "canonical_path": "/cities/gr/chalkida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735803",
          "name": "Chalkidóna",
          "country_code": "GR",
          "slug": "chalkidona",
          "canonical_path": "/cities/gr/chalkidona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260114",
          "name": "Chaniá",
          "country_code": "GR",
          "slug": "chania",
          "canonical_path": "/cities/gr/chania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259973",
          "name": "Chios",
          "country_code": "GR",
          "slug": "chios",
          "canonical_path": "/cities/gr/chios/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259949",
          "name": "Cholargós",
          "country_code": "GR",
          "slug": "cholargos",
          "canonical_path": "/cities/gr/cholargos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735764",
          "name": "Chortiátis",
          "country_code": "GR",
          "slug": "chortiatis",
          "canonical_path": "/cities/gr/chortiatis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735747",
          "name": "Chrysoúpolis",
          "country_code": "GR",
          "slug": "chrysoupolis",
          "canonical_path": "/cities/gr/chrysoupolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:2463679",
          "name": "Corfu",
          "country_code": "GR",
          "slug": "corfu",
          "canonical_path": "/cities/gr/corfu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:263312",
          "name": "Dhafní",
          "country_code": "GR",
          "slug": "dhafni",
          "canonical_path": "/cities/gr/dhafni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262869",
          "name": "Dhrosiá",
          "country_code": "GR",
          "slug": "dhrosia",
          "canonical_path": "/cities/gr/dhrosia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:263148",
          "name": "Diakoptó",
          "country_code": "GR",
          "slug": "diakopto",
          "canonical_path": "/cities/gr/diakopto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736450",
          "name": "Diavatá",
          "country_code": "GR",
          "slug": "diavata",
          "canonical_path": "/cities/gr/diavata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736447",
          "name": "Didymóteicho",
          "country_code": "GR",
          "slug": "didymoteicho",
          "canonical_path": "/cities/gr/didymoteicho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735342",
          "name": "Díon",
          "country_code": "GR",
          "slug": "dion",
          "canonical_path": "/cities/gr/dion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:263064",
          "name": "Diónysos",
          "country_code": "GR",
          "slug": "dionysos",
          "canonical_path": "/cities/gr/dionysos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:263020",
          "name": "Dodóni",
          "country_code": "GR",
          "slug": "dodoni",
          "canonical_path": "/cities/gr/dodoni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736364",
          "name": "Dráma",
          "country_code": "GR",
          "slug": "drama",
          "canonical_path": "/cities/gr/drama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262871",
          "name": "Drosiá",
          "country_code": "GR",
          "slug": "drosia",
          "canonical_path": "/cities/gr/drosia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736357",
          "name": "Édessa",
          "country_code": "GR",
          "slug": "edessa",
          "canonical_path": "/cities/gr/edessa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736296",
          "name": "Efkarpía",
          "country_code": "GR",
          "slug": "efkarpia",
          "canonical_path": "/cities/gr/efkarpia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262576",
          "name": "Efpálio",
          "country_code": "GR",
          "slug": "efpalio",
          "canonical_path": "/cities/gr/efpalio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262833",
          "name": "Ekáli",
          "country_code": "GR",
          "slug": "ekali",
          "canonical_path": "/cities/gr/ekali/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262784",
          "name": "Elassóna",
          "country_code": "GR",
          "slug": "elassona",
          "canonical_path": "/cities/gr/elassona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262752",
          "name": "Elefsína",
          "country_code": "GR",
          "slug": "elefsina",
          "canonical_path": "/cities/gr/elefsina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736337",
          "name": "Eleftherés",
          "country_code": "GR",
          "slug": "eleftheres",
          "canonical_path": "/cities/gr/eleftheres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262719",
          "name": "Ellinikó",
          "country_code": "GR",
          "slug": "elliniko",
          "canonical_path": "/cities/gr/elliniko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736319",
          "name": "Epanomí",
          "country_code": "GR",
          "slug": "epanomi",
          "canonical_path": "/cities/gr/epanomi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262603",
          "name": "Ermoúpolis",
          "country_code": "GR",
          "slug": "ermoupolis",
          "canonical_path": "/cities/gr/ermoupolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736291",
          "name": "Évosmos",
          "country_code": "GR",
          "slug": "evosmos",
          "canonical_path": "/cities/gr/evosmos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736283",
          "name": "Exaplátanos",
          "country_code": "GR",
          "slug": "exaplatanos",
          "canonical_path": "/cities/gr/exaplatanos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:6354951",
          "name": "Faliraki",
          "country_code": "GR",
          "slug": "faliraki",
          "canonical_path": "/cities/gr/faliraki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262462",
          "name": "Fársala",
          "country_code": "GR",
          "slug": "farsala",
          "canonical_path": "/cities/gr/farsala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736261",
          "name": "Féres",
          "country_code": "GR",
          "slug": "feres",
          "canonical_path": "/cities/gr/feres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262418",
          "name": "Filiatrá",
          "country_code": "GR",
          "slug": "filiatra",
          "canonical_path": "/cities/gr/filiatra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736245",
          "name": "Fíliro",
          "country_code": "GR",
          "slug": "filiro",
          "canonical_path": "/cities/gr/filiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262398",
          "name": "Filothéi",
          "country_code": "GR",
          "slug": "filothei",
          "canonical_path": "/cities/gr/filothei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736229",
          "name": "Flórina",
          "country_code": "GR",
          "slug": "florina",
          "canonical_path": "/cities/gr/florina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262426",
          "name": "Fylí",
          "country_code": "GR",
          "slug": "fyli",
          "canonical_path": "/cities/gr/fyli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262135",
          "name": "Galátsi",
          "country_code": "GR",
          "slug": "galatsi",
          "canonical_path": "/cities/gr/galatsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262104",
          "name": "Gargaliánoi",
          "country_code": "GR",
          "slug": "gargalianoi",
          "canonical_path": "/cities/gr/gargalianoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262098",
          "name": "Gastoúni",
          "country_code": "GR",
          "slug": "gastouni",
          "canonical_path": "/cities/gr/gastouni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262067",
          "name": "Gázi",
          "country_code": "GR",
          "slug": "gazi",
          "canonical_path": "/cities/gr/gazi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:8201845",
          "name": "Gérakas",
          "country_code": "GR",
          "slug": "gerakas",
          "canonical_path": "/cities/gr/gerakas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:733776",
          "name": "Giannitsá",
          "country_code": "GR",
          "slug": "giannitsa",
          "canonical_path": "/cities/gr/giannitsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:251332",
          "name": "Giánnouli",
          "country_code": "GR",
          "slug": "giannouli",
          "canonical_path": "/cities/gr/giannouli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:262036",
          "name": "Glyfáda",
          "country_code": "GR",
          "slug": "glyfada",
          "canonical_path": "/cities/gr/glyfada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736166",
          "name": "Gouménissa",
          "country_code": "GR",
          "slug": "goumenissa",
          "canonical_path": "/cities/gr/goumenissa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736151",
          "name": "Grevená",
          "country_code": "GR",
          "slug": "grevena",
          "canonical_path": "/cities/gr/grevena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:wikidata:Q12875662",
          "name": "Heraklion",
          "country_code": "GR",
          "slug": "heraklion",
          "canonical_path": "/cities/gr/heraklion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252685",
          "name": "Ialysós",
          "country_code": "GR",
          "slug": "ialysos",
          "canonical_path": "/cities/gr/ialysos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261814",
          "name": "Ierápetra",
          "country_code": "GR",
          "slug": "ierapetra",
          "canonical_path": "/cities/gr/ierapetra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261807",
          "name": "Igoumenítsa",
          "country_code": "GR",
          "slug": "igoumenitsa",
          "canonical_path": "/cities/gr/igoumenitsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256601",
          "name": "Ílion",
          "country_code": "GR",
          "slug": "ilion",
          "canonical_path": "/cities/gr/ilion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:8310138",
          "name": "Ilioúpoli",
          "country_code": "GR",
          "slug": "ilioupoli",
          "canonical_path": "/cities/gr/ilioupoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261779",
          "name": "Ioánnina",
          "country_code": "GR",
          "slug": "ioannina",
          "canonical_path": "/cities/gr/ioannina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261743",
          "name": "Irákleio",
          "country_code": "GR",
          "slug": "irakleio",
          "canonical_path": "/cities/gr/irakleio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261745",
          "name": "Irákleion",
          "country_code": "GR",
          "slug": "irakleion",
          "canonical_path": "/cities/gr/irakleion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261715",
          "name": "Itéa",
          "country_code": "GR",
          "slug": "itea",
          "canonical_path": "/cities/gr/itea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261678",
          "name": "Kaisarianí",
          "country_code": "GR",
          "slug": "kaisariani",
          "canonical_path": "/cities/gr/kaisariani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:736083",
          "name": "Kalamariá",
          "country_code": "GR",
          "slug": "kalamaria",
          "canonical_path": "/cities/gr/kalamaria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261604",
          "name": "Kalamata",
          "country_code": "GR",
          "slug": "kalamata",
          "canonical_path": "/cities/gr/kalamata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261601",
          "name": "Kalampáka",
          "country_code": "GR",
          "slug": "kalampaka",
          "canonical_path": "/cities/gr/kalampaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261414",
          "name": "Kallithéa",
          "country_code": "GR",
          "slug": "kallithea",
          "canonical_path": "/cities/gr/kallithea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261396",
          "name": "Kalloní",
          "country_code": "GR",
          "slug": "kalloni",
          "canonical_path": "/cities/gr/kalloni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261507",
          "name": "Kálymnos",
          "country_code": "GR",
          "slug": "kalymnos",
          "canonical_path": "/cities/gr/kalymnos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261445",
          "name": "Kalývia Thorikoú",
          "country_code": "GR",
          "slug": "kalyvia-thorikou",
          "canonical_path": "/cities/gr/kalyvia-thorikou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:261249",
          "name": "Kamaterón",
          "country_code": "GR",
          "slug": "kamateron",
          "canonical_path": "/cities/gr/kamateron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260989",
          "name": "Kardítsa",
          "country_code": "GR",
          "slug": "karditsa",
          "canonical_path": "/cities/gr/karditsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260895",
          "name": "Karpathos",
          "country_code": "GR",
          "slug": "karpathos",
          "canonical_path": "/cities/gr/karpathos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260891",
          "name": "Karpenísi",
          "country_code": "GR",
          "slug": "karpenisi",
          "canonical_path": "/cities/gr/karpenisi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735927",
          "name": "Kastoria",
          "country_code": "GR",
          "slug": "kastoria",
          "canonical_path": "/cities/gr/kastoria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735914",
          "name": "Kateríni",
          "country_code": "GR",
          "slug": "katerini",
          "canonical_path": "/cities/gr/katerini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260644",
          "name": "Káto Achaḯa",
          "country_code": "GR",
          "slug": "kato-achaia",
          "canonical_path": "/cities/gr/kato-achaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260420",
          "name": "Katsikás",
          "country_code": "GR",
          "slug": "katsikas",
          "canonical_path": "/cities/gr/katsikas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735861",
          "name": "Kavála",
          "country_code": "GR",
          "slug": "kavala",
          "canonical_path": "/cities/gr/kavala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260210",
          "name": "Keratéa",
          "country_code": "GR",
          "slug": "keratea",
          "canonical_path": "/cities/gr/keratea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:260172",
          "name": "Khalándrion",
          "country_code": "GR",
          "slug": "khalandrion",
          "canonical_path": "/cities/gr/khalandrion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259830",
          "name": "Kiáto",
          "country_code": "GR",
          "slug": "kiato",
          "canonical_path": "/cities/gr/kiato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259824",
          "name": "Kifisiá",
          "country_code": "GR",
          "slug": "kifisia",
          "canonical_path": "/cities/gr/kifisia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735736",
          "name": "Kilkís",
          "country_code": "GR",
          "slug": "kilkis",
          "canonical_path": "/cities/gr/kilkis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735640",
          "name": "Komotiní",
          "country_code": "GR",
          "slug": "komotini",
          "canonical_path": "/cities/gr/komotini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259289",
          "name": "Kórinthos",
          "country_code": "GR",
          "slug": "korinthos",
          "canonical_path": "/cities/gr/korinthos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259251",
          "name": "Koropí",
          "country_code": "GR",
          "slug": "koropi",
          "canonical_path": "/cities/gr/koropi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:8310183",
          "name": "Korydallós",
          "country_code": "GR",
          "slug": "korydallos",
          "canonical_path": "/cities/gr/korydallos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259245",
          "name": "Kos",
          "country_code": "GR",
          "slug": "kos",
          "canonical_path": "/cities/gr/kos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735588",
          "name": "Koufália",
          "country_code": "GR",
          "slug": "koufalia",
          "canonical_path": "/cities/gr/koufalia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735563",
          "name": "Kozáni",
          "country_code": "GR",
          "slug": "kozani",
          "canonical_path": "/cities/gr/kozani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735546",
          "name": "Krýa Vrýsi",
          "country_code": "GR",
          "slug": "krya-vrysi",
          "canonical_path": "/cities/gr/krya-vrysi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258793",
          "name": "Kryonéri",
          "country_code": "GR",
          "slug": "kryoneri",
          "canonical_path": "/cities/gr/kryoneri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259806",
          "name": "Kými",
          "country_code": "GR",
          "slug": "kymi",
          "canonical_path": "/cities/gr/kymi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259782",
          "name": "Kyparissía",
          "country_code": "GR",
          "slug": "kyparissia",
          "canonical_path": "/cities/gr/kyparissia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735481",
          "name": "Lagkadás",
          "country_code": "GR",
          "slug": "lagkadas",
          "canonical_path": "/cities/gr/lagkadas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258620",
          "name": "Lamía",
          "country_code": "GR",
          "slug": "lamia",
          "canonical_path": "/cities/gr/lamia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258576",
          "name": "Lárisa",
          "country_code": "GR",
          "slug": "larisa",
          "canonical_path": "/cities/gr/larisa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:wikidata:Q12875709",
          "name": "Larissa",
          "country_code": "GR",
          "slug": "larissa",
          "canonical_path": "/cities/gr/larissa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258543",
          "name": "Lávrio",
          "country_code": "GR",
          "slug": "lavrio",
          "canonical_path": "/cities/gr/lavrio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258438",
          "name": "Lefkáda",
          "country_code": "GR",
          "slug": "lefkada",
          "canonical_path": "/cities/gr/lefkada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258427",
          "name": "Lefkímmi",
          "country_code": "GR",
          "slug": "lefkimmi",
          "canonical_path": "/cities/gr/lefkimmi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735399",
          "name": "Litóchoro",
          "country_code": "GR",
          "slug": "litochoro",
          "canonical_path": "/cities/gr/litochoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258463",
          "name": "Livadeiá",
          "country_code": "GR",
          "slug": "livadeia",
          "canonical_path": "/cities/gr/livadeia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258175",
          "name": "Lixoúri",
          "country_code": "GR",
          "slug": "lixouri",
          "canonical_path": "/cities/gr/lixouri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258066",
          "name": "Loutráki",
          "country_code": "GR",
          "slug": "loutraki",
          "canonical_path": "/cities/gr/loutraki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:258332",
          "name": "Lykóvrysi",
          "country_code": "GR",
          "slug": "lykovrysi",
          "canonical_path": "/cities/gr/lykovrysi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:257975",
          "name": "Makrakómi",
          "country_code": "GR",
          "slug": "makrakomi",
          "canonical_path": "/cities/gr/makrakomi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:257811",
          "name": "Mándra",
          "country_code": "GR",
          "slug": "mandra",
          "canonical_path": "/cities/gr/mandra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:257717",
          "name": "Marathónas",
          "country_code": "GR",
          "slug": "marathonas",
          "canonical_path": "/cities/gr/marathonas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:265243",
          "name": "Maroúsi",
          "country_code": "GR",
          "slug": "marousi",
          "canonical_path": "/cities/gr/marousi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:257395",
          "name": "Megalópoli",
          "country_code": "GR",
          "slug": "megalopoli",
          "canonical_path": "/cities/gr/megalopoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:257365",
          "name": "Mégara",
          "country_code": "GR",
          "slug": "megara",
          "canonical_path": "/cities/gr/megara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735235",
          "name": "Melíki",
          "country_code": "GR",
          "slug": "meliki",
          "canonical_path": "/cities/gr/meliki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:257302",
          "name": "Melíssia",
          "country_code": "GR",
          "slug": "melissia",
          "canonical_path": "/cities/gr/melissia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735215",
          "name": "Meneméni",
          "country_code": "GR",
          "slug": "menemeni",
          "canonical_path": "/cities/gr/menemeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:257186",
          "name": "Mesolóngi",
          "country_code": "GR",
          "slug": "mesolongi",
          "canonical_path": "/cities/gr/mesolongi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:257152",
          "name": "Messíni",
          "country_code": "GR",
          "slug": "messini",
          "canonical_path": "/cities/gr/messini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:259128",
          "name": "Metamórfosi",
          "country_code": "GR",
          "slug": "metamorfosi",
          "canonical_path": "/cities/gr/metamorfosi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256842",
          "name": "Moíres",
          "country_code": "GR",
          "slug": "moires",
          "canonical_path": "/cities/gr/moires/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256750",
          "name": "Moskháton",
          "country_code": "GR",
          "slug": "moskhaton",
          "canonical_path": "/cities/gr/moskhaton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256696",
          "name": "Mourniés",
          "country_code": "GR",
          "slug": "mournies",
          "canonical_path": "/cities/gr/mournies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:257056",
          "name": "Mykonos",
          "country_code": "GR",
          "slug": "mykonos",
          "canonical_path": "/cities/gr/mykonos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256930",
          "name": "Mýrina",
          "country_code": "GR",
          "slug": "myrina",
          "canonical_path": "/cities/gr/myrina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256866",
          "name": "Mytilene",
          "country_code": "GR",
          "slug": "mytilene",
          "canonical_path": "/cities/gr/mytilene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256639",
          "name": "Náfpaktos",
          "country_code": "GR",
          "slug": "nafpaktos",
          "canonical_path": "/cities/gr/nafpaktos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256637",
          "name": "Náfplio",
          "country_code": "GR",
          "slug": "nafplio",
          "canonical_path": "/cities/gr/nafplio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735030",
          "name": "Náousa",
          "country_code": "GR",
          "slug": "naousa",
          "canonical_path": "/cities/gr/naousa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256632",
          "name": "Náxos",
          "country_code": "GR",
          "slug": "naxos",
          "canonical_path": "/cities/gr/naxos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256629",
          "name": "Néa Alikarnassós",
          "country_code": "GR",
          "slug": "nea-alikarnassos",
          "canonical_path": "/cities/gr/nea-alikarnassos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256627",
          "name": "Néa Anchiálos",
          "country_code": "GR",
          "slug": "nea-anchialos",
          "canonical_path": "/cities/gr/nea-anchialos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256626",
          "name": "Néa Artáki",
          "country_code": "GR",
          "slug": "nea-artaki",
          "canonical_path": "/cities/gr/nea-artaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:9035867",
          "name": "Néa Chalkidóna",
          "country_code": "GR",
          "slug": "nea-chalkidona",
          "canonical_path": "/cities/gr/nea-chalkidona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256622",
          "name": "Néa Erythraía",
          "country_code": "GR",
          "slug": "nea-erythraia",
          "canonical_path": "/cities/gr/nea-erythraia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256621",
          "name": "Néa Filadélfeia",
          "country_code": "GR",
          "slug": "nea-filadelfeia",
          "canonical_path": "/cities/gr/nea-filadelfeia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256614",
          "name": "Néa Ionía",
          "country_code": "GR",
          "slug": "nea-ionia",
          "canonical_path": "/cities/gr/nea-ionia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:9034728",
          "name": "Néa Ionía",
          "country_code": "GR",
          "slug": "nea-ionia-esye14-24",
          "canonical_path": "/cities/gr/nea-ionia-esye14-24/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735016",
          "name": "Néa Kallikráteia",
          "country_code": "GR",
          "slug": "nea-kallikrateia",
          "canonical_path": "/cities/gr/nea-kallikrateia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256598",
          "name": "Néa Mákri",
          "country_code": "GR",
          "slug": "nea-makri",
          "canonical_path": "/cities/gr/nea-makri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:735001",
          "name": "Néa Michanióna",
          "country_code": "GR",
          "slug": "nea-michaniona",
          "canonical_path": "/cities/gr/nea-michaniona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734999",
          "name": "Néa Moudhaniá",
          "country_code": "GR",
          "slug": "nea-moudhania",
          "canonical_path": "/cities/gr/nea-moudhania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:9035866",
          "name": "Néa Pentéli",
          "country_code": "GR",
          "slug": "nea-penteli",
          "canonical_path": "/cities/gr/nea-penteli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256592",
          "name": "Néa Péramos",
          "country_code": "GR",
          "slug": "nea-peramos",
          "canonical_path": "/cities/gr/nea-peramos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256575",
          "name": "Néa Smýrni",
          "country_code": "GR",
          "slug": "nea-smyrni",
          "canonical_path": "/cities/gr/nea-smyrni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:11747175",
          "name": "Neapoli",
          "country_code": "GR",
          "slug": "neapoli-esye12-13",
          "canonical_path": "/cities/gr/neapoli-esye12-13/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256588",
          "name": "Neápoli",
          "country_code": "GR",
          "slug": "neapoli",
          "canonical_path": "/cities/gr/neapoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:8657513",
          "name": "Néo Psychikó",
          "country_code": "GR",
          "slug": "neo-psychiko",
          "canonical_path": "/cities/gr/neo-psychiko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734973",
          "name": "Néoi Epivátes",
          "country_code": "GR",
          "slug": "neoi-epivates",
          "canonical_path": "/cities/gr/neoi-epivates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256492",
          "name": "Néon Karlovásion",
          "country_code": "GR",
          "slug": "neon-karlovasion",
          "canonical_path": "/cities/gr/neon-karlovasion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256449",
          "name": "Nerokoúros",
          "country_code": "GR",
          "slug": "nerokouros",
          "canonical_path": "/cities/gr/nerokouros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256429",
          "name": "Níkaia",
          "country_code": "GR",
          "slug": "nikaia",
          "canonical_path": "/cities/gr/nikaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734883",
          "name": "Oraiókastro",
          "country_code": "GR",
          "slug": "oraiokastro",
          "canonical_path": "/cities/gr/oraiokastro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256268",
          "name": "Orchomenós",
          "country_code": "GR",
          "slug": "orchomenos",
          "canonical_path": "/cities/gr/orchomenos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734880",
          "name": "Orestiáda",
          "country_code": "GR",
          "slug": "orestiada",
          "canonical_path": "/cities/gr/orestiada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256223",
          "name": "Ovriá",
          "country_code": "GR",
          "slug": "ovria",
          "canonical_path": "/cities/gr/ovria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256197",
          "name": "Paianía",
          "country_code": "GR",
          "slug": "paiania",
          "canonical_path": "/cities/gr/paiania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256075",
          "name": "Palaió Fáliro",
          "country_code": "GR",
          "slug": "palaio-faliro",
          "canonical_path": "/cities/gr/palaio-faliro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256047",
          "name": "Palamás",
          "country_code": "GR",
          "slug": "palamas",
          "canonical_path": "/cities/gr/palamas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734771",
          "name": "Panórama",
          "country_code": "GR",
          "slug": "panorama",
          "canonical_path": "/cities/gr/panorama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:256342",
          "name": "Papágou",
          "country_code": "GR",
          "slug": "papagou",
          "canonical_path": "/cities/gr/papagou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255777",
          "name": "Paralía",
          "country_code": "GR",
          "slug": "paralia",
          "canonical_path": "/cities/gr/paralia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734757",
          "name": "Paralía",
          "country_code": "GR",
          "slug": "paralia-esye12-16",
          "canonical_path": "/cities/gr/paralia-esye12-16/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255736",
          "name": "Párga",
          "country_code": "GR",
          "slug": "parga",
          "canonical_path": "/cities/gr/parga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255721",
          "name": "Páros",
          "country_code": "GR",
          "slug": "paros",
          "canonical_path": "/cities/gr/paros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255683",
          "name": "Pátra",
          "country_code": "GR",
          "slug": "patra",
          "canonical_path": "/cities/gr/patra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:wikidata:Q12875753",
          "name": "Patras",
          "country_code": "GR",
          "slug": "patras",
          "canonical_path": "/cities/gr/patras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734405",
          "name": "Péfka",
          "country_code": "GR",
          "slug": "pefka",
          "canonical_path": "/cities/gr/pefka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:8358562",
          "name": "Péfki",
          "country_code": "GR",
          "slug": "pefki",
          "canonical_path": "/cities/gr/pefki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734712",
          "name": "Peraía",
          "country_code": "GR",
          "slug": "peraia",
          "canonical_path": "/cities/gr/peraia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255588",
          "name": "Pérama",
          "country_code": "GR",
          "slug": "perama",
          "canonical_path": "/cities/gr/perama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255524",
          "name": "Peristéri",
          "country_code": "GR",
          "slug": "peristeri",
          "canonical_path": "/cities/gr/peristeri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255377",
          "name": "Petroúpolis",
          "country_code": "GR",
          "slug": "petroupolis",
          "canonical_path": "/cities/gr/petroupolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255319",
          "name": "Pikérmi",
          "country_code": "GR",
          "slug": "pikermi",
          "canonical_path": "/cities/gr/pikermi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255274",
          "name": "Piraeus",
          "country_code": "GR",
          "slug": "piraeus",
          "canonical_path": "/cities/gr/piraeus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734564",
          "name": "Plagiári",
          "country_code": "GR",
          "slug": "plagiari",
          "canonical_path": "/cities/gr/plagiari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734575",
          "name": "Platý",
          "country_code": "GR",
          "slug": "platy",
          "canonical_path": "/cities/gr/platy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:254990",
          "name": "Platýkampos",
          "country_code": "GR",
          "slug": "platykampos",
          "canonical_path": "/cities/gr/platykampos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734538",
          "name": "Políchni",
          "country_code": "GR",
          "slug": "polichni",
          "canonical_path": "/cities/gr/polichni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734517",
          "name": "Polýgyros",
          "country_code": "GR",
          "slug": "polygyros",
          "canonical_path": "/cities/gr/polygyros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734540",
          "name": "Polýkastro",
          "country_code": "GR",
          "slug": "polykastro",
          "canonical_path": "/cities/gr/polykastro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:254698",
          "name": "Préveza",
          "country_code": "GR",
          "slug": "preveza",
          "canonical_path": "/cities/gr/preveza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:254546",
          "name": "Psachná",
          "country_code": "GR",
          "slug": "psachna",
          "canonical_path": "/cities/gr/psachna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:254505",
          "name": "Psychikó",
          "country_code": "GR",
          "slug": "psychiko",
          "canonical_path": "/cities/gr/psychiko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734426",
          "name": "Ptolemaḯda",
          "country_code": "GR",
          "slug": "ptolemaida",
          "canonical_path": "/cities/gr/ptolemaida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734643",
          "name": "Pylaía",
          "country_code": "GR",
          "slug": "pylaia",
          "canonical_path": "/cities/gr/pylaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255229",
          "name": "Pýrgos",
          "country_code": "GR",
          "slug": "pyrgos",
          "canonical_path": "/cities/gr/pyrgos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:255163",
          "name": "Pythagóreio",
          "country_code": "GR",
          "slug": "pythagoreio",
          "canonical_path": "/cities/gr/pythagoreio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:254425",
          "name": "Rafína",
          "country_code": "GR",
          "slug": "rafina",
          "canonical_path": "/cities/gr/rafina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:254352",
          "name": "Rethymno",
          "country_code": "GR",
          "slug": "rethymno",
          "canonical_path": "/cities/gr/rethymno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:254315",
          "name": "Río",
          "country_code": "GR",
          "slug": "rio",
          "canonical_path": "/cities/gr/rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:400666",
          "name": "Ródos",
          "country_code": "GR",
          "slug": "rodos",
          "canonical_path": "/cities/gr/rodos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:254144",
          "name": "Salamína",
          "country_code": "GR",
          "slug": "salamina",
          "canonical_path": "/cities/gr/salamina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734330",
          "name": "Sérres",
          "country_code": "GR",
          "slug": "serres",
          "canonical_path": "/cities/gr/serres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734315",
          "name": "Siátista",
          "country_code": "GR",
          "slug": "siatista",
          "canonical_path": "/cities/gr/siatista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734310",
          "name": "Sidirókastro",
          "country_code": "GR",
          "slug": "sidirokastro",
          "canonical_path": "/cities/gr/sidirokastro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734284",
          "name": "Síndos",
          "country_code": "GR",
          "slug": "sindos",
          "canonical_path": "/cities/gr/sindos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:253759",
          "name": "Sitia",
          "country_code": "GR",
          "slug": "sitia",
          "canonical_path": "/cities/gr/sitia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:253456",
          "name": "Soúda",
          "country_code": "GR",
          "slug": "souda",
          "canonical_path": "/cities/gr/souda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:253394",
          "name": "Sparta",
          "country_code": "GR",
          "slug": "sparta",
          "canonical_path": "/cities/gr/sparta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:253376",
          "name": "Spáta",
          "country_code": "GR",
          "slug": "spata",
          "canonical_path": "/cities/gr/spata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734150",
          "name": "Stavroúpoli",
          "country_code": "GR",
          "slug": "stavroupoli",
          "canonical_path": "/cities/gr/stavroupoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734301",
          "name": "Sykiés",
          "country_code": "GR",
          "slug": "sykies",
          "canonical_path": "/cities/gr/sykies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:253025",
          "name": "Távros",
          "country_code": "GR",
          "slug": "tavros",
          "canonical_path": "/cities/gr/tavros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734080",
          "name": "Thérmi",
          "country_code": "GR",
          "slug": "thermi",
          "canonical_path": "/cities/gr/thermi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:wikidata:Q6627746",
          "name": "Thessaloniki",
          "country_code": "GR",
          "slug": "thessaloniki",
          "canonical_path": "/cities/gr/thessaloniki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252910",
          "name": "Thívai",
          "country_code": "GR",
          "slug": "thivai",
          "canonical_path": "/cities/gr/thivai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:9035859",
          "name": "Thrakomakedónes",
          "country_code": "GR",
          "slug": "thrakomakedones",
          "canonical_path": "/cities/gr/thrakomakedones/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252664",
          "name": "Tríkala",
          "country_code": "GR",
          "slug": "trikala",
          "canonical_path": "/cities/gr/trikala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:734014",
          "name": "Trílofos",
          "country_code": "GR",
          "slug": "trilofos",
          "canonical_path": "/cities/gr/trilofos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252601",
          "name": "Trípoli",
          "country_code": "GR",
          "slug": "tripoli",
          "canonical_path": "/cities/gr/tripoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252862",
          "name": "Tympáki",
          "country_code": "GR",
          "slug": "tympaki",
          "canonical_path": "/cities/gr/tympaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252848",
          "name": "Týrnavos",
          "country_code": "GR",
          "slug": "tyrnavos",
          "canonical_path": "/cities/gr/tyrnavos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252270",
          "name": "Vári",
          "country_code": "GR",
          "slug": "vari",
          "canonical_path": "/cities/gr/vari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252239",
          "name": "Vartholomió",
          "country_code": "GR",
          "slug": "vartholomio",
          "canonical_path": "/cities/gr/vartholomio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:733941",
          "name": "Vasiliká",
          "country_code": "GR",
          "slug": "vasilika",
          "canonical_path": "/cities/gr/vasilika/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252190",
          "name": "Vasilikón",
          "country_code": "GR",
          "slug": "vasilikon",
          "canonical_path": "/cities/gr/vasilikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:252164",
          "name": "Vathí",
          "country_code": "GR",
          "slug": "vathi",
          "canonical_path": "/cities/gr/vathi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:733905",
          "name": "Véroia",
          "country_code": "GR",
          "slug": "veroia",
          "canonical_path": "/cities/gr/veroia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:251833",
          "name": "Volos",
          "country_code": "GR",
          "slug": "volos",
          "canonical_path": "/cities/gr/volos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:251780",
          "name": "Voúla",
          "country_code": "GR",
          "slug": "voula",
          "canonical_path": "/cities/gr/voula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:6324534",
          "name": "Vrilissia",
          "country_code": "GR",
          "slug": "vrilissia",
          "canonical_path": "/cities/gr/vrilissia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:251606",
          "name": "Vrontádos",
          "country_code": "GR",
          "slug": "vrontados",
          "canonical_path": "/cities/gr/vrontados/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:251948",
          "name": "Výronas",
          "country_code": "GR",
          "slug": "vyronas",
          "canonical_path": "/cities/gr/vyronas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:733840",
          "name": "Xánthi",
          "country_code": "GR",
          "slug": "xanthi",
          "canonical_path": "/cities/gr/xanthi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:251525",
          "name": "Xylókastro",
          "country_code": "GR",
          "slug": "xylokastro",
          "canonical_path": "/cities/gr/xylokastro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:251283",
          "name": "Zacháro",
          "country_code": "GR",
          "slug": "zacharo",
          "canonical_path": "/cities/gr/zacharo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:251280",
          "name": "Zakynthos",
          "country_code": "GR",
          "slug": "zakynthos",
          "canonical_path": "/cities/gr/zakynthos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:9035858",
          "name": "Zefyri",
          "country_code": "GR",
          "slug": "zefyri",
          "canonical_path": "/cities/gr/zefyri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:gr:geonames:8358544",
          "name": "Zográfos",
          "country_code": "GR",
          "slug": "zografos",
          "canonical_path": "/cities/gr/zografos/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "HU",
      "path": "cities/hu.json",
      "city_count": 278,
      "cities": [
        {
          "entity_id": "city:hu:geonames:723030",
          "name": "Abony",
          "country_code": "HU",
          "slug": "abony",
          "canonical_path": "/cities/hu/abony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3056437",
          "name": "Ács",
          "country_code": "HU",
          "slug": "acs",
          "canonical_path": "/cities/hu/acs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3056357",
          "name": "Ajka",
          "country_code": "HU",
          "slug": "ajka",
          "canonical_path": "/cities/hu/ajka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3056326",
          "name": "Albertirsa",
          "country_code": "HU",
          "slug": "albertirsa",
          "canonical_path": "/cities/hu/albertirsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:7284899",
          "name": "Algyő",
          "country_code": "HU",
          "slug": "algyo",
          "canonical_path": "/cities/hu/algyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:722882",
          "name": "Alsózsolca",
          "country_code": "HU",
          "slug": "alsozsolca",
          "canonical_path": "/cities/hu/alsozsolca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3054693",
          "name": "Aszód",
          "country_code": "HU",
          "slug": "aszod",
          "canonical_path": "/cities/hu/aszod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:722766",
          "name": "Átány",
          "country_code": "HU",
          "slug": "atany",
          "canonical_path": "/cities/hu/atany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055760",
          "name": "Bácsalmás",
          "country_code": "HU",
          "slug": "bacsalmas",
          "canonical_path": "/cities/hu/bacsalmas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055685",
          "name": "Baja",
          "country_code": "HU",
          "slug": "baja",
          "canonical_path": "/cities/hu/baja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055601",
          "name": "Balassagyarmat",
          "country_code": "HU",
          "slug": "balassagyarmat",
          "canonical_path": "/cities/hu/balassagyarmat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055590",
          "name": "Balatonalmádi",
          "country_code": "HU",
          "slug": "balatonalmadi",
          "canonical_path": "/cities/hu/balatonalmadi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055584",
          "name": "Balatonboglár",
          "country_code": "HU",
          "slug": "balatonboglar",
          "canonical_path": "/cities/hu/balatonboglar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055566",
          "name": "Balatonfüred",
          "country_code": "HU",
          "slug": "balatonfured",
          "canonical_path": "/cities/hu/balatonfured/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:722650",
          "name": "Balkány",
          "country_code": "HU",
          "slug": "balkany",
          "canonical_path": "/cities/hu/balkany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:722636",
          "name": "Balmazújváros",
          "country_code": "HU",
          "slug": "balmazujvaros",
          "canonical_path": "/cities/hu/balmazujvaros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055368",
          "name": "Barcs",
          "country_code": "HU",
          "slug": "barcs",
          "canonical_path": "/cities/hu/barcs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055298",
          "name": "Bátaszék",
          "country_code": "HU",
          "slug": "bataszek",
          "canonical_path": "/cities/hu/bataszek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055287",
          "name": "Bátonyterenye",
          "country_code": "HU",
          "slug": "batonyterenye",
          "canonical_path": "/cities/hu/batonyterenye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:722477",
          "name": "Battonya",
          "country_code": "HU",
          "slug": "battonya",
          "canonical_path": "/cities/hu/battonya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:722439",
          "name": "Békés",
          "country_code": "HU",
          "slug": "bekes",
          "canonical_path": "/cities/hu/bekes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:722437",
          "name": "Békéscsaba",
          "country_code": "HU",
          "slug": "bekescsaba",
          "canonical_path": "/cities/hu/bekescsaba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:722324",
          "name": "Berettyóújfalu",
          "country_code": "HU",
          "slug": "berettyoujfalu",
          "canonical_path": "/cities/hu/berettyoujfalu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055091",
          "name": "Berhida",
          "country_code": "HU",
          "slug": "berhida",
          "canonical_path": "/cities/hu/berhida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055038",
          "name": "Biatorbágy",
          "country_code": "HU",
          "slug": "biatorbagy",
          "canonical_path": "/cities/hu/biatorbagy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3055030",
          "name": "Bicske",
          "country_code": "HU",
          "slug": "bicske",
          "canonical_path": "/cities/hu/bicske/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3054809",
          "name": "Bonyhád",
          "country_code": "HU",
          "slug": "bonyhad",
          "canonical_path": "/cities/hu/bonyhad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3054648",
          "name": "Budakeszi",
          "country_code": "HU",
          "slug": "budakeszi",
          "canonical_path": "/cities/hu/budakeszi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3054646",
          "name": "Budaörs",
          "country_code": "HU",
          "slug": "budaors",
          "canonical_path": "/cities/hu/budaors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:wikidata:Q1781",
          "name": "Budapest",
          "country_code": "HU",
          "slug": "budapest",
          "canonical_path": "/cities/hu/budapest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3054606",
          "name": "Bugyi",
          "country_code": "HU",
          "slug": "bugyi",
          "canonical_path": "/cities/hu/bugyi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3054543",
          "name": "Cegléd",
          "country_code": "HU",
          "slug": "cegled",
          "canonical_path": "/cities/hu/cegled/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3054533",
          "name": "Celldömölk",
          "country_code": "HU",
          "slug": "celldomolk",
          "canonical_path": "/cities/hu/celldomolk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3054434",
          "name": "Csákvár",
          "country_code": "HU",
          "slug": "csakvar",
          "canonical_path": "/cities/hu/csakvar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721789",
          "name": "Csenger",
          "country_code": "HU",
          "slug": "csenger",
          "canonical_path": "/cities/hu/csenger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053971",
          "name": "Csömör",
          "country_code": "HU",
          "slug": "csomor",
          "canonical_path": "/cities/hu/csomor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721592",
          "name": "Csongrád",
          "country_code": "HU",
          "slug": "csongrad",
          "canonical_path": "/cities/hu/csongrad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053918",
          "name": "Csorna",
          "country_code": "HU",
          "slug": "csorna",
          "canonical_path": "/cities/hu/csorna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721559",
          "name": "Csorvás",
          "country_code": "HU",
          "slug": "csorvas",
          "canonical_path": "/cities/hu/csorvas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053863",
          "name": "Csurgó",
          "country_code": "HU",
          "slug": "csurgo",
          "canonical_path": "/cities/hu/csurgo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053836",
          "name": "Dabas",
          "country_code": "HU",
          "slug": "dabas",
          "canonical_path": "/cities/hu/dabas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:wikidata:Q79880",
          "name": "Debrecen",
          "country_code": "HU",
          "slug": "debrecen",
          "canonical_path": "/cities/hu/debrecen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721428",
          "name": "Derecske",
          "country_code": "HU",
          "slug": "derecske",
          "canonical_path": "/cities/hu/derecske/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721404",
          "name": "Dévaványa",
          "country_code": "HU",
          "slug": "devavanya",
          "canonical_path": "/cities/hu/devavanya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053712",
          "name": "Devecser",
          "country_code": "HU",
          "slug": "devecser",
          "canonical_path": "/cities/hu/devecser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053684",
          "name": "Diósd",
          "country_code": "HU",
          "slug": "diosd",
          "canonical_path": "/cities/hu/diosd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053590",
          "name": "Dombóvár",
          "country_code": "HU",
          "slug": "dombovar",
          "canonical_path": "/cities/hu/dombovar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053577",
          "name": "Dömsöd",
          "country_code": "HU",
          "slug": "domsod",
          "canonical_path": "/cities/hu/domsod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053562",
          "name": "Dorog",
          "country_code": "HU",
          "slug": "dorog",
          "canonical_path": "/cities/hu/dorog/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053489",
          "name": "Dunaföldvár",
          "country_code": "HU",
          "slug": "dunafoldvar",
          "canonical_path": "/cities/hu/dunafoldvar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053485",
          "name": "Dunaharaszti",
          "country_code": "HU",
          "slug": "dunaharaszti",
          "canonical_path": "/cities/hu/dunaharaszti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053476",
          "name": "Dunakeszi",
          "country_code": "HU",
          "slug": "dunakeszi",
          "canonical_path": "/cities/hu/dunakeszi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053438",
          "name": "Dunaújváros",
          "country_code": "HU",
          "slug": "dunaujvaros",
          "canonical_path": "/cities/hu/dunaujvaros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053434",
          "name": "Dunavarsány",
          "country_code": "HU",
          "slug": "dunavarsany",
          "canonical_path": "/cities/hu/dunavarsany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721246",
          "name": "Edelény",
          "country_code": "HU",
          "slug": "edeleny",
          "canonical_path": "/cities/hu/edeleny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721239",
          "name": "Eger",
          "country_code": "HU",
          "slug": "eger",
          "canonical_path": "/cities/hu/eger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721208",
          "name": "Egyek",
          "country_code": "HU",
          "slug": "egyek",
          "canonical_path": "/cities/hu/egyek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721189",
          "name": "Elek",
          "country_code": "HU",
          "slug": "elek",
          "canonical_path": "/cities/hu/elek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721161",
          "name": "Emőd",
          "country_code": "HU",
          "slug": "emod",
          "canonical_path": "/cities/hu/emod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:721159",
          "name": "Encs",
          "country_code": "HU",
          "slug": "encs",
          "canonical_path": "/cities/hu/encs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053297",
          "name": "Enying",
          "country_code": "HU",
          "slug": "enying",
          "canonical_path": "/cities/hu/enying/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053283",
          "name": "Ercsi",
          "country_code": "HU",
          "slug": "ercsi",
          "canonical_path": "/cities/hu/ercsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053281",
          "name": "Érd",
          "country_code": "HU",
          "slug": "erd",
          "canonical_path": "/cities/hu/erd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053253",
          "name": "Erdőkertes",
          "country_code": "HU",
          "slug": "erdokertes",
          "canonical_path": "/cities/hu/erdokertes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3053163",
          "name": "Esztergom",
          "country_code": "HU",
          "slug": "esztergom",
          "canonical_path": "/cities/hu/esztergom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720992",
          "name": "Fegyvernek",
          "country_code": "HU",
          "slug": "fegyvernek",
          "canonical_path": "/cities/hu/fegyvernek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720988",
          "name": "Fehérgyarmat",
          "country_code": "HU",
          "slug": "fehergyarmat",
          "canonical_path": "/cities/hu/fehergyarmat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720857",
          "name": "Felsőzsolca",
          "country_code": "HU",
          "slug": "felsozsolca",
          "canonical_path": "/cities/hu/felsozsolca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3052574",
          "name": "Fonyód",
          "country_code": "HU",
          "slug": "fonyod",
          "canonical_path": "/cities/hu/fonyod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3052542",
          "name": "Fót",
          "country_code": "HU",
          "slug": "fot",
          "canonical_path": "/cities/hu/fot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720687",
          "name": "Füzesabony",
          "country_code": "HU",
          "slug": "fuzesabony",
          "canonical_path": "/cities/hu/fuzesabony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720679",
          "name": "Füzesgyarmat",
          "country_code": "HU",
          "slug": "fuzesgyarmat",
          "canonical_path": "/cities/hu/fuzesgyarmat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3052381",
          "name": "Gárdony",
          "country_code": "HU",
          "slug": "gardony",
          "canonical_path": "/cities/hu/gardony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3052241",
          "name": "Göd",
          "country_code": "HU",
          "slug": "god",
          "canonical_path": "/cities/hu/god/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3052236",
          "name": "Gödöllő",
          "country_code": "HU",
          "slug": "godollo",
          "canonical_path": "/cities/hu/godollo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3052101",
          "name": "Gyál",
          "country_code": "HU",
          "slug": "gyal",
          "canonical_path": "/cities/hu/gyal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720364",
          "name": "Gyomaendrőd",
          "country_code": "HU",
          "slug": "gyomaendrod",
          "canonical_path": "/cities/hu/gyomaendrod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3052045",
          "name": "Gyömrő",
          "country_code": "HU",
          "slug": "gyomro",
          "canonical_path": "/cities/hu/gyomro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3052040",
          "name": "Gyöngyös",
          "country_code": "HU",
          "slug": "gyongyos",
          "canonical_path": "/cities/hu/gyongyos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3052009",
          "name": "Győr",
          "country_code": "HU",
          "slug": "gyor",
          "canonical_path": "/cities/hu/gyor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720334",
          "name": "Gyula",
          "country_code": "HU",
          "slug": "gyula",
          "canonical_path": "/cities/hu/gyula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720292",
          "name": "Hajdúböszörmény",
          "country_code": "HU",
          "slug": "hajduboszormeny",
          "canonical_path": "/cities/hu/hajduboszormeny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720290",
          "name": "Hajdúdorog",
          "country_code": "HU",
          "slug": "hajdudorog",
          "canonical_path": "/cities/hu/hajdudorog/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720287",
          "name": "Hajdúhadház",
          "country_code": "HU",
          "slug": "hajduhadhaz",
          "canonical_path": "/cities/hu/hajduhadhaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720284",
          "name": "Hajdúnánás",
          "country_code": "HU",
          "slug": "hajdunanas",
          "canonical_path": "/cities/hu/hajdunanas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720280",
          "name": "Hajdúsámson",
          "country_code": "HU",
          "slug": "hajdusamson",
          "canonical_path": "/cities/hu/hajdusamson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720276",
          "name": "Hajdúszoboszló",
          "country_code": "HU",
          "slug": "hajduszoboszlo",
          "canonical_path": "/cities/hu/hajduszoboszlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3051822",
          "name": "Halásztelek",
          "country_code": "HU",
          "slug": "halasztelek",
          "canonical_path": "/cities/hu/halasztelek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3051621",
          "name": "Hatvan",
          "country_code": "HU",
          "slug": "hatvan",
          "canonical_path": "/cities/hu/hatvan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:720006",
          "name": "Heves",
          "country_code": "HU",
          "slug": "heves",
          "canonical_path": "/cities/hu/heves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719965",
          "name": "Hódmezővásárhely",
          "country_code": "HU",
          "slug": "hodmezovasarhely",
          "canonical_path": "/cities/hu/hodmezovasarhely/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719843",
          "name": "Hosszúpályi",
          "country_code": "HU",
          "slug": "hosszupalyi",
          "canonical_path": "/cities/hu/hosszupalyi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719806",
          "name": "Ibrány",
          "country_code": "HU",
          "slug": "ibrany",
          "canonical_path": "/cities/hu/ibrany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3051077",
          "name": "Isaszeg",
          "country_code": "HU",
          "slug": "isaszeg",
          "canonical_path": "/cities/hu/isaszeg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3051016",
          "name": "Izsák",
          "country_code": "HU",
          "slug": "izsak",
          "canonical_path": "/cities/hu/izsak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050967",
          "name": "Jánoshalma",
          "country_code": "HU",
          "slug": "janoshalma",
          "canonical_path": "/cities/hu/janoshalma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050927",
          "name": "Jánossomorja",
          "country_code": "HU",
          "slug": "janossomorja",
          "canonical_path": "/cities/hu/janossomorja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719655",
          "name": "Jászapáti",
          "country_code": "HU",
          "slug": "jaszapati",
          "canonical_path": "/cities/hu/jaszapati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050909",
          "name": "Jászárokszállás",
          "country_code": "HU",
          "slug": "jaszarokszallas",
          "canonical_path": "/cities/hu/jaszarokszallas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050907",
          "name": "Jászberény",
          "country_code": "HU",
          "slug": "jaszbereny",
          "canonical_path": "/cities/hu/jaszbereny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719643",
          "name": "Jászkisér",
          "country_code": "HU",
          "slug": "jaszkiser",
          "canonical_path": "/cities/hu/jaszkiser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719640",
          "name": "Jászladány",
          "country_code": "HU",
          "slug": "jaszladany",
          "canonical_path": "/cities/hu/jaszladany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719555",
          "name": "Kaba",
          "country_code": "HU",
          "slug": "kaba",
          "canonical_path": "/cities/hu/kaba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050719",
          "name": "Kalocsa",
          "country_code": "HU",
          "slug": "kalocsa",
          "canonical_path": "/cities/hu/kalocsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050616",
          "name": "Kaposvár",
          "country_code": "HU",
          "slug": "kaposvar",
          "canonical_path": "/cities/hu/kaposvar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050594",
          "name": "Kapuvár",
          "country_code": "HU",
          "slug": "kapuvar",
          "canonical_path": "/cities/hu/kapuvar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719404",
          "name": "Karcag",
          "country_code": "HU",
          "slug": "karcag",
          "canonical_path": "/cities/hu/karcag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050526",
          "name": "Kartal",
          "country_code": "HU",
          "slug": "kartal",
          "canonical_path": "/cities/hu/kartal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719311",
          "name": "Kazincbarcika",
          "country_code": "HU",
          "slug": "kazincbarcika",
          "canonical_path": "/cities/hu/kazincbarcika/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050454",
          "name": "Kecel",
          "country_code": "HU",
          "slug": "kecel",
          "canonical_path": "/cities/hu/kecel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050434",
          "name": "Kecskemét",
          "country_code": "HU",
          "slug": "kecskemet",
          "canonical_path": "/cities/hu/kecskemet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719260",
          "name": "Kemecse",
          "country_code": "HU",
          "slug": "kemecse",
          "canonical_path": "/cities/hu/kemecse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:719252",
          "name": "Kenderes",
          "country_code": "HU",
          "slug": "kenderes",
          "canonical_path": "/cities/hu/kenderes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050311",
          "name": "Kerekegyháza",
          "country_code": "HU",
          "slug": "kerekegyhaza",
          "canonical_path": "/cities/hu/kerekegyhaza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:7284912",
          "name": "Kerepes",
          "country_code": "HU",
          "slug": "kerepes",
          "canonical_path": "/cities/hu/kerepes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050212",
          "name": "Keszthely",
          "country_code": "HU",
          "slug": "keszthely",
          "canonical_path": "/cities/hu/keszthely/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050088",
          "name": "Kisbér",
          "country_code": "HU",
          "slug": "kisber",
          "canonical_path": "/cities/hu/kisber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049896",
          "name": "Kiskőrös",
          "country_code": "HU",
          "slug": "kiskoros",
          "canonical_path": "/cities/hu/kiskoros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049885",
          "name": "Kiskunfélegyháza",
          "country_code": "HU",
          "slug": "kiskunfelegyhaza",
          "canonical_path": "/cities/hu/kiskunfelegyhaza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049880",
          "name": "Kiskunhalas",
          "country_code": "HU",
          "slug": "kiskunhalas",
          "canonical_path": "/cities/hu/kiskunhalas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049878",
          "name": "Kiskunlacháza",
          "country_code": "HU",
          "slug": "kiskunlachaza",
          "canonical_path": "/cities/hu/kiskunlachaza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049875",
          "name": "Kiskunmajsa",
          "country_code": "HU",
          "slug": "kiskunmajsa",
          "canonical_path": "/cities/hu/kiskunmajsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3050290",
          "name": "Kistarcsa",
          "country_code": "HU",
          "slug": "kistarcsa",
          "canonical_path": "/cities/hu/kistarcsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049719",
          "name": "Kistelek",
          "country_code": "HU",
          "slug": "kistelek",
          "canonical_path": "/cities/hu/kistelek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:718744",
          "name": "Kisújszállás",
          "country_code": "HU",
          "slug": "kisujszallas",
          "canonical_path": "/cities/hu/kisujszallas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:718739",
          "name": "Kisvárda",
          "country_code": "HU",
          "slug": "kisvarda",
          "canonical_path": "/cities/hu/kisvarda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:718637",
          "name": "Komádi",
          "country_code": "HU",
          "slug": "komadi",
          "canonical_path": "/cities/hu/komadi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049519",
          "name": "Komárom",
          "country_code": "HU",
          "slug": "komarom",
          "canonical_path": "/cities/hu/komarom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049512",
          "name": "Komló",
          "country_code": "HU",
          "slug": "komlo",
          "canonical_path": "/cities/hu/komlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:718615",
          "name": "Kondoros",
          "country_code": "HU",
          "slug": "kondoros",
          "canonical_path": "/cities/hu/kondoros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049430",
          "name": "Körmend",
          "country_code": "HU",
          "slug": "kormend",
          "canonical_path": "/cities/hu/kormend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:718528",
          "name": "Körösladány",
          "country_code": "HU",
          "slug": "korosladany",
          "canonical_path": "/cities/hu/korosladany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049366",
          "name": "Kőszeg",
          "country_code": "HU",
          "slug": "koszeg",
          "canonical_path": "/cities/hu/koszeg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:718321",
          "name": "Kunhegyes",
          "country_code": "HU",
          "slug": "kunhegyes",
          "canonical_path": "/cities/hu/kunhegyes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:718315",
          "name": "Kunmadaras",
          "country_code": "HU",
          "slug": "kunmadaras",
          "canonical_path": "/cities/hu/kunmadaras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:718312",
          "name": "Kunszentmárton",
          "country_code": "HU",
          "slug": "kunszentmarton",
          "canonical_path": "/cities/hu/kunszentmarton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049100",
          "name": "Kunszentmiklós",
          "country_code": "HU",
          "slug": "kunszentmiklos",
          "canonical_path": "/cities/hu/kunszentmiklos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049036",
          "name": "Lábatlan",
          "country_code": "HU",
          "slug": "labatlan",
          "canonical_path": "/cities/hu/labatlan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3049002",
          "name": "Lajosmizse",
          "country_code": "HU",
          "slug": "lajosmizse",
          "canonical_path": "/cities/hu/lajosmizse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3048847",
          "name": "Lenti",
          "country_code": "HU",
          "slug": "lenti",
          "canonical_path": "/cities/hu/lenti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:718113",
          "name": "Létavértes",
          "country_code": "HU",
          "slug": "letavertes",
          "canonical_path": "/cities/hu/letavertes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3048725",
          "name": "Lőrinci",
          "country_code": "HU",
          "slug": "lorinci",
          "canonical_path": "/cities/hu/lorinci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3048630",
          "name": "Maglód",
          "country_code": "HU",
          "slug": "maglod",
          "canonical_path": "/cities/hu/maglod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717902",
          "name": "Makó",
          "country_code": "HU",
          "slug": "mako",
          "canonical_path": "/cities/hu/mako/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3048456",
          "name": "Marcali",
          "country_code": "HU",
          "slug": "marcali",
          "canonical_path": "/cities/hu/marcali/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:8449649",
          "name": "Martin Kertváros",
          "country_code": "HU",
          "slug": "martin-kertvaros",
          "canonical_path": "/cities/hu/martin-kertvaros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3048326",
          "name": "Martonvásár",
          "country_code": "HU",
          "slug": "martonvasar",
          "canonical_path": "/cities/hu/martonvasar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717771",
          "name": "Mátészalka",
          "country_code": "HU",
          "slug": "mateszalka",
          "canonical_path": "/cities/hu/mateszalka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3048194",
          "name": "Mélykút",
          "country_code": "HU",
          "slug": "melykut",
          "canonical_path": "/cities/hu/melykut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717669",
          "name": "Mezőberény",
          "country_code": "HU",
          "slug": "mezobereny",
          "canonical_path": "/cities/hu/mezobereny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717667",
          "name": "Mezőcsát",
          "country_code": "HU",
          "slug": "mezocsat",
          "canonical_path": "/cities/hu/mezocsat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717662",
          "name": "Mezőhegyes",
          "country_code": "HU",
          "slug": "mezohegyes",
          "canonical_path": "/cities/hu/mezohegyes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717656",
          "name": "Mezőkovácsháza",
          "country_code": "HU",
          "slug": "mezokovacshaza",
          "canonical_path": "/cities/hu/mezokovacshaza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717652",
          "name": "Mezőkövesd",
          "country_code": "HU",
          "slug": "mezokovesd",
          "canonical_path": "/cities/hu/mezokovesd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717635",
          "name": "Mezőtúr",
          "country_code": "HU",
          "slug": "mezotur",
          "canonical_path": "/cities/hu/mezotur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717591",
          "name": "Mindszent",
          "country_code": "HU",
          "slug": "mindszent",
          "canonical_path": "/cities/hu/mindszent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:wikidata:Q102397",
          "name": "Miskolc",
          "country_code": "HU",
          "slug": "miskolc",
          "canonical_path": "/cities/hu/miskolc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047967",
          "name": "Mohács",
          "country_code": "HU",
          "slug": "mohacs",
          "canonical_path": "/cities/hu/mohacs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047942",
          "name": "Monor",
          "country_code": "HU",
          "slug": "monor",
          "canonical_path": "/cities/hu/monor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047927",
          "name": "Mór",
          "country_code": "HU",
          "slug": "mor",
          "canonical_path": "/cities/hu/mor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047922",
          "name": "Mórahalom",
          "country_code": "HU",
          "slug": "morahalom",
          "canonical_path": "/cities/hu/morahalom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047896",
          "name": "Mosonmagyaróvár",
          "country_code": "HU",
          "slug": "mosonmagyarovar",
          "canonical_path": "/cities/hu/mosonmagyarovar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717449",
          "name": "Nádudvar",
          "country_code": "HU",
          "slug": "nadudvar",
          "canonical_path": "/cities/hu/nadudvar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047819",
          "name": "Nagyatád",
          "country_code": "HU",
          "slug": "nagyatad",
          "canonical_path": "/cities/hu/nagyatad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717397",
          "name": "Nagyecsed",
          "country_code": "HU",
          "slug": "nagyecsed",
          "canonical_path": "/cities/hu/nagyecsed/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717345",
          "name": "Nagyhalász",
          "country_code": "HU",
          "slug": "nagyhalasz",
          "canonical_path": "/cities/hu/nagyhalasz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717281",
          "name": "Nagykálló",
          "country_code": "HU",
          "slug": "nagykallo",
          "canonical_path": "/cities/hu/nagykallo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047679",
          "name": "Nagykanizsa",
          "country_code": "HU",
          "slug": "nagykanizsa",
          "canonical_path": "/cities/hu/nagykanizsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047669",
          "name": "Nagykáta",
          "country_code": "HU",
          "slug": "nagykata",
          "canonical_path": "/cities/hu/nagykata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047651",
          "name": "Nagykőrös",
          "country_code": "HU",
          "slug": "nagykoros",
          "canonical_path": "/cities/hu/nagykoros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047646",
          "name": "Nagykovácsi",
          "country_code": "HU",
          "slug": "nagykovacsi",
          "canonical_path": "/cities/hu/nagykovacsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:717130",
          "name": "Nagyszénás",
          "country_code": "HU",
          "slug": "nagyszenas",
          "canonical_path": "/cities/hu/nagyszenas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047282",
          "name": "Nyergesújfalu",
          "country_code": "HU",
          "slug": "nyergesujfalu",
          "canonical_path": "/cities/hu/nyergesujfalu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716951",
          "name": "Nyíradony",
          "country_code": "HU",
          "slug": "nyiradony",
          "canonical_path": "/cities/hu/nyiradony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716948",
          "name": "Nyírbátor",
          "country_code": "HU",
          "slug": "nyirbator",
          "canonical_path": "/cities/hu/nyirbator/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716935",
          "name": "Nyíregyháza",
          "country_code": "HU",
          "slug": "nyiregyhaza",
          "canonical_path": "/cities/hu/nyiregyhaza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716893",
          "name": "Nyírtelek",
          "country_code": "HU",
          "slug": "nyirtelek",
          "canonical_path": "/cities/hu/nyirtelek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047206",
          "name": "Ócsa",
          "country_code": "HU",
          "slug": "ocsa",
          "canonical_path": "/cities/hu/ocsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3047127",
          "name": "Őrbottyán",
          "country_code": "HU",
          "slug": "orbottyan",
          "canonical_path": "/cities/hu/orbottyan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046916",
          "name": "Örkény",
          "country_code": "HU",
          "slug": "orkeny",
          "canonical_path": "/cities/hu/orkeny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716736",
          "name": "Orosháza",
          "country_code": "HU",
          "slug": "oroshaza",
          "canonical_path": "/cities/hu/oroshaza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046888",
          "name": "Oroszlány",
          "country_code": "HU",
          "slug": "oroszlany",
          "canonical_path": "/cities/hu/oroszlany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716671",
          "name": "Ózd",
          "country_code": "HU",
          "slug": "ozd",
          "canonical_path": "/cities/hu/ozd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046768",
          "name": "Paks",
          "country_code": "HU",
          "slug": "paks",
          "canonical_path": "/cities/hu/paks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046686",
          "name": "Pápa",
          "country_code": "HU",
          "slug": "papa",
          "canonical_path": "/cities/hu/papa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046580",
          "name": "Pásztó",
          "country_code": "HU",
          "slug": "paszto",
          "canonical_path": "/cities/hu/paszto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046546",
          "name": "Páty",
          "country_code": "HU",
          "slug": "paty",
          "canonical_path": "/cities/hu/paty/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046531",
          "name": "Pécel",
          "country_code": "HU",
          "slug": "pecel",
          "canonical_path": "/cities/hu/pecel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:wikidata:Q45779",
          "name": "Pécs",
          "country_code": "HU",
          "slug": "pecs",
          "canonical_path": "/cities/hu/pecs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046355",
          "name": "Pilis",
          "country_code": "HU",
          "slug": "pilis",
          "canonical_path": "/cities/hu/pilis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046353",
          "name": "Piliscsaba",
          "country_code": "HU",
          "slug": "piliscsaba",
          "canonical_path": "/cities/hu/piliscsaba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046340",
          "name": "Pilisvörösvár",
          "country_code": "HU",
          "slug": "pilisvorosvar",
          "canonical_path": "/cities/hu/pilisvorosvar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716356",
          "name": "Polgár",
          "country_code": "HU",
          "slug": "polgar",
          "canonical_path": "/cities/hu/polgar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046249",
          "name": "Polgárdi",
          "country_code": "HU",
          "slug": "polgardi",
          "canonical_path": "/cities/hu/polgardi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046230",
          "name": "Pomáz",
          "country_code": "HU",
          "slug": "pomaz",
          "canonical_path": "/cities/hu/pomaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716301",
          "name": "Püspökladány",
          "country_code": "HU",
          "slug": "puspokladany",
          "canonical_path": "/cities/hu/puspokladany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046087",
          "name": "Pusztaszabolcs",
          "country_code": "HU",
          "slug": "pusztaszabolcs",
          "canonical_path": "/cities/hu/pusztaszabolcs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716247",
          "name": "Putnok",
          "country_code": "HU",
          "slug": "putnok",
          "canonical_path": "/cities/hu/putnok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3046026",
          "name": "Ráckeve",
          "country_code": "HU",
          "slug": "rackeve",
          "canonical_path": "/cities/hu/rackeve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716204",
          "name": "Rakamaz",
          "country_code": "HU",
          "slug": "rakamaz",
          "canonical_path": "/cities/hu/rakamaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:716197",
          "name": "Rákóczifalva",
          "country_code": "HU",
          "slug": "rakoczifalva",
          "canonical_path": "/cities/hu/rakoczifalva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715945",
          "name": "Sajószentpéter",
          "country_code": "HU",
          "slug": "sajoszentpeter",
          "canonical_path": "/cities/hu/sajoszentpeter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045643",
          "name": "Salgótarján",
          "country_code": "HU",
          "slug": "salgotarjan",
          "canonical_path": "/cities/hu/salgotarjan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715924",
          "name": "Sándorfalva",
          "country_code": "HU",
          "slug": "sandorfalva",
          "canonical_path": "/cities/hu/sandorfalva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045564",
          "name": "Sárbogárd",
          "country_code": "HU",
          "slug": "sarbogard",
          "canonical_path": "/cities/hu/sarbogard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715888",
          "name": "Sarkad",
          "country_code": "HU",
          "slug": "sarkad",
          "canonical_path": "/cities/hu/sarkad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715867",
          "name": "Sárospatak",
          "country_code": "HU",
          "slug": "sarospatak",
          "canonical_path": "/cities/hu/sarospatak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045487",
          "name": "Sárvár",
          "country_code": "HU",
          "slug": "sarvar",
          "canonical_path": "/cities/hu/sarvar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715839",
          "name": "Sátoraljaújhely",
          "country_code": "HU",
          "slug": "satoraljaujhely",
          "canonical_path": "/cities/hu/satoraljaujhely/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045364",
          "name": "Siklós",
          "country_code": "HU",
          "slug": "siklos",
          "canonical_path": "/cities/hu/siklos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045332",
          "name": "Siófok",
          "country_code": "HU",
          "slug": "siofok",
          "canonical_path": "/cities/hu/siofok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045303",
          "name": "Solt",
          "country_code": "HU",
          "slug": "solt",
          "canonical_path": "/cities/hu/solt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045298",
          "name": "Soltvadkert",
          "country_code": "HU",
          "slug": "soltvadkert",
          "canonical_path": "/cities/hu/soltvadkert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045294",
          "name": "Solymár",
          "country_code": "HU",
          "slug": "solymar",
          "canonical_path": "/cities/hu/solymar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045190",
          "name": "Sopron",
          "country_code": "HU",
          "slug": "sopron",
          "canonical_path": "/cities/hu/sopron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044154",
          "name": "Sülysáp",
          "country_code": "HU",
          "slug": "sulysap",
          "canonical_path": "/cities/hu/sulysap/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045070",
          "name": "Sümeg",
          "country_code": "HU",
          "slug": "sumeg",
          "canonical_path": "/cities/hu/sumeg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3045017",
          "name": "Szabadszállás",
          "country_code": "HU",
          "slug": "szabadszallas",
          "canonical_path": "/cities/hu/szabadszallas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715466",
          "name": "Szarvas",
          "country_code": "HU",
          "slug": "szarvas",
          "canonical_path": "/cities/hu/szarvas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044821",
          "name": "Százhalombatta",
          "country_code": "HU",
          "slug": "szazhalombatta",
          "canonical_path": "/cities/hu/szazhalombatta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044809",
          "name": "Szécsény",
          "country_code": "HU",
          "slug": "szecseny",
          "canonical_path": "/cities/hu/szecseny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:wikidata:Q81581",
          "name": "Szeged",
          "country_code": "HU",
          "slug": "szeged",
          "canonical_path": "/cities/hu/szeged/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715422",
          "name": "Szeghalom",
          "country_code": "HU",
          "slug": "szeghalom",
          "canonical_path": "/cities/hu/szeghalom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044774",
          "name": "Székesfehérvár",
          "country_code": "HU",
          "slug": "szekesfehervar",
          "canonical_path": "/cities/hu/szekesfehervar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044760",
          "name": "Szekszárd",
          "country_code": "HU",
          "slug": "szekszard",
          "canonical_path": "/cities/hu/szekszard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044681",
          "name": "Szentendre",
          "country_code": "HU",
          "slug": "szentendre",
          "canonical_path": "/cities/hu/szentendre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715337",
          "name": "Szentes",
          "country_code": "HU",
          "slug": "szentes",
          "canonical_path": "/cities/hu/szentes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044669",
          "name": "Szentgotthárd",
          "country_code": "HU",
          "slug": "szentgotthard",
          "canonical_path": "/cities/hu/szentgotthard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044575",
          "name": "Szentlőrinc",
          "country_code": "HU",
          "slug": "szentlorinc",
          "canonical_path": "/cities/hu/szentlorinc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715302",
          "name": "Szerencs",
          "country_code": "HU",
          "slug": "szerencs",
          "canonical_path": "/cities/hu/szerencs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044487",
          "name": "Szigethalom",
          "country_code": "HU",
          "slug": "szigethalom",
          "canonical_path": "/cities/hu/szigethalom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044475",
          "name": "Szigetszentmiklós",
          "country_code": "HU",
          "slug": "szigetszentmiklos",
          "canonical_path": "/cities/hu/szigetszentmiklos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044469",
          "name": "Szigetvár",
          "country_code": "HU",
          "slug": "szigetvar",
          "canonical_path": "/cities/hu/szigetvar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715259",
          "name": "Szikszó",
          "country_code": "HU",
          "slug": "szikszo",
          "canonical_path": "/cities/hu/szikszo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:715126",
          "name": "Szolnok",
          "country_code": "HU",
          "slug": "szolnok",
          "canonical_path": "/cities/hu/szolnok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044310",
          "name": "Szombathely",
          "country_code": "HU",
          "slug": "szombathely",
          "canonical_path": "/cities/hu/szombathely/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044181",
          "name": "Taksony",
          "country_code": "HU",
          "slug": "taksony",
          "canonical_path": "/cities/hu/taksony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044171",
          "name": "Tamási",
          "country_code": "HU",
          "slug": "tamasi",
          "canonical_path": "/cities/hu/tamasi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044153",
          "name": "Tápiószecső",
          "country_code": "HU",
          "slug": "tapioszecso",
          "canonical_path": "/cities/hu/tapioszecso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044151",
          "name": "Tápiószele",
          "country_code": "HU",
          "slug": "tapioszele",
          "canonical_path": "/cities/hu/tapioszele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044149",
          "name": "Tápiószentmárton",
          "country_code": "HU",
          "slug": "tapioszentmarton",
          "canonical_path": "/cities/hu/tapioszentmarton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044141",
          "name": "Tapolca",
          "country_code": "HU",
          "slug": "tapolca",
          "canonical_path": "/cities/hu/tapolca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044103",
          "name": "Tárnok",
          "country_code": "HU",
          "slug": "tarnok",
          "canonical_path": "/cities/hu/tarnok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044084",
          "name": "Tát",
          "country_code": "HU",
          "slug": "tat",
          "canonical_path": "/cities/hu/tat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044083",
          "name": "Tata",
          "country_code": "HU",
          "slug": "tata",
          "canonical_path": "/cities/hu/tata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3044082",
          "name": "Tatabánya",
          "country_code": "HU",
          "slug": "tatabanya",
          "canonical_path": "/cities/hu/tatabanya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714914",
          "name": "Téglás",
          "country_code": "HU",
          "slug": "teglas",
          "canonical_path": "/cities/hu/teglas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3338787",
          "name": "Tiszaalpár",
          "country_code": "HU",
          "slug": "tiszaalpar",
          "canonical_path": "/cities/hu/tiszaalpar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714774",
          "name": "Tiszaföldvár",
          "country_code": "HU",
          "slug": "tiszafoldvar",
          "canonical_path": "/cities/hu/tiszafoldvar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714772",
          "name": "Tiszafüred",
          "country_code": "HU",
          "slug": "tiszafured",
          "canonical_path": "/cities/hu/tiszafured/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714754",
          "name": "Tiszakécske",
          "country_code": "HU",
          "slug": "tiszakecske",
          "canonical_path": "/cities/hu/tiszakecske/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714742",
          "name": "Tiszalök",
          "country_code": "HU",
          "slug": "tiszalok",
          "canonical_path": "/cities/hu/tiszalok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714739",
          "name": "Tiszalúc",
          "country_code": "HU",
          "slug": "tiszaluc",
          "canonical_path": "/cities/hu/tiszaluc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714697",
          "name": "Tiszaújváros",
          "country_code": "HU",
          "slug": "tiszaujvaros",
          "canonical_path": "/cities/hu/tiszaujvaros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714692",
          "name": "Tiszavasvári",
          "country_code": "HU",
          "slug": "tiszavasvari",
          "canonical_path": "/cities/hu/tiszavasvari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3043860",
          "name": "Tököl",
          "country_code": "HU",
          "slug": "tokol",
          "canonical_path": "/cities/hu/tokol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3043849",
          "name": "Tolna",
          "country_code": "HU",
          "slug": "tolna",
          "canonical_path": "/cities/hu/tolna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3043778",
          "name": "Törökbálint",
          "country_code": "HU",
          "slug": "torokbalint",
          "canonical_path": "/cities/hu/torokbalint/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714581",
          "name": "Törökszentmiklós",
          "country_code": "HU",
          "slug": "torokszentmiklos",
          "canonical_path": "/cities/hu/torokszentmiklos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714548",
          "name": "Tótkomlós",
          "country_code": "HU",
          "slug": "totkomlos",
          "canonical_path": "/cities/hu/totkomlos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3043678",
          "name": "Tura",
          "country_code": "HU",
          "slug": "tura",
          "canonical_path": "/cities/hu/tura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714504",
          "name": "Túrkeve",
          "country_code": "HU",
          "slug": "turkeve",
          "canonical_path": "/cities/hu/turkeve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714464",
          "name": "Újfehértó",
          "country_code": "HU",
          "slug": "ujfeherto",
          "canonical_path": "/cities/hu/ujfeherto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714449",
          "name": "Újkígyós",
          "country_code": "HU",
          "slug": "ujkigyos",
          "canonical_path": "/cities/hu/ujkigyos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714421",
          "name": "Újszász",
          "country_code": "HU",
          "slug": "ujszasz",
          "canonical_path": "/cities/hu/ujszasz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3043356",
          "name": "Üllő",
          "country_code": "HU",
          "slug": "ullo",
          "canonical_path": "/cities/hu/ullo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3043293",
          "name": "Vác",
          "country_code": "HU",
          "slug": "vac",
          "canonical_path": "/cities/hu/vac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714265",
          "name": "Vámospércs",
          "country_code": "HU",
          "slug": "vamospercs",
          "canonical_path": "/cities/hu/vamospercs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3043095",
          "name": "Várpalota",
          "country_code": "HU",
          "slug": "varpalota",
          "canonical_path": "/cities/hu/varpalota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714188",
          "name": "Vásárosnamény",
          "country_code": "HU",
          "slug": "vasarosnameny",
          "canonical_path": "/cities/hu/vasarosnameny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3043019",
          "name": "Vecsés",
          "country_code": "HU",
          "slug": "vecses",
          "canonical_path": "/cities/hu/vecses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3042968",
          "name": "Veresegyház",
          "country_code": "HU",
          "slug": "veresegyhaz",
          "canonical_path": "/cities/hu/veresegyhaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3042929",
          "name": "Veszprém",
          "country_code": "HU",
          "slug": "veszprem",
          "canonical_path": "/cities/hu/veszprem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:714073",
          "name": "Vésztő",
          "country_code": "HU",
          "slug": "veszto",
          "canonical_path": "/cities/hu/veszto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3042638",
          "name": "Zalaegerszeg",
          "country_code": "HU",
          "slug": "zalaegerszeg",
          "canonical_path": "/cities/hu/zalaegerszeg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3042603",
          "name": "Zalaszentgrót",
          "country_code": "HU",
          "slug": "zalaszentgrot",
          "canonical_path": "/cities/hu/zalaszentgrot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3042536",
          "name": "Zirc",
          "country_code": "HU",
          "slug": "zirc",
          "canonical_path": "/cities/hu/zirc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:hu:geonames:3042507",
          "name": "Zsámbék",
          "country_code": "HU",
          "slug": "zsambek",
          "canonical_path": "/cities/hu/zsambek/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "IS",
      "path": "cities/is.json",
      "city_count": 10,
      "cities": [
        {
          "entity_id": "city:is:geonames:3418653",
          "name": "Akranes",
          "country_code": "IS",
          "slug": "akranes",
          "canonical_path": "/cities/is/akranes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:is:geonames:2633274",
          "name": "Akureyri",
          "country_code": "IS",
          "slug": "akureyri",
          "canonical_path": "/cities/is/akureyri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:is:sveitarfelag_id:1300",
          "name": "Gardabaer",
          "country_code": "IS",
          "slug": "gardabaer",
          "canonical_path": "/cities/is/gardabaer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:is:geonames:3416706",
          "name": "Hafnarfjörður",
          "country_code": "IS",
          "slug": "hafnarfjordur",
          "canonical_path": "/cities/is/hafnarfjordur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:is:geonames:3415496",
          "name": "Keflavík",
          "country_code": "IS",
          "slug": "keflavik",
          "canonical_path": "/cities/is/keflavik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:is:geonames:3415212",
          "name": "Kópavogur",
          "country_code": "IS",
          "slug": "kopavogur",
          "canonical_path": "/cities/is/kopavogur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:is:sveitarfelag_id:1604",
          "name": "Mosfellsbaer",
          "country_code": "IS",
          "slug": "mosfellsbaer",
          "canonical_path": "/cities/is/mosfellsbaer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:is:sveitarfelag_id:2000",
          "name": "Reykjanesbaer",
          "country_code": "IS",
          "slug": "reykjanesbaer",
          "canonical_path": "/cities/is/reykjanesbaer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:is:sveitarfelag_id:0000",
          "name": "Reykjavikurborg",
          "country_code": "IS",
          "slug": "reykjavik",
          "canonical_path": "/cities/is/reykjavik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:is:geonames:3413604",
          "name": "Selfoss",
          "country_code": "IS",
          "slug": "selfoss",
          "canonical_path": "/cities/is/selfoss/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "IE",
      "path": "cities/ie.json",
      "city_count": 70,
      "cities": [
        {
          "entity_id": "city:ie:cso:71918943-d4e4-4d84-b4bf-ace2c1bebe18",
          "name": "Arklow",
          "country_code": "IE",
          "slug": "arklow",
          "canonical_path": "/cities/ie/arklow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:97ea6ddd-0069-475e-a580-c27493396ce9",
          "name": "Ashbourne",
          "country_code": "IE",
          "slug": "ashbourne",
          "canonical_path": "/cities/ie/ashbourne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:geonames:3313472",
          "name": "Athlone",
          "country_code": "IE",
          "slug": "athlone",
          "canonical_path": "/cities/ie/athlone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:dba86152-8f86-431a-987f-8639683dacd2",
          "name": "Athy",
          "country_code": "IE",
          "slug": "athy",
          "canonical_path": "/cities/ie/athy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:af42f030-3e5e-40c2-90ca-313e0e90c938",
          "name": "Balbriggan",
          "country_code": "IE",
          "slug": "balbriggan",
          "canonical_path": "/cities/ie/balbriggan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:452304c3-d48e-49c5-938b-c9b9d646e654",
          "name": "Ballina",
          "country_code": "IE",
          "slug": "ballina",
          "canonical_path": "/cities/ie/ballina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:7caf3e65-d3b3-4997-a72c-e794bf4f3cce",
          "name": "Ballinasloe",
          "country_code": "IE",
          "slug": "ballinasloe",
          "canonical_path": "/cities/ie/ballinasloe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:653de4c7-ced1-4e32-869a-7fa6b897eac9",
          "name": "Bandon",
          "country_code": "IE",
          "slug": "bandon",
          "canonical_path": "/cities/ie/bandon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:geonames:2966154",
          "name": "Birr",
          "country_code": "IE",
          "slug": "birr",
          "canonical_path": "/cities/ie/birr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:geonames:2966101",
          "name": "Blessington",
          "country_code": "IE",
          "slug": "blessington",
          "canonical_path": "/cities/ie/blessington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:ab0d5663-6eb6-4b8b-a8a1-e523f8c77741",
          "name": "Buncrana",
          "country_code": "IE",
          "slug": "buncrana",
          "canonical_path": "/cities/ie/buncrana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:geonames:2965768",
          "name": "Carlow",
          "country_code": "IE",
          "slug": "carlow",
          "canonical_path": "/cities/ie/carlow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:41ae03d9-eefb-442f-8a88-41eaf075a48b",
          "name": "Carrick-on-Suir",
          "country_code": "IE",
          "slug": "carrick-on-suir",
          "canonical_path": "/cities/ie/carrick-on-suir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:c984ac58-80a7-4651-8cb7-c1dbf1779ad8",
          "name": "Carrickmacross",
          "country_code": "IE",
          "slug": "carrickmacross",
          "canonical_path": "/cities/ie/carrickmacross/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:1a679cce-d2db-4df2-96e8-ac6f47a39ea0",
          "name": "Carrigaline",
          "country_code": "IE",
          "slug": "carrigaline",
          "canonical_path": "/cities/ie/carrigaline/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:98c4bbec-a5c5-4e3b-9a74-e11b9202357b",
          "name": "Carrigtwohill",
          "country_code": "IE",
          "slug": "carrigtwohill",
          "canonical_path": "/cities/ie/carrigtwohill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:a7dc443c-4203-465b-b23c-893eaf73e564",
          "name": "Castlebar",
          "country_code": "IE",
          "slug": "castlebar",
          "canonical_path": "/cities/ie/castlebar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:a26b25a5-617b-4562-b8e6-8f5e7955fe5b",
          "name": "Cavan",
          "country_code": "IE",
          "slug": "cavan",
          "canonical_path": "/cities/ie/cavan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:05a4a02c-0ae3-4d13-835e-ea3af9831114",
          "name": "Celbridge",
          "country_code": "IE",
          "slug": "celbridge",
          "canonical_path": "/cities/ie/celbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:89198432-8680-48d9-a214-cba92bfd1f20",
          "name": "Clane",
          "country_code": "IE",
          "slug": "clane",
          "canonical_path": "/cities/ie/clane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:833d33b0-b72c-4dec-8d6d-33c14fccd06e",
          "name": "Cobh",
          "country_code": "IE",
          "slug": "cobh",
          "canonical_path": "/cities/ie/cobh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:a6bfdf38-62ab-40c4-9801-41333160b034",
          "name": "Donabate",
          "country_code": "IE",
          "slug": "donabate",
          "canonical_path": "/cities/ie/donabate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:wikidata:Q1761",
          "name": "Dublin",
          "country_code": "IE",
          "slug": "dublin",
          "canonical_path": "/cities/ie/dublin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:55e39a98-c9a4-4f1d-b95c-b1c7b02a8917",
          "name": "Dunboyne",
          "country_code": "IE",
          "slug": "dunboyne",
          "canonical_path": "/cities/ie/dunboyne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:geonames:2964532",
          "name": "Dundrum",
          "country_code": "IE",
          "slug": "dundrum",
          "canonical_path": "/cities/ie/dundrum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:d8439b80-1807-4056-bc6d-b7931b9e33c8",
          "name": "Dungarvan",
          "country_code": "IE",
          "slug": "dungarvan",
          "canonical_path": "/cities/ie/dungarvan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:b7613ab1-959d-45c7-b63f-a4aff4b3eaf9",
          "name": "Edenderry",
          "country_code": "IE",
          "slug": "edenderry",
          "canonical_path": "/cities/ie/edenderry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:b3b65574-81c9-4263-af16-048810b790f0",
          "name": "Ennis",
          "country_code": "IE",
          "slug": "ennis",
          "canonical_path": "/cities/ie/ennis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:a509c440-59bb-400b-b2f2-1165f8341ff5",
          "name": "Enniscorthy",
          "country_code": "IE",
          "slug": "enniscorthy",
          "canonical_path": "/cities/ie/enniscorthy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:0598e968-5b4b-44b0-8e85-410f73861817",
          "name": "Fermoy",
          "country_code": "IE",
          "slug": "fermoy",
          "canonical_path": "/cities/ie/fermoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:f7063719-f982-4a11-8f2f-f5b39af07606",
          "name": "Gorey",
          "country_code": "IE",
          "slug": "gorey",
          "canonical_path": "/cities/ie/gorey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:geonames:2963472",
          "name": "Kilcock",
          "country_code": "IE",
          "slug": "kilcock",
          "canonical_path": "/cities/ie/kilcock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:785ce642-c64b-4034-b64b-2869fc922e88",
          "name": "Kildare",
          "country_code": "IE",
          "slug": "kildare",
          "canonical_path": "/cities/ie/kildare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:39600a5b-986b-44df-86cd-df9bc3f6fbd0",
          "name": "Killarney",
          "country_code": "IE",
          "slug": "killarney",
          "canonical_path": "/cities/ie/killarney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:93316e98-1f76-4d76-a99d-d95fd4bf8dc0",
          "name": "Kinsale",
          "country_code": "IE",
          "slug": "kinsale",
          "canonical_path": "/cities/ie/kinsale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:6ca2f1a4-ad9b-4507-bc97-01044db6329a",
          "name": "Kinsealy-Drinan",
          "country_code": "IE",
          "slug": "kinsealy-drinan",
          "canonical_path": "/cities/ie/kinsealy-drinan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:f235ddef-8e01-4ac3-858c-73daee5f847a",
          "name": "Leixlip",
          "country_code": "IE",
          "slug": "leixlip",
          "canonical_path": "/cities/ie/leixlip/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:f5f669fb-6aa8-431b-acb2-8bf88185665a",
          "name": "Letterkenny",
          "country_code": "IE",
          "slug": "letterkenny",
          "canonical_path": "/cities/ie/letterkenny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:d59e5a9a-7476-4049-ba88-18d34093d4bc",
          "name": "Longford",
          "country_code": "IE",
          "slug": "longford",
          "canonical_path": "/cities/ie/longford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:fe871f79-9291-4605-a497-c0a2fa93153c",
          "name": "Loughrea",
          "country_code": "IE",
          "slug": "loughrea",
          "canonical_path": "/cities/ie/loughrea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:3d6657b7-37a3-4653-b8f3-94320c925a99",
          "name": "Lusk",
          "country_code": "IE",
          "slug": "lusk",
          "canonical_path": "/cities/ie/lusk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:27ef8350-3e01-4be9-b040-34880d1ae5dd",
          "name": "Malahide",
          "country_code": "IE",
          "slug": "malahide",
          "canonical_path": "/cities/ie/malahide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:a7c23cc9-bd7b-44d6-8163-681f110551d5",
          "name": "Mallow",
          "country_code": "IE",
          "slug": "mallow",
          "canonical_path": "/cities/ie/mallow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:989a6e24-e04f-4b3f-be06-bb0b92b6c3a4",
          "name": "Maynooth",
          "country_code": "IE",
          "slug": "maynooth",
          "canonical_path": "/cities/ie/maynooth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:ccf4b1bb-2411-4742-a711-33c17c0cb907",
          "name": "Midleton",
          "country_code": "IE",
          "slug": "midleton",
          "canonical_path": "/cities/ie/midleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:e8c6a576-7c65-4db1-9964-20ceb00cefec",
          "name": "Monaghan",
          "country_code": "IE",
          "slug": "monaghan",
          "canonical_path": "/cities/ie/monaghan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:335f3108-8cf5-4978-9b4b-fe8150d726e7",
          "name": "Naas",
          "country_code": "IE",
          "slug": "naas",
          "canonical_path": "/cities/ie/naas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:92be777b-f033-460d-9a55-c550f5d17b89",
          "name": "Nenagh",
          "country_code": "IE",
          "slug": "nenagh",
          "canonical_path": "/cities/ie/nenagh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:geonames:2962252",
          "name": "New Ross",
          "country_code": "IE",
          "slug": "new-ross",
          "canonical_path": "/cities/ie/new-ross/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:f4bad9b8-d885-4be1-a8d7-a1fbb9699cd9",
          "name": "Newcastle West",
          "country_code": "IE",
          "slug": "newcastle-west",
          "canonical_path": "/cities/ie/newcastle-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:geonames:2962029",
          "name": "Portarlington",
          "country_code": "IE",
          "slug": "portarlington",
          "canonical_path": "/cities/ie/portarlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:f3ae1c54-27b3-458d-bde9-f58eb64c0f08",
          "name": "Portlaoise",
          "country_code": "IE",
          "slug": "portlaoise",
          "canonical_path": "/cities/ie/portlaoise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:c21c1af1-aa96-4779-a730-de23921adbd1",
          "name": "Portmarnock",
          "country_code": "IE",
          "slug": "portmarnock",
          "canonical_path": "/cities/ie/portmarnock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:0261d090-30b7-406d-9f7a-e69a0c6e6239",
          "name": "Ratoath",
          "country_code": "IE",
          "slug": "ratoath",
          "canonical_path": "/cities/ie/ratoath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:ce3baf4e-78fd-48b5-9cf9-51bc0277c2b1",
          "name": "Roscommon",
          "country_code": "IE",
          "slug": "roscommon",
          "canonical_path": "/cities/ie/roscommon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:e1b2e759-bdfe-431c-8639-5d21bf720488",
          "name": "Roscrea",
          "country_code": "IE",
          "slug": "roscrea",
          "canonical_path": "/cities/ie/roscrea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:8c0e5b26-4c36-47c8-be2f-9d19fdd602f2",
          "name": "Sallins",
          "country_code": "IE",
          "slug": "sallins",
          "canonical_path": "/cities/ie/sallins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:29c6adab-54af-424d-bb70-aecf69b2212b",
          "name": "Shannon",
          "country_code": "IE",
          "slug": "shannon",
          "canonical_path": "/cities/ie/shannon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:86f88690-e3a4-474d-aecd-2a245af9e1bb",
          "name": "Skerries",
          "country_code": "IE",
          "slug": "skerries",
          "canonical_path": "/cities/ie/skerries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:7e6c9c77-b242-4783-933f-a62e2a5c1945",
          "name": "Swords",
          "country_code": "IE",
          "slug": "swords",
          "canonical_path": "/cities/ie/swords/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:4034eafe-ccec-4768-b728-9f127800903a",
          "name": "Thurles",
          "country_code": "IE",
          "slug": "thurles",
          "canonical_path": "/cities/ie/thurles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:0c9860fe-129b-41ee-b86f-f34b580a7ab4",
          "name": "Tipperary",
          "country_code": "IE",
          "slug": "tipperary",
          "canonical_path": "/cities/ie/tipperary/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:75a35af0-65f6-49a4-9600-b8419eefb5f4",
          "name": "Tralee",
          "country_code": "IE",
          "slug": "tralee",
          "canonical_path": "/cities/ie/tralee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:565de2c0-0f88-474e-be79-33154cc80e52",
          "name": "Trim",
          "country_code": "IE",
          "slug": "trim",
          "canonical_path": "/cities/ie/trim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:7b298842-4f4c-4808-a845-b24bc8d6706c",
          "name": "Tuam",
          "country_code": "IE",
          "slug": "tuam",
          "canonical_path": "/cities/ie/tuam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:e798b481-76df-4ab5-9f31-acc9edb33fb5",
          "name": "Tullamore",
          "country_code": "IE",
          "slug": "tullamore",
          "canonical_path": "/cities/ie/tullamore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:8411d98d-920b-4c9c-9a3c-93d2bb70c458",
          "name": "Westport",
          "country_code": "IE",
          "slug": "westport",
          "canonical_path": "/cities/ie/westport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:54528a77-fb36-44d8-8dad-ca237d0223a2",
          "name": "Wexford",
          "country_code": "IE",
          "slug": "wexford",
          "canonical_path": "/cities/ie/wexford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:8bea8ff1-2ab8-4c62-9d95-5b31e78fa289",
          "name": "Wicklow",
          "country_code": "IE",
          "slug": "wicklow",
          "canonical_path": "/cities/ie/wicklow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ie:cso:80698c67-0a05-4619-918a-15bf745d0a95",
          "name": "Youghal",
          "country_code": "IE",
          "slug": "youghal",
          "canonical_path": "/cities/ie/youghal/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "IT",
      "path": "cities/it.json",
      "city_count": 2387,
      "cities": [
        {
          "entity_id": "city:it:istat6:028001",
          "name": "Abano Terme",
          "country_code": "IT",
          "slug": "abano-terme",
          "canonical_path": "/cities/it/abano-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052001",
          "name": "Abbadia San Salvatore",
          "country_code": "IT",
          "slug": "abbadia-san-salvatore",
          "canonical_path": "/cities/it/abbadia-san-salvatore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015002",
          "name": "Abbiategrasso",
          "country_code": "IT",
          "slug": "abbiategrasso",
          "canonical_path": "/cities/it/abbiategrasso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088001",
          "name": "Acate",
          "country_code": "IT",
          "slug": "acate",
          "canonical_path": "/cities/it/acate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063001",
          "name": "Acerra",
          "country_code": "IT",
          "slug": "acerra",
          "canonical_path": "/cities/it/acerra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087002",
          "name": "Aci Castello",
          "country_code": "IT",
          "slug": "aci-castello",
          "canonical_path": "/cities/it/aci-castello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087003",
          "name": "Aci Catena",
          "country_code": "IT",
          "slug": "aci-catena",
          "canonical_path": "/cities/it/aci-catena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087005",
          "name": "Aci Sant'Antonio",
          "country_code": "IT",
          "slug": "aci-sant-antonio",
          "canonical_path": "/cities/it/aci-sant-antonio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087004",
          "name": "Acireale",
          "country_code": "IT",
          "slug": "acireale",
          "canonical_path": "/cities/it/acireale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056001",
          "name": "Acquapendente",
          "country_code": "IT",
          "slug": "acquapendente",
          "canonical_path": "/cities/it/acquapendente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072001",
          "name": "Acquaviva delle Fonti",
          "country_code": "IT",
          "slug": "acquaviva-delle-fonti",
          "canonical_path": "/cities/it/acquaviva-delle-fonti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083107",
          "name": "Acquedolci",
          "country_code": "IT",
          "slug": "acquedolci",
          "canonical_path": "/cities/it/acquedolci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:006001",
          "name": "Acqui Terme",
          "country_code": "IT",
          "slug": "acqui-terme",
          "canonical_path": "/cities/it/acqui-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078003",
          "name": "Acri",
          "country_code": "IT",
          "slug": "acri",
          "canonical_path": "/cities/it/acri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072002",
          "name": "Adelfia",
          "country_code": "IT",
          "slug": "adelfia",
          "canonical_path": "/cities/it/adelfia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087006",
          "name": "Adrano",
          "country_code": "IT",
          "slug": "adrano",
          "canonical_path": "/cities/it/adrano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:029001",
          "name": "Adria",
          "country_code": "IT",
          "slug": "adria",
          "canonical_path": "/cities/it/adria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017002",
          "name": "Adro",
          "country_code": "IT",
          "slug": "adro",
          "canonical_path": "/cities/it/adro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063002",
          "name": "Afragola",
          "country_code": "IT",
          "slug": "afragola",
          "canonical_path": "/cities/it/afragola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063003",
          "name": "Agerola",
          "country_code": "IT",
          "slug": "agerola",
          "canonical_path": "/cities/it/agerola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086001",
          "name": "Agira",
          "country_code": "IT",
          "slug": "agira",
          "canonical_path": "/cities/it/agira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047002",
          "name": "Agliana",
          "country_code": "IT",
          "slug": "agliana",
          "canonical_path": "/cities/it/agliana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108001",
          "name": "Agrate Brianza",
          "country_code": "IT",
          "slug": "agrate-brianza",
          "canonical_path": "/cities/it/agrate-brianza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084001",
          "name": "Agrigento",
          "country_code": "IT",
          "slug": "agrigento",
          "canonical_path": "/cities/it/agrigento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065002",
          "name": "Agropoli",
          "country_code": "IT",
          "slug": "agropoli",
          "canonical_path": "/cities/it/agropoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:062001",
          "name": "Airola",
          "country_code": "IT",
          "slug": "airola",
          "canonical_path": "/cities/it/airola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022001",
          "name": "Ala",
          "country_code": "IT",
          "slug": "ala",
          "canonical_path": "/cities/it/ala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009001",
          "name": "Alassio",
          "country_code": "IT",
          "slug": "alassio",
          "canonical_path": "/cities/it/alassio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060003",
          "name": "Alatri",
          "country_code": "IT",
          "slug": "alatri",
          "canonical_path": "/cities/it/alatri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004003",
          "name": "Alba",
          "country_code": "IT",
          "slug": "alba",
          "canonical_path": "/cities/it/alba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067001",
          "name": "Alba Adriatica",
          "country_code": "IT",
          "slug": "alba-adriatica",
          "canonical_path": "/cities/it/alba-adriatica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065003",
          "name": "Albanella",
          "country_code": "IT",
          "slug": "albanella",
          "canonical_path": "/cities/it/albanella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058003",
          "name": "Albano Laziale",
          "country_code": "IT",
          "slug": "albano-laziale",
          "canonical_path": "/cities/it/albano-laziale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016003",
          "name": "Albano Sant'Alessandro",
          "country_code": "IT",
          "slug": "albano-sant-alessandro",
          "canonical_path": "/cities/it/albano-sant-alessandro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023002",
          "name": "Albaredo d'Adige",
          "country_code": "IT",
          "slug": "albaredo-d-adige",
          "canonical_path": "/cities/it/albaredo-d-adige/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013003",
          "name": "Albavilla",
          "country_code": "IT",
          "slug": "albavilla",
          "canonical_path": "/cities/it/albavilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009002",
          "name": "Albenga",
          "country_code": "IT",
          "slug": "albenga",
          "canonical_path": "/cities/it/albenga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072003",
          "name": "Alberobello",
          "country_code": "IT",
          "slug": "alberobello",
          "canonical_path": "/cities/it/alberobello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108003",
          "name": "Albiate",
          "country_code": "IT",
          "slug": "albiate",
          "canonical_path": "/cities/it/albiate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028003",
          "name": "Albignasego",
          "country_code": "IT",
          "slug": "albignasego",
          "canonical_path": "/cities/it/albignasego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035001",
          "name": "Albinea",
          "country_code": "IT",
          "slug": "albinea",
          "canonical_path": "/cities/it/albinea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016004",
          "name": "Albino",
          "country_code": "IT",
          "slug": "albino",
          "canonical_path": "/cities/it/albino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009004",
          "name": "Albisola Superiore",
          "country_code": "IT",
          "slug": "albisola-superiore",
          "canonical_path": "/cities/it/albisola-superiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009003",
          "name": "Albissola Marina",
          "country_code": "IT",
          "slug": "albissola-marina",
          "canonical_path": "/cities/it/albissola-marina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012002",
          "name": "Albizzate",
          "country_code": "IT",
          "slug": "albizzate",
          "canonical_path": "/cities/it/albizzate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081001",
          "name": "Alcamo",
          "country_code": "IT",
          "slug": "alcamo",
          "canonical_path": "/cities/it/alcamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:006003",
          "name": "Alessandria",
          "country_code": "IT",
          "slug": "alessandria",
          "canonical_path": "/cities/it/alessandria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075002",
          "name": "Alessano",
          "country_code": "IT",
          "slug": "alessano",
          "canonical_path": "/cities/it/alessano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075003",
          "name": "Alezio",
          "country_code": "IT",
          "slug": "alezio",
          "canonical_path": "/cities/it/alezio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039001",
          "name": "Alfonsine",
          "country_code": "IT",
          "slug": "alfonsine",
          "canonical_path": "/cities/it/alfonsine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:112001",
          "name": "Alghero",
          "country_code": "IT",
          "slug": "alghero",
          "canonical_path": "/cities/it/alghero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061002",
          "name": "Alife",
          "country_code": "IT",
          "slug": "alife",
          "canonical_path": "/cities/it/alife/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075004",
          "name": "Alliste",
          "country_code": "IT",
          "slug": "alliste",
          "canonical_path": "/cities/it/alliste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016005",
          "name": "Almè",
          "country_code": "IT",
          "slug": "alme",
          "canonical_path": "/cities/it/alme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016006",
          "name": "Almenno San Bartolomeo",
          "country_code": "IT",
          "slug": "almenno-san-bartolomeo",
          "canonical_path": "/cities/it/almenno-san-bartolomeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016007",
          "name": "Almenno San Salvatore",
          "country_code": "IT",
          "slug": "almenno-san-salvatore",
          "canonical_path": "/cities/it/almenno-san-salvatore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001006",
          "name": "Almese",
          "country_code": "IT",
          "slug": "almese",
          "canonical_path": "/cities/it/almese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025072",
          "name": "Alpago",
          "country_code": "IT",
          "slug": "alpago",
          "canonical_path": "/cities/it/alpago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001008",
          "name": "Alpignano",
          "country_code": "IT",
          "slug": "alpignano",
          "canonical_path": "/cities/it/alpignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072004",
          "name": "Altamura",
          "country_code": "IT",
          "slug": "altamura",
          "canonical_path": "/cities/it/altamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082004",
          "name": "Altavilla Milicia",
          "country_code": "IT",
          "slug": "altavilla-milicia",
          "canonical_path": "/cities/it/altavilla-milicia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065005",
          "name": "Altavilla Silentina",
          "country_code": "IT",
          "slug": "altavilla-silentina",
          "canonical_path": "/cities/it/altavilla-silentina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024004",
          "name": "Altavilla Vicentina",
          "country_code": "IT",
          "slug": "altavilla-vicentina",
          "canonical_path": "/cities/it/altavilla-vicentina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026001",
          "name": "Altivole",
          "country_code": "IT",
          "slug": "altivole",
          "canonical_path": "/cities/it/altivole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037062",
          "name": "Alto Reno Terme",
          "country_code": "IT",
          "slug": "alto-reno-terme",
          "canonical_path": "/cities/it/alto-reno-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082005",
          "name": "Altofonte",
          "country_code": "IT",
          "slug": "altofonte",
          "canonical_path": "/cities/it/altofonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046001",
          "name": "Altopascio",
          "country_code": "IT",
          "slug": "altopascio",
          "canonical_path": "/cities/it/altopascio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022236",
          "name": "Altopiano della Vigolana",
          "country_code": "IT",
          "slug": "altopiano-della-vigolana",
          "canonical_path": "/cities/it/altopiano-della-vigolana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016008",
          "name": "Alzano Lombardo",
          "country_code": "IT",
          "slug": "alzano-lombardo",
          "canonical_path": "/cities/it/alzano-lombardo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078010",
          "name": "Amantea",
          "country_code": "IT",
          "slug": "amantea",
          "canonical_path": "/cities/it/amantea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:055004",
          "name": "Amelia",
          "country_code": "IT",
          "slug": "amelia",
          "canonical_path": "/cities/it/amelia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063004",
          "name": "Anacapri",
          "country_code": "IT",
          "slug": "anacapri",
          "canonical_path": "/cities/it/anacapri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060006",
          "name": "Anagni",
          "country_code": "IT",
          "slug": "anagni",
          "canonical_path": "/cities/it/anagni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042002",
          "name": "Ancona",
          "country_code": "IT",
          "slug": "ancona",
          "canonical_path": "/cities/it/ancona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009006",
          "name": "Andora",
          "country_code": "IT",
          "slug": "andora",
          "canonical_path": "/cities/it/andora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110001",
          "name": "Andria",
          "country_code": "IT",
          "slug": "andria",
          "canonical_path": "/cities/it/andria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012003",
          "name": "Angera",
          "country_code": "IT",
          "slug": "angera",
          "canonical_path": "/cities/it/angera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051001",
          "name": "Anghiari",
          "country_code": "IT",
          "slug": "anghiari",
          "canonical_path": "/cities/it/anghiari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065007",
          "name": "Angri",
          "country_code": "IT",
          "slug": "angri",
          "canonical_path": "/cities/it/angri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058005",
          "name": "Anguillara Sabazia",
          "country_code": "IT",
          "slug": "anguillara-sabazia",
          "canonical_path": "/cities/it/anguillara-sabazia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058007",
          "name": "Anzio",
          "country_code": "IT",
          "slug": "anzio",
          "canonical_path": "/cities/it/anzio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037001",
          "name": "Anzola dell'Emilia",
          "country_code": "IT",
          "slug": "anzola-dell-emilia",
          "canonical_path": "/cities/it/anzola-dell-emilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:007003",
          "name": "Aosta",
          "country_code": "IT",
          "slug": "aosta",
          "canonical_path": "/cities/it/aosta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:062003",
          "name": "Apice",
          "country_code": "IT",
          "slug": "apice",
          "canonical_path": "/cities/it/apice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013010",
          "name": "Appiano Gentile",
          "country_code": "IT",
          "slug": "appiano-gentile",
          "canonical_path": "/cities/it/appiano-gentile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021004",
          "name": "Appiano sulla strada del vino",
          "country_code": "IT",
          "slug": "appiano-sulla-strada-del-vino",
          "canonical_path": "/cities/it/appiano-sulla-strada-del-vino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071004",
          "name": "Apricena",
          "country_code": "IT",
          "slug": "apricena",
          "canonical_path": "/cities/it/apricena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059001",
          "name": "Aprilia",
          "country_code": "IT",
          "slug": "aprilia",
          "canonical_path": "/cities/it/aprilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075006",
          "name": "Aradeo",
          "country_code": "IT",
          "slug": "aradeo",
          "canonical_path": "/cities/it/aradeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084003",
          "name": "Aragona",
          "country_code": "IT",
          "slug": "aragona",
          "canonical_path": "/cities/it/aragona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:117001",
          "name": "Arbus",
          "country_code": "IT",
          "slug": "arbus",
          "canonical_path": "/cities/it/arbus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060008",
          "name": "Arce",
          "country_code": "IT",
          "slug": "arce",
          "canonical_path": "/cities/it/arce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016011",
          "name": "Arcene",
          "country_code": "IT",
          "slug": "arcene",
          "canonical_path": "/cities/it/arcene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012004",
          "name": "Arcisate",
          "country_code": "IT",
          "slug": "arcisate",
          "canonical_path": "/cities/it/arcisate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022006",
          "name": "Arco",
          "country_code": "IT",
          "slug": "arco",
          "canonical_path": "/cities/it/arco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011002",
          "name": "Arcola",
          "country_code": "IT",
          "slug": "arcola",
          "canonical_path": "/cities/it/arcola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023004",
          "name": "Arcole",
          "country_code": "IT",
          "slug": "arcole",
          "canonical_path": "/cities/it/arcole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015007",
          "name": "Arconate",
          "country_code": "IT",
          "slug": "arconate",
          "canonical_path": "/cities/it/arconate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108004",
          "name": "Arcore",
          "country_code": "IT",
          "slug": "arcore",
          "canonical_path": "/cities/it/arcore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024006",
          "name": "Arcugnano",
          "country_code": "IT",
          "slug": "arcugnano",
          "canonical_path": "/cities/it/arcugnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058117",
          "name": "Ardea",
          "country_code": "IT",
          "slug": "ardea",
          "canonical_path": "/cities/it/ardea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010001",
          "name": "Arenzano",
          "country_code": "IT",
          "slug": "arenzano",
          "canonical_path": "/cities/it/arenzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015009",
          "name": "Arese",
          "country_code": "IT",
          "slug": "arese",
          "canonical_path": "/cities/it/arese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051002",
          "name": "Arezzo",
          "country_code": "IT",
          "slug": "arezzo",
          "canonical_path": "/cities/it/arezzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037002",
          "name": "Argelato",
          "country_code": "IT",
          "slug": "argelato",
          "canonical_path": "/cities/it/argelato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038001",
          "name": "Argenta",
          "country_code": "IT",
          "slug": "argenta",
          "canonical_path": "/cities/it/argenta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064005",
          "name": "Ariano Irpino",
          "country_code": "IT",
          "slug": "ariano-irpino",
          "canonical_path": "/cities/it/ariano-irpino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058009",
          "name": "Ariccia",
          "country_code": "IT",
          "slug": "ariccia",
          "canonical_path": "/cities/it/ariccia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061004",
          "name": "Arienzo",
          "country_code": "IT",
          "slug": "arienzo",
          "canonical_path": "/cities/it/arienzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015010",
          "name": "Arluno",
          "country_code": "IT",
          "slug": "arluno",
          "canonical_path": "/cities/it/arluno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003008",
          "name": "Arona",
          "country_code": "IT",
          "slug": "arona",
          "canonical_path": "/cities/it/arona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013012",
          "name": "Arosio",
          "country_code": "IT",
          "slug": "arosio",
          "canonical_path": "/cities/it/arosio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060010",
          "name": "Arpino",
          "country_code": "IT",
          "slug": "arpino",
          "canonical_path": "/cities/it/arpino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:006009",
          "name": "Arquata Scrivia",
          "country_code": "IT",
          "slug": "arquata-scrivia",
          "canonical_path": "/cities/it/arquata-scrivia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058011",
          "name": "Artena",
          "country_code": "IT",
          "slug": "artena",
          "canonical_path": "/cities/it/artena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:113004",
          "name": "Arzachena",
          "country_code": "IT",
          "slug": "arzachena",
          "canonical_path": "/cities/it/arzachena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063005",
          "name": "Arzano",
          "country_code": "IT",
          "slug": "arzano",
          "canonical_path": "/cities/it/arzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024008",
          "name": "Arzignano",
          "country_code": "IT",
          "slug": "arzignano",
          "canonical_path": "/cities/it/arzignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065009",
          "name": "Ascea",
          "country_code": "IT",
          "slug": "ascea",
          "canonical_path": "/cities/it/ascea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052002",
          "name": "Asciano",
          "country_code": "IT",
          "slug": "asciano",
          "canonical_path": "/cities/it/asciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:044007",
          "name": "Ascoli Piceno",
          "country_code": "IT",
          "slug": "ascoli-piceno",
          "canonical_path": "/cities/it/ascoli-piceno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071005",
          "name": "Ascoli Satriano",
          "country_code": "IT",
          "slug": "ascoli-satriano",
          "canonical_path": "/cities/it/ascoli-satriano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024009",
          "name": "Asiago",
          "country_code": "IT",
          "slug": "asiago",
          "canonical_path": "/cities/it/asiago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020002",
          "name": "Asola",
          "country_code": "IT",
          "slug": "asola",
          "canonical_path": "/cities/it/asola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026003",
          "name": "Asolo",
          "country_code": "IT",
          "slug": "asolo",
          "canonical_path": "/cities/it/asolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015011",
          "name": "Assago",
          "country_code": "IT",
          "slug": "assago",
          "canonical_path": "/cities/it/assago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118002",
          "name": "Assemini",
          "country_code": "IT",
          "slug": "assemini",
          "canonical_path": "/cities/it/assemini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054001",
          "name": "Assisi",
          "country_code": "IT",
          "slug": "assisi",
          "canonical_path": "/cities/it/assisi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:005005",
          "name": "Asti",
          "country_code": "IT",
          "slug": "asti",
          "canonical_path": "/cities/it/asti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069005",
          "name": "Atessa",
          "country_code": "IT",
          "slug": "atessa",
          "canonical_path": "/cities/it/atessa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067004",
          "name": "Atri",
          "country_code": "IT",
          "slug": "atri",
          "canonical_path": "/cities/it/atri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064006",
          "name": "Atripalda",
          "country_code": "IT",
          "slug": "atripalda",
          "canonical_path": "/cities/it/atripalda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089001",
          "name": "Augusta",
          "country_code": "IT",
          "slug": "augusta",
          "canonical_path": "/cities/it/augusta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:045001",
          "name": "Aulla",
          "country_code": "IT",
          "slug": "aulla",
          "canonical_path": "/cities/it/aulla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064007",
          "name": "Avella",
          "country_code": "IT",
          "slug": "avella",
          "canonical_path": "/cities/it/avella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064008",
          "name": "Avellino",
          "country_code": "IT",
          "slug": "avellino",
          "canonical_path": "/cities/it/avellino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061005",
          "name": "Aversa",
          "country_code": "IT",
          "slug": "aversa",
          "canonical_path": "/cities/it/aversa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073001",
          "name": "Avetrana",
          "country_code": "IT",
          "slug": "avetrana",
          "canonical_path": "/cities/it/avetrana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:066006",
          "name": "Avezzano",
          "country_code": "IT",
          "slug": "avezzano",
          "canonical_path": "/cities/it/avezzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093004",
          "name": "Aviano",
          "country_code": "IT",
          "slug": "aviano",
          "canonical_path": "/cities/it/aviano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001013",
          "name": "Avigliana",
          "country_code": "IT",
          "slug": "avigliana",
          "canonical_path": "/cities/it/avigliana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076007",
          "name": "Avigliano",
          "country_code": "IT",
          "slug": "avigliano",
          "canonical_path": "/cities/it/avigliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089002",
          "name": "Avola",
          "country_code": "IT",
          "slug": "avola",
          "canonical_path": "/cities/it/avola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093005",
          "name": "Azzano Decimo",
          "country_code": "IT",
          "slug": "azzano-decimo",
          "canonical_path": "/cities/it/azzano-decimo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016016",
          "name": "Azzano San Paolo",
          "country_code": "IT",
          "slug": "azzano-san-paolo",
          "canonical_path": "/cities/it/azzano-san-paolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063006",
          "name": "Bacoli",
          "country_code": "IT",
          "slug": "bacoli",
          "canonical_path": "/cities/it/bacoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:029004",
          "name": "Badia Polesine",
          "country_code": "IT",
          "slug": "badia-polesine",
          "canonical_path": "/cities/it/badia-polesine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082006",
          "name": "Bagheria",
          "country_code": "IT",
          "slug": "bagheria",
          "canonical_path": "/cities/it/bagheria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039002",
          "name": "Bagnacavallo",
          "country_code": "IT",
          "slug": "bagnacavallo",
          "canonical_path": "/cities/it/bagnacavallo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080007",
          "name": "Bagnara Calabra",
          "country_code": "IT",
          "slug": "bagnara-calabra",
          "canonical_path": "/cities/it/bagnara-calabra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046002",
          "name": "Bagni di Lucca",
          "country_code": "IT",
          "slug": "bagni-di-lucca",
          "canonical_path": "/cities/it/bagni-di-lucca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048001",
          "name": "Bagno a Ripoli",
          "country_code": "IT",
          "slug": "bagno-a-ripoli",
          "canonical_path": "/cities/it/bagno-a-ripoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040001",
          "name": "Bagno di Romagna",
          "country_code": "IT",
          "slug": "bagno-di-romagna",
          "canonical_path": "/cities/it/bagno-di-romagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019005",
          "name": "Bagnolo Cremasco",
          "country_code": "IT",
          "slug": "bagnolo-cremasco",
          "canonical_path": "/cities/it/bagnolo-cremasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035002",
          "name": "Bagnolo in Piano",
          "country_code": "IT",
          "slug": "bagnolo-in-piano",
          "canonical_path": "/cities/it/bagnolo-in-piano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017009",
          "name": "Bagnolo Mella",
          "country_code": "IT",
          "slug": "bagnolo-mella",
          "canonical_path": "/cities/it/bagnolo-mella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004009",
          "name": "Bagnolo Piemonte",
          "country_code": "IT",
          "slug": "bagnolo-piemonte",
          "canonical_path": "/cities/it/bagnolo-piemonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020003",
          "name": "Bagnolo San Vito",
          "country_code": "IT",
          "slug": "bagnolo-san-vito",
          "canonical_path": "/cities/it/bagnolo-san-vito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082007",
          "name": "Balestrate",
          "country_code": "IT",
          "slug": "balestrate",
          "canonical_path": "/cities/it/balestrate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063007",
          "name": "Barano d'Ischia",
          "country_code": "IT",
          "slug": "barano-d-ischia",
          "canonical_path": "/cities/it/barano-d-ischia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015250",
          "name": "Baranzate",
          "country_code": "IT",
          "slug": "baranzate",
          "canonical_path": "/cities/it/baranzate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024124",
          "name": "Barbarano Mossano",
          "country_code": "IT",
          "slug": "barbarano-mossano",
          "canonical_path": "/cities/it/barbarano-mossano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048002",
          "name": "Barberino di Mugello",
          "country_code": "IT",
          "slug": "barberino-di-mugello",
          "canonical_path": "/cities/it/barberino-di-mugello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048054",
          "name": "Barberino Tavarnelle",
          "country_code": "IT",
          "slug": "barberino-tavarnelle",
          "canonical_path": "/cities/it/barberino-tavarnelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083005",
          "name": "Barcellona Pozzo di Gotto",
          "country_code": "IT",
          "slug": "barcellona-pozzo-di-gotto",
          "canonical_path": "/cities/it/barcellona-pozzo-di-gotto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023006",
          "name": "Bardolino",
          "country_code": "IT",
          "slug": "bardolino",
          "canonical_path": "/cities/it/bardolino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015012",
          "name": "Bareggio",
          "country_code": "IT",
          "slug": "bareggio",
          "canonical_path": "/cities/it/bareggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046003",
          "name": "Barga",
          "country_code": "IT",
          "slug": "barga",
          "canonical_path": "/cities/it/barga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004012",
          "name": "Barge",
          "country_code": "IT",
          "slug": "barge",
          "canonical_path": "/cities/it/barge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072006",
          "name": "Bari",
          "country_code": "IT",
          "slug": "bari",
          "canonical_path": "/cities/it/bari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037003",
          "name": "Baricella",
          "country_code": "IT",
          "slug": "baricella",
          "canonical_path": "/cities/it/baricella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108005",
          "name": "Barlassina",
          "country_code": "IT",
          "slug": "barlassina",
          "canonical_path": "/cities/it/barlassina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110002",
          "name": "Barletta",
          "country_code": "IT",
          "slug": "barletta",
          "canonical_path": "/cities/it/barletta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065013",
          "name": "Baronissi",
          "country_code": "IT",
          "slug": "baronissi",
          "canonical_path": "/cities/it/baronissi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086004",
          "name": "Barrafranca",
          "country_code": "IT",
          "slug": "barrafranca",
          "canonical_path": "/cities/it/barrafranca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097006",
          "name": "Barzanò",
          "country_code": "IT",
          "slug": "barzano",
          "canonical_path": "/cities/it/barzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022009",
          "name": "Baselga di Pinè",
          "country_code": "IT",
          "slug": "baselga-di-pine",
          "canonical_path": "/cities/it/baselga-di-pine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015015",
          "name": "Basiglio",
          "country_code": "IT",
          "slug": "basiglio",
          "canonical_path": "/cities/it/basiglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030009",
          "name": "Basiliano",
          "country_code": "IT",
          "slug": "basiliano",
          "canonical_path": "/cities/it/basiliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024012",
          "name": "Bassano del Grappa",
          "country_code": "IT",
          "slug": "bassano-del-grappa",
          "canonical_path": "/cities/it/bassano-del-grappa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054002",
          "name": "Bastia Umbra",
          "country_code": "IT",
          "slug": "bastia-umbra",
          "canonical_path": "/cities/it/bastia-umbra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065014",
          "name": "Battipaglia",
          "country_code": "IT",
          "slug": "battipaglia",
          "canonical_path": "/cities/it/battipaglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017014",
          "name": "Bedizzole",
          "country_code": "IT",
          "slug": "bedizzole",
          "canonical_path": "/cities/it/bedizzole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001024",
          "name": "Beinasco",
          "country_code": "IT",
          "slug": "beinasco",
          "canonical_path": "/cities/it/beinasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018013",
          "name": "Belgioioso",
          "country_code": "IT",
          "slug": "belgioioso",
          "canonical_path": "/cities/it/belgioioso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067006",
          "name": "Bellante",
          "country_code": "IT",
          "slug": "bellante",
          "canonical_path": "/cities/it/bellante/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099001",
          "name": "Bellaria-Igea Marina",
          "country_code": "IT",
          "slug": "bellaria-igea-marina",
          "canonical_path": "/cities/it/bellaria-igea-marina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003016",
          "name": "Bellinzago Novarese",
          "country_code": "IT",
          "slug": "bellinzago-novarese",
          "canonical_path": "/cities/it/bellinzago-novarese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065158",
          "name": "Bellizzi",
          "country_code": "IT",
          "slug": "bellizzi",
          "canonical_path": "/cities/it/bellizzi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061007",
          "name": "Bellona",
          "country_code": "IT",
          "slug": "bellona",
          "canonical_path": "/cities/it/bellona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025006",
          "name": "Belluno",
          "country_code": "IT",
          "slug": "belluno",
          "canonical_path": "/cities/it/belluno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108006",
          "name": "Bellusco",
          "country_code": "IT",
          "slug": "bellusco",
          "canonical_path": "/cities/it/bellusco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082009",
          "name": "Belmonte Mezzagno",
          "country_code": "IT",
          "slug": "belmonte-mezzagno",
          "canonical_path": "/cities/it/belmonte-mezzagno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087007",
          "name": "Belpasso",
          "country_code": "IT",
          "slug": "belpasso",
          "canonical_path": "/cities/it/belpasso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078015",
          "name": "Belvedere Marittimo",
          "country_code": "IT",
          "slug": "belvedere-marittimo",
          "canonical_path": "/cities/it/belvedere-marittimo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:062008",
          "name": "Benevento",
          "country_code": "IT",
          "slug": "benevento",
          "canonical_path": "/cities/it/benevento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037005",
          "name": "Bentivoglio",
          "country_code": "IT",
          "slug": "bentivoglio",
          "canonical_path": "/cities/it/bentivoglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016024",
          "name": "Bergamo",
          "country_code": "IT",
          "slug": "bergamo",
          "canonical_path": "/cities/it/bergamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:077003",
          "name": "Bernalda",
          "country_code": "IT",
          "slug": "bernalda",
          "canonical_path": "/cities/it/bernalda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108007",
          "name": "Bernareggio",
          "country_code": "IT",
          "slug": "bernareggio",
          "canonical_path": "/cities/it/bernareggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040003",
          "name": "Bertinoro",
          "country_code": "IT",
          "slug": "bertinoro",
          "canonical_path": "/cities/it/bertinoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108008",
          "name": "Besana in Brianza",
          "country_code": "IT",
          "slug": "besana-in-brianza",
          "canonical_path": "/cities/it/besana-in-brianza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012012",
          "name": "Besnate",
          "country_code": "IT",
          "slug": "besnate",
          "canonical_path": "/cities/it/besnate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012013",
          "name": "Besozzo",
          "country_code": "IT",
          "slug": "besozzo",
          "canonical_path": "/cities/it/besozzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087008",
          "name": "Biancavilla",
          "country_code": "IT",
          "slug": "biancavilla",
          "canonical_path": "/cities/it/biancavilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108009",
          "name": "Biassono",
          "country_code": "IT",
          "slug": "biassono",
          "canonical_path": "/cities/it/biassono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035004",
          "name": "Bibbiano",
          "country_code": "IT",
          "slug": "bibbiano",
          "canonical_path": "/cities/it/bibbiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051004",
          "name": "Bibbiena",
          "country_code": "IT",
          "slug": "bibbiena",
          "canonical_path": "/cities/it/bibbiena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:096004",
          "name": "Biella",
          "country_code": "IT",
          "slug": "biella",
          "canonical_path": "/cities/it/biella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050001",
          "name": "Bientina",
          "country_code": "IT",
          "slug": "bientina",
          "canonical_path": "/cities/it/bientina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015024",
          "name": "Binasco",
          "country_code": "IT",
          "slug": "binasco",
          "canonical_path": "/cities/it/binasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110003",
          "name": "Bisceglie",
          "country_code": "IT",
          "slug": "bisceglie",
          "canonical_path": "/cities/it/bisceglie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078017",
          "name": "Bisignano",
          "country_code": "IT",
          "slug": "bisignano",
          "canonical_path": "/cities/it/bisignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072010",
          "name": "Bitetto",
          "country_code": "IT",
          "slug": "bitetto",
          "canonical_path": "/cities/it/bitetto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072011",
          "name": "Bitonto",
          "country_code": "IT",
          "slug": "bitonto",
          "canonical_path": "/cities/it/bitonto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072012",
          "name": "Bitritto",
          "country_code": "IT",
          "slug": "bitritto",
          "canonical_path": "/cities/it/bitritto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:070003",
          "name": "Bojano",
          "country_code": "IT",
          "slug": "bojano",
          "canonical_path": "/cities/it/bojano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011004",
          "name": "Bolano",
          "country_code": "IT",
          "slug": "bolano",
          "canonical_path": "/cities/it/bolano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016028",
          "name": "Bolgare",
          "country_code": "IT",
          "slug": "bolgare",
          "canonical_path": "/cities/it/bolgare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015027",
          "name": "Bollate",
          "country_code": "IT",
          "slug": "bollate",
          "canonical_path": "/cities/it/bollate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037006",
          "name": "Bologna",
          "country_code": "IT",
          "slug": "bologna",
          "canonical_path": "/cities/it/bologna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016029",
          "name": "Boltiere",
          "country_code": "IT",
          "slug": "boltiere",
          "canonical_path": "/cities/it/boltiere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021008",
          "name": "Bolzano",
          "country_code": "IT",
          "slug": "bolzano",
          "canonical_path": "/cities/it/bolzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024013",
          "name": "Bolzano Vicentino",
          "country_code": "IT",
          "slug": "bolzano-vicentino",
          "canonical_path": "/cities/it/bolzano-vicentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036002",
          "name": "Bomporto",
          "country_code": "IT",
          "slug": "bomporto",
          "canonical_path": "/cities/it/bomporto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016030",
          "name": "Bonate Sopra",
          "country_code": "IT",
          "slug": "bonate-sopra",
          "canonical_path": "/cities/it/bonate-sopra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016031",
          "name": "Bonate Sotto",
          "country_code": "IT",
          "slug": "bonate-sotto",
          "canonical_path": "/cities/it/bonate-sotto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038003",
          "name": "Bondeno",
          "country_code": "IT",
          "slug": "bondeno",
          "canonical_path": "/cities/it/bondeno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:008008",
          "name": "Bordighera",
          "country_code": "IT",
          "slug": "bordighera",
          "canonical_path": "/cities/it/bordighera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035005",
          "name": "Boretto",
          "country_code": "IT",
          "slug": "boretto",
          "canonical_path": "/cities/it/boretto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001028",
          "name": "Borgaro Torinese",
          "country_code": "IT",
          "slug": "borgaro-torinese",
          "canonical_path": "/cities/it/borgaro-torinese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082013",
          "name": "Borgetto",
          "country_code": "IT",
          "slug": "borgetto",
          "canonical_path": "/cities/it/borgetto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079011",
          "name": "Borgia",
          "country_code": "IT",
          "slug": "borgia",
          "canonical_path": "/cities/it/borgia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046004",
          "name": "Borgo a Mozzano",
          "country_code": "IT",
          "slug": "borgo-a-mozzano",
          "canonical_path": "/cities/it/borgo-a-mozzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020072",
          "name": "Borgo Mantovano",
          "country_code": "IT",
          "slug": "borgo-mantovano",
          "canonical_path": "/cities/it/borgo-mantovano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004025",
          "name": "Borgo San Dalmazzo",
          "country_code": "IT",
          "slug": "borgo-san-dalmazzo",
          "canonical_path": "/cities/it/borgo-san-dalmazzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017020",
          "name": "Borgo San Giacomo",
          "country_code": "IT",
          "slug": "borgo-san-giacomo",
          "canonical_path": "/cities/it/borgo-san-giacomo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048004",
          "name": "Borgo San Lorenzo",
          "country_code": "IT",
          "slug": "borgo-san-lorenzo",
          "canonical_path": "/cities/it/borgo-san-lorenzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003025",
          "name": "Borgo Ticino",
          "country_code": "IT",
          "slug": "borgo-ticino",
          "canonical_path": "/cities/it/borgo-ticino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034006",
          "name": "Borgo Val di Taro",
          "country_code": "IT",
          "slug": "borgo-val-di-taro",
          "canonical_path": "/cities/it/borgo-val-di-taro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025074",
          "name": "Borgo Valbelluna",
          "country_code": "IT",
          "slug": "borgo-valbelluna",
          "canonical_path": "/cities/it/borgo-valbelluna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022022",
          "name": "Borgo Valsugana",
          "country_code": "IT",
          "slug": "borgo-valsugana",
          "canonical_path": "/cities/it/borgo-valsugana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028107",
          "name": "Borgo Veneto",
          "country_code": "IT",
          "slug": "borgo-veneto",
          "canonical_path": "/cities/it/borgo-veneto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020071",
          "name": "Borgo Virgilio",
          "country_code": "IT",
          "slug": "borgo-virgilio",
          "canonical_path": "/cities/it/borgo-virgilio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003024",
          "name": "Borgomanero",
          "country_code": "IT",
          "slug": "borgomanero",
          "canonical_path": "/cities/it/borgomanero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033006",
          "name": "Borgonovo Val Tidone",
          "country_code": "IT",
          "slug": "borgonovo-val-tidone",
          "canonical_path": "/cities/it/borgonovo-val-tidone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028013",
          "name": "Borgoricco",
          "country_code": "IT",
          "slug": "borgoricco",
          "canonical_path": "/cities/it/borgoricco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017021",
          "name": "Borgosatollo",
          "country_code": "IT",
          "slug": "borgosatollo",
          "canonical_path": "/cities/it/borgosatollo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:002016",
          "name": "Borgosesia",
          "country_code": "IT",
          "slug": "borgosesia",
          "canonical_path": "/cities/it/borgosesia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026004",
          "name": "Borso del Grappa",
          "country_code": "IT",
          "slug": "borso-del-grappa",
          "canonical_path": "/cities/it/borso-del-grappa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:115017",
          "name": "Bosa",
          "country_code": "IT",
          "slug": "bosa",
          "canonical_path": "/cities/it/bosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063008",
          "name": "Boscoreale",
          "country_code": "IT",
          "slug": "boscoreale",
          "canonical_path": "/cities/it/boscoreale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063009",
          "name": "Boscotrecase",
          "country_code": "IT",
          "slug": "boscotrecase",
          "canonical_path": "/cities/it/boscotrecase/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079012",
          "name": "Botricello",
          "country_code": "IT",
          "slug": "botricello",
          "canonical_path": "/cities/it/botricello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016034",
          "name": "Bottanuco",
          "country_code": "IT",
          "slug": "bottanuco",
          "canonical_path": "/cities/it/bottanuco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017023",
          "name": "Botticino",
          "country_code": "IT",
          "slug": "botticino",
          "canonical_path": "/cities/it/botticino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080012",
          "name": "Bovalino",
          "country_code": "IT",
          "slug": "bovalino",
          "canonical_path": "/cities/it/bovalino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004028",
          "name": "Boves",
          "country_code": "IT",
          "slug": "boves",
          "canonical_path": "/cities/it/boves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017025",
          "name": "Bovezzo",
          "country_code": "IT",
          "slug": "bovezzo",
          "canonical_path": "/cities/it/bovezzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060014",
          "name": "Boville Ernica",
          "country_code": "IT",
          "slug": "boville-ernica",
          "canonical_path": "/cities/it/boville-ernica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108010",
          "name": "Bovisio-Masciago",
          "country_code": "IT",
          "slug": "bovisio-masciago",
          "canonical_path": "/cities/it/bovisio-masciago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023012",
          "name": "Bovolone",
          "country_code": "IT",
          "slug": "bovolone",
          "canonical_path": "/cities/it/bovolone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004029",
          "name": "Bra",
          "country_code": "IT",
          "slug": "bra",
          "canonical_path": "/cities/it/bra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058013",
          "name": "Bracciano",
          "country_code": "IT",
          "slug": "bracciano",
          "canonical_path": "/cities/it/bracciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065016",
          "name": "Bracigliano",
          "country_code": "IT",
          "slug": "bracigliano",
          "canonical_path": "/cities/it/bracigliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001034",
          "name": "Brandizzo",
          "country_code": "IT",
          "slug": "brandizzo",
          "canonical_path": "/cities/it/brandizzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026005",
          "name": "Breda di Piave",
          "country_code": "IT",
          "slug": "breda-di-piave",
          "canonical_path": "/cities/it/breda-di-piave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024014",
          "name": "Breganze",
          "country_code": "IT",
          "slug": "breganze",
          "canonical_path": "/cities/it/breganze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013028",
          "name": "Bregnano",
          "country_code": "IT",
          "slug": "bregnano",
          "canonical_path": "/cities/it/bregnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016037",
          "name": "Brembate",
          "country_code": "IT",
          "slug": "brembate",
          "canonical_path": "/cities/it/brembate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016038",
          "name": "Brembate di Sopra",
          "country_code": "IT",
          "slug": "brembate-di-sopra",
          "canonical_path": "/cities/it/brembate-di-sopra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024015",
          "name": "Brendola",
          "country_code": "IT",
          "slug": "brendola",
          "canonical_path": "/cities/it/brendola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035006",
          "name": "Brescello",
          "country_code": "IT",
          "slug": "brescello",
          "canonical_path": "/cities/it/brescello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017029",
          "name": "Brescia",
          "country_code": "IT",
          "slug": "brescia",
          "canonical_path": "/cities/it/brescia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021011",
          "name": "Bressanone",
          "country_code": "IT",
          "slug": "bressanone",
          "canonical_path": "/cities/it/bressanone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015032",
          "name": "Bresso",
          "country_code": "IT",
          "slug": "bresso",
          "canonical_path": "/cities/it/bresso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016040",
          "name": "Brignano Gera d'Adda",
          "country_code": "IT",
          "slug": "brignano-gera-d-adda",
          "canonical_path": "/cities/it/brignano-gera-d-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074001",
          "name": "Brindisi",
          "country_code": "IT",
          "slug": "brindisi",
          "canonical_path": "/cities/it/brindisi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108011",
          "name": "Briosco",
          "country_code": "IT",
          "slug": "briosco",
          "canonical_path": "/cities/it/briosco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039004",
          "name": "Brisighella",
          "country_code": "IT",
          "slug": "brisighella",
          "canonical_path": "/cities/it/brisighella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083007",
          "name": "Brolo",
          "country_code": "IT",
          "slug": "brolo",
          "canonical_path": "/cities/it/brolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018024",
          "name": "Broni",
          "country_code": "IT",
          "slug": "broni",
          "canonical_path": "/cities/it/broni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087009",
          "name": "Bronte",
          "country_code": "IT",
          "slug": "bronte",
          "canonical_path": "/cities/it/bronte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108012",
          "name": "Brugherio",
          "country_code": "IT",
          "slug": "brugherio",
          "canonical_path": "/cities/it/brugherio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028015",
          "name": "Brugine",
          "country_code": "IT",
          "slug": "brugine",
          "canonical_path": "/cities/it/brugine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093007",
          "name": "Brugnera",
          "country_code": "IT",
          "slug": "brugnera",
          "canonical_path": "/cities/it/brugnera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001038",
          "name": "Bruino",
          "country_code": "IT",
          "slug": "bruino",
          "canonical_path": "/cities/it/bruino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021013",
          "name": "Brunico",
          "country_code": "IT",
          "slug": "brunico",
          "canonical_path": "/cities/it/brunico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016042",
          "name": "Brusaporto",
          "country_code": "IT",
          "slug": "brusaporto",
          "canonical_path": "/cities/it/brusaporto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063010",
          "name": "Brusciano",
          "country_code": "IT",
          "slug": "brusciano",
          "canonical_path": "/cities/it/brusciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015036",
          "name": "Buccinasco",
          "country_code": "IT",
          "slug": "buccinasco",
          "canonical_path": "/cities/it/buccinasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051005",
          "name": "Bucine",
          "country_code": "IT",
          "slug": "bucine",
          "canonical_path": "/cities/it/bucine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037008",
          "name": "Budrio",
          "country_code": "IT",
          "slug": "budrio",
          "canonical_path": "/cities/it/budrio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047003",
          "name": "Buggiano",
          "country_code": "IT",
          "slug": "buggiano",
          "canonical_path": "/cities/it/buggiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030013",
          "name": "Buja",
          "country_code": "IT",
          "slug": "buja",
          "canonical_path": "/cities/it/buja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010006",
          "name": "Busalla",
          "country_code": "IT",
          "slug": "busalla",
          "canonical_path": "/cities/it/busalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004034",
          "name": "Busca",
          "country_code": "IT",
          "slug": "busca",
          "canonical_path": "/cities/it/busca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108051",
          "name": "Busnago",
          "country_code": "IT",
          "slug": "busnago",
          "canonical_path": "/cities/it/busnago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015040",
          "name": "Bussero",
          "country_code": "IT",
          "slug": "bussero",
          "canonical_path": "/cities/it/bussero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034007",
          "name": "Busseto",
          "country_code": "IT",
          "slug": "busseto",
          "canonical_path": "/cities/it/busseto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023015",
          "name": "Bussolengo",
          "country_code": "IT",
          "slug": "bussolengo",
          "canonical_path": "/cities/it/bussolengo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001044",
          "name": "Bussoleno",
          "country_code": "IT",
          "slug": "bussoleno",
          "canonical_path": "/cities/it/bussoleno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012026",
          "name": "Busto Arsizio",
          "country_code": "IT",
          "slug": "busto-arsizio",
          "canonical_path": "/cities/it/busto-arsizio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015041",
          "name": "Busto Garolfo",
          "country_code": "IT",
          "slug": "busto-garolfo",
          "canonical_path": "/cities/it/busto-garolfo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050002",
          "name": "Buti",
          "country_code": "IT",
          "slug": "buti",
          "canonical_path": "/cities/it/buti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023016",
          "name": "Buttapietra",
          "country_code": "IT",
          "slug": "buttapietra",
          "canonical_path": "/cities/it/buttapietra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001045",
          "name": "Buttigliera Alta",
          "country_code": "IT",
          "slug": "buttigliera-alta",
          "canonical_path": "/cities/it/buttigliera-alta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013035",
          "name": "Cabiate",
          "country_code": "IT",
          "slug": "cabiate",
          "canonical_path": "/cities/it/cabiate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:115019",
          "name": "Cabras",
          "country_code": "IT",
          "slug": "cabras",
          "canonical_path": "/cities/it/cabras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082014",
          "name": "Caccamo",
          "country_code": "IT",
          "slug": "caccamo",
          "canonical_path": "/cities/it/caccamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035008",
          "name": "Cadelbosco di Sopra",
          "country_code": "IT",
          "slug": "cadelbosco-di-sopra",
          "canonical_path": "/cities/it/cadelbosco-di-sopra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033007",
          "name": "Cadeo",
          "country_code": "IT",
          "slug": "cadeo",
          "canonical_path": "/cities/it/cadeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028016",
          "name": "Cadoneghe",
          "country_code": "IT",
          "slug": "cadoneghe",
          "canonical_path": "/cities/it/cadoneghe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013036",
          "name": "Cadorago",
          "country_code": "IT",
          "slug": "cadorago",
          "canonical_path": "/cities/it/cadorago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026006",
          "name": "Caerano di San Marco",
          "country_code": "IT",
          "slug": "caerano-di-san-marco",
          "canonical_path": "/cities/it/caerano-di-san-marco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041007",
          "name": "Cagli",
          "country_code": "IT",
          "slug": "cagli",
          "canonical_path": "/cities/it/cagli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071008",
          "name": "Cagnano Varano",
          "country_code": "IT",
          "slug": "cagnano-varano",
          "canonical_path": "/cities/it/cagnano-varano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061009",
          "name": "Caiazzo",
          "country_code": "IT",
          "slug": "caiazzo",
          "canonical_path": "/cities/it/caiazzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012029",
          "name": "Cairate",
          "country_code": "IT",
          "slug": "cairate",
          "canonical_path": "/cities/it/cairate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009015",
          "name": "Cairo Montenotte",
          "country_code": "IT",
          "slug": "cairo-montenotte",
          "canonical_path": "/cities/it/cairo-montenotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063011",
          "name": "Caivano",
          "country_code": "IT",
          "slug": "caivano",
          "canonical_path": "/cities/it/caivano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087010",
          "name": "Calatabiano",
          "country_code": "IT",
          "slug": "calatabiano",
          "canonical_path": "/cities/it/calatabiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081003",
          "name": "Calatafimi-Segesta",
          "country_code": "IT",
          "slug": "calatafimi-segesta",
          "canonical_path": "/cities/it/calatafimi-segesta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050003",
          "name": "Calci",
          "country_code": "IT",
          "slug": "calci",
          "canonical_path": "/cities/it/calci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050004",
          "name": "Calcinaia",
          "country_code": "IT",
          "slug": "calcinaia",
          "canonical_path": "/cities/it/calcinaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016043",
          "name": "Calcinate",
          "country_code": "IT",
          "slug": "calcinate",
          "canonical_path": "/cities/it/calcinate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017032",
          "name": "Calcinato",
          "country_code": "IT",
          "slug": "calcinato",
          "canonical_path": "/cities/it/calcinato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016044",
          "name": "Calcio",
          "country_code": "IT",
          "slug": "calcio",
          "canonical_path": "/cities/it/calcio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097012",
          "name": "Calco",
          "country_code": "IT",
          "slug": "calco",
          "canonical_path": "/cities/it/calco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021015",
          "name": "Caldaro sulla strada del vino",
          "country_code": "IT",
          "slug": "caldaro-sulla-strada-del-vino",
          "canonical_path": "/cities/it/caldaro-sulla-strada-del-vino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037009",
          "name": "Calderara di Reno",
          "country_code": "IT",
          "slug": "calderara-di-reno",
          "canonical_path": "/cities/it/calderara-di-reno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023017",
          "name": "Caldiero",
          "country_code": "IT",
          "slug": "caldiero",
          "canonical_path": "/cities/it/caldiero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024018",
          "name": "Caldogno",
          "country_code": "IT",
          "slug": "caldogno",
          "canonical_path": "/cities/it/caldogno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048005",
          "name": "Calenzano",
          "country_code": "IT",
          "slug": "calenzano",
          "canonical_path": "/cities/it/calenzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075010",
          "name": "Calimera",
          "country_code": "IT",
          "slug": "calimera",
          "canonical_path": "/cities/it/calimera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097013",
          "name": "Calolziocorte",
          "country_code": "IT",
          "slug": "calolziocorte",
          "canonical_path": "/cities/it/calolziocorte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087011",
          "name": "Caltagirone",
          "country_code": "IT",
          "slug": "caltagirone",
          "canonical_path": "/cities/it/caltagirone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:085004",
          "name": "Caltanissetta",
          "country_code": "IT",
          "slug": "caltanissetta",
          "canonical_path": "/cities/it/caltanissetta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016046",
          "name": "Calusco d'Adda",
          "country_code": "IT",
          "slug": "calusco-d-adda",
          "canonical_path": "/cities/it/calusco-d-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001047",
          "name": "Caluso",
          "country_code": "IT",
          "slug": "caluso",
          "canonical_path": "/cities/it/caluso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061010",
          "name": "Calvi Risorta",
          "country_code": "IT",
          "slug": "calvi-risorta",
          "canonical_path": "/cities/it/calvi-risorta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017034",
          "name": "Calvisano",
          "country_code": "IT",
          "slug": "calvisano",
          "canonical_path": "/cities/it/calvisano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063012",
          "name": "Calvizzano",
          "country_code": "IT",
          "slug": "calvizzano",
          "canonical_path": "/cities/it/calvizzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046005",
          "name": "Camaiore",
          "country_code": "IT",
          "slug": "camaiore",
          "canonical_path": "/cities/it/camaiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015044",
          "name": "Cambiago",
          "country_code": "IT",
          "slug": "cambiago",
          "canonical_path": "/cities/it/cambiago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001048",
          "name": "Cambiano",
          "country_code": "IT",
          "slug": "cambiano",
          "canonical_path": "/cities/it/cambiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042006",
          "name": "Camerano",
          "country_code": "IT",
          "slug": "camerano",
          "canonical_path": "/cities/it/camerano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003032",
          "name": "Cameri",
          "country_code": "IT",
          "slug": "cameri",
          "canonical_path": "/cities/it/cameri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043007",
          "name": "Camerino",
          "country_code": "IT",
          "slug": "camerino",
          "canonical_path": "/cities/it/camerino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065021",
          "name": "Camerota",
          "country_code": "IT",
          "slug": "camerota",
          "canonical_path": "/cities/it/camerota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024021",
          "name": "Camisano Vicentino",
          "country_code": "IT",
          "slug": "camisano-vicentino",
          "canonical_path": "/cities/it/camisano-vicentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084009",
          "name": "Cammarata",
          "country_code": "IT",
          "slug": "cammarata",
          "canonical_path": "/cities/it/cammarata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065022",
          "name": "Campagna",
          "country_code": "IT",
          "slug": "campagna",
          "canonical_path": "/cities/it/campagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027002",
          "name": "Campagna Lupia",
          "country_code": "IT",
          "slug": "campagna-lupia",
          "canonical_path": "/cities/it/campagna-lupia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058015",
          "name": "Campagnano di Roma",
          "country_code": "IT",
          "slug": "campagnano-di-roma",
          "canonical_path": "/cities/it/campagnano-di-roma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035009",
          "name": "Campagnola Emilia",
          "country_code": "IT",
          "slug": "campagnola-emilia",
          "canonical_path": "/cities/it/campagnola-emilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035010",
          "name": "Campegine",
          "country_code": "IT",
          "slug": "campegine",
          "canonical_path": "/cities/it/campegine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048006",
          "name": "Campi Bisenzio",
          "country_code": "IT",
          "slug": "campi-bisenzio",
          "canonical_path": "/cities/it/campi-bisenzio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075011",
          "name": "Campi Salentina",
          "country_code": "IT",
          "slug": "campi-salentina",
          "canonical_path": "/cities/it/campi-salentina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:049002",
          "name": "Campiglia Marittima",
          "country_code": "IT",
          "slug": "campiglia-marittima",
          "canonical_path": "/cities/it/campiglia-marittima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067008",
          "name": "Campli",
          "country_code": "IT",
          "slug": "campli",
          "canonical_path": "/cities/it/campli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028020",
          "name": "Campo San Martino",
          "country_code": "IT",
          "slug": "campo-san-martino",
          "canonical_path": "/cities/it/campo-san-martino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021017",
          "name": "Campo Tures",
          "country_code": "IT",
          "slug": "campo-tures",
          "canonical_path": "/cities/it/campo-tures/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:070006",
          "name": "Campobasso",
          "country_code": "IT",
          "slug": "campobasso",
          "canonical_path": "/cities/it/campobasso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084010",
          "name": "Campobello di Licata",
          "country_code": "IT",
          "slug": "campobello-di-licata",
          "canonical_path": "/cities/it/campobello-di-licata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081004",
          "name": "Campobello di Mazara",
          "country_code": "IT",
          "slug": "campobello-di-mazara",
          "canonical_path": "/cities/it/campobello-di-mazara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028017",
          "name": "Campodarsego",
          "country_code": "IT",
          "slug": "campodarsego",
          "canonical_path": "/cities/it/campodarsego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082017",
          "name": "Campofelice di Roccella",
          "country_code": "IT",
          "slug": "campofelice-di-roccella",
          "canonical_path": "/cities/it/campofelice-di-roccella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030016",
          "name": "Campoformido",
          "country_code": "IT",
          "slug": "campoformido",
          "canonical_path": "/cities/it/campoformido/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036003",
          "name": "Campogalliano",
          "country_code": "IT",
          "slug": "campogalliano",
          "canonical_path": "/cities/it/campogalliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027003",
          "name": "Campolongo Maggiore",
          "country_code": "IT",
          "slug": "campolongo-maggiore",
          "canonical_path": "/cities/it/campolongo-maggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:070010",
          "name": "Campomarino",
          "country_code": "IT",
          "slug": "campomarino",
          "canonical_path": "/cities/it/campomarino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010009",
          "name": "Campomorone",
          "country_code": "IT",
          "slug": "campomorone",
          "canonical_path": "/cities/it/campomorone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027004",
          "name": "Camponogara",
          "country_code": "IT",
          "slug": "camponogara",
          "canonical_path": "/cities/it/camponogara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:008011",
          "name": "Camporosso",
          "country_code": "IT",
          "slug": "camporosso",
          "canonical_path": "/cities/it/camporosso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087012",
          "name": "Camporotondo Etneo",
          "country_code": "IT",
          "slug": "camporotondo-etneo",
          "canonical_path": "/cities/it/camporotondo-etneo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028019",
          "name": "Camposampiero",
          "country_code": "IT",
          "slug": "camposampiero",
          "canonical_path": "/cities/it/camposampiero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063013",
          "name": "Camposano",
          "country_code": "IT",
          "slug": "camposano",
          "canonical_path": "/cities/it/camposano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004037",
          "name": "Canale",
          "country_code": "IT",
          "slug": "canale",
          "canonical_path": "/cities/it/canale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061012",
          "name": "Cancello ed Arnone",
          "country_code": "IT",
          "slug": "cancello-ed-arnone",
          "canonical_path": "/cities/it/cancello-ed-arnone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:096012",
          "name": "Candelo",
          "country_code": "IT",
          "slug": "candelo",
          "canonical_path": "/cities/it/candelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001051",
          "name": "Candiolo",
          "country_code": "IT",
          "slug": "candiolo",
          "canonical_path": "/cities/it/candiolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015046",
          "name": "Canegrate",
          "country_code": "IT",
          "slug": "canegrate",
          "canonical_path": "/cities/it/canegrate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:005017",
          "name": "Canelli",
          "country_code": "IT",
          "slug": "canelli",
          "canonical_path": "/cities/it/canelli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093009",
          "name": "Caneva",
          "country_code": "IT",
          "slug": "caneva",
          "canonical_path": "/cities/it/caneva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084011",
          "name": "Canicattì",
          "country_code": "IT",
          "slug": "canicatti",
          "canonical_path": "/cities/it/canicatti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089005",
          "name": "Canicattini Bagni",
          "country_code": "IT",
          "slug": "canicattini-bagni",
          "canonical_path": "/cities/it/canicattini-bagni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056012",
          "name": "Canino",
          "country_code": "IT",
          "slug": "canino",
          "canonical_path": "/cities/it/canino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:103017",
          "name": "Cannobio",
          "country_code": "IT",
          "slug": "cannobio",
          "canonical_path": "/cities/it/cannobio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110004",
          "name": "Canosa di Puglia",
          "country_code": "IT",
          "slug": "canosa-di-puglia",
          "canonical_path": "/cities/it/canosa-di-puglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013041",
          "name": "Cantù",
          "country_code": "IT",
          "slug": "cantu",
          "canonical_path": "/cities/it/cantu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013042",
          "name": "Canzo",
          "country_code": "IT",
          "slug": "canzo",
          "canonical_path": "/cities/it/canzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027005",
          "name": "Caorle",
          "country_code": "IT",
          "slug": "caorle",
          "canonical_path": "/cities/it/caorle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065025",
          "name": "Capaccio Paestum",
          "country_code": "IT",
          "slug": "capaccio-paestum",
          "canonical_path": "/cities/it/capaccio-paestum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082020",
          "name": "Capaci",
          "country_code": "IT",
          "slug": "capaci",
          "canonical_path": "/cities/it/capaci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050005",
          "name": "Capannoli",
          "country_code": "IT",
          "slug": "capannoli",
          "canonical_path": "/cities/it/capannoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046007",
          "name": "Capannori",
          "country_code": "IT",
          "slug": "capannori",
          "canonical_path": "/cities/it/capannori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058018",
          "name": "Capena",
          "country_code": "IT",
          "slug": "capena",
          "canonical_path": "/cities/it/capena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013043",
          "name": "Capiago Intimiano",
          "country_code": "IT",
          "slug": "capiago-intimiano",
          "canonical_path": "/cities/it/capiago-intimiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083009",
          "name": "Capo d'Orlando",
          "country_code": "IT",
          "slug": "capo-d-orlando",
          "canonical_path": "/cities/it/capo-d-orlando/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061013",
          "name": "Capodrise",
          "country_code": "IT",
          "slug": "capodrise",
          "canonical_path": "/cities/it/capodrise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051006",
          "name": "Capolona",
          "country_code": "IT",
          "slug": "capolona",
          "canonical_path": "/cities/it/capolona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108052",
          "name": "Caponago",
          "country_code": "IT",
          "slug": "caponago",
          "canonical_path": "/cities/it/caponago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118007",
          "name": "Capoterra",
          "country_code": "IT",
          "slug": "capoterra",
          "canonical_path": "/cities/it/capoterra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048008",
          "name": "Capraia e Limite",
          "country_code": "IT",
          "slug": "capraia-e-limite",
          "canonical_path": "/cities/it/capraia-e-limite/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056014",
          "name": "Capranica",
          "country_code": "IT",
          "slug": "capranica",
          "canonical_path": "/cities/it/capranica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056015",
          "name": "Caprarola",
          "country_code": "IT",
          "slug": "caprarola",
          "canonical_path": "/cities/it/caprarola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063014",
          "name": "Capri",
          "country_code": "IT",
          "slug": "capri",
          "canonical_path": "/cities/it/capri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016051",
          "name": "Capriate San Gervasio",
          "country_code": "IT",
          "slug": "capriate-san-gervasio",
          "canonical_path": "/cities/it/capriate-san-gervasio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023018",
          "name": "Caprino Veronese",
          "country_code": "IT",
          "slug": "caprino-veronese",
          "canonical_path": "/cities/it/caprino-veronese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017038",
          "name": "Capriolo",
          "country_code": "IT",
          "slug": "capriolo",
          "canonical_path": "/cities/it/capriolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061015",
          "name": "Capua",
          "country_code": "IT",
          "slug": "capua",
          "canonical_path": "/cities/it/capua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072014",
          "name": "Capurso",
          "country_code": "IT",
          "slug": "capurso",
          "canonical_path": "/cities/it/capurso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004040",
          "name": "Caraglio",
          "country_code": "IT",
          "slug": "caraglio",
          "canonical_path": "/cities/it/caraglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071010",
          "name": "Carapelle",
          "country_code": "IT",
          "slug": "carapelle",
          "canonical_path": "/cities/it/carapelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108015",
          "name": "Carate Brianza",
          "country_code": "IT",
          "slug": "carate-brianza",
          "canonical_path": "/cities/it/carate-brianza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016053",
          "name": "Caravaggio",
          "country_code": "IT",
          "slug": "caravaggio",
          "canonical_path": "/cities/it/caravaggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026008",
          "name": "Carbonera",
          "country_code": "IT",
          "slug": "carbonera",
          "canonical_path": "/cities/it/carbonera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:119003",
          "name": "Carbonia",
          "country_code": "IT",
          "slug": "carbonia",
          "canonical_path": "/cities/it/carbonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009018",
          "name": "Carcare",
          "country_code": "IT",
          "slug": "carcare",
          "canonical_path": "/cities/it/carcare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012032",
          "name": "Cardano al Campo",
          "country_code": "IT",
          "slug": "cardano-al-campo",
          "canonical_path": "/cities/it/cardano-al-campo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063016",
          "name": "Cardito",
          "country_code": "IT",
          "slug": "cardito",
          "canonical_path": "/cities/it/cardito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078025",
          "name": "Cariati",
          "country_code": "IT",
          "slug": "cariati",
          "canonical_path": "/cities/it/cariati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001058",
          "name": "Carignano",
          "country_code": "IT",
          "slug": "carignano",
          "canonical_path": "/cities/it/carignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061016",
          "name": "Carinaro",
          "country_code": "IT",
          "slug": "carinaro",
          "canonical_path": "/cities/it/carinaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082021",
          "name": "Carini",
          "country_code": "IT",
          "slug": "carini",
          "canonical_path": "/cities/it/carini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061017",
          "name": "Carinola",
          "country_code": "IT",
          "slug": "carinola",
          "canonical_path": "/cities/it/carinola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089006",
          "name": "Carlentini",
          "country_code": "IT",
          "slug": "carlentini",
          "canonical_path": "/cities/it/carlentini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:119004",
          "name": "Carloforte",
          "country_code": "IT",
          "slug": "carloforte",
          "canonical_path": "/cities/it/carloforte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001059",
          "name": "Carmagnola",
          "country_code": "IT",
          "slug": "carmagnola",
          "canonical_path": "/cities/it/carmagnola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075014",
          "name": "Carmiano",
          "country_code": "IT",
          "slug": "carmiano",
          "canonical_path": "/cities/it/carmiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:100002",
          "name": "Carmignano",
          "country_code": "IT",
          "slug": "carmignano",
          "canonical_path": "/cities/it/carmignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028023",
          "name": "Carmignano di Brenta",
          "country_code": "IT",
          "slug": "carmignano-di-brenta",
          "canonical_path": "/cities/it/carmignano-di-brenta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012033",
          "name": "Carnago",
          "country_code": "IT",
          "slug": "carnago",
          "canonical_path": "/cities/it/carnago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108016",
          "name": "Carnate",
          "country_code": "IT",
          "slug": "carnate",
          "canonical_path": "/cities/it/carnate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012034",
          "name": "Caronno Pertusella",
          "country_code": "IT",
          "slug": "caronno-pertusella",
          "canonical_path": "/cities/it/caronno-pertusella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073002",
          "name": "Carosino",
          "country_code": "IT",
          "slug": "carosino",
          "canonical_path": "/cities/it/carosino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074002",
          "name": "Carovigno",
          "country_code": "IT",
          "slug": "carovigno",
          "canonical_path": "/cities/it/carovigno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033011",
          "name": "Carpaneto Piacentino",
          "country_code": "IT",
          "slug": "carpaneto-piacentino",
          "canonical_path": "/cities/it/carpaneto-piacentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017039",
          "name": "Carpenedolo",
          "country_code": "IT",
          "slug": "carpenedolo",
          "canonical_path": "/cities/it/carpenedolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036005",
          "name": "Carpi",
          "country_code": "IT",
          "slug": "carpi",
          "canonical_path": "/cities/it/carpi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:045003",
          "name": "Carrara",
          "country_code": "IT",
          "slug": "carrara",
          "canonical_path": "/cities/it/carrara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041010",
          "name": "Cartoceto",
          "country_code": "IT",
          "slug": "cartoceto",
          "canonical_path": "/cities/it/cartoceto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015051",
          "name": "Carugate",
          "country_code": "IT",
          "slug": "carugate",
          "canonical_path": "/cities/it/carugate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013048",
          "name": "Carugo",
          "country_code": "IT",
          "slug": "carugo",
          "canonical_path": "/cities/it/carugo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061018",
          "name": "Casagiove",
          "country_code": "IT",
          "slug": "casagiove",
          "canonical_path": "/cities/it/casagiove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061019",
          "name": "Casal di Principe",
          "country_code": "IT",
          "slug": "casal-di-principe",
          "canonical_path": "/cities/it/casal-di-principe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065028",
          "name": "Casal Velino",
          "country_code": "IT",
          "slug": "casal-velino",
          "canonical_path": "/cities/it/casal-velino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069015",
          "name": "Casalbordino",
          "country_code": "IT",
          "slug": "casalbordino",
          "canonical_path": "/cities/it/casalbordino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:006039",
          "name": "Casale Monferrato",
          "country_code": "IT",
          "slug": "casale-monferrato",
          "canonical_path": "/cities/it/casale-monferrato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026009",
          "name": "Casale sul Sile",
          "country_code": "IT",
          "slug": "casale-sul-sile",
          "canonical_path": "/cities/it/casale-sul-sile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037011",
          "name": "Casalecchio di Reno",
          "country_code": "IT",
          "slug": "casalecchio-di-reno",
          "canonical_path": "/cities/it/casalecchio-di-reno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023019",
          "name": "Casaleone",
          "country_code": "IT",
          "slug": "casaleone",
          "canonical_path": "/cities/it/casaleone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035012",
          "name": "Casalgrande",
          "country_code": "IT",
          "slug": "casalgrande",
          "canonical_path": "/cities/it/casalgrande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078156",
          "name": "Casali del Manco",
          "country_code": "IT",
          "slug": "casali-del-manco",
          "canonical_path": "/cities/it/casali-del-manco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019021",
          "name": "Casalmaggiore",
          "country_code": "IT",
          "slug": "casalmaggiore",
          "canonical_path": "/cities/it/casalmaggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063017",
          "name": "Casalnuovo di Napoli",
          "country_code": "IT",
          "slug": "casalnuovo-di-napoli",
          "canonical_path": "/cities/it/casalnuovo-di-napoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:098010",
          "name": "Casalpusterlengo",
          "country_code": "IT",
          "slug": "casalpusterlengo",
          "canonical_path": "/cities/it/casalpusterlengo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028028",
          "name": "Casalserugo",
          "country_code": "IT",
          "slug": "casalserugo",
          "canonical_path": "/cities/it/casalserugo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061020",
          "name": "Casaluce",
          "country_code": "IT",
          "slug": "casaluce",
          "canonical_path": "/cities/it/casaluce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072015",
          "name": "Casamassima",
          "country_code": "IT",
          "slug": "casamassima",
          "canonical_path": "/cities/it/casamassima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063019",
          "name": "Casamicciola Terme",
          "country_code": "IT",
          "slug": "casamicciola-terme",
          "canonical_path": "/cities/it/casamicciola-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063020",
          "name": "Casandrino",
          "country_code": "IT",
          "slug": "casandrino",
          "canonical_path": "/cities/it/casandrino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061103",
          "name": "Casapesenna",
          "country_code": "IT",
          "slug": "casapesenna",
          "canonical_path": "/cities/it/casapesenna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061021",
          "name": "Casapulla",
          "country_code": "IT",
          "slug": "casapulla",
          "canonical_path": "/cities/it/casapulla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075016",
          "name": "Casarano",
          "country_code": "IT",
          "slug": "casarano",
          "canonical_path": "/cities/it/casarano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093010",
          "name": "Casarsa della Delizia",
          "country_code": "IT",
          "slug": "casarsa-della-delizia",
          "canonical_path": "/cities/it/casarsa-della-delizia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010011",
          "name": "Casarza Ligure",
          "country_code": "IT",
          "slug": "casarza-ligure",
          "canonical_path": "/cities/it/casarza-ligure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097016",
          "name": "Casatenovo",
          "country_code": "IT",
          "slug": "casatenovo",
          "canonical_path": "/cities/it/casatenovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063021",
          "name": "Casavatore",
          "country_code": "IT",
          "slug": "casavatore",
          "canonical_path": "/cities/it/casavatore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050040",
          "name": "Casciana Terme Lari",
          "country_code": "IT",
          "slug": "casciana-terme-lari",
          "canonical_path": "/cities/it/casciana-terme-lari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050008",
          "name": "Cascina",
          "country_code": "IT",
          "slug": "cascina",
          "canonical_path": "/cities/it/cascina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001063",
          "name": "Caselle Torinese",
          "country_code": "IT",
          "slug": "caselle-torinese",
          "canonical_path": "/cities/it/caselle-torinese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061022",
          "name": "Caserta",
          "country_code": "IT",
          "slug": "caserta",
          "canonical_path": "/cities/it/caserta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026010",
          "name": "Casier",
          "country_code": "IT",
          "slug": "casier",
          "canonical_path": "/cities/it/casier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013053",
          "name": "Casnate con Bernate",
          "country_code": "IT",
          "slug": "casnate-con-bernate",
          "canonical_path": "/cities/it/casnate-con-bernate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069017",
          "name": "Casoli",
          "country_code": "IT",
          "slug": "casoli",
          "canonical_path": "/cities/it/casoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018034",
          "name": "Casorate Primo",
          "country_code": "IT",
          "slug": "casorate-primo",
          "canonical_path": "/cities/it/casorate-primo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012039",
          "name": "Casorate Sempione",
          "country_code": "IT",
          "slug": "casorate-sempione",
          "canonical_path": "/cities/it/casorate-sempione/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015058",
          "name": "Casorezzo",
          "country_code": "IT",
          "slug": "casorezzo",
          "canonical_path": "/cities/it/casorezzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063023",
          "name": "Casoria",
          "country_code": "IT",
          "slug": "casoria",
          "canonical_path": "/cities/it/casoria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078029",
          "name": "Cassano all'Ionio",
          "country_code": "IT",
          "slug": "cassano-all-ionio",
          "canonical_path": "/cities/it/cassano-all-ionio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015059",
          "name": "Cassano d'Adda",
          "country_code": "IT",
          "slug": "cassano-d-adda",
          "canonical_path": "/cities/it/cassano-d-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072016",
          "name": "Cassano delle Murge",
          "country_code": "IT",
          "slug": "cassano-delle-murge",
          "canonical_path": "/cities/it/cassano-delle-murge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012040",
          "name": "Cassano Magnago",
          "country_code": "IT",
          "slug": "cassano-magnago",
          "canonical_path": "/cities/it/cassano-magnago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015060",
          "name": "Cassina de' Pecchi",
          "country_code": "IT",
          "slug": "cassina-de-pecchi",
          "canonical_path": "/cities/it/cassina-de-pecchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060019",
          "name": "Cassino",
          "country_code": "IT",
          "slug": "cassino",
          "canonical_path": "/cities/it/cassino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024026",
          "name": "Cassola",
          "country_code": "IT",
          "slug": "cassola",
          "canonical_path": "/cities/it/cassola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018035",
          "name": "Cassolnovo",
          "country_code": "IT",
          "slug": "cassolnovo",
          "canonical_path": "/cities/it/cassolnovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:049006",
          "name": "Castagneto Carducci",
          "country_code": "IT",
          "slug": "castagneto-carducci",
          "canonical_path": "/cities/it/castagneto-carducci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015062",
          "name": "Castano Primo",
          "country_code": "IT",
          "slug": "castano-primo",
          "canonical_path": "/cities/it/castano-primo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018037",
          "name": "Casteggio",
          "country_code": "IT",
          "slug": "casteggio",
          "canonical_path": "/cities/it/casteggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017040",
          "name": "Castegnato",
          "country_code": "IT",
          "slug": "castegnato",
          "canonical_path": "/cities/it/castegnato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039006",
          "name": "Castel Bolognese",
          "country_code": "IT",
          "slug": "castel-bolognese",
          "canonical_path": "/cities/it/castel-bolognese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023021",
          "name": "Castel d'Azzano",
          "country_code": "IT",
          "slug": "castel-d-azzano",
          "canonical_path": "/cities/it/castel-d-azzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:044011",
          "name": "Castel di Lama",
          "country_code": "IT",
          "slug": "castel-di-lama",
          "canonical_path": "/cities/it/castel-di-lama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:066028",
          "name": "Castel di Sangro",
          "country_code": "IT",
          "slug": "castel-di-sangro",
          "canonical_path": "/cities/it/castel-di-sangro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058022",
          "name": "Castel Gandolfo",
          "country_code": "IT",
          "slug": "castel-gandolfo",
          "canonical_path": "/cities/it/castel-gandolfo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020015",
          "name": "Castel Goffredo",
          "country_code": "IT",
          "slug": "castel-goffredo",
          "canonical_path": "/cities/it/castel-goffredo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058023",
          "name": "Castel Madama",
          "country_code": "IT",
          "slug": "castel-madama",
          "canonical_path": "/cities/it/castel-madama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037019",
          "name": "Castel Maggiore",
          "country_code": "IT",
          "slug": "castel-maggiore",
          "canonical_path": "/cities/it/castel-maggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017042",
          "name": "Castel Mella",
          "country_code": "IT",
          "slug": "castel-mella",
          "canonical_path": "/cities/it/castel-mella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065034",
          "name": "Castel San Giorgio",
          "country_code": "IT",
          "slug": "castel-san-giorgio",
          "canonical_path": "/cities/it/castel-san-giorgio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033013",
          "name": "Castel San Giovanni",
          "country_code": "IT",
          "slug": "castel-san-giovanni",
          "canonical_path": "/cities/it/castel-san-giovanni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037020",
          "name": "Castel San Pietro Terme",
          "country_code": "IT",
          "slug": "castel-san-pietro-terme",
          "canonical_path": "/cities/it/castel-san-pietro-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061027",
          "name": "Castel Volturno",
          "country_code": "IT",
          "slug": "castel-volturno",
          "canonical_path": "/cities/it/castel-volturno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082022",
          "name": "Castelbuono",
          "country_code": "IT",
          "slug": "castelbuono",
          "canonical_path": "/cities/it/castelbuono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017041",
          "name": "Castelcovati",
          "country_code": "IT",
          "slug": "castelcovati",
          "canonical_path": "/cities/it/castelcovati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082023",
          "name": "Casteldaccia",
          "country_code": "IT",
          "slug": "casteldaccia",
          "canonical_path": "/cities/it/casteldaccia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042010",
          "name": "Castelfidardo",
          "country_code": "IT",
          "slug": "castelfidardo",
          "canonical_path": "/cities/it/castelfidardo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048010",
          "name": "Castelfiorentino",
          "country_code": "IT",
          "slug": "castelfiorentino",
          "canonical_path": "/cities/it/castelfiorentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050009",
          "name": "Castelfranco di Sotto",
          "country_code": "IT",
          "slug": "castelfranco-di-sotto",
          "canonical_path": "/cities/it/castelfranco-di-sotto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036006",
          "name": "Castelfranco Emilia",
          "country_code": "IT",
          "slug": "castelfranco-emilia",
          "canonical_path": "/cities/it/castelfranco-emilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051040",
          "name": "Castelfranco Piandiscò",
          "country_code": "IT",
          "slug": "castelfranco-piandisco",
          "canonical_path": "/cities/it/castelfranco-piandisco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026012",
          "name": "Castelfranco Veneto",
          "country_code": "IT",
          "slug": "castelfranco-veneto",
          "canonical_path": "/cities/it/castelfranco-veneto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024028",
          "name": "Castelgomberto",
          "country_code": "IT",
          "slug": "castelgomberto",
          "canonical_path": "/cities/it/castelgomberto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065031",
          "name": "Castellabate",
          "country_code": "IT",
          "slug": "castellabate",
          "canonical_path": "/cities/it/castellabate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067011",
          "name": "Castellalto",
          "country_code": "IT",
          "slug": "castellalto",
          "canonical_path": "/cities/it/castellalto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081005",
          "name": "Castellammare del Golfo",
          "country_code": "IT",
          "slug": "castellammare-del-golfo",
          "canonical_path": "/cities/it/castellammare-del-golfo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063024",
          "name": "Castellammare di Stabia",
          "country_code": "IT",
          "slug": "castellammare-di-stabia",
          "canonical_path": "/cities/it/castellammare-di-stabia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001066",
          "name": "Castellamonte",
          "country_code": "IT",
          "slug": "castellamonte",
          "canonical_path": "/cities/it/castellamonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072017",
          "name": "Castellana Grotte",
          "country_code": "IT",
          "slug": "castellana-grotte",
          "canonical_path": "/cities/it/castellana-grotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073003",
          "name": "Castellaneta",
          "country_code": "IT",
          "slug": "castellaneta",
          "canonical_path": "/cities/it/castellaneta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012042",
          "name": "Castellanza",
          "country_code": "IT",
          "slug": "castellanza",
          "canonical_path": "/cities/it/castellanza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035014",
          "name": "Castellarano",
          "country_code": "IT",
          "slug": "castellarano",
          "canonical_path": "/cities/it/castellarano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019025",
          "name": "Castelleone",
          "country_code": "IT",
          "slug": "castelleone",
          "canonical_path": "/cities/it/castelleone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003043",
          "name": "Castelletto sopra Ticino",
          "country_code": "IT",
          "slug": "castelletto-sopra-ticino",
          "canonical_path": "/cities/it/castelletto-sopra-ticino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016062",
          "name": "Castelli Calepio",
          "country_code": "IT",
          "slug": "castelli-calepio",
          "canonical_path": "/cities/it/castelli-calepio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037017",
          "name": "Castello d'Argile",
          "country_code": "IT",
          "slug": "castello-d-argile",
          "canonical_path": "/cities/it/castello-d-argile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063025",
          "name": "Castello di Cisterna",
          "country_code": "IT",
          "slug": "castello-di-cisterna",
          "canonical_path": "/cities/it/castello-di-cisterna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026013",
          "name": "Castello di Godego",
          "country_code": "IT",
          "slug": "castello-di-godego",
          "canonical_path": "/cities/it/castello-di-godego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020016",
          "name": "Castellucchio",
          "country_code": "IT",
          "slug": "castellucchio",
          "canonical_path": "/cities/it/castellucchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035015",
          "name": "Castelnovo di Sotto",
          "country_code": "IT",
          "slug": "castelnovo-di-sotto",
          "canonical_path": "/cities/it/castelnovo-di-sotto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035016",
          "name": "Castelnovo ne' Monti",
          "country_code": "IT",
          "slug": "castelnovo-ne-monti",
          "canonical_path": "/cities/it/castelnovo-ne-monti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052006",
          "name": "Castelnuovo Berardenga",
          "country_code": "IT",
          "slug": "castelnuovo-berardenga",
          "canonical_path": "/cities/it/castelnuovo-berardenga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023022",
          "name": "Castelnuovo del Garda",
          "country_code": "IT",
          "slug": "castelnuovo-del-garda",
          "canonical_path": "/cities/it/castelnuovo-del-garda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046009",
          "name": "Castelnuovo di Garfagnana",
          "country_code": "IT",
          "slug": "castelnuovo-di-garfagnana",
          "canonical_path": "/cities/it/castelnuovo-di-garfagnana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058024",
          "name": "Castelnuovo di Porto",
          "country_code": "IT",
          "slug": "castelnuovo-di-porto",
          "canonical_path": "/cities/it/castelnuovo-di-porto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011011",
          "name": "Castelnuovo Magra",
          "country_code": "IT",
          "slug": "castelnuovo-magra",
          "canonical_path": "/cities/it/castelnuovo-magra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036007",
          "name": "Castelnuovo Rangone",
          "country_code": "IT",
          "slug": "castelnuovo-rangone",
          "canonical_path": "/cities/it/castelnuovo-rangone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021019",
          "name": "Castelrotto",
          "country_code": "IT",
          "slug": "castelrotto",
          "canonical_path": "/cities/it/castelrotto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:112016",
          "name": "Castelsardo",
          "country_code": "IT",
          "slug": "castelsardo",
          "canonical_path": "/cities/it/castelsardo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084012",
          "name": "Casteltermini",
          "country_code": "IT",
          "slug": "casteltermini",
          "canonical_path": "/cities/it/casteltermini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019026",
          "name": "Castelverde",
          "country_code": "IT",
          "slug": "castelverde",
          "canonical_path": "/cities/it/castelverde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081006",
          "name": "Castelvetrano",
          "country_code": "IT",
          "slug": "castelvetrano",
          "canonical_path": "/cities/it/castelvetrano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036008",
          "name": "Castelvetro di Modena",
          "country_code": "IT",
          "slug": "castelvetro-di-modena",
          "canonical_path": "/cities/it/castelvetro-di-modena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033014",
          "name": "Castelvetro Piacentino",
          "country_code": "IT",
          "slug": "castelvetro-piacentino",
          "canonical_path": "/cities/it/castelvetro-piacentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037021",
          "name": "Castenaso",
          "country_code": "IT",
          "slug": "castenaso",
          "canonical_path": "/cities/it/castenaso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017043",
          "name": "Castenedolo",
          "country_code": "IT",
          "slug": "castenedolo",
          "canonical_path": "/cities/it/castenedolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051012",
          "name": "Castiglion Fiorentino",
          "country_code": "IT",
          "slug": "castiglion-fiorentino",
          "canonical_path": "/cities/it/castiglion-fiorentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037022",
          "name": "Castiglione dei Pepoli",
          "country_code": "IT",
          "slug": "castiglione-dei-pepoli",
          "canonical_path": "/cities/it/castiglione-dei-pepoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054009",
          "name": "Castiglione del Lago",
          "country_code": "IT",
          "slug": "castiglione-del-lago",
          "canonical_path": "/cities/it/castiglione-del-lago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:053006",
          "name": "Castiglione della Pescaia",
          "country_code": "IT",
          "slug": "castiglione-della-pescaia",
          "canonical_path": "/cities/it/castiglione-della-pescaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020017",
          "name": "Castiglione delle Stiviere",
          "country_code": "IT",
          "slug": "castiglione-delle-stiviere",
          "canonical_path": "/cities/it/castiglione-delle-stiviere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012046",
          "name": "Castiglione Olona",
          "country_code": "IT",
          "slug": "castiglione-olona",
          "canonical_path": "/cities/it/castiglione-olona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001068",
          "name": "Castiglione Torinese",
          "country_code": "IT",
          "slug": "castiglione-torinese",
          "canonical_path": "/cities/it/castiglione-torinese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017045",
          "name": "Castrezzato",
          "country_code": "IT",
          "slug": "castrezzato",
          "canonical_path": "/cities/it/castrezzato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075019",
          "name": "Castrignano del Capo",
          "country_code": "IT",
          "slug": "castrignano-del-capo",
          "canonical_path": "/cities/it/castrignano-del-capo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040005",
          "name": "Castrocaro Terme e Terra del Sole",
          "country_code": "IT",
          "slug": "castrocaro-terme-e-terra-del-sole",
          "canonical_path": "/cities/it/castrocaro-terme-e-terra-del-sole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078031",
          "name": "Castrolibero",
          "country_code": "IT",
          "slug": "castrolibero",
          "canonical_path": "/cities/it/castrolibero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012047",
          "name": "Castronno",
          "country_code": "IT",
          "slug": "castronno",
          "canonical_path": "/cities/it/castronno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078033",
          "name": "Castrovillari",
          "country_code": "IT",
          "slug": "castrovillari",
          "canonical_path": "/cities/it/castrovillari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087015",
          "name": "Catania",
          "country_code": "IT",
          "slug": "catania",
          "canonical_path": "/cities/it/catania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079023",
          "name": "Catanzaro",
          "country_code": "IT",
          "slug": "catanzaro",
          "canonical_path": "/cities/it/catanzaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099002",
          "name": "Cattolica",
          "country_code": "IT",
          "slug": "cattolica",
          "canonical_path": "/cities/it/cattolica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080025",
          "name": "Caulonia",
          "country_code": "IT",
          "slug": "caulonia",
          "canonical_path": "/cities/it/caulonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065037",
          "name": "Cava de' Tirreni",
          "country_code": "IT",
          "slug": "cava-de-tirreni",
          "canonical_path": "/cities/it/cava-de-tirreni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018041",
          "name": "Cava Manara",
          "country_code": "IT",
          "slug": "cava-manara",
          "canonical_path": "/cities/it/cava-manara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023023",
          "name": "Cavaion Veronese",
          "country_code": "IT",
          "slug": "cavaion-veronese",
          "canonical_path": "/cities/it/cavaion-veronese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004059",
          "name": "Cavallermaggiore",
          "country_code": "IT",
          "slug": "cavallermaggiore",
          "canonical_path": "/cities/it/cavallermaggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075020",
          "name": "Cavallino",
          "country_code": "IT",
          "slug": "cavallino",
          "canonical_path": "/cities/it/cavallino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027044",
          "name": "Cavallino-Treporti",
          "country_code": "IT",
          "slug": "cavallino-treporti",
          "canonical_path": "/cities/it/cavallino-treporti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012048",
          "name": "Cavaria con Premezzo",
          "country_code": "IT",
          "slug": "cavaria-con-premezzo",
          "canonical_path": "/cities/it/cavaria-con-premezzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027006",
          "name": "Cavarzere",
          "country_code": "IT",
          "slug": "cavarzere",
          "canonical_path": "/cities/it/cavarzere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058026",
          "name": "Cave",
          "country_code": "IT",
          "slug": "cave",
          "canonical_path": "/cities/it/cave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108017",
          "name": "Cavenago di Brianza",
          "country_code": "IT",
          "slug": "cavenago-di-brianza",
          "canonical_path": "/cities/it/cavenago-di-brianza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036009",
          "name": "Cavezzo",
          "country_code": "IT",
          "slug": "cavezzo",
          "canonical_path": "/cities/it/cavezzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001070",
          "name": "Cavour",
          "country_code": "IT",
          "slug": "cavour",
          "canonical_path": "/cities/it/cavour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035017",
          "name": "Cavriago",
          "country_code": "IT",
          "slug": "cavriago",
          "canonical_path": "/cities/it/cavriago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051013",
          "name": "Cavriglia",
          "country_code": "IT",
          "slug": "cavriglia",
          "canonical_path": "/cities/it/cavriglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017046",
          "name": "Cazzago San Martino",
          "country_code": "IT",
          "slug": "cazzago-san-martino",
          "canonical_path": "/cities/it/cazzago-san-martino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060024",
          "name": "Ceccano",
          "country_code": "IT",
          "slug": "ceccano",
          "canonical_path": "/cities/it/ceccano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:049007",
          "name": "Cecina",
          "country_code": "IT",
          "slug": "cecina",
          "canonical_path": "/cities/it/cecina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082027",
          "name": "Cefalù",
          "country_code": "IT",
          "slug": "cefalu",
          "canonical_path": "/cities/it/cefalu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027007",
          "name": "Ceggia",
          "country_code": "IT",
          "slug": "ceggia",
          "canonical_path": "/cities/it/ceggia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074003",
          "name": "Ceglie Messapica",
          "country_code": "IT",
          "slug": "ceglie-messapica",
          "canonical_path": "/cities/it/ceglie-messapica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:066032",
          "name": "Celano",
          "country_code": "IT",
          "slug": "celano",
          "canonical_path": "/cities/it/celano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072018",
          "name": "Cellamare",
          "country_code": "IT",
          "slug": "cellamare",
          "canonical_path": "/cities/it/cellamare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074004",
          "name": "Cellino San Marco",
          "country_code": "IT",
          "slug": "cellino-san-marco",
          "canonical_path": "/cities/it/cellino-san-marco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061102",
          "name": "Cellole",
          "country_code": "IT",
          "slug": "cellole",
          "canonical_path": "/cities/it/cellole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004061",
          "name": "Centallo",
          "country_code": "IT",
          "slug": "centallo",
          "canonical_path": "/cities/it/centallo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038004",
          "name": "Cento",
          "country_code": "IT",
          "slug": "cento",
          "canonical_path": "/cities/it/cento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065039",
          "name": "Centola",
          "country_code": "IT",
          "slug": "centola",
          "canonical_path": "/cities/it/centola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068011",
          "name": "Cepagatti",
          "country_code": "IT",
          "slug": "cepagatti",
          "canonical_path": "/cities/it/cepagatti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060025",
          "name": "Ceprano",
          "country_code": "IT",
          "slug": "ceprano",
          "canonical_path": "/cities/it/ceprano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003049",
          "name": "Cerano",
          "country_code": "IT",
          "slug": "cerano",
          "canonical_path": "/cities/it/cerano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063026",
          "name": "Cercola",
          "country_code": "IT",
          "slug": "cercola",
          "canonical_path": "/cities/it/cercola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:2525026",
          "name": "Cerda",
          "country_code": "IT",
          "slug": "cerda",
          "canonical_path": "/cities/it/cerda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023025",
          "name": "Cerea",
          "country_code": "IT",
          "slug": "cerea",
          "canonical_path": "/cities/it/cerea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009024",
          "name": "Ceriale",
          "country_code": "IT",
          "slug": "ceriale",
          "canonical_path": "/cities/it/ceriale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108018",
          "name": "Ceriano Laghetto",
          "country_code": "IT",
          "slug": "ceriano-laghetto",
          "canonical_path": "/cities/it/ceriano-laghetto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071020",
          "name": "Cerignola",
          "country_code": "IT",
          "slug": "cerignola",
          "canonical_path": "/cities/it/cerignola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013064",
          "name": "Cermenate",
          "country_code": "IT",
          "slug": "cermenate",
          "canonical_path": "/cities/it/cermenate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013065",
          "name": "Cernobbio",
          "country_code": "IT",
          "slug": "cernobbio",
          "canonical_path": "/cities/it/cernobbio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015070",
          "name": "Cernusco sul Naviglio",
          "country_code": "IT",
          "slug": "cernusco-sul-naviglio",
          "canonical_path": "/cities/it/cernusco-sul-naviglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048011",
          "name": "Cerreto Guidi",
          "country_code": "IT",
          "slug": "cerreto-guidi",
          "canonical_path": "/cities/it/cerreto-guidi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015071",
          "name": "Cerro al Lambro",
          "country_code": "IT",
          "slug": "cerro-al-lambro",
          "canonical_path": "/cities/it/cerro-al-lambro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015072",
          "name": "Cerro Maggiore",
          "country_code": "IT",
          "slug": "cerro-maggiore",
          "canonical_path": "/cities/it/cerro-maggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048012",
          "name": "Certaldo",
          "country_code": "IT",
          "slug": "certaldo",
          "canonical_path": "/cities/it/certaldo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018046",
          "name": "Certosa di Pavia",
          "country_code": "IT",
          "slug": "certosa-di-pavia",
          "canonical_path": "/cities/it/certosa-di-pavia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028030",
          "name": "Cervarese Santa Croce",
          "country_code": "IT",
          "slug": "cervarese-santa-croce",
          "canonical_path": "/cities/it/cervarese-santa-croce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060026",
          "name": "Cervaro",
          "country_code": "IT",
          "slug": "cervaro",
          "canonical_path": "/cities/it/cervaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004064",
          "name": "Cervasca",
          "country_code": "IT",
          "slug": "cervasca",
          "canonical_path": "/cities/it/cervasca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058029",
          "name": "Cerveteri",
          "country_code": "IT",
          "slug": "cerveteri",
          "canonical_path": "/cities/it/cerveteri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039007",
          "name": "Cervia",
          "country_code": "IT",
          "slug": "cervia",
          "canonical_path": "/cities/it/cervia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030023",
          "name": "Cervignano del Friuli",
          "country_code": "IT",
          "slug": "cervignano-del-friuli",
          "canonical_path": "/cities/it/cervignano-del-friuli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064025",
          "name": "Cervinara",
          "country_code": "IT",
          "slug": "cervinara",
          "canonical_path": "/cities/it/cervinara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061029",
          "name": "Cesa",
          "country_code": "IT",
          "slug": "cesa",
          "canonical_path": "/cities/it/cesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015074",
          "name": "Cesano Boscone",
          "country_code": "IT",
          "slug": "cesano-boscone",
          "canonical_path": "/cities/it/cesano-boscone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108019",
          "name": "Cesano Maderno",
          "country_code": "IT",
          "slug": "cesano-maderno",
          "canonical_path": "/cities/it/cesano-maderno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015076",
          "name": "Cesate",
          "country_code": "IT",
          "slug": "cesate",
          "canonical_path": "/cities/it/cesate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040007",
          "name": "Cesena",
          "country_code": "IT",
          "slug": "cesena",
          "canonical_path": "/cities/it/cesena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040008",
          "name": "Cesenatico",
          "country_code": "IT",
          "slug": "cesenatico",
          "canonical_path": "/cities/it/cesenatico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078040",
          "name": "Cetraro",
          "country_code": "IT",
          "slug": "cetraro",
          "canonical_path": "/cities/it/cetraro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004066",
          "name": "Ceva",
          "country_code": "IT",
          "slug": "ceva",
          "canonical_path": "/cities/it/ceva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004067",
          "name": "Cherasco",
          "country_code": "IT",
          "slug": "cherasco",
          "canonical_path": "/cities/it/cherasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024029",
          "name": "Chiampo",
          "country_code": "IT",
          "slug": "chiampo",
          "canonical_path": "/cities/it/chiampo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052009",
          "name": "Chianciano Terme",
          "country_code": "IT",
          "slug": "chianciano-terme",
          "canonical_path": "/cities/it/chianciano-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088002",
          "name": "Chiaramonte Gulfi",
          "country_code": "IT",
          "slug": "chiaramonte-gulfi",
          "canonical_path": "/cities/it/chiaramonte-gulfi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042014",
          "name": "Chiaravalle",
          "country_code": "IT",
          "slug": "chiaravalle",
          "canonical_path": "/cities/it/chiaravalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079029",
          "name": "Chiaravalle Centrale",
          "country_code": "IT",
          "slug": "chiaravalle-centrale",
          "canonical_path": "/cities/it/chiaravalle-centrale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017052",
          "name": "Chiari",
          "country_code": "IT",
          "slug": "chiari",
          "canonical_path": "/cities/it/chiari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010015",
          "name": "Chiavari",
          "country_code": "IT",
          "slug": "chiavari",
          "canonical_path": "/cities/it/chiavari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:014018",
          "name": "Chiavenna",
          "country_code": "IT",
          "slug": "chiavenna",
          "canonical_path": "/cities/it/chiavenna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001078",
          "name": "Chieri",
          "country_code": "IT",
          "slug": "chieri",
          "canonical_path": "/cities/it/chieri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069022",
          "name": "Chieti",
          "country_code": "IT",
          "slug": "chieti",
          "canonical_path": "/cities/it/chieti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027008",
          "name": "Chioggia",
          "country_code": "IT",
          "slug": "chioggia",
          "canonical_path": "/cities/it/chioggia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016073",
          "name": "Chiuduno",
          "country_code": "IT",
          "slug": "chiuduno",
          "canonical_path": "/cities/it/chiuduno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021022",
          "name": "Chiusa",
          "country_code": "IT",
          "slug": "chiusa",
          "canonical_path": "/cities/it/chiusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052011",
          "name": "Chiusi",
          "country_code": "IT",
          "slug": "chiusi",
          "canonical_path": "/cities/it/chiusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001082",
          "name": "Chivasso",
          "country_code": "IT",
          "slug": "chivasso",
          "canonical_path": "/cities/it/chivasso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058118",
          "name": "Ciampino",
          "country_code": "IT",
          "slug": "ciampino",
          "canonical_path": "/cities/it/ciampino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063027",
          "name": "Cicciano",
          "country_code": "IT",
          "slug": "cicciano",
          "canonical_path": "/cities/it/cicciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018050",
          "name": "Cilavegna",
          "country_code": "IT",
          "slug": "cilavegna",
          "canonical_path": "/cities/it/cilavegna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063028",
          "name": "Cimitile",
          "country_code": "IT",
          "slug": "cimitile",
          "canonical_path": "/cities/it/cimitile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043012",
          "name": "Cingoli",
          "country_code": "IT",
          "slug": "cingoli",
          "canonical_path": "/cities/it/cingoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015077",
          "name": "Cinisello Balsamo",
          "country_code": "IT",
          "slug": "cinisello-balsamo",
          "canonical_path": "/cities/it/cinisello-balsamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082031",
          "name": "Cinisi",
          "country_code": "IT",
          "slug": "cinisi",
          "canonical_path": "/cities/it/cinisi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080027",
          "name": "Cinquefrondi",
          "country_code": "IT",
          "slug": "cinquefrondi",
          "canonical_path": "/cities/it/cinquefrondi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001086",
          "name": "Ciriè",
          "country_code": "IT",
          "slug": "cirie",
          "canonical_path": "/cities/it/cirie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:101008",
          "name": "Cirò Marina",
          "country_code": "IT",
          "slug": "ciro-marina",
          "canonical_path": "/cities/it/ciro-marina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016074",
          "name": "Cisano Bergamasco",
          "country_code": "IT",
          "slug": "cisano-bergamasco",
          "canonical_path": "/cities/it/cisano-bergamasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016075",
          "name": "Ciserano",
          "country_code": "IT",
          "slug": "ciserano",
          "canonical_path": "/cities/it/ciserano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012050",
          "name": "Cislago",
          "country_code": "IT",
          "slug": "cislago",
          "canonical_path": "/cities/it/cislago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015078",
          "name": "Cisliano",
          "country_code": "IT",
          "slug": "cisliano",
          "canonical_path": "/cities/it/cisliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059005",
          "name": "Cisterna di Latina",
          "country_code": "IT",
          "slug": "cisterna-di-latina",
          "canonical_path": "/cities/it/cisterna-di-latina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074005",
          "name": "Cisternino",
          "country_code": "IT",
          "slug": "cisternino",
          "canonical_path": "/cities/it/cisternino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054012",
          "name": "Città della Pieve",
          "country_code": "IT",
          "slug": "citta-della-pieve",
          "canonical_path": "/cities/it/citta-della-pieve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054013",
          "name": "Città di Castello",
          "country_code": "IT",
          "slug": "citta-di-castello",
          "canonical_path": "/cities/it/citta-di-castello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068012",
          "name": "Città Sant'Angelo",
          "country_code": "IT",
          "slug": "citta-sant-angelo",
          "canonical_path": "/cities/it/citta-sant-angelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028032",
          "name": "Cittadella",
          "country_code": "IT",
          "slug": "cittadella",
          "canonical_path": "/cities/it/cittadella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:057016",
          "name": "Cittaducale",
          "country_code": "IT",
          "slug": "cittaducale",
          "canonical_path": "/cities/it/cittaducale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080028",
          "name": "Cittanova",
          "country_code": "IT",
          "slug": "cittanova",
          "canonical_path": "/cities/it/cittanova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030026",
          "name": "Cividale del Friuli",
          "country_code": "IT",
          "slug": "cividale-del-friuli",
          "canonical_path": "/cities/it/cividale-del-friuli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016076",
          "name": "Cividate al Piano",
          "country_code": "IT",
          "slug": "cividate-al-piano",
          "canonical_path": "/cities/it/cividate-al-piano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056021",
          "name": "Civita Castellana",
          "country_code": "IT",
          "slug": "civita-castellana",
          "canonical_path": "/cities/it/civita-castellana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043013",
          "name": "Civitanova Marche",
          "country_code": "IT",
          "slug": "civitanova-marche",
          "canonical_path": "/cities/it/civitanova-marche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058032",
          "name": "Civitavecchia",
          "country_code": "IT",
          "slug": "civitavecchia",
          "canonical_path": "/cities/it/civitavecchia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051016",
          "name": "Civitella in Val di Chiana",
          "country_code": "IT",
          "slug": "civitella-in-val-di-chiana",
          "canonical_path": "/cities/it/civitella-in-val-di-chiana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022062",
          "name": "Cles",
          "country_code": "IT",
          "slug": "cles",
          "canonical_path": "/cities/it/cles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016077",
          "name": "Clusone",
          "country_code": "IT",
          "slug": "clusone",
          "canonical_path": "/cities/it/clusone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017056",
          "name": "Coccaglio",
          "country_code": "IT",
          "slug": "coccaglio",
          "canonical_path": "/cities/it/coccaglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028033",
          "name": "Codevigo",
          "country_code": "IT",
          "slug": "codevigo",
          "canonical_path": "/cities/it/codevigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038005",
          "name": "Codigoro",
          "country_code": "IT",
          "slug": "codigoro",
          "canonical_path": "/cities/it/codigoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026019",
          "name": "Codognè",
          "country_code": "IT",
          "slug": "codogne",
          "canonical_path": "/cities/it/codogne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:098019",
          "name": "Codogno",
          "country_code": "IT",
          "slug": "codogno",
          "canonical_path": "/cities/it/codogno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030027",
          "name": "Codroipo",
          "country_code": "IT",
          "slug": "codroipo",
          "canonical_path": "/cities/it/codroipo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108020",
          "name": "Cogliate",
          "country_code": "IT",
          "slug": "cogliate",
          "canonical_path": "/cities/it/cogliate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010017",
          "name": "Cogoleto",
          "country_code": "IT",
          "slug": "cogoleto",
          "canonical_path": "/cities/it/cogoleto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010018",
          "name": "Cogorno",
          "country_code": "IT",
          "slug": "cogorno",
          "canonical_path": "/cities/it/cogorno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024126",
          "name": "Colceresa",
          "country_code": "IT",
          "slug": "colceresa",
          "canonical_path": "/cities/it/colceresa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097023",
          "name": "Colico",
          "country_code": "IT",
          "slug": "colico",
          "canonical_path": "/cities/it/colico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052012",
          "name": "Colle di Val d'Elsa",
          "country_code": "IT",
          "slug": "colle-di-val-d-elsa",
          "canonical_path": "/cities/it/colle-di-val-d-elsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034009",
          "name": "Collecchio",
          "country_code": "IT",
          "slug": "collecchio",
          "canonical_path": "/cities/it/collecchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068015",
          "name": "Collecorvino",
          "country_code": "IT",
          "slug": "collecorvino",
          "canonical_path": "/cities/it/collecorvino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058034",
          "name": "Colleferro",
          "country_code": "IT",
          "slug": "colleferro",
          "canonical_path": "/cities/it/colleferro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001090",
          "name": "Collegno",
          "country_code": "IT",
          "slug": "collegno",
          "canonical_path": "/cities/it/collegno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075021",
          "name": "Collepasso",
          "country_code": "IT",
          "slug": "collepasso",
          "canonical_path": "/cities/it/collepasso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:049008",
          "name": "Collesalvetti",
          "country_code": "IT",
          "slug": "collesalvetti",
          "canonical_path": "/cities/it/collesalvetti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041069",
          "name": "Colli al Metauro",
          "country_code": "IT",
          "slug": "colli-al-metauro",
          "canonical_path": "/cities/it/colli-al-metauro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023027",
          "name": "Cologna Veneta",
          "country_code": "IT",
          "slug": "cologna-veneta",
          "canonical_path": "/cities/it/cologna-veneta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017059",
          "name": "Cologne",
          "country_code": "IT",
          "slug": "cologne",
          "canonical_path": "/cities/it/cologne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016079",
          "name": "Cologno al Serio",
          "country_code": "IT",
          "slug": "cologno-al-serio",
          "canonical_path": "/cities/it/cologno-al-serio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015081",
          "name": "Cologno Monzese",
          "country_code": "IT",
          "slug": "cologno-monzese",
          "canonical_path": "/cities/it/cologno-monzese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023028",
          "name": "Colognola ai Colli",
          "country_code": "IT",
          "slug": "colognola-ai-colli",
          "canonical_path": "/cities/it/colognola-ai-colli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034010",
          "name": "Colorno",
          "country_code": "IT",
          "slug": "colorno",
          "canonical_path": "/cities/it/colorno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013251",
          "name": "Colverde",
          "country_code": "IT",
          "slug": "colverde",
          "canonical_path": "/cities/it/colverde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038006",
          "name": "Comacchio",
          "country_code": "IT",
          "slug": "comacchio",
          "canonical_path": "/cities/it/comacchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088003",
          "name": "Comiso",
          "country_code": "IT",
          "slug": "comiso",
          "canonical_path": "/cities/it/comiso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013075",
          "name": "Como",
          "country_code": "IT",
          "slug": "como",
          "canonical_path": "/cities/it/como/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017061",
          "name": "Concesio",
          "country_code": "IT",
          "slug": "concesio",
          "canonical_path": "/cities/it/concesio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027011",
          "name": "Concordia Sagittaria",
          "country_code": "IT",
          "slug": "concordia-sagittaria",
          "canonical_path": "/cities/it/concordia-sagittaria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036010",
          "name": "Concordia sulla Secchia",
          "country_code": "IT",
          "slug": "concordia-sulla-secchia",
          "canonical_path": "/cities/it/concordia-sulla-secchia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108021",
          "name": "Concorezzo",
          "country_code": "IT",
          "slug": "concorezzo",
          "canonical_path": "/cities/it/concorezzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026021",
          "name": "Conegliano",
          "country_code": "IT",
          "slug": "conegliano",
          "canonical_path": "/cities/it/conegliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039008",
          "name": "Conselice",
          "country_code": "IT",
          "slug": "conselice",
          "canonical_path": "/cities/it/conselice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028034",
          "name": "Conselve",
          "country_code": "IT",
          "slug": "conselve",
          "canonical_path": "/cities/it/conselve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072019",
          "name": "Conversano",
          "country_code": "IT",
          "slug": "conversano",
          "canonical_path": "/cities/it/conversano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075022",
          "name": "Copertino",
          "country_code": "IT",
          "slug": "copertino",
          "canonical_path": "/cities/it/copertino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038007",
          "name": "Copparo",
          "country_code": "IT",
          "slug": "copparo",
          "canonical_path": "/cities/it/copparo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072020",
          "name": "Corato",
          "country_code": "IT",
          "slug": "corato",
          "canonical_path": "/cities/it/corato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015085",
          "name": "Corbetta",
          "country_code": "IT",
          "slug": "corbetta",
          "canonical_path": "/cities/it/corbetta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054015",
          "name": "Corciano",
          "country_code": "IT",
          "slug": "corciano",
          "canonical_path": "/cities/it/corciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093017",
          "name": "Cordenons",
          "country_code": "IT",
          "slug": "cordenons",
          "canonical_path": "/cities/it/cordenons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026022",
          "name": "Cordignano",
          "country_code": "IT",
          "slug": "cordignano",
          "canonical_path": "/cities/it/cordignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046011",
          "name": "Coreglia Antelminelli",
          "country_code": "IT",
          "slug": "coreglia-antelminelli",
          "canonical_path": "/cities/it/coreglia-antelminelli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059006",
          "name": "Cori",
          "country_code": "IT",
          "slug": "cori",
          "canonical_path": "/cities/it/cori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099003",
          "name": "Coriano",
          "country_code": "IT",
          "slug": "coriano",
          "canonical_path": "/cities/it/coriano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075023",
          "name": "Corigliano d'Otranto",
          "country_code": "IT",
          "slug": "corigliano-d-otranto",
          "canonical_path": "/cities/it/corigliano-d-otranto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078157",
          "name": "Corigliano-Rossano",
          "country_code": "IT",
          "slug": "corigliano-rossano",
          "canonical_path": "/cities/it/corigliano-rossano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082034",
          "name": "Corleone",
          "country_code": "IT",
          "slug": "corleone",
          "canonical_path": "/cities/it/corleone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015086",
          "name": "Cormano",
          "country_code": "IT",
          "slug": "cormano",
          "canonical_path": "/cities/it/cormano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:031002",
          "name": "Cormons",
          "country_code": "IT",
          "slug": "cormons",
          "canonical_path": "/cities/it/cormons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015087",
          "name": "Cornaredo",
          "country_code": "IT",
          "slug": "cornaredo",
          "canonical_path": "/cities/it/cornaredo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108053",
          "name": "Cornate d'Adda",
          "country_code": "IT",
          "slug": "cornate-d-adda",
          "canonical_path": "/cities/it/cornate-d-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024034",
          "name": "Cornedo Vicentino",
          "country_code": "IT",
          "slug": "cornedo-vicentino",
          "canonical_path": "/cities/it/cornedo-vicentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026023",
          "name": "Cornuda",
          "country_code": "IT",
          "slug": "cornuda",
          "canonical_path": "/cities/it/cornuda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035020",
          "name": "Correggio",
          "country_code": "IT",
          "slug": "correggio",
          "canonical_path": "/cities/it/correggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028035",
          "name": "Correzzola",
          "country_code": "IT",
          "slug": "correzzola",
          "canonical_path": "/cities/it/correzzola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043015",
          "name": "Corridonia",
          "country_code": "IT",
          "slug": "corridonia",
          "canonical_path": "/cities/it/corridonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067021",
          "name": "Corropoli",
          "country_code": "IT",
          "slug": "corropoli",
          "canonical_path": "/cities/it/corropoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075024",
          "name": "Corsano",
          "country_code": "IT",
          "slug": "corsano",
          "canonical_path": "/cities/it/corsano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015093",
          "name": "Corsico",
          "country_code": "IT",
          "slug": "corsico",
          "canonical_path": "/cities/it/corsico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017062",
          "name": "Corte Franca",
          "country_code": "IT",
          "slug": "corte-franca",
          "canonical_path": "/cities/it/corte-franca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025016",
          "name": "Cortina d'Ampezzo",
          "country_code": "IT",
          "slug": "cortina-d-ampezzo",
          "canonical_path": "/cities/it/cortina-d-ampezzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051017",
          "name": "Cortona",
          "country_code": "IT",
          "slug": "cortona",
          "canonical_path": "/cities/it/cortona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078045",
          "name": "Cosenza",
          "country_code": "IT",
          "slug": "cosenza",
          "canonical_path": "/cities/it/cosenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:014024",
          "name": "Cosio Valtellino",
          "country_code": "IT",
          "slug": "cosio-valtellino",
          "canonical_path": "/cities/it/cosio-valtellino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:096020",
          "name": "Cossato",
          "country_code": "IT",
          "slug": "cossato",
          "canonical_path": "/cities/it/cossato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016086",
          "name": "Costa Volpino",
          "country_code": "IT",
          "slug": "costa-volpino",
          "canonical_path": "/cities/it/costa-volpino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024035",
          "name": "Costabissara",
          "country_code": "IT",
          "slug": "costabissara",
          "canonical_path": "/cities/it/costabissara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:005050",
          "name": "Costigliole d'Asti",
          "country_code": "IT",
          "slug": "costigliole-d-asti",
          "canonical_path": "/cities/it/costigliole-d-asti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039009",
          "name": "Cotignola",
          "country_code": "IT",
          "slug": "cotignola",
          "canonical_path": "/cities/it/cotignola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:101009",
          "name": "Cotronei",
          "country_code": "IT",
          "slug": "cotronei",
          "canonical_path": "/cities/it/cotronei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024036",
          "name": "Creazzo",
          "country_code": "IT",
          "slug": "creazzo",
          "canonical_path": "/cities/it/creazzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019035",
          "name": "Crema",
          "country_code": "IT",
          "slug": "crema",
          "canonical_path": "/cities/it/crema/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019036",
          "name": "Cremona",
          "country_code": "IT",
          "slug": "cremona",
          "canonical_path": "/cities/it/cremona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:002049",
          "name": "Crescentino",
          "country_code": "IT",
          "slug": "crescentino",
          "canonical_path": "/cities/it/crescentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050041",
          "name": "Crespina Lorenzana",
          "country_code": "IT",
          "slug": "crespina-lorenzana",
          "canonical_path": "/cities/it/crespina-lorenzana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037024",
          "name": "Crevalcore",
          "country_code": "IT",
          "slug": "crevalcore",
          "canonical_path": "/cities/it/crevalcore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063030",
          "name": "Crispano",
          "country_code": "IT",
          "slug": "crispano",
          "canonical_path": "/cities/it/crispano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073004",
          "name": "Crispiano",
          "country_code": "IT",
          "slug": "crispiano",
          "canonical_path": "/cities/it/crispiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026025",
          "name": "Crocetta del Montello",
          "country_code": "IT",
          "slug": "crocetta-del-montello",
          "canonical_path": "/cities/it/crocetta-del-montello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078047",
          "name": "Crosia",
          "country_code": "IT",
          "slug": "crosia",
          "canonical_path": "/cities/it/crosia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:101010",
          "name": "Crotone",
          "country_code": "IT",
          "slug": "crotone",
          "canonical_path": "/cities/it/crotone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015096",
          "name": "Cuggiono",
          "country_code": "IT",
          "slug": "cuggiono",
          "canonical_path": "/cities/it/cuggiono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001097",
          "name": "Cumiana",
          "country_code": "IT",
          "slug": "cumiana",
          "canonical_path": "/cities/it/cumiana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004078",
          "name": "Cuneo",
          "country_code": "IT",
          "slug": "cuneo",
          "canonical_path": "/cities/it/cuneo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001098",
          "name": "Cuorgnè",
          "country_code": "IT",
          "slug": "cuorgne",
          "canonical_path": "/cities/it/cuorgne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:044017",
          "name": "Cupra Marittima",
          "country_code": "IT",
          "slug": "cupra-marittima",
          "canonical_path": "/cities/it/cupra-marittima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018060",
          "name": "Cura Carpignano",
          "country_code": "IT",
          "slug": "cura-carpignano",
          "canonical_path": "/cities/it/cura-carpignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079039",
          "name": "Curinga",
          "country_code": "IT",
          "slug": "curinga",
          "canonical_path": "/cities/it/curinga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016089",
          "name": "Curno",
          "country_code": "IT",
          "slug": "curno",
          "canonical_path": "/cities/it/curno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028036",
          "name": "Curtarolo",
          "country_code": "IT",
          "slug": "curtarolo",
          "canonical_path": "/cities/it/curtarolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020021",
          "name": "Curtatone",
          "country_code": "IT",
          "slug": "curtatone",
          "canonical_path": "/cities/it/curtatone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061032",
          "name": "Curti",
          "country_code": "IT",
          "slug": "curti",
          "canonical_path": "/cities/it/curti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015098",
          "name": "Cusano Milanino",
          "country_code": "IT",
          "slug": "cusano-milanino",
          "canonical_path": "/cities/it/cusano-milanino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081007",
          "name": "Custonaci",
          "country_code": "IT",
          "slug": "custonaci",
          "canonical_path": "/cities/it/custonaci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:101012",
          "name": "Cutro",
          "country_code": "IT",
          "slug": "cutro",
          "canonical_path": "/cities/it/cutro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075026",
          "name": "Cutrofiano",
          "country_code": "IT",
          "slug": "cutrofiano",
          "canonical_path": "/cities/it/cutrofiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015099",
          "name": "Dairago",
          "country_code": "IT",
          "slug": "dairago",
          "canonical_path": "/cities/it/dairago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016091",
          "name": "Dalmine",
          "country_code": "IT",
          "slug": "dalmine",
          "canonical_path": "/cities/it/dalmine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017065",
          "name": "Darfo Boario Terme",
          "country_code": "IT",
          "slug": "darfo-boario-terme",
          "canonical_path": "/cities/it/darfo-boario-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079042",
          "name": "Davoli",
          "country_code": "IT",
          "slug": "davoli",
          "canonical_path": "/cities/it/davoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118009",
          "name": "Decimomannu",
          "country_code": "IT",
          "slug": "decimomannu",
          "canonical_path": "/cities/it/decimomannu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017066",
          "name": "Dello",
          "country_code": "IT",
          "slug": "dello",
          "canonical_path": "/cities/it/dello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054017",
          "name": "Deruta",
          "country_code": "IT",
          "slug": "deruta",
          "canonical_path": "/cities/it/deruta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017067",
          "name": "Desenzano del Garda",
          "country_code": "IT",
          "slug": "desenzano-del-garda",
          "canonical_path": "/cities/it/desenzano-del-garda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108023",
          "name": "Desio",
          "country_code": "IT",
          "slug": "desio",
          "canonical_path": "/cities/it/desio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:008027",
          "name": "Diano Marina",
          "country_code": "IT",
          "slug": "diano-marina",
          "canonical_path": "/cities/it/diano-marina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048013",
          "name": "Dicomano",
          "country_code": "IT",
          "slug": "dicomano",
          "canonical_path": "/cities/it/dicomano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118011",
          "name": "Dolianova",
          "country_code": "IT",
          "slug": "dolianova",
          "canonical_path": "/cities/it/dolianova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027012",
          "name": "Dolo",
          "country_code": "IT",
          "slug": "dolo",
          "canonical_path": "/cities/it/dolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:103028",
          "name": "Domodossola",
          "country_code": "IT",
          "slug": "domodossola",
          "canonical_path": "/cities/it/domodossola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:119005",
          "name": "Domusnovas",
          "country_code": "IT",
          "slug": "domusnovas",
          "canonical_path": "/cities/it/domusnovas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:114011",
          "name": "Dorgali",
          "country_code": "IT",
          "slug": "dorgali",
          "canonical_path": "/cities/it/dorgali/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037025",
          "name": "Dozza",
          "country_code": "IT",
          "slug": "dozza",
          "canonical_path": "/cities/it/dozza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022079",
          "name": "Dro",
          "country_code": "IT",
          "slug": "dro",
          "canonical_path": "/cities/it/dro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004082",
          "name": "Dronero",
          "country_code": "IT",
          "slug": "dronero",
          "canonical_path": "/cities/it/dronero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001099",
          "name": "Druento",
          "country_code": "IT",
          "slug": "druento",
          "canonical_path": "/cities/it/druento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028106",
          "name": "Due Carrare",
          "country_code": "IT",
          "slug": "due-carrare",
          "canonical_path": "/cities/it/due-carrare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024038",
          "name": "Dueville",
          "country_code": "IT",
          "slug": "dueville",
          "canonical_path": "/cities/it/dueville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:032001",
          "name": "Duino Aurisina",
          "country_code": "IT",
          "slug": "duino-aurisina",
          "canonical_path": "/cities/it/duino-aurisina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065050",
          "name": "Eboli",
          "country_code": "IT",
          "slug": "eboli",
          "canonical_path": "/cities/it/eboli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021029",
          "name": "Egna",
          "country_code": "IT",
          "slug": "egna",
          "canonical_path": "/cities/it/egna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118014",
          "name": "Elmas",
          "country_code": "IT",
          "slug": "elmas",
          "canonical_path": "/cities/it/elmas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048014",
          "name": "Empoli",
          "country_code": "IT",
          "slug": "empoli",
          "canonical_path": "/cities/it/empoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086009",
          "name": "Enna",
          "country_code": "IT",
          "slug": "enna",
          "canonical_path": "/cities/it/enna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027013",
          "name": "Eraclea",
          "country_code": "IT",
          "slug": "eraclea",
          "canonical_path": "/cities/it/eraclea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013095",
          "name": "Erba",
          "country_code": "IT",
          "slug": "erba",
          "canonical_path": "/cities/it/erba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017069",
          "name": "Erbusco",
          "country_code": "IT",
          "slug": "erbusco",
          "canonical_path": "/cities/it/erbusco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074006",
          "name": "Erchie",
          "country_code": "IT",
          "slug": "erchie",
          "canonical_path": "/cities/it/erchie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063064",
          "name": "Ercolano",
          "country_code": "IT",
          "slug": "ercolano",
          "canonical_path": "/cities/it/ercolano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081008",
          "name": "Erice",
          "country_code": "IT",
          "slug": "erice",
          "canonical_path": "/cities/it/erice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017070",
          "name": "Esine",
          "country_code": "IT",
          "slug": "esine",
          "canonical_path": "/cities/it/esine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028037",
          "name": "Este",
          "country_code": "IT",
          "slug": "este",
          "canonical_path": "/cities/it/este/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035021",
          "name": "Fabbrico",
          "country_code": "IT",
          "slug": "fabbrico",
          "canonical_path": "/cities/it/fabbrico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042017",
          "name": "Fabriano",
          "country_code": "IT",
          "slug": "fabriano",
          "canonical_path": "/cities/it/fabriano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056024",
          "name": "Fabrica di Roma",
          "country_code": "IT",
          "slug": "fabrica-di-roma",
          "canonical_path": "/cities/it/fabrica-di-roma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039010",
          "name": "Faenza",
          "country_code": "IT",
          "slug": "faenza",
          "canonical_path": "/cities/it/faenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030037",
          "name": "Fagagna",
          "country_code": "IT",
          "slug": "fagagna",
          "canonical_path": "/cities/it/fagagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012067",
          "name": "Fagnano Olona",
          "country_code": "IT",
          "slug": "fagnano-olona",
          "canonical_path": "/cities/it/fagnano-olona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042018",
          "name": "Falconara Marittima",
          "country_code": "IT",
          "slug": "falconara-marittima",
          "canonical_path": "/cities/it/falconara-marittima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041013",
          "name": "Fano",
          "country_code": "IT",
          "slug": "fano",
          "canonical_path": "/cities/it/fano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016096",
          "name": "Fara Gera d'Adda",
          "country_code": "IT",
          "slug": "fara-gera-d-adda",
          "canonical_path": "/cities/it/fara-gera-d-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:057027",
          "name": "Fara in Sabina",
          "country_code": "IT",
          "slug": "fara-in-sabina",
          "canonical_path": "/cities/it/fara-in-sabina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026026",
          "name": "Farra di Soligo",
          "country_code": "IT",
          "slug": "farra-di-soligo",
          "canonical_path": "/cities/it/farra-di-soligo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074007",
          "name": "Fasano",
          "country_code": "IT",
          "slug": "fasano",
          "canonical_path": "/cities/it/fasano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084017",
          "name": "Favara",
          "country_code": "IT",
          "slug": "favara",
          "canonical_path": "/cities/it/favara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034013",
          "name": "Felino",
          "country_code": "IT",
          "slug": "felino",
          "canonical_path": "/cities/it/felino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025021",
          "name": "Feltre",
          "country_code": "IT",
          "slug": "feltre",
          "canonical_path": "/cities/it/feltre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060033",
          "name": "Ferentino",
          "country_code": "IT",
          "slug": "ferentino",
          "canonical_path": "/cities/it/ferentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041014",
          "name": "Fermignano",
          "country_code": "IT",
          "slug": "fermignano",
          "canonical_path": "/cities/it/fermignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:109006",
          "name": "Fermo",
          "country_code": "IT",
          "slug": "fermo",
          "canonical_path": "/cities/it/fermo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012068",
          "name": "Ferno",
          "country_code": "IT",
          "slug": "ferno",
          "canonical_path": "/cities/it/ferno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:077008",
          "name": "Ferrandina",
          "country_code": "IT",
          "slug": "ferrandina",
          "canonical_path": "/cities/it/ferrandina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038008",
          "name": "Ferrara",
          "country_code": "IT",
          "slug": "ferrara",
          "canonical_path": "/cities/it/ferrara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058036",
          "name": "Fiano Romano",
          "country_code": "IT",
          "slug": "fiano-romano",
          "canonical_path": "/cities/it/fiano-romano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082035",
          "name": "Ficarazzi",
          "country_code": "IT",
          "slug": "ficarazzi",
          "canonical_path": "/cities/it/ficarazzi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034014",
          "name": "Fidenza",
          "country_code": "IT",
          "slug": "fidenza",
          "canonical_path": "/cities/it/fidenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048015",
          "name": "Fiesole",
          "country_code": "IT",
          "slug": "fiesole",
          "canonical_path": "/cities/it/fiesole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027014",
          "name": "Fiesso d'Artico",
          "country_code": "IT",
          "slug": "fiesso-d-artico",
          "canonical_path": "/cities/it/fiesso-d-artico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048052",
          "name": "Figline e Incisa Valdarno",
          "country_code": "IT",
          "slug": "figline-e-incisa-valdarno",
          "canonical_path": "/cities/it/figline-e-incisa-valdarno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042019",
          "name": "Filottrano",
          "country_code": "IT",
          "slug": "filottrano",
          "canonical_path": "/cities/it/filottrano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036012",
          "name": "Finale Emilia",
          "country_code": "IT",
          "slug": "finale-emilia",
          "canonical_path": "/cities/it/finale-emilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009029",
          "name": "Finale Ligure",
          "country_code": "IT",
          "slug": "finale-ligure",
          "canonical_path": "/cities/it/finale-ligure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013102",
          "name": "Fino Mornasco",
          "country_code": "IT",
          "slug": "fino-mornasco",
          "canonical_path": "/cities/it/fino-mornasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036013",
          "name": "Fiorano Modenese",
          "country_code": "IT",
          "slug": "fiorano-modenese",
          "canonical_path": "/cities/it/fiorano-modenese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033021",
          "name": "Fiorenzuola d'Arda",
          "country_code": "IT",
          "slug": "fiorenzuola-d-arda",
          "canonical_path": "/cities/it/fiorenzuola-d-arda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048017",
          "name": "Firenze",
          "country_code": "IT",
          "slug": "firenze",
          "canonical_path": "/cities/it/firenze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038027",
          "name": "Fiscaglia",
          "country_code": "IT",
          "slug": "fiscaglia",
          "canonical_path": "/cities/it/fiscaglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065052",
          "name": "Fisciano",
          "country_code": "IT",
          "slug": "fisciano",
          "canonical_path": "/cities/it/fisciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060035",
          "name": "Fiuggi",
          "country_code": "IT",
          "slug": "fiuggi",
          "canonical_path": "/cities/it/fiuggi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093021",
          "name": "Fiume Veneto",
          "country_code": "IT",
          "slug": "fiume-veneto",
          "canonical_path": "/cities/it/fiume-veneto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087016",
          "name": "Fiumefreddo di Sicilia",
          "country_code": "IT",
          "slug": "fiumefreddo-di-sicilia",
          "canonical_path": "/cities/it/fiumefreddo-di-sicilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030190",
          "name": "Fiumicello Villa Vicentina",
          "country_code": "IT",
          "slug": "fiumicello-villa-vicentina",
          "canonical_path": "/cities/it/fiumicello-villa-vicentina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058120",
          "name": "Fiumicino",
          "country_code": "IT",
          "slug": "fiumicino",
          "canonical_path": "/cities/it/fiumicino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:045007",
          "name": "Fivizzano",
          "country_code": "IT",
          "slug": "fivizzano",
          "canonical_path": "/cities/it/fivizzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017072",
          "name": "Flero",
          "country_code": "IT",
          "slug": "flero",
          "canonical_path": "/cities/it/flero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089009",
          "name": "Floridia",
          "country_code": "IT",
          "slug": "floridia",
          "canonical_path": "/cities/it/floridia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071024",
          "name": "Foggia",
          "country_code": "IT",
          "slug": "foggia",
          "canonical_path": "/cities/it/foggia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051018",
          "name": "Foiano della Chiana",
          "country_code": "IT",
          "slug": "foiano-della-chiana",
          "canonical_path": "/cities/it/foiano-della-chiana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:044020",
          "name": "Folignano",
          "country_code": "IT",
          "slug": "folignano",
          "canonical_path": "/cities/it/folignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054018",
          "name": "Foligno",
          "country_code": "IT",
          "slug": "foligno",
          "canonical_path": "/cities/it/foligno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011013",
          "name": "Follo",
          "country_code": "IT",
          "slug": "follo",
          "canonical_path": "/cities/it/follo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:053009",
          "name": "Follonica",
          "country_code": "IT",
          "slug": "follonica",
          "canonical_path": "/cities/it/follonica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059007",
          "name": "Fondi",
          "country_code": "IT",
          "slug": "fondi",
          "canonical_path": "/cities/it/fondi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093022",
          "name": "Fontanafredda",
          "country_code": "IT",
          "slug": "fontanafredda",
          "canonical_path": "/cities/it/fontanafredda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034015",
          "name": "Fontanellato",
          "country_code": "IT",
          "slug": "fontanellato",
          "canonical_path": "/cities/it/fontanellato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026028",
          "name": "Fontanelle",
          "country_code": "IT",
          "slug": "fontanelle",
          "canonical_path": "/cities/it/fontanelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028038",
          "name": "Fontaniva",
          "country_code": "IT",
          "slug": "fontaniva",
          "canonical_path": "/cities/it/fontaniva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026029",
          "name": "Fonte",
          "country_code": "IT",
          "slug": "fonte",
          "canonical_path": "/cities/it/fonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058122",
          "name": "Fonte Nuova",
          "country_code": "IT",
          "slug": "fonte-nuova",
          "canonical_path": "/cities/it/fonte-nuova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034016",
          "name": "Fontevivo",
          "country_code": "IT",
          "slug": "fontevivo",
          "canonical_path": "/cities/it/fontevivo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064034",
          "name": "Forino",
          "country_code": "IT",
          "slug": "forino",
          "canonical_path": "/cities/it/forino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063031",
          "name": "Forio",
          "country_code": "IT",
          "slug": "forio",
          "canonical_path": "/cities/it/forio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040012",
          "name": "Forlì",
          "country_code": "IT",
          "slug": "forli",
          "canonical_path": "/cities/it/forli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040013",
          "name": "Forlimpopoli",
          "country_code": "IT",
          "slug": "forlimpopoli",
          "canonical_path": "/cities/it/forlimpopoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058038",
          "name": "Formello",
          "country_code": "IT",
          "slug": "formello",
          "canonical_path": "/cities/it/formello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059008",
          "name": "Formia",
          "country_code": "IT",
          "slug": "formia",
          "canonical_path": "/cities/it/formia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036015",
          "name": "Formigine",
          "country_code": "IT",
          "slug": "formigine",
          "canonical_path": "/cities/it/formigine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034017",
          "name": "Fornovo di Taro",
          "country_code": "IT",
          "slug": "fornovo-di-taro",
          "canonical_path": "/cities/it/fornovo-di-taro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046013",
          "name": "Forte dei Marmi",
          "country_code": "IT",
          "slug": "forte-dei-marmi",
          "canonical_path": "/cities/it/forte-dei-marmi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069033",
          "name": "Fossacesia",
          "country_code": "IT",
          "slug": "fossacesia",
          "canonical_path": "/cities/it/fossacesia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027016",
          "name": "Fossalta di Portogruaro",
          "country_code": "IT",
          "slug": "fossalta-di-portogruaro",
          "canonical_path": "/cities/it/fossalta-di-portogruaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004089",
          "name": "Fossano",
          "country_code": "IT",
          "slug": "fossano",
          "canonical_path": "/cities/it/fossano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027017",
          "name": "Fossò",
          "country_code": "IT",
          "slug": "fosso",
          "canonical_path": "/cities/it/fosso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041015",
          "name": "Fossombrone",
          "country_code": "IT",
          "slug": "fossombrone",
          "canonical_path": "/cities/it/fossombrone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3176616",
          "name": "Fragagnano",
          "country_code": "IT",
          "slug": "fragagnano",
          "canonical_path": "/cities/it/fragagnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069035",
          "name": "Francavilla al Mare",
          "country_code": "IT",
          "slug": "francavilla-al-mare",
          "canonical_path": "/cities/it/francavilla-al-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074008",
          "name": "Francavilla Fontana",
          "country_code": "IT",
          "slug": "francavilla-fontana",
          "canonical_path": "/cities/it/francavilla-fontana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089010",
          "name": "Francofonte",
          "country_code": "IT",
          "slug": "francofonte",
          "canonical_path": "/cities/it/francofonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058039",
          "name": "Frascati",
          "country_code": "IT",
          "slug": "frascati",
          "canonical_path": "/cities/it/frascati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063032",
          "name": "Frattamaggiore",
          "country_code": "IT",
          "slug": "frattamaggiore",
          "canonical_path": "/cities/it/frattamaggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063033",
          "name": "Frattaminore",
          "country_code": "IT",
          "slug": "frattaminore",
          "canonical_path": "/cities/it/frattaminore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061037",
          "name": "Frignano",
          "country_code": "IT",
          "slug": "frignano",
          "canonical_path": "/cities/it/frignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060038",
          "name": "Frosinone",
          "country_code": "IT",
          "slug": "frosinone",
          "canonical_path": "/cities/it/frosinone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048019",
          "name": "Fucecchio",
          "country_code": "IT",
          "slug": "fucecchio",
          "canonical_path": "/cities/it/fucecchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078058",
          "name": "Fuscaldo",
          "country_code": "IT",
          "slug": "fuscaldo",
          "canonical_path": "/cities/it/fuscaldo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039011",
          "name": "Fusignano",
          "country_code": "IT",
          "slug": "fusignano",
          "canonical_path": "/cities/it/fusignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041019",
          "name": "Gabicce Mare",
          "country_code": "IT",
          "slug": "gabicce-mare",
          "canonical_path": "/cities/it/gabicce-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059009",
          "name": "Gaeta",
          "country_code": "IT",
          "slug": "gaeta",
          "canonical_path": "/cities/it/gaeta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015103",
          "name": "Gaggiano",
          "country_code": "IT",
          "slug": "gaggiano",
          "canonical_path": "/cities/it/gaggiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:2524685",
          "name": "Gagliano del Capo",
          "country_code": "IT",
          "slug": "gagliano-del-capo",
          "canonical_path": "/cities/it/gagliano-del-capo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026031",
          "name": "Gaiarine",
          "country_code": "IT",
          "slug": "gaiarine",
          "canonical_path": "/cities/it/gaiarine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075029",
          "name": "Galatina",
          "country_code": "IT",
          "slug": "galatina",
          "canonical_path": "/cities/it/galatina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075030",
          "name": "Galatone",
          "country_code": "IT",
          "slug": "galatone",
          "canonical_path": "/cities/it/galatone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097036",
          "name": "Galbiate",
          "country_code": "IT",
          "slug": "galbiate",
          "canonical_path": "/cities/it/galbiate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012070",
          "name": "Gallarate",
          "country_code": "IT",
          "slug": "gallarate",
          "canonical_path": "/cities/it/gallarate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003068",
          "name": "Galliate",
          "country_code": "IT",
          "slug": "galliate",
          "canonical_path": "/cities/it/galliate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058040",
          "name": "Gallicano nel Lazio",
          "country_code": "IT",
          "slug": "gallicano-nel-lazio",
          "canonical_path": "/cities/it/gallicano-nel-lazio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037028",
          "name": "Galliera",
          "country_code": "IT",
          "slug": "galliera",
          "canonical_path": "/cities/it/galliera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028039",
          "name": "Galliera Veneta",
          "country_code": "IT",
          "slug": "galliera-veneta",
          "canonical_path": "/cities/it/galliera-veneta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075031",
          "name": "Gallipoli",
          "country_code": "IT",
          "slug": "gallipoli",
          "canonical_path": "/cities/it/gallipoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040015",
          "name": "Gambettola",
          "country_code": "IT",
          "slug": "gambettola",
          "canonical_path": "/cities/it/gambettola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018068",
          "name": "Gambolò",
          "country_code": "IT",
          "slug": "gambolo",
          "canonical_path": "/cities/it/gambolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016108",
          "name": "Gandino",
          "country_code": "IT",
          "slug": "gandino",
          "canonical_path": "/cities/it/gandino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082036",
          "name": "Gangi",
          "country_code": "IT",
          "slug": "gangi",
          "canonical_path": "/cities/it/gangi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015105",
          "name": "Garbagnate Milanese",
          "country_code": "IT",
          "slug": "garbagnate-milanese",
          "canonical_path": "/cities/it/garbagnate-milanese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017075",
          "name": "Gardone Val Trompia",
          "country_code": "IT",
          "slug": "gardone-val-trompia",
          "canonical_path": "/cities/it/gardone-val-trompia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018069",
          "name": "Garlasco",
          "country_code": "IT",
          "slug": "garlasco",
          "canonical_path": "/cities/it/garlasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001112",
          "name": "Gassino Torinese",
          "country_code": "IT",
          "slug": "gassino-torinese",
          "canonical_path": "/cities/it/gassino-torinese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035022",
          "name": "Gattatico",
          "country_code": "IT",
          "slug": "gattatico",
          "canonical_path": "/cities/it/gattatico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040016",
          "name": "Gatteo",
          "country_code": "IT",
          "slug": "gatteo",
          "canonical_path": "/cities/it/gatteo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003166",
          "name": "Gattico-Veruno",
          "country_code": "IT",
          "slug": "gattico-veruno",
          "canonical_path": "/cities/it/gattico-veruno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:002061",
          "name": "Gattinara",
          "country_code": "IT",
          "slug": "gattinara",
          "canonical_path": "/cities/it/gattinara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017077",
          "name": "Gavardo",
          "country_code": "IT",
          "slug": "gavardo",
          "canonical_path": "/cities/it/gavardo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012072",
          "name": "Gavirate",
          "country_code": "IT",
          "slug": "gavirate",
          "canonical_path": "/cities/it/gavirate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:053010",
          "name": "Gavorrano",
          "country_code": "IT",
          "slug": "gavorrano",
          "canonical_path": "/cities/it/gavorrano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023037",
          "name": "Gazzo Veronese",
          "country_code": "IT",
          "slug": "gazzo-veronese",
          "canonical_path": "/cities/it/gazzo-veronese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:085007",
          "name": "Gela",
          "country_code": "IT",
          "slug": "gela",
          "canonical_path": "/cities/it/gela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030043",
          "name": "Gemona del Friuli",
          "country_code": "IT",
          "slug": "gemona-del-friuli",
          "canonical_path": "/cities/it/gemona-del-friuli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058042",
          "name": "Genazzano",
          "country_code": "IT",
          "slug": "genazzano",
          "canonical_path": "/cities/it/genazzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010025",
          "name": "Genova",
          "country_code": "IT",
          "slug": "genova",
          "canonical_path": "/cities/it/genova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076036",
          "name": "Genzano di Lucania",
          "country_code": "IT",
          "slug": "genzano-di-lucania",
          "canonical_path": "/cities/it/genzano-di-lucania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058043",
          "name": "Genzano di Roma",
          "country_code": "IT",
          "slug": "genzano-di-roma",
          "canonical_path": "/cities/it/genzano-di-roma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012075",
          "name": "Gerenzano",
          "country_code": "IT",
          "slug": "gerenzano",
          "canonical_path": "/cities/it/gerenzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015106",
          "name": "Gessate",
          "country_code": "IT",
          "slug": "gessate",
          "canonical_path": "/cities/it/gessate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017078",
          "name": "Ghedi",
          "country_code": "IT",
          "slug": "ghedi",
          "canonical_path": "/cities/it/ghedi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016113",
          "name": "Ghisalba",
          "country_code": "IT",
          "slug": "ghisalba",
          "canonical_path": "/cities/it/ghisalba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083032",
          "name": "Giardini-Naxos",
          "country_code": "IT",
          "slug": "giardini-naxos",
          "canonical_path": "/cities/it/giardini-naxos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087017",
          "name": "Giarre",
          "country_code": "IT",
          "slug": "giarre",
          "canonical_path": "/cities/it/giarre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001115",
          "name": "Giaveno",
          "country_code": "IT",
          "slug": "giaveno",
          "canonical_path": "/cities/it/giaveno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026032",
          "name": "Giavera del Montello",
          "country_code": "IT",
          "slug": "giavera-del-montello",
          "canonical_path": "/cities/it/giavera-del-montello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065056",
          "name": "Giffoni Valle Piana",
          "country_code": "IT",
          "slug": "giffoni-valle-piana",
          "canonical_path": "/cities/it/giffoni-valle-piana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073007",
          "name": "Ginosa",
          "country_code": "IT",
          "slug": "ginosa",
          "canonical_path": "/cities/it/ginosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072021",
          "name": "Gioia del Colle",
          "country_code": "IT",
          "slug": "gioia-del-colle",
          "canonical_path": "/cities/it/gioia-del-colle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080038",
          "name": "Gioia Tauro",
          "country_code": "IT",
          "slug": "gioia-tauro",
          "canonical_path": "/cities/it/gioia-tauro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080039",
          "name": "Gioiosa Ionica",
          "country_code": "IT",
          "slug": "gioiosa-ionica",
          "canonical_path": "/cities/it/gioiosa-ionica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083033",
          "name": "Gioiosa Marea",
          "country_code": "IT",
          "slug": "gioiosa-marea",
          "canonical_path": "/cities/it/gioiosa-marea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072022",
          "name": "Giovinazzo",
          "country_code": "IT",
          "slug": "giovinazzo",
          "canonical_path": "/cities/it/giovinazzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079059",
          "name": "Girifalco",
          "country_code": "IT",
          "slug": "girifalco",
          "canonical_path": "/cities/it/girifalco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063034",
          "name": "Giugliano in Campania",
          "country_code": "IT",
          "slug": "giugliano",
          "canonical_path": "/cities/it/giugliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067025",
          "name": "Giulianova",
          "country_code": "IT",
          "slug": "giulianova",
          "canonical_path": "/cities/it/giulianova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018072",
          "name": "Giussago",
          "country_code": "IT",
          "slug": "giussago",
          "canonical_path": "/cities/it/giussago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108024",
          "name": "Giussano",
          "country_code": "IT",
          "slug": "giussano",
          "canonical_path": "/cities/it/giussano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079060",
          "name": "Gizzeria",
          "country_code": "IT",
          "slug": "gizzeria",
          "canonical_path": "/cities/it/gizzeria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026033",
          "name": "Godega di Sant'Urbano",
          "country_code": "IT",
          "slug": "godega-di-sant-urbano",
          "canonical_path": "/cities/it/godega-di-sant-urbano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020026",
          "name": "Goito",
          "country_code": "IT",
          "slug": "goito",
          "canonical_path": "/cities/it/goito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:117007",
          "name": "Gonnosfanadiga",
          "country_code": "IT",
          "slug": "gonnosfanadiga",
          "canonical_path": "/cities/it/gonnosfanadiga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020027",
          "name": "Gonzaga",
          "country_code": "IT",
          "slug": "gonzaga",
          "canonical_path": "/cities/it/gonzaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015108",
          "name": "Gorgonzola",
          "country_code": "IT",
          "slug": "gorgonzola",
          "canonical_path": "/cities/it/gorgonzola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:031007",
          "name": "Gorizia",
          "country_code": "IT",
          "slug": "gorizia",
          "canonical_path": "/cities/it/gorizia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3175984",
          "name": "Gorla Maggiore",
          "country_code": "IT",
          "slug": "gorla-maggiore",
          "canonical_path": "/cities/it/gorla-maggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012079",
          "name": "Gorla Minore",
          "country_code": "IT",
          "slug": "gorla-minore",
          "canonical_path": "/cities/it/gorla-minore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016114",
          "name": "Gorlago",
          "country_code": "IT",
          "slug": "gorlago",
          "canonical_path": "/cities/it/gorlago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016115",
          "name": "Gorle",
          "country_code": "IT",
          "slug": "gorle",
          "canonical_path": "/cities/it/gorle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033023",
          "name": "Gossolengo",
          "country_code": "IT",
          "slug": "gossolengo",
          "canonical_path": "/cities/it/gossolengo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017080",
          "name": "Gottolengo",
          "country_code": "IT",
          "slug": "gottolengo",
          "canonical_path": "/cities/it/gottolengo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003076",
          "name": "Gozzano",
          "country_code": "IT",
          "slug": "gozzano",
          "canonical_path": "/cities/it/gozzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:031008",
          "name": "Gradisca d'Isonzo",
          "country_code": "IT",
          "slug": "gradisca-d-isonzo",
          "canonical_path": "/cities/it/gradisca-d-isonzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:031009",
          "name": "Grado",
          "country_code": "IT",
          "slug": "grado",
          "canonical_path": "/cities/it/grado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063035",
          "name": "Gragnano",
          "country_code": "IT",
          "slug": "gragnano",
          "canonical_path": "/cities/it/gragnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087018",
          "name": "Grammichele",
          "country_code": "IT",
          "slug": "grammichele",
          "canonical_path": "/cities/it/grammichele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037030",
          "name": "Granarolo dell'Emilia",
          "country_code": "IT",
          "slug": "granarolo-dell-emilia",
          "canonical_path": "/cities/it/granarolo-dell-emilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3175880",
          "name": "Grassano",
          "country_code": "IT",
          "slug": "grassano",
          "canonical_path": "/cities/it/grassano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016117",
          "name": "Grassobbio",
          "country_code": "IT",
          "slug": "grassobbio",
          "canonical_path": "/cities/it/grassobbio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:103035",
          "name": "Gravellona Toce",
          "country_code": "IT",
          "slug": "gravellona-toce",
          "canonical_path": "/cities/it/gravellona-toce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087019",
          "name": "Gravina di Catania",
          "country_code": "IT",
          "slug": "gravina-di-catania",
          "canonical_path": "/cities/it/gravina-di-catania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072023",
          "name": "Gravina in Puglia",
          "country_code": "IT",
          "slug": "gravina-in-puglia",
          "canonical_path": "/cities/it/gravina-in-puglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061042",
          "name": "Grazzanise",
          "country_code": "IT",
          "slug": "grazzanise",
          "canonical_path": "/cities/it/grazzanise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048021",
          "name": "Greve in Chianti",
          "country_code": "IT",
          "slug": "greve-in-chianti",
          "canonical_path": "/cities/it/greve-in-chianti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023038",
          "name": "Grezzana",
          "country_code": "IT",
          "slug": "grezzana",
          "canonical_path": "/cities/it/grezzana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061043",
          "name": "Gricignano di Aversa",
          "country_code": "IT",
          "slug": "gricignano-di-aversa",
          "canonical_path": "/cities/it/gricignano-di-aversa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:053011",
          "name": "Grosseto",
          "country_code": "IT",
          "slug": "grosseto",
          "canonical_path": "/cities/it/grosseto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058046",
          "name": "Grottaferrata",
          "country_code": "IT",
          "slug": "grottaferrata",
          "canonical_path": "/cities/it/grottaferrata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073008",
          "name": "Grottaglie",
          "country_code": "IT",
          "slug": "grottaglie",
          "canonical_path": "/cities/it/grottaglie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064038",
          "name": "Grottaminarda",
          "country_code": "IT",
          "slug": "grottaminarda",
          "canonical_path": "/cities/it/grottaminarda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:044023",
          "name": "Grottammare",
          "country_code": "IT",
          "slug": "grottammare",
          "canonical_path": "/cities/it/grottammare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084018",
          "name": "Grotte",
          "country_code": "IT",
          "slug": "grotte",
          "canonical_path": "/cities/it/grotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001120",
          "name": "Grugliasco",
          "country_code": "IT",
          "slug": "grugliasco",
          "canonical_path": "/cities/it/grugliasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016120",
          "name": "Grumello del Monte",
          "country_code": "IT",
          "slug": "grumello-del-monte",
          "canonical_path": "/cities/it/grumello-del-monte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072024",
          "name": "Grumo Appula",
          "country_code": "IT",
          "slug": "grumo-appula",
          "canonical_path": "/cities/it/grumo-appula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063036",
          "name": "Grumo Nevano",
          "country_code": "IT",
          "slug": "grumo-nevano",
          "canonical_path": "/cities/it/grumo-nevano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075034",
          "name": "Guagnano",
          "country_code": "IT",
          "slug": "guagnano",
          "canonical_path": "/cities/it/guagnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054022",
          "name": "Gualdo Cattaneo",
          "country_code": "IT",
          "slug": "gualdo-cattaneo",
          "canonical_path": "/cities/it/gualdo-cattaneo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054023",
          "name": "Gualdo Tadino",
          "country_code": "IT",
          "slug": "gualdo-tadino",
          "canonical_path": "/cities/it/gualdo-tadino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035023",
          "name": "Gualtieri",
          "country_code": "IT",
          "slug": "gualtieri",
          "canonical_path": "/cities/it/gualtieri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013114",
          "name": "Guanzate",
          "country_code": "IT",
          "slug": "guanzate",
          "canonical_path": "/cities/it/guanzate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069043",
          "name": "Guardiagrele",
          "country_code": "IT",
          "slug": "guardiagrele",
          "canonical_path": "/cities/it/guardiagrele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035024",
          "name": "Guastalla",
          "country_code": "IT",
          "slug": "guastalla",
          "canonical_path": "/cities/it/guastalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054024",
          "name": "Gubbio",
          "country_code": "IT",
          "slug": "gubbio",
          "canonical_path": "/cities/it/gubbio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020028",
          "name": "Guidizzolo",
          "country_code": "IT",
          "slug": "guidizzolo",
          "canonical_path": "/cities/it/guidizzolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058047",
          "name": "Guidonia Montecelio",
          "country_code": "IT",
          "slug": "guidonia-montecelio",
          "canonical_path": "/cities/it/guidonia-montecelio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:117008",
          "name": "Guspini",
          "country_code": "IT",
          "slug": "guspini",
          "canonical_path": "/cities/it/guspini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017081",
          "name": "Gussago",
          "country_code": "IT",
          "slug": "gussago",
          "canonical_path": "/cities/it/gussago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:119009",
          "name": "Iglesias",
          "country_code": "IT",
          "slug": "iglesias",
          "canonical_path": "/cities/it/iglesias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023039",
          "name": "Illasi",
          "country_code": "IT",
          "slug": "illasi",
          "canonical_path": "/cities/it/illasi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037032",
          "name": "Imola",
          "country_code": "IT",
          "slug": "imola",
          "canonical_path": "/cities/it/imola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:008031",
          "name": "Imperia",
          "country_code": "IT",
          "slug": "imperia",
          "canonical_path": "/cities/it/imperia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048022",
          "name": "Impruneta",
          "country_code": "IT",
          "slug": "impruneta",
          "canonical_path": "/cities/it/impruneta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012083",
          "name": "Induno Olona",
          "country_code": "IT",
          "slug": "induno-olona",
          "canonical_path": "/cities/it/induno-olona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013118",
          "name": "Inverigo",
          "country_code": "IT",
          "slug": "inverigo",
          "canonical_path": "/cities/it/inverigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015113",
          "name": "Inveruno",
          "country_code": "IT",
          "slug": "inveruno",
          "canonical_path": "/cities/it/inveruno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015114",
          "name": "Inzago",
          "country_code": "IT",
          "slug": "inzago",
          "canonical_path": "/cities/it/inzago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063037",
          "name": "Ischia",
          "country_code": "IT",
          "slug": "ischia",
          "canonical_path": "/cities/it/ischia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017085",
          "name": "Iseo",
          "country_code": "IT",
          "slug": "iseo",
          "canonical_path": "/cities/it/iseo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:094023",
          "name": "Isernia",
          "country_code": "IT",
          "slug": "isernia",
          "canonical_path": "/cities/it/isernia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060043",
          "name": "Isola del Liri",
          "country_code": "IT",
          "slug": "isola-del-liri",
          "canonical_path": "/cities/it/isola-del-liri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023040",
          "name": "Isola della Scala",
          "country_code": "IT",
          "slug": "isola-della-scala",
          "canonical_path": "/cities/it/isola-della-scala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082043",
          "name": "Isola delle Femmine",
          "country_code": "IT",
          "slug": "isola-delle-femmine",
          "canonical_path": "/cities/it/isola-delle-femmine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:101013",
          "name": "Isola di Capo Rizzuto",
          "country_code": "IT",
          "slug": "isola-di-capo-rizzuto",
          "canonical_path": "/cities/it/isola-di-capo-rizzuto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024048",
          "name": "Isola Vicentina",
          "country_code": "IT",
          "slug": "isola-vicentina",
          "canonical_path": "/cities/it/isola-vicentina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088005",
          "name": "Ispica",
          "country_code": "IT",
          "slug": "ispica",
          "canonical_path": "/cities/it/ispica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012084",
          "name": "Ispra",
          "country_code": "IT",
          "slug": "ispra",
          "canonical_path": "/cities/it/ispra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026035",
          "name": "Istrana",
          "country_code": "IT",
          "slug": "istrana",
          "canonical_path": "/cities/it/istrana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059010",
          "name": "Itri",
          "country_code": "IT",
          "slug": "itri",
          "canonical_path": "/cities/it/itri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:112027",
          "name": "Ittiri",
          "country_code": "IT",
          "slug": "ittiri",
          "canonical_path": "/cities/it/ittiri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001125",
          "name": "Ivrea",
          "country_code": "IT",
          "slug": "ivrea",
          "canonical_path": "/cities/it/ivrea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012085",
          "name": "Jerago con Orago",
          "country_code": "IT",
          "slug": "jerago-con-orago",
          "canonical_path": "/cities/it/jerago-con-orago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042021",
          "name": "Jesi",
          "country_code": "IT",
          "slug": "jesi",
          "canonical_path": "/cities/it/jesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027019",
          "name": "Jesolo",
          "country_code": "IT",
          "slug": "jesolo",
          "canonical_path": "/cities/it/jesolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:066049",
          "name": "L'Aquila",
          "country_code": "IT",
          "slug": "l-aquila",
          "canonical_path": "/cities/it/l-aquila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001127",
          "name": "La Loggia",
          "country_code": "IT",
          "slug": "la-loggia",
          "canonical_path": "/cities/it/la-loggia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:113012",
          "name": "La Maddalena",
          "country_code": "IT",
          "slug": "la-maddalena",
          "canonical_path": "/cities/it/la-maddalena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011015",
          "name": "La Spezia",
          "country_code": "IT",
          "slug": "la-spezia",
          "canonical_path": "/cities/it/la-spezia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058049",
          "name": "Labico",
          "country_code": "IT",
          "slug": "labico",
          "canonical_path": "/cities/it/labico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015115",
          "name": "Lacchiarella",
          "country_code": "IT",
          "slug": "lacchiarella",
          "canonical_path": "/cities/it/lacchiarella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021037",
          "name": "Laces",
          "country_code": "IT",
          "slug": "laces",
          "canonical_path": "/cities/it/laces/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058116",
          "name": "Ladispoli",
          "country_code": "IT",
          "slug": "ladispoli",
          "canonical_path": "/cities/it/ladispoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3175253",
          "name": "Lagonegro",
          "country_code": "IT",
          "slug": "lagonegro",
          "canonical_path": "/cities/it/lagonegro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021038",
          "name": "Lagundo",
          "country_code": "IT",
          "slug": "lagundo",
          "canonical_path": "/cities/it/lagundo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015116",
          "name": "Lainate",
          "country_code": "IT",
          "slug": "lainate",
          "canonical_path": "/cities/it/lainate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021040",
          "name": "Laives",
          "country_code": "IT",
          "slug": "laives",
          "canonical_path": "/cities/it/laives/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079160",
          "name": "Lamezia Terme",
          "country_code": "IT",
          "slug": "lamezia-terme",
          "canonical_path": "/cities/it/lamezia-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084020",
          "name": "Lampedusa e Linosa",
          "country_code": "IT",
          "slug": "lampedusa-e-linosa",
          "canonical_path": "/cities/it/lampedusa-e-linosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047005",
          "name": "Lamporecchio",
          "country_code": "IT",
          "slug": "lamporecchio",
          "canonical_path": "/cities/it/lamporecchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021041",
          "name": "Lana",
          "country_code": "IT",
          "slug": "lana",
          "canonical_path": "/cities/it/lana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069046",
          "name": "Lanciano",
          "country_code": "IT",
          "slug": "lanciano",
          "canonical_path": "/cities/it/lanciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018078",
          "name": "Landriano",
          "country_code": "IT",
          "slug": "landriano",
          "canonical_path": "/cities/it/landriano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034018",
          "name": "Langhirano",
          "country_code": "IT",
          "slug": "langhirano",
          "canonical_path": "/cities/it/langhirano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058050",
          "name": "Lanuvio",
          "country_code": "IT",
          "slug": "lanuvio",
          "canonical_path": "/cities/it/lanuvio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001128",
          "name": "Lanzo Torinese",
          "country_code": "IT",
          "slug": "lanzo-torinese",
          "canonical_path": "/cities/it/lanzo-torinese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047006",
          "name": "Larciano",
          "country_code": "IT",
          "slug": "larciano",
          "canonical_path": "/cities/it/larciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058115",
          "name": "Lariano",
          "country_code": "IT",
          "slug": "lariano",
          "canonical_path": "/cities/it/lariano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:070031",
          "name": "Larino",
          "country_code": "IT",
          "slug": "larino",
          "canonical_path": "/cities/it/larino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048024",
          "name": "Lastra a Signa",
          "country_code": "IT",
          "slug": "lastra-a-signa",
          "canonical_path": "/cities/it/lastra-a-signa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051042",
          "name": "Laterina Pergine Valdarno",
          "country_code": "IT",
          "slug": "laterina-pergine-valdarno",
          "canonical_path": "/cities/it/laterina-pergine-valdarno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073009",
          "name": "Laterza",
          "country_code": "IT",
          "slug": "laterza",
          "canonical_path": "/cities/it/laterza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074009",
          "name": "Latiano",
          "country_code": "IT",
          "slug": "latiano",
          "canonical_path": "/cities/it/latiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059011",
          "name": "Latina",
          "country_code": "IT",
          "slug": "latina",
          "canonical_path": "/cities/it/latina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030046",
          "name": "Latisana",
          "country_code": "IT",
          "slug": "latisana",
          "canonical_path": "/cities/it/latisana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076042",
          "name": "Lauria",
          "country_code": "IT",
          "slug": "lauria",
          "canonical_path": "/cities/it/lauria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010028",
          "name": "Lavagna",
          "country_code": "IT",
          "slug": "lavagna",
          "canonical_path": "/cities/it/lavagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023042",
          "name": "Lavagno",
          "country_code": "IT",
          "slug": "lavagno",
          "canonical_path": "/cities/it/lavagno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076043",
          "name": "Lavello",
          "country_code": "IT",
          "slug": "lavello",
          "canonical_path": "/cities/it/lavello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012086",
          "name": "Lavena Ponte Tresa",
          "country_code": "IT",
          "slug": "lavena-ponte-tresa",
          "canonical_path": "/cities/it/lavena-ponte-tresa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012087",
          "name": "Laveno-Mombello",
          "country_code": "IT",
          "slug": "laveno-mombello",
          "canonical_path": "/cities/it/laveno-mombello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022103",
          "name": "Lavis",
          "country_code": "IT",
          "slug": "lavis",
          "canonical_path": "/cities/it/lavis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023043",
          "name": "Lazise",
          "country_code": "IT",
          "slug": "lazise",
          "canonical_path": "/cities/it/lazise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108025",
          "name": "Lazzate",
          "country_code": "IT",
          "slug": "lazzate",
          "canonical_path": "/cities/it/lazzate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075035",
          "name": "Lecce",
          "country_code": "IT",
          "slug": "lecce",
          "canonical_path": "/cities/it/lecce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097042",
          "name": "Lecco",
          "country_code": "IT",
          "slug": "lecco",
          "canonical_path": "/cities/it/lecco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022229",
          "name": "Ledro",
          "country_code": "IT",
          "slug": "ledro",
          "canonical_path": "/cities/it/ledro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023044",
          "name": "Legnago",
          "country_code": "IT",
          "slug": "legnago",
          "canonical_path": "/cities/it/legnago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015118",
          "name": "Legnano",
          "country_code": "IT",
          "slug": "legnano",
          "canonical_path": "/cities/it/legnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028044",
          "name": "Legnaro",
          "country_code": "IT",
          "slug": "legnaro",
          "canonical_path": "/cities/it/legnaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001130",
          "name": "Leini",
          "country_code": "IT",
          "slug": "leini",
          "canonical_path": "/cities/it/leini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:029029",
          "name": "Lendinara",
          "country_code": "IT",
          "slug": "lendinara",
          "canonical_path": "/cities/it/lendinara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017088",
          "name": "Leno",
          "country_code": "IT",
          "slug": "leno",
          "canonical_path": "/cities/it/leno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108054",
          "name": "Lentate sul Seveso",
          "country_code": "IT",
          "slug": "lentate-sul-seveso",
          "canonical_path": "/cities/it/lentate-sul-seveso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089011",
          "name": "Lentini",
          "country_code": "IT",
          "slug": "lentini",
          "canonical_path": "/cities/it/lentini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086011",
          "name": "Leonforte",
          "country_code": "IT",
          "slug": "leonforte",
          "canonical_path": "/cities/it/leonforte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073010",
          "name": "Leporano",
          "country_code": "IT",
          "slug": "leporano",
          "canonical_path": "/cities/it/leporano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075036",
          "name": "Lequile",
          "country_code": "IT",
          "slug": "lequile",
          "canonical_path": "/cities/it/lequile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082045",
          "name": "Lercara Friddi",
          "country_code": "IT",
          "slug": "lercara-friddi",
          "canonical_path": "/cities/it/lercara-friddi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011016",
          "name": "Lerici",
          "country_code": "IT",
          "slug": "lerici",
          "canonical_path": "/cities/it/lerici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034019",
          "name": "Lesignano de' Bagni",
          "country_code": "IT",
          "slug": "lesignano-de-bagni",
          "canonical_path": "/cities/it/lesignano-de-bagni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071027",
          "name": "Lesina",
          "country_code": "IT",
          "slug": "lesina",
          "canonical_path": "/cities/it/lesina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108026",
          "name": "Lesmo",
          "country_code": "IT",
          "slug": "lesmo",
          "canonical_path": "/cities/it/lesmo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063039",
          "name": "Lettere",
          "country_code": "IT",
          "slug": "lettere",
          "canonical_path": "/cities/it/lettere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011017",
          "name": "Levanto",
          "country_code": "IT",
          "slug": "levanto",
          "canonical_path": "/cities/it/levanto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075037",
          "name": "Leverano",
          "country_code": "IT",
          "slug": "leverano",
          "canonical_path": "/cities/it/leverano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022104",
          "name": "Levico Terme",
          "country_code": "IT",
          "slug": "levico-terme",
          "canonical_path": "/cities/it/levico-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084021",
          "name": "Licata",
          "country_code": "IT",
          "slug": "licata",
          "canonical_path": "/cities/it/licata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030049",
          "name": "Lignano Sabbiadoro",
          "country_code": "IT",
          "slug": "lignano-sabbiadoro",
          "canonical_path": "/cities/it/lignano-sabbiadoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025029",
          "name": "Limana",
          "country_code": "IT",
          "slug": "limana",
          "canonical_path": "/cities/it/limana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108027",
          "name": "Limbiate",
          "country_code": "IT",
          "slug": "limbiate",
          "canonical_path": "/cities/it/limbiate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028045",
          "name": "Limena",
          "country_code": "IT",
          "slug": "limena",
          "canonical_path": "/cities/it/limena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:2524382",
          "name": "Linguaglossa",
          "country_code": "IT",
          "slug": "linguaglossa",
          "canonical_path": "/cities/it/linguaglossa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064044",
          "name": "Lioni",
          "country_code": "IT",
          "slug": "lioni",
          "canonical_path": "/cities/it/lioni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083041",
          "name": "Lipari",
          "country_code": "IT",
          "slug": "lipari",
          "canonical_path": "/cities/it/lipari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013129",
          "name": "Lipomo",
          "country_code": "IT",
          "slug": "lipomo",
          "canonical_path": "/cities/it/lipomo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108028",
          "name": "Lissone",
          "country_code": "IT",
          "slug": "lissone",
          "canonical_path": "/cities/it/lissone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:014037",
          "name": "Livigno",
          "country_code": "IT",
          "slug": "livigno",
          "canonical_path": "/cities/it/livigno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:049009",
          "name": "Livorno",
          "country_code": "IT",
          "slug": "livorno",
          "canonical_path": "/cities/it/livorno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075038",
          "name": "Lizzanello",
          "country_code": "IT",
          "slug": "lizzanello",
          "canonical_path": "/cities/it/lizzanello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073011",
          "name": "Lizzano",
          "country_code": "IT",
          "slug": "lizzano",
          "canonical_path": "/cities/it/lizzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009034",
          "name": "Loano",
          "country_code": "IT",
          "slug": "loano",
          "canonical_path": "/cities/it/loano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015125",
          "name": "Locate di Triulzi",
          "country_code": "IT",
          "slug": "locate-di-triulzi",
          "canonical_path": "/cities/it/locate-di-triulzi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072025",
          "name": "Locorotondo",
          "country_code": "IT",
          "slug": "locorotondo",
          "canonical_path": "/cities/it/locorotondo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080043",
          "name": "Locri",
          "country_code": "IT",
          "slug": "locri",
          "canonical_path": "/cities/it/locri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:098031",
          "name": "Lodi",
          "country_code": "IT",
          "slug": "lodi",
          "canonical_path": "/cities/it/lodi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:098032",
          "name": "Lodi Vecchio",
          "country_code": "IT",
          "slug": "lodi-vecchio",
          "canonical_path": "/cities/it/lodi-vecchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097044",
          "name": "Lomagna",
          "country_code": "IT",
          "slug": "lomagna",
          "canonical_path": "/cities/it/lomagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013133",
          "name": "Lomazzo",
          "country_code": "IT",
          "slug": "lomazzo",
          "canonical_path": "/cities/it/lomazzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012089",
          "name": "Lonate Ceppino",
          "country_code": "IT",
          "slug": "lonate-ceppino",
          "canonical_path": "/cities/it/lonate-ceppino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012090",
          "name": "Lonate Pozzolo",
          "country_code": "IT",
          "slug": "lonate-pozzolo",
          "canonical_path": "/cities/it/lonate-pozzolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017092",
          "name": "Lonato del Garda",
          "country_code": "IT",
          "slug": "lonato-del-garda",
          "canonical_path": "/cities/it/lonato-del-garda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024051",
          "name": "Longare",
          "country_code": "IT",
          "slug": "longare",
          "canonical_path": "/cities/it/longare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040018",
          "name": "Longiano",
          "country_code": "IT",
          "slug": "longiano",
          "canonical_path": "/cities/it/longiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024052",
          "name": "Lonigo",
          "country_code": "IT",
          "slug": "lonigo",
          "canonical_path": "/cities/it/lonigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028046",
          "name": "Loreggia",
          "country_code": "IT",
          "slug": "loreggia",
          "canonical_path": "/cities/it/loreggia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042022",
          "name": "Loreto",
          "country_code": "IT",
          "slug": "loreto",
          "canonical_path": "/cities/it/loreto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068021",
          "name": "Loreto Aprutino",
          "country_code": "IT",
          "slug": "loreto-aprutino",
          "canonical_path": "/cities/it/loreto-aprutino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026036",
          "name": "Loria",
          "country_code": "IT",
          "slug": "loria",
          "canonical_path": "/cities/it/loria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051020",
          "name": "Loro Ciuffenna",
          "country_code": "IT",
          "slug": "loro-ciuffenna",
          "canonical_path": "/cities/it/loro-ciuffenna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3174543",
          "name": "Lovere",
          "country_code": "IT",
          "slug": "lovere",
          "canonical_path": "/cities/it/lovere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046017",
          "name": "Lucca",
          "country_code": "IT",
          "slug": "lucca",
          "canonical_path": "/cities/it/lucca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071028",
          "name": "Lucera",
          "country_code": "IT",
          "slug": "lucera",
          "canonical_path": "/cities/it/lucera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:066051",
          "name": "Luco dei Marsi",
          "country_code": "IT",
          "slug": "luco-dei-marsi",
          "canonical_path": "/cities/it/luco-dei-marsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039012",
          "name": "Lugo",
          "country_code": "IT",
          "slug": "lugo",
          "canonical_path": "/cities/it/lugo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012092",
          "name": "Luino",
          "country_code": "IT",
          "slug": "luino",
          "canonical_path": "/cities/it/luino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017096",
          "name": "Lumezzane",
          "country_code": "IT",
          "slug": "lumezzane",
          "canonical_path": "/cities/it/lumezzane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011020",
          "name": "Luni",
          "country_code": "IT",
          "slug": "luni",
          "canonical_path": "/cities/it/luni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013136",
          "name": "Lurago d'Erba",
          "country_code": "IT",
          "slug": "lurago-d-erba",
          "canonical_path": "/cities/it/lurago-d-erba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013138",
          "name": "Lurate Caccivio",
          "country_code": "IT",
          "slug": "lurate-caccivio",
          "canonical_path": "/cities/it/lurate-caccivio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061046",
          "name": "Lusciano",
          "country_code": "IT",
          "slug": "lusciano",
          "canonical_path": "/cities/it/lusciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001139",
          "name": "Luserna San Giovanni",
          "country_code": "IT",
          "slug": "luserna-san-giovanni",
          "canonical_path": "/cities/it/luserna-san-giovanni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035026",
          "name": "Luzzara",
          "country_code": "IT",
          "slug": "luzzara",
          "canonical_path": "/cities/it/luzzara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078070",
          "name": "Luzzi",
          "country_code": "IT",
          "slug": "luzzi",
          "canonical_path": "/cities/it/luzzi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043023",
          "name": "Macerata",
          "country_code": "IT",
          "slug": "macerata",
          "canonical_path": "/cities/it/macerata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061047",
          "name": "Macerata Campania",
          "country_code": "IT",
          "slug": "macerata-campania",
          "canonical_path": "/cities/it/macerata-campania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108029",
          "name": "Macherio",
          "country_code": "IT",
          "slug": "macherio",
          "canonical_path": "/cities/it/macherio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:114023",
          "name": "Macomer",
          "country_code": "IT",
          "slug": "macomer",
          "canonical_path": "/cities/it/macomer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061048",
          "name": "Maddaloni",
          "country_code": "IT",
          "slug": "maddaloni",
          "canonical_path": "/cities/it/maddaloni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015130",
          "name": "Magenta",
          "country_code": "IT",
          "slug": "magenta",
          "canonical_path": "/cities/it/magenta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054026",
          "name": "Magione",
          "country_code": "IT",
          "slug": "magione",
          "canonical_path": "/cities/it/magione/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075039",
          "name": "Maglie",
          "country_code": "IT",
          "slug": "maglie",
          "canonical_path": "/cities/it/maglie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015131",
          "name": "Magnago",
          "country_code": "IT",
          "slug": "magnago",
          "canonical_path": "/cities/it/magnago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042023",
          "name": "Maiolati Spontini",
          "country_code": "IT",
          "slug": "maiolati-spontini",
          "canonical_path": "/cities/it/maiolati-spontini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065066",
          "name": "Maiori",
          "country_code": "IT",
          "slug": "maiori",
          "canonical_path": "/cities/it/maiori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030053",
          "name": "Majano",
          "country_code": "IT",
          "slug": "majano",
          "canonical_path": "/cities/it/majano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037035",
          "name": "Malalbergo",
          "country_code": "IT",
          "slug": "malalbergo",
          "canonical_path": "/cities/it/malalbergo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021046",
          "name": "Malles Venosta",
          "country_code": "IT",
          "slug": "malles-venosta",
          "canonical_path": "/cities/it/malles-venosta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012096",
          "name": "Malnate",
          "country_code": "IT",
          "slug": "malnate",
          "canonical_path": "/cities/it/malnate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024055",
          "name": "Malo",
          "country_code": "IT",
          "slug": "malo",
          "canonical_path": "/cities/it/malo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:053014",
          "name": "Manciano",
          "country_code": "IT",
          "slug": "manciano",
          "canonical_path": "/cities/it/manciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097046",
          "name": "Mandello del Lario",
          "country_code": "IT",
          "slug": "mandello-del-lario",
          "canonical_path": "/cities/it/mandello-del-lario/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073012",
          "name": "Manduria",
          "country_code": "IT",
          "slug": "manduria",
          "canonical_path": "/cities/it/manduria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017102",
          "name": "Manerba del Garda",
          "country_code": "IT",
          "slug": "manerba-del-garda",
          "canonical_path": "/cities/it/manerba-del-garda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017103",
          "name": "Manerbio",
          "country_code": "IT",
          "slug": "manerbio",
          "canonical_path": "/cities/it/manerbio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071029",
          "name": "Manfredonia",
          "country_code": "IT",
          "slug": "manfredonia",
          "canonical_path": "/cities/it/manfredonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093025",
          "name": "Maniago",
          "country_code": "IT",
          "slug": "maniago",
          "canonical_path": "/cities/it/maniago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068022",
          "name": "Manoppello",
          "country_code": "IT",
          "slug": "manoppello",
          "canonical_path": "/cities/it/manoppello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020030",
          "name": "Mantova",
          "country_code": "IT",
          "slug": "mantova",
          "canonical_path": "/cities/it/mantova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030055",
          "name": "Manzano",
          "country_code": "IT",
          "slug": "manzano",
          "canonical_path": "/cities/it/manzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058054",
          "name": "Manziana",
          "country_code": "IT",
          "slug": "manziana",
          "canonical_path": "/cities/it/manziana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016132",
          "name": "Mapello",
          "country_code": "IT",
          "slug": "mapello",
          "canonical_path": "/cities/it/mapello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001316",
          "name": "Mappano",
          "country_code": "IT",
          "slug": "mappano",
          "canonical_path": "/cities/it/mappano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118026",
          "name": "Maracalagonis",
          "country_code": "IT",
          "slug": "maracalagonis",
          "canonical_path": "/cities/it/maracalagonis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036019",
          "name": "Maranello",
          "country_code": "IT",
          "slug": "maranello",
          "canonical_path": "/cities/it/maranello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063041",
          "name": "Marano di Napoli",
          "country_code": "IT",
          "slug": "marano-di-napoli",
          "canonical_path": "/cities/it/marano-di-napoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036020",
          "name": "Marano sul Panaro",
          "country_code": "IT",
          "slug": "marano-sul-panaro",
          "canonical_path": "/cities/it/marano-sul-panaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024056",
          "name": "Marano Vicentino",
          "country_code": "IT",
          "slug": "marano-vicentino",
          "canonical_path": "/cities/it/marano-vicentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015134",
          "name": "Marcallo con Casone",
          "country_code": "IT",
          "slug": "marcallo-con-casone",
          "canonical_path": "/cities/it/marcallo-con-casone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020031",
          "name": "Marcaria",
          "country_code": "IT",
          "slug": "marcaria",
          "canonical_path": "/cities/it/marcaria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058056",
          "name": "Marcellina",
          "country_code": "IT",
          "slug": "marcellina",
          "canonical_path": "/cities/it/marcellina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061049",
          "name": "Marcianise",
          "country_code": "IT",
          "slug": "marcianise",
          "canonical_path": "/cities/it/marcianise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027020",
          "name": "Marcon",
          "country_code": "IT",
          "slug": "marcon",
          "canonical_path": "/cities/it/marcon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026038",
          "name": "Mareno di Piave",
          "country_code": "IT",
          "slug": "mareno-di-piave",
          "canonical_path": "/cities/it/mareno-di-piave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110005",
          "name": "Margherita di Savoia",
          "country_code": "IT",
          "slug": "margherita-di-savoia",
          "canonical_path": "/cities/it/margherita-di-savoia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013143",
          "name": "Mariano Comense",
          "country_code": "IT",
          "slug": "mariano-comense",
          "canonical_path": "/cities/it/mariano-comense/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063042",
          "name": "Mariglianella",
          "country_code": "IT",
          "slug": "mariglianella",
          "canonical_path": "/cities/it/mariglianella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063043",
          "name": "Marigliano",
          "country_code": "IT",
          "slug": "marigliano",
          "canonical_path": "/cities/it/marigliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080045",
          "name": "Marina di Gioiosa Ionica",
          "country_code": "IT",
          "slug": "marina-di-gioiosa-ionica",
          "canonical_path": "/cities/it/marina-di-gioiosa-ionica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082046",
          "name": "Marineo",
          "country_code": "IT",
          "slug": "marineo",
          "canonical_path": "/cities/it/marineo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058057",
          "name": "Marino",
          "country_code": "IT",
          "slug": "marino",
          "canonical_path": "/cities/it/marino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020033",
          "name": "Marmirolo",
          "country_code": "IT",
          "slug": "marmirolo",
          "canonical_path": "/cities/it/marmirolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012098",
          "name": "Marnate",
          "country_code": "IT",
          "slug": "marnate",
          "canonical_path": "/cities/it/marnate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024057",
          "name": "Marostica",
          "country_code": "IT",
          "slug": "marostica",
          "canonical_path": "/cities/it/marostica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081011",
          "name": "Marsala",
          "country_code": "IT",
          "slug": "marsala",
          "canonical_path": "/cities/it/marsala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054027",
          "name": "Marsciano",
          "country_code": "IT",
          "slug": "marsciano",
          "canonical_path": "/cities/it/marsciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076046",
          "name": "Marsicovetere",
          "country_code": "IT",
          "slug": "marsicovetere",
          "canonical_path": "/cities/it/marsicovetere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075040",
          "name": "Martano",
          "country_code": "IT",
          "slug": "martano",
          "canonical_path": "/cities/it/martano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027021",
          "name": "Martellago",
          "country_code": "IT",
          "slug": "martellago",
          "canonical_path": "/cities/it/martellago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030057",
          "name": "Martignacco",
          "country_code": "IT",
          "slug": "martignacco",
          "canonical_path": "/cities/it/martignacco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073013",
          "name": "Martina Franca",
          "country_code": "IT",
          "slug": "martina-franca",
          "canonical_path": "/cities/it/martina-franca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016133",
          "name": "Martinengo",
          "country_code": "IT",
          "slug": "martinengo",
          "canonical_path": "/cities/it/martinengo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067047",
          "name": "Martinsicuro",
          "country_code": "IT",
          "slug": "martinsicuro",
          "canonical_path": "/cities/it/martinsicuro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073014",
          "name": "Maruggio",
          "country_code": "IT",
          "slug": "maruggio",
          "canonical_path": "/cities/it/maruggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037036",
          "name": "Marzabotto",
          "country_code": "IT",
          "slug": "marzabotto",
          "canonical_path": "/cities/it/marzabotto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087023",
          "name": "Mascali",
          "country_code": "IT",
          "slug": "mascali",
          "canonical_path": "/cities/it/mascali/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087024",
          "name": "Mascalucia",
          "country_code": "IT",
          "slug": "mascalucia",
          "canonical_path": "/cities/it/mascalucia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026039",
          "name": "Maser",
          "country_code": "IT",
          "slug": "maser",
          "canonical_path": "/cities/it/maser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028048",
          "name": "Maserà di Padova",
          "country_code": "IT",
          "slug": "masera-di-padova",
          "canonical_path": "/cities/it/masera-di-padova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026040",
          "name": "Maserada sul Piave",
          "country_code": "IT",
          "slug": "maserada-sul-piave",
          "canonical_path": "/cities/it/maserada-sul-piave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:045010",
          "name": "Massa",
          "country_code": "IT",
          "slug": "massa",
          "canonical_path": "/cities/it/massa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:6535637",
          "name": "Massa di Somma",
          "country_code": "IT",
          "slug": "massa-di-somma",
          "canonical_path": "/cities/it/massa-di-somma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047008",
          "name": "Massa e Cozzile",
          "country_code": "IT",
          "slug": "massa-e-cozzile",
          "canonical_path": "/cities/it/massa-e-cozzile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039013",
          "name": "Massa Lombarda",
          "country_code": "IT",
          "slug": "massa-lombarda",
          "canonical_path": "/cities/it/massa-lombarda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063044",
          "name": "Massa Lubrense",
          "country_code": "IT",
          "slug": "massa-lubrense",
          "canonical_path": "/cities/it/massa-lubrense/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:053015",
          "name": "Massa Marittima",
          "country_code": "IT",
          "slug": "massa-marittima",
          "canonical_path": "/cities/it/massa-marittima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073015",
          "name": "Massafra",
          "country_code": "IT",
          "slug": "massafra",
          "canonical_path": "/cities/it/massafra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028050",
          "name": "Massanzago",
          "country_code": "IT",
          "slug": "massanzago",
          "canonical_path": "/cities/it/massanzago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046018",
          "name": "Massarosa",
          "country_code": "IT",
          "slug": "massarosa",
          "canonical_path": "/cities/it/massarosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043024",
          "name": "Matelica",
          "country_code": "IT",
          "slug": "matelica",
          "canonical_path": "/cities/it/matelica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:077014",
          "name": "Matera",
          "country_code": "IT",
          "slug": "matera",
          "canonical_path": "/cities/it/matera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075042",
          "name": "Matino",
          "country_code": "IT",
          "slug": "matino",
          "canonical_path": "/cities/it/matino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071031",
          "name": "Mattinata",
          "country_code": "IT",
          "slug": "mattinata",
          "canonical_path": "/cities/it/mattinata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081012",
          "name": "Mazara del Vallo",
          "country_code": "IT",
          "slug": "mazara-del-vallo",
          "canonical_path": "/cities/it/mazara-del-vallo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017107",
          "name": "Mazzano",
          "country_code": "IT",
          "slug": "mazzano",
          "canonical_path": "/cities/it/mazzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:085009",
          "name": "Mazzarino",
          "country_code": "IT",
          "slug": "mazzarino",
          "canonical_path": "/cities/it/mazzarino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108030",
          "name": "Meda",
          "country_code": "IT",
          "slug": "meda",
          "canonical_path": "/cities/it/meda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018088",
          "name": "Mede",
          "country_code": "IT",
          "slug": "mede",
          "canonical_path": "/cities/it/mede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034020",
          "name": "Medesano",
          "country_code": "IT",
          "slug": "medesano",
          "canonical_path": "/cities/it/medesano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037037",
          "name": "Medicina",
          "country_code": "IT",
          "slug": "medicina",
          "canonical_path": "/cities/it/medicina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015139",
          "name": "Mediglia",
          "country_code": "IT",
          "slug": "mediglia",
          "canonical_path": "/cities/it/mediglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036021",
          "name": "Medolla",
          "country_code": "IT",
          "slug": "medolla",
          "canonical_path": "/cities/it/medolla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040019",
          "name": "Meldola",
          "country_code": "IT",
          "slug": "meldola",
          "canonical_path": "/cities/it/meldola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015140",
          "name": "Melegnano",
          "country_code": "IT",
          "slug": "melegnano",
          "canonical_path": "/cities/it/melegnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075043",
          "name": "Melendugno",
          "country_code": "IT",
          "slug": "melendugno",
          "canonical_path": "/cities/it/melendugno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076048",
          "name": "Melfi",
          "country_code": "IT",
          "slug": "melfi",
          "canonical_path": "/cities/it/melfi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089012",
          "name": "Melilli",
          "country_code": "IT",
          "slug": "melilli",
          "canonical_path": "/cities/it/melilli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075044",
          "name": "Melissano",
          "country_code": "IT",
          "slug": "melissano",
          "canonical_path": "/cities/it/melissano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063045",
          "name": "Melito di Napoli",
          "country_code": "IT",
          "slug": "melito-di-napoli",
          "canonical_path": "/cities/it/melito-di-napoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080050",
          "name": "Melito di Porto Salvo",
          "country_code": "IT",
          "slug": "melito-di-porto-salvo",
          "canonical_path": "/cities/it/melito-di-porto-salvo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015142",
          "name": "Melzo",
          "country_code": "IT",
          "slug": "melzo",
          "canonical_path": "/cities/it/melzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078079",
          "name": "Mendicino",
          "country_code": "IT",
          "slug": "mendicino",
          "canonical_path": "/cities/it/mendicino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084023",
          "name": "Menfi",
          "country_code": "IT",
          "slug": "menfi",
          "canonical_path": "/cities/it/menfi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058059",
          "name": "Mentana",
          "country_code": "IT",
          "slug": "mentana",
          "canonical_path": "/cities/it/mentana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027022",
          "name": "Meolo",
          "country_code": "IT",
          "slug": "meolo",
          "canonical_path": "/cities/it/meolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021051",
          "name": "Merano",
          "country_code": "IT",
          "slug": "merano",
          "canonical_path": "/cities/it/merano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097048",
          "name": "Merate",
          "country_code": "IT",
          "slug": "merate",
          "canonical_path": "/cities/it/merate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065067",
          "name": "Mercato San Severino",
          "country_code": "IT",
          "slug": "mercato-san-severino",
          "canonical_path": "/cities/it/mercato-san-severino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040020",
          "name": "Mercato Saraceno",
          "country_code": "IT",
          "slug": "mercato-saraceno",
          "canonical_path": "/cities/it/mercato-saraceno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064049",
          "name": "Mercogliano",
          "country_code": "IT",
          "slug": "mercogliano",
          "canonical_path": "/cities/it/mercogliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074010",
          "name": "Mesagne",
          "country_code": "IT",
          "slug": "mesagne",
          "canonical_path": "/cities/it/mesagne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038014",
          "name": "Mesola",
          "country_code": "IT",
          "slug": "mesola",
          "canonical_path": "/cities/it/mesola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:101015",
          "name": "Mesoraca",
          "country_code": "IT",
          "slug": "mesoraca",
          "canonical_path": "/cities/it/mesoraca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083048",
          "name": "Messina",
          "country_code": "IT",
          "slug": "messina",
          "canonical_path": "/cities/it/messina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028054",
          "name": "Mestrino",
          "country_code": "IT",
          "slug": "mestrino",
          "canonical_path": "/cities/it/mestrino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063046",
          "name": "Meta",
          "country_code": "IT",
          "slug": "meta",
          "canonical_path": "/cities/it/meta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022116",
          "name": "Mezzocorona",
          "country_code": "IT",
          "slug": "mezzocorona",
          "canonical_path": "/cities/it/mezzocorona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022117",
          "name": "Mezzolombardo",
          "country_code": "IT",
          "slug": "mezzolombardo",
          "canonical_path": "/cities/it/mezzolombardo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015146",
          "name": "Milano",
          "country_code": "IT",
          "slug": "milano",
          "canonical_path": "/cities/it/milano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083049",
          "name": "Milazzo",
          "country_code": "IT",
          "slug": "milazzo",
          "canonical_path": "/cities/it/milazzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:102021",
          "name": "Mileto",
          "country_code": "IT",
          "slug": "mileto",
          "canonical_path": "/cities/it/mileto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087025",
          "name": "Militello in Val di Catania",
          "country_code": "IT",
          "slug": "militello-in-val-di-catania",
          "canonical_path": "/cities/it/militello-in-val-di-catania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037038",
          "name": "Minerbio",
          "country_code": "IT",
          "slug": "minerbio",
          "canonical_path": "/cities/it/minerbio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110006",
          "name": "Minervino Murge",
          "country_code": "IT",
          "slug": "minervino-murge",
          "canonical_path": "/cities/it/minervino-murge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059014",
          "name": "Minturno",
          "country_code": "IT",
          "slug": "minturno",
          "canonical_path": "/cities/it/minturno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027023",
          "name": "Mira",
          "country_code": "IT",
          "slug": "mira",
          "canonical_path": "/cities/it/mira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064050",
          "name": "Mirabella Eclano",
          "country_code": "IT",
          "slug": "mirabella-eclano",
          "canonical_path": "/cities/it/mirabella-eclano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:2524135",
          "name": "Mirabella Imbaccari",
          "country_code": "IT",
          "slug": "mirabella-imbaccari",
          "canonical_path": "/cities/it/mirabella-imbaccari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036022",
          "name": "Mirandola",
          "country_code": "IT",
          "slug": "mirandola",
          "canonical_path": "/cities/it/mirandola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027024",
          "name": "Mirano",
          "country_code": "IT",
          "slug": "mirano",
          "canonical_path": "/cities/it/mirano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:2524129",
          "name": "Mirto",
          "country_code": "IT",
          "slug": "mirto",
          "canonical_path": "/cities/it/mirto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099005",
          "name": "Misano Adriatico",
          "country_code": "IT",
          "slug": "misano-adriatico",
          "canonical_path": "/cities/it/misano-adriatico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081025",
          "name": "Misiliscemi",
          "country_code": "IT",
          "slug": "misiliscemi",
          "canonical_path": "/cities/it/misiliscemi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082048",
          "name": "Misilmeri",
          "country_code": "IT",
          "slug": "misilmeri",
          "canonical_path": "/cities/it/misilmeri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108032",
          "name": "Misinto",
          "country_code": "IT",
          "slug": "misinto",
          "canonical_path": "/cities/it/misinto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097049",
          "name": "Missaglia",
          "country_code": "IT",
          "slug": "missaglia",
          "canonical_path": "/cities/it/missaglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087029",
          "name": "Misterbianco",
          "country_code": "IT",
          "slug": "misterbianco",
          "canonical_path": "/cities/it/misterbianco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036023",
          "name": "Modena",
          "country_code": "IT",
          "slug": "modena",
          "canonical_path": "/cities/it/modena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088006",
          "name": "Modica",
          "country_code": "IT",
          "slug": "modica",
          "canonical_path": "/cities/it/modica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072027",
          "name": "Modugno",
          "country_code": "IT",
          "slug": "modugno",
          "canonical_path": "/cities/it/modugno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020035",
          "name": "Moglia",
          "country_code": "IT",
          "slug": "moglia",
          "canonical_path": "/cities/it/moglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026043",
          "name": "Mogliano Veneto",
          "country_code": "IT",
          "slug": "mogliano-veneto",
          "canonical_path": "/cities/it/mogliano-veneto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072028",
          "name": "Mola di Bari",
          "country_code": "IT",
          "slug": "mola-di-bari",
          "canonical_path": "/cities/it/mola-di-bari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072029",
          "name": "Molfetta",
          "country_code": "IT",
          "slug": "molfetta",
          "canonical_path": "/cities/it/molfetta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037039",
          "name": "Molinella",
          "country_code": "IT",
          "slug": "molinella",
          "canonical_path": "/cities/it/molinella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001156",
          "name": "Moncalieri",
          "country_code": "IT",
          "slug": "moncalieri",
          "canonical_path": "/cities/it/moncalieri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041029",
          "name": "Mondolfo",
          "country_code": "IT",
          "slug": "mondolfo",
          "canonical_path": "/cities/it/mondolfo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004130",
          "name": "Mondovì",
          "country_code": "IT",
          "slug": "mondovi",
          "canonical_path": "/cities/it/mondovi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061052",
          "name": "Mondragone",
          "country_code": "IT",
          "slug": "mondragone",
          "canonical_path": "/cities/it/mondragone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:031012",
          "name": "Monfalcone",
          "country_code": "IT",
          "slug": "monfalcone",
          "canonical_path": "/cities/it/monfalcone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072030",
          "name": "Monopoli",
          "country_code": "IT",
          "slug": "monopoli",
          "canonical_path": "/cities/it/monopoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082049",
          "name": "Monreale",
          "country_code": "IT",
          "slug": "monreale",
          "canonical_path": "/cities/it/monreale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028055",
          "name": "Monselice",
          "country_code": "IT",
          "slug": "monselice",
          "canonical_path": "/cities/it/monselice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118028",
          "name": "Monserrato",
          "country_code": "IT",
          "slug": "monserrato",
          "canonical_path": "/cities/it/monserrato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047009",
          "name": "Monsummano Terme",
          "country_code": "IT",
          "slug": "monsummano-terme",
          "canonical_path": "/cities/it/monsummano-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028056",
          "name": "Montagnana",
          "country_code": "IT",
          "slug": "montagnana",
          "canonical_path": "/cities/it/montagnana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:077016",
          "name": "Montalbano Jonico",
          "country_code": "IT",
          "slug": "montalbano-jonico",
          "canonical_path": "/cities/it/montalbano-jonico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052037",
          "name": "Montalcino",
          "country_code": "IT",
          "slug": "montalcino",
          "canonical_path": "/cities/it/montalcino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047010",
          "name": "Montale",
          "country_code": "IT",
          "slug": "montale",
          "canonical_path": "/cities/it/montale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056035",
          "name": "Montalto di Castro",
          "country_code": "IT",
          "slug": "montalto-di-castro",
          "canonical_path": "/cities/it/montalto-di-castro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078081",
          "name": "Montalto Uffugo",
          "country_code": "IT",
          "slug": "montalto-uffugo",
          "canonical_path": "/cities/it/montalto-uffugo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3173074",
          "name": "Montanaro",
          "country_code": "IT",
          "slug": "montanaro",
          "canonical_path": "/cities/it/montanaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013154",
          "name": "Montano Lucino",
          "country_code": "IT",
          "slug": "montano-lucino",
          "canonical_path": "/cities/it/montano-lucino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:053016",
          "name": "Monte Argentario",
          "country_code": "IT",
          "slug": "monte-argentario",
          "canonical_path": "/cities/it/monte-argentario/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058060",
          "name": "Monte Compatri",
          "country_code": "IT",
          "slug": "monte-compatri",
          "canonical_path": "/cities/it/monte-compatri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063047",
          "name": "Monte di Procida",
          "country_code": "IT",
          "slug": "monte-di-procida",
          "canonical_path": "/cities/it/monte-di-procida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058064",
          "name": "Monte Porzio Catone",
          "country_code": "IT",
          "slug": "monte-porzio-catone",
          "canonical_path": "/cities/it/monte-porzio-catone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059015",
          "name": "Monte San Biagio",
          "country_code": "IT",
          "slug": "monte-san-biagio",
          "canonical_path": "/cities/it/monte-san-biagio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060044",
          "name": "Monte San Giovanni Campano",
          "country_code": "IT",
          "slug": "monte-san-giovanni-campano",
          "canonical_path": "/cities/it/monte-san-giovanni-campano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043031",
          "name": "Monte San Giusto",
          "country_code": "IT",
          "slug": "monte-san-giusto",
          "canonical_path": "/cities/it/monte-san-giusto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037042",
          "name": "Monte San Pietro",
          "country_code": "IT",
          "slug": "monte-san-pietro",
          "canonical_path": "/cities/it/monte-san-pietro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051025",
          "name": "Monte San Savino",
          "country_code": "IT",
          "slug": "monte-san-savino",
          "canonical_path": "/cities/it/monte-san-savino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042030",
          "name": "Monte San Vito",
          "country_code": "IT",
          "slug": "monte-san-vito",
          "canonical_path": "/cities/it/monte-san-vito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071033",
          "name": "Monte Sant'Angelo",
          "country_code": "IT",
          "slug": "monte-sant-angelo",
          "canonical_path": "/cities/it/monte-sant-angelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:109024",
          "name": "Monte Urano",
          "country_code": "IT",
          "slug": "monte-urano",
          "canonical_path": "/cities/it/monte-urano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080053",
          "name": "Montebello Jonico",
          "country_code": "IT",
          "slug": "montebello-jonico",
          "canonical_path": "/cities/it/montebello-jonico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024060",
          "name": "Montebello Vicentino",
          "country_code": "IT",
          "slug": "montebello-vicentino",
          "canonical_path": "/cities/it/montebello-vicentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026046",
          "name": "Montebelluna",
          "country_code": "IT",
          "slug": "montebelluna",
          "canonical_path": "/cities/it/montebelluna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043026",
          "name": "Montecassiano",
          "country_code": "IT",
          "slug": "montecassiano",
          "canonical_path": "/cities/it/montecassiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047011",
          "name": "Montecatini-Terme",
          "country_code": "IT",
          "slug": "montecatini-terme",
          "canonical_path": "/cities/it/montecatini-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035027",
          "name": "Montecchio Emilia",
          "country_code": "IT",
          "slug": "montecchio-emilia",
          "canonical_path": "/cities/it/montecchio-emilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024061",
          "name": "Montecchio Maggiore",
          "country_code": "IT",
          "slug": "montecchio-maggiore",
          "canonical_path": "/cities/it/montecchio-maggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034023",
          "name": "Montechiarugolo",
          "country_code": "IT",
          "slug": "montechiarugolo",
          "canonical_path": "/cities/it/montechiarugolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065072",
          "name": "Montecorvino Pugliano",
          "country_code": "IT",
          "slug": "montecorvino-pugliano",
          "canonical_path": "/cities/it/montecorvino-pugliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065073",
          "name": "Montecorvino Rovella",
          "country_code": "IT",
          "slug": "montecorvino-rovella",
          "canonical_path": "/cities/it/montecorvino-rovella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043028",
          "name": "Montecosaro",
          "country_code": "IT",
          "slug": "montecosaro",
          "canonical_path": "/cities/it/montecosaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054030",
          "name": "Montefalco",
          "country_code": "IT",
          "slug": "montefalco",
          "canonical_path": "/cities/it/montefalco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056036",
          "name": "Montefiascone",
          "country_code": "IT",
          "slug": "montefiascone",
          "canonical_path": "/cities/it/montefiascone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023050",
          "name": "Monteforte d'Alpone",
          "country_code": "IT",
          "slug": "monteforte-d-alpone",
          "canonical_path": "/cities/it/monteforte-d-alpone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064054",
          "name": "Monteforte Irpino",
          "country_code": "IT",
          "slug": "monteforte-irpino",
          "canonical_path": "/cities/it/monteforte-irpino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:109017",
          "name": "Montegiorgio",
          "country_code": "IT",
          "slug": "montegiorgio",
          "canonical_path": "/cities/it/montegiorgio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:109018",
          "name": "Montegranaro",
          "country_code": "IT",
          "slug": "montegranaro",
          "canonical_path": "/cities/it/montegranaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028057",
          "name": "Montegrotto Terme",
          "country_code": "IT",
          "slug": "montegrotto-terme",
          "canonical_path": "/cities/it/montegrotto-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073016",
          "name": "Monteiasi",
          "country_code": "IT",
          "slug": "monteiasi",
          "canonical_path": "/cities/it/monteiasi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041036",
          "name": "Montelabbate",
          "country_code": "IT",
          "slug": "montelabbate",
          "canonical_path": "/cities/it/montelabbate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082050",
          "name": "Montelepre",
          "country_code": "IT",
          "slug": "montelepre",
          "canonical_path": "/cities/it/montelepre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058063",
          "name": "Montelibretti",
          "country_code": "IT",
          "slug": "montelibretti",
          "canonical_path": "/cities/it/montelibretti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064057",
          "name": "Montella",
          "country_code": "IT",
          "slug": "montella",
          "canonical_path": "/cities/it/montella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048028",
          "name": "Montelupo Fiorentino",
          "country_code": "IT",
          "slug": "montelupo-fiorentino",
          "canonical_path": "/cities/it/montelupo-fiorentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042027",
          "name": "Montemarciano",
          "country_code": "IT",
          "slug": "montemarciano",
          "canonical_path": "/cities/it/montemarciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064059",
          "name": "Montemiletto",
          "country_code": "IT",
          "slug": "montemiletto",
          "canonical_path": "/cities/it/montemiletto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:100003",
          "name": "Montemurlo",
          "country_code": "IT",
          "slug": "montemurlo",
          "canonical_path": "/cities/it/montemurlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:070046",
          "name": "Montenero di Bisaccia",
          "country_code": "IT",
          "slug": "montenero-di-bisaccia",
          "canonical_path": "/cities/it/montenero-di-bisaccia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079081",
          "name": "Montepaone",
          "country_code": "IT",
          "slug": "montepaone",
          "canonical_path": "/cities/it/montepaone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:044045",
          "name": "Monteprandone",
          "country_code": "IT",
          "slug": "monteprandone",
          "canonical_path": "/cities/it/monteprandone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052015",
          "name": "Montepulciano",
          "country_code": "IT",
          "slug": "montepulciano",
          "canonical_path": "/cities/it/montepulciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037041",
          "name": "Monterenzio",
          "country_code": "IT",
          "slug": "monterenzio",
          "canonical_path": "/cities/it/monterenzio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052016",
          "name": "Monteriggioni",
          "country_code": "IT",
          "slug": "monteriggioni",
          "canonical_path": "/cities/it/monteriggioni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052017",
          "name": "Monteroni d'Arbia",
          "country_code": "IT",
          "slug": "monteroni-d-arbia",
          "canonical_path": "/cities/it/monteroni-d-arbia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075048",
          "name": "Monteroni di Lecce",
          "country_code": "IT",
          "slug": "monteroni-di-lecce",
          "canonical_path": "/cities/it/monteroni-di-lecce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058065",
          "name": "Monterotondo",
          "country_code": "IT",
          "slug": "monterotondo",
          "canonical_path": "/cities/it/monterotondo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065076",
          "name": "Montesano sulla Marcellana",
          "country_code": "IT",
          "slug": "montesano-sulla-marcellana",
          "canonical_path": "/cities/it/montesano-sulla-marcellana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:062043",
          "name": "Montesarchio",
          "country_code": "IT",
          "slug": "montesarchio",
          "canonical_path": "/cities/it/montesarchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:077017",
          "name": "Montescaglioso",
          "country_code": "IT",
          "slug": "montescaglioso",
          "canonical_path": "/cities/it/montescaglioso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099029",
          "name": "Montescudo-Monte Colombo",
          "country_code": "IT",
          "slug": "montescudo-monte-colombo",
          "canonical_path": "/cities/it/montescudo-monte-colombo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068024",
          "name": "Montesilvano",
          "country_code": "IT",
          "slug": "montesilvano",
          "canonical_path": "/cities/it/montesilvano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048030",
          "name": "Montespertoli",
          "country_code": "IT",
          "slug": "montespertoli",
          "canonical_path": "/cities/it/montespertoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051026",
          "name": "Montevarchi",
          "country_code": "IT",
          "slug": "montevarchi",
          "canonical_path": "/cities/it/montevarchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033027",
          "name": "Monticelli d'Ongina",
          "country_code": "IT",
          "slug": "monticelli-d-ongina",
          "canonical_path": "/cities/it/monticelli-d-ongina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024067",
          "name": "Monticello Conte Otto",
          "country_code": "IT",
          "slug": "monticello-conte-otto",
          "canonical_path": "/cities/it/monticello-conte-otto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017113",
          "name": "Montichiari",
          "country_code": "IT",
          "slug": "montichiari",
          "canonical_path": "/cities/it/montichiari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:045011",
          "name": "Montignoso",
          "country_code": "IT",
          "slug": "montignoso",
          "canonical_path": "/cities/it/montignoso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017114",
          "name": "Montirone",
          "country_code": "IT",
          "slug": "montirone",
          "canonical_path": "/cities/it/montirone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050022",
          "name": "Montopoli in Val d'Arno",
          "country_code": "IT",
          "slug": "montopoli-in-val-d-arno",
          "canonical_path": "/cities/it/montopoli-in-val-d-arno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067028",
          "name": "Montorio al Vomano",
          "country_code": "IT",
          "slug": "montorio-al-vomano",
          "canonical_path": "/cities/it/montorio-al-vomano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064121",
          "name": "Montoro",
          "country_code": "IT",
          "slug": "montoro",
          "canonical_path": "/cities/it/montoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108033",
          "name": "Monza",
          "country_code": "IT",
          "slug": "monza",
          "canonical_path": "/cities/it/monza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037044",
          "name": "Monzuno",
          "country_code": "IT",
          "slug": "monzuno",
          "canonical_path": "/cities/it/monzuno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:014045",
          "name": "Morbegno",
          "country_code": "IT",
          "slug": "morbegno",
          "canonical_path": "/cities/it/morbegno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099011",
          "name": "Morciano di Romagna",
          "country_code": "IT",
          "slug": "morciano-di-romagna",
          "canonical_path": "/cities/it/morciano-di-romagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022123",
          "name": "Mori",
          "country_code": "IT",
          "slug": "mori",
          "canonical_path": "/cities/it/mori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058068",
          "name": "Morlupo",
          "country_code": "IT",
          "slug": "morlupo",
          "canonical_path": "/cities/it/morlupo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043033",
          "name": "Morrovalle",
          "country_code": "IT",
          "slug": "morrovalle",
          "canonical_path": "/cities/it/morrovalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018102",
          "name": "Mortara",
          "country_code": "IT",
          "slug": "mortara",
          "canonical_path": "/cities/it/mortara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067030",
          "name": "Mosciano Sant'Angelo",
          "country_code": "IT",
          "slug": "mosciano-sant-angelo",
          "canonical_path": "/cities/it/mosciano-sant-angelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026049",
          "name": "Motta di Livenza",
          "country_code": "IT",
          "slug": "motta-di-livenza",
          "canonical_path": "/cities/it/motta-di-livenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080054",
          "name": "Motta San Giovanni",
          "country_code": "IT",
          "slug": "motta-san-giovanni",
          "canonical_path": "/cities/it/motta-san-giovanni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087030",
          "name": "Motta Sant'Anastasia",
          "country_code": "IT",
          "slug": "motta-sant-anastasia",
          "canonical_path": "/cities/it/motta-sant-anastasia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015151",
          "name": "Motta Visconti",
          "country_code": "IT",
          "slug": "motta-visconti",
          "canonical_path": "/cities/it/motta-visconti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073019",
          "name": "Mottola",
          "country_code": "IT",
          "slug": "mottola",
          "canonical_path": "/cities/it/mottola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013159",
          "name": "Mozzate",
          "country_code": "IT",
          "slug": "mozzate",
          "canonical_path": "/cities/it/mozzate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023051",
          "name": "Mozzecane",
          "country_code": "IT",
          "slug": "mozzecane",
          "canonical_path": "/cities/it/mozzecane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016143",
          "name": "Mozzo",
          "country_code": "IT",
          "slug": "mozzo",
          "canonical_path": "/cities/it/mozzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:032003",
          "name": "Muggia",
          "country_code": "IT",
          "slug": "muggia",
          "canonical_path": "/cities/it/muggia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108034",
          "name": "Muggiò",
          "country_code": "IT",
          "slug": "muggio",
          "canonical_path": "/cities/it/muggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064065",
          "name": "Mugnano del Cardinale",
          "country_code": "IT",
          "slug": "mugnano-del-cardinale",
          "canonical_path": "/cities/it/mugnano-del-cardinale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063048",
          "name": "Mugnano di Napoli",
          "country_code": "IT",
          "slug": "mugnano-di-napoli",
          "canonical_path": "/cities/it/mugnano-di-napoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:098041",
          "name": "Mulazzano",
          "country_code": "IT",
          "slug": "mulazzano",
          "canonical_path": "/cities/it/mulazzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027025",
          "name": "Musile di Piave",
          "country_code": "IT",
          "slug": "musile-di-piave",
          "canonical_path": "/cities/it/musile-di-piave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024070",
          "name": "Mussolente",
          "country_code": "IT",
          "slug": "mussolente",
          "canonical_path": "/cities/it/mussolente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:085012",
          "name": "Mussomeli",
          "country_code": "IT",
          "slug": "mussomeli",
          "canonical_path": "/cities/it/mussomeli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063049",
          "name": "Napoli",
          "country_code": "IT",
          "slug": "napoli",
          "canonical_path": "/cities/it/napoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075052",
          "name": "Nardò",
          "country_code": "IT",
          "slug": "nardo",
          "canonical_path": "/cities/it/nardo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:055022",
          "name": "Narni",
          "country_code": "IT",
          "slug": "narni",
          "canonical_path": "/cities/it/narni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084026",
          "name": "Naro",
          "country_code": "IT",
          "slug": "naro",
          "canonical_path": "/cities/it/naro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021056",
          "name": "Naturno",
          "country_code": "IT",
          "slug": "naturno",
          "canonical_path": "/cities/it/naturno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017117",
          "name": "Nave",
          "country_code": "IT",
          "slug": "nave",
          "canonical_path": "/cities/it/nave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023052",
          "name": "Negrar di Valpolicella",
          "country_code": "IT",
          "slug": "negrar-di-valpolicella",
          "canonical_path": "/cities/it/negrar-di-valpolicella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016144",
          "name": "Nembro",
          "country_code": "IT",
          "slug": "nembro",
          "canonical_path": "/cities/it/nembro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056039",
          "name": "Nepi",
          "country_code": "IT",
          "slug": "nepi",
          "canonical_path": "/cities/it/nepi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067031",
          "name": "Nereto",
          "country_code": "IT",
          "slug": "nereto",
          "canonical_path": "/cities/it/nereto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026050",
          "name": "Nervesa della Battaglia",
          "country_code": "IT",
          "slug": "nervesa-della-battaglia",
          "canonical_path": "/cities/it/nervesa-della-battaglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015154",
          "name": "Nerviano",
          "country_code": "IT",
          "slug": "nerviano",
          "canonical_path": "/cities/it/nerviano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058072",
          "name": "Nettuno",
          "country_code": "IT",
          "slug": "nettuno",
          "canonical_path": "/cities/it/nettuno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3172283",
          "name": "Neviano",
          "country_code": "IT",
          "slug": "neviano",
          "canonical_path": "/cities/it/neviano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001164",
          "name": "Nichelino",
          "country_code": "IT",
          "slug": "nichelino",
          "canonical_path": "/cities/it/nichelino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087031",
          "name": "Nicolosi",
          "country_code": "IT",
          "slug": "nicolosi",
          "canonical_path": "/cities/it/nicolosi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086012",
          "name": "Nicosia",
          "country_code": "IT",
          "slug": "nicosia",
          "canonical_path": "/cities/it/nicosia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:102025",
          "name": "Nicotera",
          "country_code": "IT",
          "slug": "nicotera",
          "canonical_path": "/cities/it/nicotera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:085013",
          "name": "Niscemi",
          "country_code": "IT",
          "slug": "niscemi",
          "canonical_path": "/cities/it/niscemi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:005080",
          "name": "Nizza Monferrato",
          "country_code": "IT",
          "slug": "nizza-monferrato",
          "canonical_path": "/cities/it/nizza-monferrato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027026",
          "name": "Noale",
          "country_code": "IT",
          "slug": "noale",
          "canonical_path": "/cities/it/noale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065078",
          "name": "Nocera Inferiore",
          "country_code": "IT",
          "slug": "nocera-inferiore",
          "canonical_path": "/cities/it/nocera-inferiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065079",
          "name": "Nocera Superiore",
          "country_code": "IT",
          "slug": "nocera-superiore",
          "canonical_path": "/cities/it/nocera-superiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054034",
          "name": "Nocera Umbra",
          "country_code": "IT",
          "slug": "nocera-umbra",
          "canonical_path": "/cities/it/nocera-umbra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034025",
          "name": "Noceto",
          "country_code": "IT",
          "slug": "noceto",
          "canonical_path": "/cities/it/noceto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072031",
          "name": "Noci",
          "country_code": "IT",
          "slug": "noci",
          "canonical_path": "/cities/it/noci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023053",
          "name": "Nogara",
          "country_code": "IT",
          "slug": "nogara",
          "canonical_path": "/cities/it/nogara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072032",
          "name": "Noicattaro",
          "country_code": "IT",
          "slug": "noicattaro",
          "canonical_path": "/cities/it/noicattaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063050",
          "name": "Nola",
          "country_code": "IT",
          "slug": "nola",
          "canonical_path": "/cities/it/nola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001166",
          "name": "Nole",
          "country_code": "IT",
          "slug": "nole",
          "canonical_path": "/cities/it/nole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036027",
          "name": "Nonantola",
          "country_code": "IT",
          "slug": "nonantola",
          "canonical_path": "/cities/it/nonantola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001168",
          "name": "None",
          "country_code": "IT",
          "slug": "none",
          "canonical_path": "/cities/it/none/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067032",
          "name": "Notaresco",
          "country_code": "IT",
          "slug": "notaresco",
          "canonical_path": "/cities/it/notaresco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089013",
          "name": "Noto",
          "country_code": "IT",
          "slug": "noto",
          "canonical_path": "/cities/it/noto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108035",
          "name": "Nova Milanese",
          "country_code": "IT",
          "slug": "nova-milanese",
          "canonical_path": "/cities/it/nova-milanese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:077018",
          "name": "Nova Siri",
          "country_code": "IT",
          "slug": "nova-siri",
          "canonical_path": "/cities/it/nova-siri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099023",
          "name": "Novafeltria",
          "country_code": "IT",
          "slug": "novafeltria",
          "canonical_path": "/cities/it/novafeltria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003106",
          "name": "Novara",
          "country_code": "IT",
          "slug": "novara",
          "canonical_path": "/cities/it/novara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015157",
          "name": "Novate Milanese",
          "country_code": "IT",
          "slug": "novate-milanese",
          "canonical_path": "/cities/it/novate-milanese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035028",
          "name": "Novellara",
          "country_code": "IT",
          "slug": "novellara",
          "canonical_path": "/cities/it/novellara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027027",
          "name": "Noventa di Piave",
          "country_code": "IT",
          "slug": "noventa-di-piave",
          "canonical_path": "/cities/it/noventa-di-piave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028058",
          "name": "Noventa Padovana",
          "country_code": "IT",
          "slug": "noventa-padovana",
          "canonical_path": "/cities/it/noventa-padovana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024074",
          "name": "Noventa Vicentina",
          "country_code": "IT",
          "slug": "noventa-vicentina",
          "canonical_path": "/cities/it/noventa-vicentina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036028",
          "name": "Novi di Modena",
          "country_code": "IT",
          "slug": "novi-di-modena",
          "canonical_path": "/cities/it/novi-di-modena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:006114",
          "name": "Novi Ligure",
          "country_code": "IT",
          "slug": "novi-ligure",
          "canonical_path": "/cities/it/novi-ligure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075055",
          "name": "Novoli",
          "country_code": "IT",
          "slug": "novoli",
          "canonical_path": "/cities/it/novoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:114027",
          "name": "Nuoro",
          "country_code": "IT",
          "slug": "nuoro",
          "canonical_path": "/cities/it/nuoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:029033",
          "name": "Occhiobello",
          "country_code": "IT",
          "slug": "occhiobello",
          "canonical_path": "/cities/it/occhiobello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026051",
          "name": "Oderzo",
          "country_code": "IT",
          "slug": "oderzo",
          "canonical_path": "/cities/it/oderzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019062",
          "name": "Offanengo",
          "country_code": "IT",
          "slug": "offanengo",
          "canonical_path": "/cities/it/offanengo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097057",
          "name": "Oggiono",
          "country_code": "IT",
          "slug": "oggiono",
          "canonical_path": "/cities/it/oggiono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:113017",
          "name": "Olbia",
          "country_code": "IT",
          "slug": "olbia",
          "canonical_path": "/cities/it/olbia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003108",
          "name": "Oleggio",
          "country_code": "IT",
          "slug": "oleggio",
          "canonical_path": "/cities/it/oleggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058073",
          "name": "Olevano Romano",
          "country_code": "IT",
          "slug": "olevano-romano",
          "canonical_path": "/cities/it/olevano-romano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065082",
          "name": "Olevano sul Tusciano",
          "country_code": "IT",
          "slug": "olevano-sul-tusciano",
          "canonical_path": "/cities/it/olevano-sul-tusciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013165",
          "name": "Olgiate Comasco",
          "country_code": "IT",
          "slug": "olgiate-comasco",
          "canonical_path": "/cities/it/olgiate-comasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097058",
          "name": "Olgiate Molgora",
          "country_code": "IT",
          "slug": "olgiate-molgora",
          "canonical_path": "/cities/it/olgiate-molgora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012108",
          "name": "Olgiate Olona",
          "country_code": "IT",
          "slug": "olgiate-olona",
          "canonical_path": "/cities/it/olgiate-olona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097059",
          "name": "Olginate",
          "country_code": "IT",
          "slug": "olginate",
          "canonical_path": "/cities/it/olginate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:114028",
          "name": "Oliena",
          "country_code": "IT",
          "slug": "oliena",
          "canonical_path": "/cities/it/oliena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:103050",
          "name": "Omegna",
          "country_code": "IT",
          "slug": "omegna",
          "canonical_path": "/cities/it/omegna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015159",
          "name": "Opera",
          "country_code": "IT",
          "slug": "opera",
          "canonical_path": "/cities/it/opera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023055",
          "name": "Oppeano",
          "country_code": "IT",
          "slug": "oppeano",
          "canonical_path": "/cities/it/oppeano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001171",
          "name": "Orbassano",
          "country_code": "IT",
          "slug": "orbassano",
          "canonical_path": "/cities/it/orbassano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:053018",
          "name": "Orbetello",
          "country_code": "IT",
          "slug": "orbetello",
          "canonical_path": "/cities/it/orbetello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074011",
          "name": "Oria",
          "country_code": "IT",
          "slug": "oria",
          "canonical_path": "/cities/it/oria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012109",
          "name": "Origgio",
          "country_code": "IT",
          "slug": "origgio",
          "canonical_path": "/cities/it/origgio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:115045",
          "name": "Oristano",
          "country_code": "IT",
          "slug": "oristano",
          "canonical_path": "/cities/it/oristano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108036",
          "name": "Ornago",
          "country_code": "IT",
          "slug": "ornago",
          "canonical_path": "/cities/it/ornago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:114036",
          "name": "Orosei",
          "country_code": "IT",
          "slug": "orosei",
          "canonical_path": "/cities/it/orosei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061053",
          "name": "Orta di Atella",
          "country_code": "IT",
          "slug": "orta-di-atella",
          "canonical_path": "/cities/it/orta-di-atella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071036",
          "name": "Orta Nova",
          "country_code": "IT",
          "slug": "orta-nova",
          "canonical_path": "/cities/it/orta-nova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056042",
          "name": "Orte",
          "country_code": "IT",
          "slug": "orte",
          "canonical_path": "/cities/it/orte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069058",
          "name": "Ortona",
          "country_code": "IT",
          "slug": "ortona",
          "canonical_path": "/cities/it/ortona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:055023",
          "name": "Orvieto",
          "country_code": "IT",
          "slug": "orvieto",
          "canonical_path": "/cities/it/orvieto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017125",
          "name": "Orzinuovi",
          "country_code": "IT",
          "slug": "orzinuovi",
          "canonical_path": "/cities/it/orzinuovi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042034",
          "name": "Osimo",
          "country_code": "IT",
          "slug": "osimo",
          "canonical_path": "/cities/it/osimo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016152",
          "name": "Osio Sopra",
          "country_code": "IT",
          "slug": "osio-sopra",
          "canonical_path": "/cities/it/osio-sopra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016153",
          "name": "Osio Sotto",
          "country_code": "IT",
          "slug": "osio-sotto",
          "canonical_path": "/cities/it/osio-sotto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028059",
          "name": "Ospedaletto Euganeo",
          "country_code": "IT",
          "slug": "ospedaletto-euganeo",
          "canonical_path": "/cities/it/ospedaletto-euganeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017127",
          "name": "Ospitaletto",
          "country_code": "IT",
          "slug": "ospitaletto",
          "canonical_path": "/cities/it/ospitaletto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:112039",
          "name": "Ossi",
          "country_code": "IT",
          "slug": "ossi",
          "canonical_path": "/cities/it/ossi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038017",
          "name": "Ostellato",
          "country_code": "IT",
          "slug": "ostellato",
          "canonical_path": "/cities/it/ostellato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020038",
          "name": "Ostiglia",
          "country_code": "IT",
          "slug": "ostiglia",
          "canonical_path": "/cities/it/ostiglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042035",
          "name": "Ostra",
          "country_code": "IT",
          "slug": "ostra",
          "canonical_path": "/cities/it/ostra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074012",
          "name": "Ostuni",
          "country_code": "IT",
          "slug": "ostuni",
          "canonical_path": "/cities/it/ostuni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075057",
          "name": "Otranto",
          "country_code": "IT",
          "slug": "otranto",
          "canonical_path": "/cities/it/otranto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063051",
          "name": "Ottaviano",
          "country_code": "IT",
          "slug": "ottaviano",
          "canonical_path": "/cities/it/ottaviano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:006121",
          "name": "Ovada",
          "country_code": "IT",
          "slug": "ovada",
          "canonical_path": "/cities/it/ovada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:112040",
          "name": "Ozieri",
          "country_code": "IT",
          "slug": "ozieri",
          "canonical_path": "/cities/it/ozieri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037046",
          "name": "Ozzano dell'Emilia",
          "country_code": "IT",
          "slug": "ozzano-dell-emilia",
          "canonical_path": "/cities/it/ozzano-dell-emilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083064",
          "name": "Pace del Mela",
          "country_code": "IT",
          "slug": "pace-del-mela",
          "canonical_path": "/cities/it/pace-del-mela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081013",
          "name": "Paceco",
          "country_code": "IT",
          "slug": "paceco",
          "canonical_path": "/cities/it/paceco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089014",
          "name": "Pachino",
          "country_code": "IT",
          "slug": "pachino",
          "canonical_path": "/cities/it/pachino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015166",
          "name": "Paderno Dugnano",
          "country_code": "IT",
          "slug": "paderno-dugnano",
          "canonical_path": "/cities/it/paderno-dugnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028060",
          "name": "Padova",
          "country_code": "IT",
          "slug": "padova",
          "canonical_path": "/cities/it/padova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026055",
          "name": "Paese",
          "country_code": "IT",
          "slug": "paese",
          "canonical_path": "/cities/it/paese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065088",
          "name": "Pagani",
          "country_code": "IT",
          "slug": "pagani",
          "canonical_path": "/cities/it/pagani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030068",
          "name": "Pagnacco",
          "country_code": "IT",
          "slug": "pagnacco",
          "canonical_path": "/cities/it/pagnacco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073020",
          "name": "Palagianello",
          "country_code": "IT",
          "slug": "palagianello",
          "canonical_path": "/cities/it/palagianello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073021",
          "name": "Palagiano",
          "country_code": "IT",
          "slug": "palagiano",
          "canonical_path": "/cities/it/palagiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087032",
          "name": "Palagonia",
          "country_code": "IT",
          "slug": "palagonia",
          "canonical_path": "/cities/it/palagonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089015",
          "name": "Palazzolo Acreide",
          "country_code": "IT",
          "slug": "palazzolo-acreide",
          "canonical_path": "/cities/it/palazzolo-acreide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017133",
          "name": "Palazzolo sull'Oglio",
          "country_code": "IT",
          "slug": "palazzolo-sull-oglio",
          "canonical_path": "/cities/it/palazzolo-sull-oglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082053",
          "name": "Palermo",
          "country_code": "IT",
          "slug": "palermo",
          "canonical_path": "/cities/it/palermo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058074",
          "name": "Palestrina",
          "country_code": "IT",
          "slug": "palestrina",
          "canonical_path": "/cities/it/palestrina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060046",
          "name": "Paliano",
          "country_code": "IT",
          "slug": "paliano",
          "canonical_path": "/cities/it/paliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063052",
          "name": "Palma Campania",
          "country_code": "IT",
          "slug": "palma-campania",
          "canonical_path": "/cities/it/palma-campania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084027",
          "name": "Palma di Montechiaro",
          "country_code": "IT",
          "slug": "palma-di-montechiaro",
          "canonical_path": "/cities/it/palma-di-montechiaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030070",
          "name": "Palmanova",
          "country_code": "IT",
          "slug": "palmanova",
          "canonical_path": "/cities/it/palmanova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080057",
          "name": "Palmi",
          "country_code": "IT",
          "slug": "palmi",
          "canonical_path": "/cities/it/palmi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072033",
          "name": "Palo del Colle",
          "country_code": "IT",
          "slug": "palo-del-colle",
          "canonical_path": "/cities/it/palo-del-colle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058075",
          "name": "Palombara Sabina",
          "country_code": "IT",
          "slug": "palombara-sabina",
          "canonical_path": "/cities/it/palombara-sabina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016157",
          "name": "Palosco",
          "country_code": "IT",
          "slug": "palosco",
          "canonical_path": "/cities/it/palosco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019067",
          "name": "Pandino",
          "country_code": "IT",
          "slug": "pandino",
          "canonical_path": "/cities/it/pandino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054037",
          "name": "Panicale",
          "country_code": "IT",
          "slug": "panicale",
          "canonical_path": "/cities/it/panicale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081014",
          "name": "Pantelleria",
          "country_code": "IT",
          "slug": "pantelleria",
          "canonical_path": "/cities/it/pantelleria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015167",
          "name": "Pantigliate",
          "country_code": "IT",
          "slug": "pantigliate",
          "canonical_path": "/cities/it/pantigliate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078091",
          "name": "Paola",
          "country_code": "IT",
          "slug": "paola",
          "canonical_path": "/cities/it/paola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015168",
          "name": "Parabiago",
          "country_code": "IT",
          "slug": "parabiago",
          "canonical_path": "/cities/it/parabiago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075059",
          "name": "Parabita",
          "country_code": "IT",
          "slug": "parabita",
          "canonical_path": "/cities/it/parabita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017134",
          "name": "Paratico",
          "country_code": "IT",
          "slug": "paratico",
          "canonical_path": "/cities/it/paratico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061054",
          "name": "Parete",
          "country_code": "IT",
          "slug": "parete",
          "canonical_path": "/cities/it/parete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034027",
          "name": "Parma",
          "country_code": "IT",
          "slug": "parma",
          "canonical_path": "/cities/it/parma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081015",
          "name": "Partanna",
          "country_code": "IT",
          "slug": "partanna",
          "canonical_path": "/cities/it/partanna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082054",
          "name": "Partinico",
          "country_code": "IT",
          "slug": "partinico",
          "canonical_path": "/cities/it/partinico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030072",
          "name": "Pasian di Prato",
          "country_code": "IT",
          "slug": "pasian-di-prato",
          "canonical_path": "/cities/it/pasian-di-prato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093029",
          "name": "Pasiano di Pordenone",
          "country_code": "IT",
          "slug": "pasiano-di-pordenone",
          "canonical_path": "/cities/it/pasiano-di-pordenone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054038",
          "name": "Passignano sul Trasimeno",
          "country_code": "IT",
          "slug": "passignano-sul-trasimeno",
          "canonical_path": "/cities/it/passignano-sul-trasimeno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017136",
          "name": "Passirano",
          "country_code": "IT",
          "slug": "passirano",
          "canonical_path": "/cities/it/passirano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087033",
          "name": "Paternò",
          "country_code": "IT",
          "slug": "paterno",
          "canonical_path": "/cities/it/paterno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083066",
          "name": "Patti",
          "country_code": "IT",
          "slug": "patti",
          "canonical_path": "/cities/it/patti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015169",
          "name": "Paullo",
          "country_code": "IT",
          "slug": "paullo",
          "canonical_path": "/cities/it/paullo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018110",
          "name": "Pavia",
          "country_code": "IT",
          "slug": "pavia",
          "canonical_path": "/cities/it/pavia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030074",
          "name": "Pavia di Udine",
          "country_code": "IT",
          "slug": "pavia-di-udine",
          "canonical_path": "/cities/it/pavia-di-udine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036030",
          "name": "Pavullo nel Frignano",
          "country_code": "IT",
          "slug": "pavullo-nel-frignano",
          "canonical_path": "/cities/it/pavullo-nel-frignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087034",
          "name": "Pedara",
          "country_code": "IT",
          "slug": "pedara",
          "canonical_path": "/cities/it/pedara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:8948772",
          "name": "Pedemonte",
          "country_code": "IT",
          "slug": "pedemonte",
          "canonical_path": "/cities/it/pedemonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026056",
          "name": "Pederobba",
          "country_code": "IT",
          "slug": "pederobba",
          "canonical_path": "/cities/it/pederobba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016160",
          "name": "Pedrengo",
          "country_code": "IT",
          "slug": "pedrengo",
          "canonical_path": "/cities/it/pedrengo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020039",
          "name": "Pegognaga",
          "country_code": "IT",
          "slug": "pegognaga",
          "canonical_path": "/cities/it/pegognaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048032",
          "name": "Pelago",
          "country_code": "IT",
          "slug": "pelago",
          "canonical_path": "/cities/it/pelago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065090",
          "name": "Pellezzano",
          "country_code": "IT",
          "slug": "pellezzano",
          "canonical_path": "/cities/it/pellezzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068027",
          "name": "Penne",
          "country_code": "IT",
          "slug": "penne",
          "canonical_path": "/cities/it/penne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022139",
          "name": "Pergine Valsugana",
          "country_code": "IT",
          "slug": "pergine-valsugana",
          "canonical_path": "/cities/it/pergine-valsugana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041043",
          "name": "Pergola",
          "country_code": "IT",
          "slug": "pergola",
          "canonical_path": "/cities/it/pergola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015170",
          "name": "Pero",
          "country_code": "IT",
          "slug": "pero",
          "canonical_path": "/cities/it/pero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054039",
          "name": "Perugia",
          "country_code": "IT",
          "slug": "perugia",
          "canonical_path": "/cities/it/perugia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041044",
          "name": "Pesaro",
          "country_code": "IT",
          "slug": "pesaro",
          "canonical_path": "/cities/it/pesaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023058",
          "name": "Pescantina",
          "country_code": "IT",
          "slug": "pescantina",
          "canonical_path": "/cities/it/pescantina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068028",
          "name": "Pescara",
          "country_code": "IT",
          "slug": "pescara",
          "canonical_path": "/cities/it/pescara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015171",
          "name": "Peschiera Borromeo",
          "country_code": "IT",
          "slug": "peschiera-borromeo",
          "canonical_path": "/cities/it/peschiera-borromeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023059",
          "name": "Peschiera del Garda",
          "country_code": "IT",
          "slug": "peschiera-del-garda",
          "canonical_path": "/cities/it/peschiera-del-garda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047012",
          "name": "Pescia",
          "country_code": "IT",
          "slug": "pescia",
          "canonical_path": "/cities/it/pescia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015172",
          "name": "Pessano con Bornago",
          "country_code": "IT",
          "slug": "pessano-con-bornago",
          "canonical_path": "/cities/it/pessano-con-bornago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:101017",
          "name": "Petilia Policastro",
          "country_code": "IT",
          "slug": "petilia-policastro",
          "canonical_path": "/cities/it/petilia-policastro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081024",
          "name": "Petrosino",
          "country_code": "IT",
          "slug": "petrosino",
          "canonical_path": "/cities/it/petrosino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004163",
          "name": "Peveragno",
          "country_code": "IT",
          "slug": "peveragno",
          "canonical_path": "/cities/it/peveragno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033032",
          "name": "Piacenza",
          "country_code": "IT",
          "slug": "piacenza",
          "canonical_path": "/cities/it/piacenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082057",
          "name": "Piana degli Albanesi",
          "country_code": "IT",
          "slug": "piana-degli-albanesi",
          "canonical_path": "/cities/it/piana-degli-albanesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068030",
          "name": "Pianella",
          "country_code": "IT",
          "slug": "pianella",
          "canonical_path": "/cities/it/pianella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001189",
          "name": "Pianezza",
          "country_code": "IT",
          "slug": "pianezza",
          "canonical_path": "/cities/it/pianezza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027028",
          "name": "Pianiga",
          "country_code": "IT",
          "slug": "pianiga",
          "canonical_path": "/cities/it/pianiga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063053",
          "name": "Piano di Sorrento",
          "country_code": "IT",
          "slug": "piano-di-sorrento",
          "canonical_path": "/cities/it/piano-di-sorrento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037047",
          "name": "Pianoro",
          "country_code": "IT",
          "slug": "pianoro",
          "canonical_path": "/cities/it/pianoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086014",
          "name": "Piazza Armerina",
          "country_code": "IT",
          "slug": "piazza-armerina",
          "canonical_path": "/cities/it/piazza-armerina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028063",
          "name": "Piazzola sul Brenta",
          "country_code": "IT",
          "slug": "piazzola-sul-brenta",
          "canonical_path": "/cities/it/piazzola-sul-brenta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076059",
          "name": "Picerno",
          "country_code": "IT",
          "slug": "picerno",
          "canonical_path": "/cities/it/picerno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061057",
          "name": "Piedimonte Matese",
          "country_code": "IT",
          "slug": "piedimonte-matese",
          "canonical_path": "/cities/it/piedimonte-matese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060052",
          "name": "Piedimonte San Germano",
          "country_code": "IT",
          "slug": "piedimonte-san-germano",
          "canonical_path": "/cities/it/piedimonte-san-germano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009049",
          "name": "Pietra Ligure",
          "country_code": "IT",
          "slug": "pietra-ligure",
          "canonical_path": "/cities/it/pietra-ligure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086015",
          "name": "Pietraperzia",
          "country_code": "IT",
          "slug": "pietraperzia",
          "canonical_path": "/cities/it/pietraperzia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046024",
          "name": "Pietrasanta",
          "country_code": "IT",
          "slug": "pietrasanta",
          "canonical_path": "/cities/it/pietrasanta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047013",
          "name": "Pieve a Nievole",
          "country_code": "IT",
          "slug": "pieve-a-nievole",
          "canonical_path": "/cities/it/pieve-a-nievole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026096",
          "name": "Pieve del Grappa",
          "country_code": "IT",
          "slug": "pieve-del-grappa",
          "canonical_path": "/cities/it/pieve-del-grappa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037048",
          "name": "Pieve di Cento",
          "country_code": "IT",
          "slug": "pieve-di-cento",
          "canonical_path": "/cities/it/pieve-di-cento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026057",
          "name": "Pieve di Soligo",
          "country_code": "IT",
          "slug": "pieve-di-soligo",
          "canonical_path": "/cities/it/pieve-di-soligo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015173",
          "name": "Pieve Emanuele",
          "country_code": "IT",
          "slug": "pieve-emanuele",
          "canonical_path": "/cities/it/pieve-emanuele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061060",
          "name": "Pignataro Maggiore",
          "country_code": "IT",
          "slug": "pignataro-maggiore",
          "canonical_path": "/cities/it/pignataro-maggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076062",
          "name": "Pignola",
          "country_code": "IT",
          "slug": "pignola",
          "canonical_path": "/cities/it/pignola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063054",
          "name": "Pimonte",
          "country_code": "IT",
          "slug": "pimonte",
          "canonical_path": "/cities/it/pimonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001191",
          "name": "Pinerolo",
          "country_code": "IT",
          "slug": "pinerolo",
          "canonical_path": "/cities/it/pinerolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067035",
          "name": "Pineto",
          "country_code": "IT",
          "slug": "pineto",
          "canonical_path": "/cities/it/pineto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001192",
          "name": "Pino Torinese",
          "country_code": "IT",
          "slug": "pino-torinese",
          "canonical_path": "/cities/it/pino-torinese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015175",
          "name": "Pioltello",
          "country_code": "IT",
          "slug": "pioltello",
          "canonical_path": "/cities/it/pioltello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:049012",
          "name": "Piombino",
          "country_code": "IT",
          "slug": "piombino",
          "canonical_path": "/cities/it/piombino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028064",
          "name": "Piombino Dese",
          "country_code": "IT",
          "slug": "piombino-dese",
          "canonical_path": "/cities/it/piombino-dese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001194",
          "name": "Piossasco",
          "country_code": "IT",
          "slug": "piossasco",
          "canonical_path": "/cities/it/piossasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028065",
          "name": "Piove di Sacco",
          "country_code": "IT",
          "slug": "piove-di-sacco",
          "canonical_path": "/cities/it/piove-di-sacco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024078",
          "name": "Piovene Rocchette",
          "country_code": "IT",
          "slug": "piovene-rocchette",
          "canonical_path": "/cities/it/piovene-rocchette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050026",
          "name": "Pisa",
          "country_code": "IT",
          "slug": "pisa",
          "canonical_path": "/cities/it/pisa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017143",
          "name": "Pisogne",
          "country_code": "IT",
          "slug": "pisogne",
          "canonical_path": "/cities/it/pisogne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:077020",
          "name": "Pisticci",
          "country_code": "IT",
          "slug": "pisticci",
          "canonical_path": "/cities/it/pisticci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047014",
          "name": "Pistoia",
          "country_code": "IT",
          "slug": "pistoia",
          "canonical_path": "/cities/it/pistoia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019076",
          "name": "Pizzighettone",
          "country_code": "IT",
          "slug": "pizzighettone",
          "canonical_path": "/cities/it/pizzighettone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:102027",
          "name": "Pizzo",
          "country_code": "IT",
          "slug": "pizzo",
          "canonical_path": "/cities/it/pizzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033035",
          "name": "Podenzano",
          "country_code": "IT",
          "slug": "podenzano",
          "canonical_path": "/cities/it/podenzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075061",
          "name": "Poggiardo",
          "country_code": "IT",
          "slug": "poggiardo",
          "canonical_path": "/cities/it/poggiardo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052022",
          "name": "Poggibonsi",
          "country_code": "IT",
          "slug": "poggibonsi",
          "canonical_path": "/cities/it/poggibonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:100004",
          "name": "Poggio a Caiano",
          "country_code": "IT",
          "slug": "poggio-a-caiano",
          "canonical_path": "/cities/it/poggio-a-caiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:057053",
          "name": "Poggio Mirteto",
          "country_code": "IT",
          "slug": "poggio-mirteto",
          "canonical_path": "/cities/it/poggio-mirteto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038018",
          "name": "Poggio Renatico",
          "country_code": "IT",
          "slug": "poggio-renatico",
          "canonical_path": "/cities/it/poggio-renatico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020042",
          "name": "Poggio Rusco",
          "country_code": "IT",
          "slug": "poggio-rusco",
          "canonical_path": "/cities/it/poggio-rusco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099028",
          "name": "Poggio Torriana",
          "country_code": "IT",
          "slug": "poggio-torriana",
          "canonical_path": "/cities/it/poggio-torriana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063055",
          "name": "Poggiomarino",
          "country_code": "IT",
          "slug": "poggiomarino",
          "canonical_path": "/cities/it/poggiomarino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3170446",
          "name": "Poggioreale",
          "country_code": "IT",
          "slug": "poggioreale",
          "canonical_path": "/cities/it/poggioreale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015176",
          "name": "Pogliano Milanese",
          "country_code": "IT",
          "slug": "pogliano-milanese",
          "canonical_path": "/cities/it/pogliano-milanese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001197",
          "name": "Poirino",
          "country_code": "IT",
          "slug": "poirino",
          "canonical_path": "/cities/it/poirino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:077021",
          "name": "Policoro",
          "country_code": "IT",
          "slug": "policoro",
          "canonical_path": "/cities/it/policoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072035",
          "name": "Polignano a Mare",
          "country_code": "IT",
          "slug": "polignano-a-mare",
          "canonical_path": "/cities/it/polignano-a-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080061",
          "name": "Polistena",
          "country_code": "IT",
          "slug": "polistena",
          "canonical_path": "/cities/it/polistena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065097",
          "name": "Polla",
          "country_code": "IT",
          "slug": "polla",
          "canonical_path": "/cities/it/polla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063056",
          "name": "Pollena Trocchia",
          "country_code": "IT",
          "slug": "pollena-trocchia",
          "canonical_path": "/cities/it/pollena-trocchia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043041",
          "name": "Pollenza",
          "country_code": "IT",
          "slug": "pollenza",
          "canonical_path": "/cities/it/pollenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050027",
          "name": "Pomarance",
          "country_code": "IT",
          "slug": "pomarance",
          "canonical_path": "/cities/it/pomarance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058079",
          "name": "Pomezia",
          "country_code": "IT",
          "slug": "pomezia",
          "canonical_path": "/cities/it/pomezia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063057",
          "name": "Pomigliano d'Arco",
          "country_code": "IT",
          "slug": "pomigliano-d-arco",
          "canonical_path": "/cities/it/pomigliano-d-arco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063058",
          "name": "Pompei",
          "country_code": "IT",
          "slug": "pompei",
          "canonical_path": "/cities/it/pompei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017147",
          "name": "Poncarale",
          "country_code": "IT",
          "slug": "poncarale",
          "canonical_path": "/cities/it/poncarale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050028",
          "name": "Ponsacco",
          "country_code": "IT",
          "slug": "ponsacco",
          "canonical_path": "/cities/it/ponsacco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048033",
          "name": "Pontassieve",
          "country_code": "IT",
          "slug": "pontassieve",
          "canonical_path": "/cities/it/pontassieve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047016",
          "name": "Ponte Buggianese",
          "country_code": "IT",
          "slug": "ponte-buggianese",
          "canonical_path": "/cities/it/ponte-buggianese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026058",
          "name": "Ponte di Piave",
          "country_code": "IT",
          "slug": "ponte-di-piave",
          "canonical_path": "/cities/it/ponte-di-piave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025040",
          "name": "Ponte nelle Alpi",
          "country_code": "IT",
          "slug": "ponte-nelle-alpi",
          "canonical_path": "/cities/it/ponte-nelle-alpi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028069",
          "name": "Ponte San Nicolò",
          "country_code": "IT",
          "slug": "ponte-san-nicolo",
          "canonical_path": "/cities/it/ponte-san-nicolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016170",
          "name": "Ponte San Pietro",
          "country_code": "IT",
          "slug": "ponte-san-pietro",
          "canonical_path": "/cities/it/ponte-san-pietro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065099",
          "name": "Pontecagnano Faiano",
          "country_code": "IT",
          "slug": "pontecagnano-faiano",
          "canonical_path": "/cities/it/pontecagnano-faiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060056",
          "name": "Pontecorvo",
          "country_code": "IT",
          "slug": "pontecorvo",
          "canonical_path": "/cities/it/pontecorvo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050029",
          "name": "Pontedera",
          "country_code": "IT",
          "slug": "pontedera",
          "canonical_path": "/cities/it/pontedera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033037",
          "name": "Pontenure",
          "country_code": "IT",
          "slug": "pontenure",
          "canonical_path": "/cities/it/pontenure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016169",
          "name": "Ponteranica",
          "country_code": "IT",
          "slug": "ponteranica",
          "canonical_path": "/cities/it/ponteranica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017149",
          "name": "Pontevico",
          "country_code": "IT",
          "slug": "pontevico",
          "canonical_path": "/cities/it/pontevico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059017",
          "name": "Pontinia",
          "country_code": "IT",
          "slug": "pontinia",
          "canonical_path": "/cities/it/pontinia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016172",
          "name": "Pontirolo Nuovo",
          "country_code": "IT",
          "slug": "pontirolo-nuovo",
          "canonical_path": "/cities/it/pontirolo-nuovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017150",
          "name": "Pontoglio",
          "country_code": "IT",
          "slug": "pontoglio",
          "canonical_path": "/cities/it/pontoglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:045014",
          "name": "Pontremoli",
          "country_code": "IT",
          "slug": "pontremoli",
          "canonical_path": "/cities/it/pontremoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026059",
          "name": "Ponzano Veneto",
          "country_code": "IT",
          "slug": "ponzano-veneto",
          "canonical_path": "/cities/it/ponzano-veneto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051031",
          "name": "Poppi",
          "country_code": "IT",
          "slug": "poppi",
          "canonical_path": "/cities/it/poppi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046026",
          "name": "Porcari",
          "country_code": "IT",
          "slug": "porcari",
          "canonical_path": "/cities/it/porcari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093032",
          "name": "Porcia",
          "country_code": "IT",
          "slug": "porcia",
          "canonical_path": "/cities/it/porcia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093033",
          "name": "Pordenone",
          "country_code": "IT",
          "slug": "pordenone",
          "canonical_path": "/cities/it/pordenone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063059",
          "name": "Portici",
          "country_code": "IT",
          "slug": "portici",
          "canonical_path": "/cities/it/portici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061062",
          "name": "Portico di Caserta",
          "country_code": "IT",
          "slug": "portico-di-caserta",
          "canonical_path": "/cities/it/portico-di-caserta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075097",
          "name": "Porto Cesareo",
          "country_code": "IT",
          "slug": "porto-cesareo",
          "canonical_path": "/cities/it/porto-cesareo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084028",
          "name": "Porto Empedocle",
          "country_code": "IT",
          "slug": "porto-empedocle",
          "canonical_path": "/cities/it/porto-empedocle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020045",
          "name": "Porto Mantovano",
          "country_code": "IT",
          "slug": "porto-mantovano",
          "canonical_path": "/cities/it/porto-mantovano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043042",
          "name": "Porto Recanati",
          "country_code": "IT",
          "slug": "porto-recanati",
          "canonical_path": "/cities/it/porto-recanati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:109033",
          "name": "Porto San Giorgio",
          "country_code": "IT",
          "slug": "porto-san-giorgio",
          "canonical_path": "/cities/it/porto-san-giorgio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:109034",
          "name": "Porto Sant'Elpidio",
          "country_code": "IT",
          "slug": "porto-sant-elpidio",
          "canonical_path": "/cities/it/porto-sant-elpidio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:029039",
          "name": "Porto Tolle",
          "country_code": "IT",
          "slug": "porto-tolle",
          "canonical_path": "/cities/it/porto-tolle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:112045",
          "name": "Porto Torres",
          "country_code": "IT",
          "slug": "porto-torres",
          "canonical_path": "/cities/it/porto-torres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:029052",
          "name": "Porto Viro",
          "country_code": "IT",
          "slug": "porto-viro",
          "canonical_path": "/cities/it/porto-viro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:049014",
          "name": "Portoferraio",
          "country_code": "IT",
          "slug": "portoferraio",
          "canonical_path": "/cities/it/portoferraio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027029",
          "name": "Portogruaro",
          "country_code": "IT",
          "slug": "portogruaro",
          "canonical_path": "/cities/it/portogruaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038019",
          "name": "Portomaggiore",
          "country_code": "IT",
          "slug": "portomaggiore",
          "canonical_path": "/cities/it/portomaggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076063",
          "name": "Potenza",
          "country_code": "IT",
          "slug": "potenza",
          "canonical_path": "/cities/it/potenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043043",
          "name": "Potenza Picena",
          "country_code": "IT",
          "slug": "potenza-picena",
          "canonical_path": "/cities/it/potenza-picena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026062",
          "name": "Povegliano",
          "country_code": "IT",
          "slug": "povegliano",
          "canonical_path": "/cities/it/povegliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023060",
          "name": "Povegliano Veronese",
          "country_code": "IT",
          "slug": "povegliano-veronese",
          "canonical_path": "/cities/it/povegliano-veronese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035029",
          "name": "Poviglio",
          "country_code": "IT",
          "slug": "poviglio",
          "canonical_path": "/cities/it/poviglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030078",
          "name": "Povoletto",
          "country_code": "IT",
          "slug": "povoletto",
          "canonical_path": "/cities/it/povoletto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088008",
          "name": "Pozzallo",
          "country_code": "IT",
          "slug": "pozzallo",
          "canonical_path": "/cities/it/pozzallo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015177",
          "name": "Pozzo d'Adda",
          "country_code": "IT",
          "slug": "pozzo-d-adda",
          "canonical_path": "/cities/it/pozzo-d-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063060",
          "name": "Pozzuoli",
          "country_code": "IT",
          "slug": "pozzuoli",
          "canonical_path": "/cities/it/pozzuoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030079",
          "name": "Pozzuolo del Friuli",
          "country_code": "IT",
          "slug": "pozzuolo-del-friuli",
          "canonical_path": "/cities/it/pozzuolo-del-friuli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015178",
          "name": "Pozzuolo Martesana",
          "country_code": "IT",
          "slug": "pozzuolo-martesana",
          "canonical_path": "/cities/it/pozzuolo-martesana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078101",
          "name": "Praia a Mare",
          "country_code": "IT",
          "slug": "praia-a-mare",
          "canonical_path": "/cities/it/praia-a-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093034",
          "name": "Prata di Pordenone",
          "country_code": "IT",
          "slug": "prata-di-pordenone",
          "canonical_path": "/cities/it/prata-di-pordenone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:100005",
          "name": "Prato",
          "country_code": "IT",
          "slug": "prato",
          "canonical_path": "/cities/it/prato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:066075",
          "name": "Pratola Peligna",
          "country_code": "IT",
          "slug": "pratola-peligna",
          "canonical_path": "/cities/it/pratola-peligna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051041",
          "name": "Pratovecchio Stia",
          "country_code": "IT",
          "slug": "pratovecchio-stia",
          "canonical_path": "/cities/it/pratovecchio-stia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022230",
          "name": "Predaia",
          "country_code": "IT",
          "slug": "predaia",
          "canonical_path": "/cities/it/predaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040032",
          "name": "Predappio",
          "country_code": "IT",
          "slug": "predappio",
          "canonical_path": "/cities/it/predappio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026063",
          "name": "Preganziol",
          "country_code": "IT",
          "slug": "preganziol",
          "canonical_path": "/cities/it/preganziol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015179",
          "name": "Pregnana Milanese",
          "country_code": "IT",
          "slug": "pregnana-milanese",
          "canonical_path": "/cities/it/pregnana-milanese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075098",
          "name": "Presicce-Acquarica",
          "country_code": "IT",
          "slug": "presicce-acquarica",
          "canonical_path": "/cities/it/presicce-acquarica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017155",
          "name": "Prevalle",
          "country_code": "IT",
          "slug": "prevalle",
          "canonical_path": "/cities/it/prevalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089021",
          "name": "Priolo Gargallo",
          "country_code": "IT",
          "slug": "priolo-gargallo",
          "canonical_path": "/cities/it/priolo-gargallo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059019",
          "name": "Priverno",
          "country_code": "IT",
          "slug": "priverno",
          "canonical_path": "/cities/it/priverno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063061",
          "name": "Procida",
          "country_code": "IT",
          "slug": "procida",
          "canonical_path": "/cities/it/procida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017156",
          "name": "Provaglio d'Iseo",
          "country_code": "IT",
          "slug": "provaglio-d-iseo",
          "canonical_path": "/cities/it/provaglio-d-iseo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073022",
          "name": "Pulsano",
          "country_code": "IT",
          "slug": "pulsano",
          "canonical_path": "/cities/it/pulsano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072036",
          "name": "Putignano",
          "country_code": "IT",
          "slug": "putignano",
          "canonical_path": "/cities/it/putignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063062",
          "name": "Qualiano",
          "country_code": "IT",
          "slug": "qualiano",
          "canonical_path": "/cities/it/qualiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047017",
          "name": "Quarrata",
          "country_code": "IT",
          "slug": "quarrata",
          "canonical_path": "/cities/it/quarrata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063063",
          "name": "Quarto",
          "country_code": "IT",
          "slug": "quarto",
          "canonical_path": "/cities/it/quarto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027031",
          "name": "Quarto d'Altino",
          "country_code": "IT",
          "slug": "quarto-d-altino",
          "canonical_path": "/cities/it/quarto-d-altino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118038",
          "name": "Quartu Sant'Elena",
          "country_code": "IT",
          "slug": "quartu-sant-elena",
          "canonical_path": "/cities/it/quartu-sant-elena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118039",
          "name": "Quartucciu",
          "country_code": "IT",
          "slug": "quartucciu",
          "canonical_path": "/cities/it/quartucciu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035030",
          "name": "Quattro Castella",
          "country_code": "IT",
          "slug": "quattro-castella",
          "canonical_path": "/cities/it/quattro-castella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009052",
          "name": "Quiliano",
          "country_code": "IT",
          "slug": "quiliano",
          "canonical_path": "/cities/it/quiliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026064",
          "name": "Quinto di Treviso",
          "country_code": "IT",
          "slug": "quinto-di-treviso",
          "canonical_path": "/cities/it/quinto-di-treviso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024083",
          "name": "Quinto Vicentino",
          "country_code": "IT",
          "slug": "quinto-vicentino",
          "canonical_path": "/cities/it/quinto-vicentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017159",
          "name": "Quinzano d'Oglio",
          "country_code": "IT",
          "slug": "quinzano-d-oglio",
          "canonical_path": "/cities/it/quinzano-d-oglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020047",
          "name": "Quistello",
          "country_code": "IT",
          "slug": "quistello",
          "canonical_path": "/cities/it/quistello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075063",
          "name": "Racale",
          "country_code": "IT",
          "slug": "racale",
          "canonical_path": "/cities/it/racale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084029",
          "name": "Racalmuto",
          "country_code": "IT",
          "slug": "racalmuto",
          "canonical_path": "/cities/it/racalmuto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004179",
          "name": "Racconigi",
          "country_code": "IT",
          "slug": "racconigi",
          "canonical_path": "/cities/it/racconigi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084030",
          "name": "Raffadali",
          "country_code": "IT",
          "slug": "raffadali",
          "canonical_path": "/cities/it/raffadali/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088009",
          "name": "Ragusa",
          "country_code": "IT",
          "slug": "ragusa",
          "canonical_path": "/cities/it/ragusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087037",
          "name": "Ramacca",
          "country_code": "IT",
          "slug": "ramacca",
          "canonical_path": "/cities/it/ramacca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087038",
          "name": "Randazzo",
          "country_code": "IT",
          "slug": "randazzo",
          "canonical_path": "/cities/it/randazzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016178",
          "name": "Ranica",
          "country_code": "IT",
          "slug": "ranica",
          "canonical_path": "/cities/it/ranica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010046",
          "name": "Rapallo",
          "country_code": "IT",
          "slug": "rapallo",
          "canonical_path": "/cities/it/rapallo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052026",
          "name": "Rapolano Terme",
          "country_code": "IT",
          "slug": "rapolano-terme",
          "canonical_path": "/cities/it/rapolano-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084031",
          "name": "Ravanusa",
          "country_code": "IT",
          "slug": "ravanusa",
          "canonical_path": "/cities/it/ravanusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036034",
          "name": "Ravarino",
          "country_code": "IT",
          "slug": "ravarino",
          "canonical_path": "/cities/it/ravarino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039014",
          "name": "Ravenna",
          "country_code": "IT",
          "slug": "ravenna",
          "canonical_path": "/cities/it/ravenna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061067",
          "name": "Recale",
          "country_code": "IT",
          "slug": "recale",
          "canonical_path": "/cities/it/recale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043044",
          "name": "Recanati",
          "country_code": "IT",
          "slug": "recanati",
          "canonical_path": "/cities/it/recanati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010047",
          "name": "Recco",
          "country_code": "IT",
          "slug": "recco",
          "canonical_path": "/cities/it/recco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024084",
          "name": "Recoaro Terme",
          "country_code": "IT",
          "slug": "recoaro-terme",
          "canonical_path": "/cities/it/recoaro-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086016",
          "name": "Regalbuto",
          "country_code": "IT",
          "slug": "regalbuto",
          "canonical_path": "/cities/it/regalbuto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048035",
          "name": "Reggello",
          "country_code": "IT",
          "slug": "reggello",
          "canonical_path": "/cities/it/reggello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080063",
          "name": "Reggio di Calabria",
          "country_code": "IT",
          "slug": "reggio-calabria",
          "canonical_path": "/cities/it/reggio-calabria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035033",
          "name": "Reggio nell'Emilia",
          "country_code": "IT",
          "slug": "reggio-emilia",
          "canonical_path": "/cities/it/reggio-emilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035032",
          "name": "Reggiolo",
          "country_code": "IT",
          "slug": "reggiolo",
          "canonical_path": "/cities/it/reggiolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030091",
          "name": "Remanzacco",
          "country_code": "IT",
          "slug": "remanzacco",
          "canonical_path": "/cities/it/remanzacco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078102",
          "name": "Rende",
          "country_code": "IT",
          "slug": "rende",
          "canonical_path": "/cities/it/rende/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021072",
          "name": "Renon",
          "country_code": "IT",
          "slug": "renon",
          "canonical_path": "/cities/it/renon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026066",
          "name": "Resana",
          "country_code": "IT",
          "slug": "resana",
          "canonical_path": "/cities/it/resana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015181",
          "name": "Rescaldina",
          "country_code": "IT",
          "slug": "rescaldina",
          "canonical_path": "/cities/it/rescaldina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017161",
          "name": "Rezzato",
          "country_code": "IT",
          "slug": "rezzato",
          "canonical_path": "/cities/it/rezzato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015182",
          "name": "Rho",
          "country_code": "IT",
          "slug": "rho",
          "canonical_path": "/cities/it/rho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058081",
          "name": "Riano",
          "country_code": "IT",
          "slug": "riano",
          "canonical_path": "/cities/it/riano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084033",
          "name": "Ribera",
          "country_code": "IT",
          "slug": "ribera",
          "canonical_path": "/cities/it/ribera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:102030",
          "name": "Ricadi",
          "country_code": "IT",
          "slug": "ricadi",
          "canonical_path": "/cities/it/ricadi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099013",
          "name": "Riccione",
          "country_code": "IT",
          "slug": "riccione",
          "canonical_path": "/cities/it/riccione/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026068",
          "name": "Riese Pio X",
          "country_code": "IT",
          "slug": "riese-pio-x",
          "canonical_path": "/cities/it/riese-pio-x/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:085015",
          "name": "Riesi",
          "country_code": "IT",
          "slug": "riesi",
          "canonical_path": "/cities/it/riesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:057059",
          "name": "Rieti",
          "country_code": "IT",
          "slug": "rieti",
          "canonical_path": "/cities/it/rieti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058082",
          "name": "Rignano Flaminio",
          "country_code": "IT",
          "slug": "rignano-flaminio",
          "canonical_path": "/cities/it/rignano-flaminio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048036",
          "name": "Rignano sull'Arno",
          "country_code": "IT",
          "slug": "rignano-sull-arno",
          "canonical_path": "/cities/it/rignano-sull-arno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099014",
          "name": "Rimini",
          "country_code": "IT",
          "slug": "rimini",
          "canonical_path": "/cities/it/rimini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035034",
          "name": "Rio Saliceto",
          "country_code": "IT",
          "slug": "rio-saliceto",
          "canonical_path": "/cities/it/rio-saliceto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039015",
          "name": "Riolo Terme",
          "country_code": "IT",
          "slug": "riolo-terme",
          "canonical_path": "/cities/it/riolo-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076066",
          "name": "Rionero in Vulture",
          "country_code": "IT",
          "slug": "rionero-in-vulture",
          "canonical_path": "/cities/it/rionero-in-vulture/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087039",
          "name": "Riposto",
          "country_code": "IT",
          "slug": "riposto",
          "canonical_path": "/cities/it/riposto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022153",
          "name": "Riva del Garda",
          "country_code": "IT",
          "slug": "riva-del-garda",
          "canonical_path": "/cities/it/riva-del-garda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038029",
          "name": "Riva del Po",
          "country_code": "IT",
          "slug": "riva-del-po",
          "canonical_path": "/cities/it/riva-del-po/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001214",
          "name": "Rivalta di Torino",
          "country_code": "IT",
          "slug": "rivalta-di-torino",
          "canonical_path": "/cities/it/rivalta-di-torino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018122",
          "name": "Rivanazzano Terme",
          "country_code": "IT",
          "slug": "rivanazzano-terme",
          "canonical_path": "/cities/it/rivanazzano-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001217",
          "name": "Rivarolo Canavese",
          "country_code": "IT",
          "slug": "rivarolo-canavese",
          "canonical_path": "/cities/it/rivarolo-canavese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033038",
          "name": "Rivergaro",
          "country_code": "IT",
          "slug": "rivergaro",
          "canonical_path": "/cities/it/rivergaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030188",
          "name": "Rivignano Teor",
          "country_code": "IT",
          "slug": "rivignano-teor",
          "canonical_path": "/cities/it/rivignano-teor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001219",
          "name": "Rivoli",
          "country_code": "IT",
          "slug": "rivoli",
          "canonical_path": "/cities/it/rivoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019084",
          "name": "Rivolta d'Adda",
          "country_code": "IT",
          "slug": "rivolta-d-adda",
          "canonical_path": "/cities/it/rivolta-d-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080065",
          "name": "Rizziconi",
          "country_code": "IT",
          "slug": "rizziconi",
          "canonical_path": "/cities/it/rizziconi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097071",
          "name": "Robbiate",
          "country_code": "IT",
          "slug": "robbiate",
          "canonical_path": "/cities/it/robbiate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018123",
          "name": "Robbio",
          "country_code": "IT",
          "slug": "robbio",
          "canonical_path": "/cities/it/robbio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015184",
          "name": "Robecco sul Naviglio",
          "country_code": "IT",
          "slug": "robecco-sul-naviglio",
          "canonical_path": "/cities/it/robecco-sul-naviglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:101019",
          "name": "Rocca di Neto",
          "country_code": "IT",
          "slug": "rocca-di-neto",
          "canonical_path": "/cities/it/rocca-di-neto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058086",
          "name": "Rocca di Papa",
          "country_code": "IT",
          "slug": "rocca-di-papa",
          "canonical_path": "/cities/it/rocca-di-papa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058088",
          "name": "Rocca Priora",
          "country_code": "IT",
          "slug": "rocca-priora",
          "canonical_path": "/cities/it/rocca-priora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065106",
          "name": "Roccadaspide",
          "country_code": "IT",
          "slug": "roccadaspide",
          "canonical_path": "/cities/it/roccadaspide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065108",
          "name": "Roccapiemonte",
          "country_code": "IT",
          "slug": "roccapiemonte",
          "canonical_path": "/cities/it/roccapiemonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063065",
          "name": "Roccarainola",
          "country_code": "IT",
          "slug": "roccarainola",
          "canonical_path": "/cities/it/roccarainola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060060",
          "name": "Roccasecca",
          "country_code": "IT",
          "slug": "roccasecca",
          "canonical_path": "/cities/it/roccasecca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:053021",
          "name": "Roccastrada",
          "country_code": "IT",
          "slug": "roccastrada",
          "canonical_path": "/cities/it/roccastrada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080067",
          "name": "Roccella Ionica",
          "country_code": "IT",
          "slug": "roccella-ionica",
          "canonical_path": "/cities/it/roccella-ionica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017163",
          "name": "Rodengo Saiano",
          "country_code": "IT",
          "slug": "rodengo-saiano",
          "canonical_path": "/cities/it/rodengo-saiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020051",
          "name": "Rodigo",
          "country_code": "IT",
          "slug": "rodigo",
          "canonical_path": "/cities/it/rodigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078104",
          "name": "Roggiano Gravina",
          "country_code": "IT",
          "slug": "roggiano-gravina",
          "canonical_path": "/cities/it/roggiano-gravina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078105",
          "name": "Rogliano",
          "country_code": "IT",
          "slug": "rogliano",
          "canonical_path": "/cities/it/rogliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024086",
          "name": "Romano d'Ezzelino",
          "country_code": "IT",
          "slug": "romano-d-ezzelino",
          "canonical_path": "/cities/it/romano-d-ezzelino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016183",
          "name": "Romano di Lombardia",
          "country_code": "IT",
          "slug": "romano-di-lombardia",
          "canonical_path": "/cities/it/romano-di-lombardia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3169070",
          "name": "Rome",
          "country_code": "IT",
          "slug": "rome",
          "canonical_path": "/cities/it/rome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003131",
          "name": "Romentino",
          "country_code": "IT",
          "slug": "romentino",
          "canonical_path": "/cities/it/romentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083076",
          "name": "Rometta",
          "country_code": "IT",
          "slug": "rometta",
          "canonical_path": "/cities/it/rometta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026069",
          "name": "Roncade",
          "country_code": "IT",
          "slug": "roncade",
          "canonical_path": "/cities/it/roncade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017165",
          "name": "Roncadelle",
          "country_code": "IT",
          "slug": "roncadelle",
          "canonical_path": "/cities/it/roncadelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:031016",
          "name": "Ronchi dei Legionari",
          "country_code": "IT",
          "slug": "ronchi-dei-legionari",
          "canonical_path": "/cities/it/ronchi-dei-legionari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056045",
          "name": "Ronciglione",
          "country_code": "IT",
          "slug": "ronciglione",
          "canonical_path": "/cities/it/ronciglione/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023064",
          "name": "Ronco all'Adige",
          "country_code": "IT",
          "slug": "ronco-all-adige",
          "canonical_path": "/cities/it/ronco-all-adige/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020052",
          "name": "Roncoferraro",
          "country_code": "IT",
          "slug": "roncoferraro",
          "canonical_path": "/cities/it/roncoferraro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024087",
          "name": "Rosà",
          "country_code": "IT",
          "slug": "rosa",
          "canonical_path": "/cities/it/rosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080069",
          "name": "Rosarno",
          "country_code": "IT",
          "slug": "rosarno",
          "canonical_path": "/cities/it/rosarno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015188",
          "name": "Rosate",
          "country_code": "IT",
          "slug": "rosate",
          "canonical_path": "/cities/it/rosate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067037",
          "name": "Roseto degli Abruzzi",
          "country_code": "IT",
          "slug": "roseto-degli-abruzzi",
          "canonical_path": "/cities/it/roseto-degli-abruzzi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:049017",
          "name": "Rosignano Marittimo",
          "country_code": "IT",
          "slug": "rosignano-marittimo",
          "canonical_path": "/cities/it/rosignano-marittimo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:029040",
          "name": "Rosolina",
          "country_code": "IT",
          "slug": "rosolina",
          "canonical_path": "/cities/it/rosolina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089016",
          "name": "Rosolini",
          "country_code": "IT",
          "slug": "rosolini",
          "canonical_path": "/cities/it/rosolini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024088",
          "name": "Rossano Veneto",
          "country_code": "IT",
          "slug": "rossano-veneto",
          "canonical_path": "/cities/it/rossano-veneto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001228",
          "name": "Rosta",
          "country_code": "IT",
          "slug": "rosta",
          "canonical_path": "/cities/it/rosta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033039",
          "name": "Rottofreno",
          "country_code": "IT",
          "slug": "rottofreno",
          "canonical_path": "/cities/it/rottofreno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017166",
          "name": "Rovato",
          "country_code": "IT",
          "slug": "rovato",
          "canonical_path": "/cities/it/rovato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013201",
          "name": "Rovellasca",
          "country_code": "IT",
          "slug": "rovellasca",
          "canonical_path": "/cities/it/rovellasca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013202",
          "name": "Rovello Porro",
          "country_code": "IT",
          "slug": "rovello-porro",
          "canonical_path": "/cities/it/rovello-porro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020053",
          "name": "Roverbella",
          "country_code": "IT",
          "slug": "roverbella",
          "canonical_path": "/cities/it/roverbella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093036",
          "name": "Roveredo in Piano",
          "country_code": "IT",
          "slug": "roveredo-in-piano",
          "canonical_path": "/cities/it/roveredo-in-piano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022161",
          "name": "Rovereto",
          "country_code": "IT",
          "slug": "rovereto",
          "canonical_path": "/cities/it/rovereto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:029041",
          "name": "Rovigo",
          "country_code": "IT",
          "slug": "rovigo",
          "canonical_path": "/cities/it/rovigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015189",
          "name": "Rozzano",
          "country_code": "IT",
          "slug": "rozzano",
          "canonical_path": "/cities/it/rozzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028072",
          "name": "Rubano",
          "country_code": "IT",
          "slug": "rubano",
          "canonical_path": "/cities/it/rubano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035036",
          "name": "Rubiera",
          "country_code": "IT",
          "slug": "rubiera",
          "canonical_path": "/cities/it/rubiera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017167",
          "name": "Rudiano",
          "country_code": "IT",
          "slug": "rudiano",
          "canonical_path": "/cities/it/rudiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075064",
          "name": "Ruffano",
          "country_code": "IT",
          "slug": "ruffano",
          "canonical_path": "/cities/it/ruffano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048037",
          "name": "Rufina",
          "country_code": "IT",
          "slug": "rufina",
          "canonical_path": "/cities/it/rufina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:039016",
          "name": "Russi",
          "country_code": "IT",
          "slug": "russi",
          "canonical_path": "/cities/it/russi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072037",
          "name": "Rutigliano",
          "country_code": "IT",
          "slug": "rutigliano",
          "canonical_path": "/cities/it/rutigliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072038",
          "name": "Ruvo di Puglia",
          "country_code": "IT",
          "slug": "ruvo-di-puglia",
          "canonical_path": "/cities/it/ruvo-di-puglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059024",
          "name": "Sabaudia",
          "country_code": "IT",
          "slug": "sabaudia",
          "canonical_path": "/cities/it/sabaudia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028073",
          "name": "Saccolongo",
          "country_code": "IT",
          "slug": "saccolongo",
          "canonical_path": "/cities/it/saccolongo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093037",
          "name": "Sacile",
          "country_code": "IT",
          "slug": "sacile",
          "canonical_path": "/cities/it/sacile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058093",
          "name": "Sacrofano",
          "country_code": "IT",
          "slug": "sacrofano",
          "canonical_path": "/cities/it/sacrofano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034031",
          "name": "Sala Baganza",
          "country_code": "IT",
          "slug": "sala-baganza",
          "canonical_path": "/cities/it/sala-baganza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037050",
          "name": "Sala Bolognese",
          "country_code": "IT",
          "slug": "sala-bolognese",
          "canonical_path": "/cities/it/sala-bolognese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065114",
          "name": "Sala Consilina",
          "country_code": "IT",
          "slug": "sala-consilina",
          "canonical_path": "/cities/it/sala-consilina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081018",
          "name": "Salemi",
          "country_code": "IT",
          "slug": "salemi",
          "canonical_path": "/cities/it/salemi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065116",
          "name": "Salerno",
          "country_code": "IT",
          "slug": "salerno",
          "canonical_path": "/cities/it/salerno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026070",
          "name": "Salgareda",
          "country_code": "IT",
          "slug": "salgareda",
          "canonical_path": "/cities/it/salgareda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075065",
          "name": "Salice Salentino",
          "country_code": "IT",
          "slug": "salice-salentino",
          "canonical_path": "/cities/it/salice-salentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017170",
          "name": "Salò",
          "country_code": "IT",
          "slug": "salo",
          "canonical_path": "/cities/it/salo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034032",
          "name": "Salsomaggiore Terme",
          "country_code": "IT",
          "slug": "salsomaggiore-terme",
          "canonical_path": "/cities/it/salsomaggiore-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004203",
          "name": "Saluzzo",
          "country_code": "IT",
          "slug": "saluzzo",
          "canonical_path": "/cities/it/saluzzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027032",
          "name": "Salzano",
          "country_code": "IT",
          "slug": "salzano",
          "canonical_path": "/cities/it/salzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012118",
          "name": "Samarate",
          "country_code": "IT",
          "slug": "samarate",
          "canonical_path": "/cities/it/samarate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:2523537",
          "name": "Samassi",
          "country_code": "IT",
          "slug": "samassi",
          "canonical_path": "/cities/it/samassi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084034",
          "name": "Sambuca di Sicilia",
          "country_code": "IT",
          "slug": "sambuca-di-sicilia",
          "canonical_path": "/cities/it/sambuca-di-sicilia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072039",
          "name": "Sammichele di Bari",
          "country_code": "IT",
          "slug": "sammichele-di-bari",
          "canonical_path": "/cities/it/sammichele-di-bari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:044066",
          "name": "San Benedetto del Tronto",
          "country_code": "IT",
          "slug": "san-benedetto-del-tronto",
          "canonical_path": "/cities/it/san-benedetto-del-tronto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020055",
          "name": "San Benedetto Po",
          "country_code": "IT",
          "slug": "san-benedetto-po",
          "canonical_path": "/cities/it/san-benedetto-po/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001236",
          "name": "San Benigno Canavese",
          "country_code": "IT",
          "slug": "san-benigno-canavese",
          "canonical_path": "/cities/it/san-benigno-canavese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026071",
          "name": "San Biagio di Callalta",
          "country_code": "IT",
          "slug": "san-biagio-di-callalta",
          "canonical_path": "/cities/it/san-biagio-di-callalta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023069",
          "name": "San Bonifacio",
          "country_code": "IT",
          "slug": "san-bonifacio",
          "canonical_path": "/cities/it/san-bonifacio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:031018",
          "name": "San Canzian d'Isonzo",
          "country_code": "IT",
          "slug": "san-canzian-d-isonzo",
          "canonical_path": "/cities/it/san-canzian-d-isonzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048038",
          "name": "San Casciano in Val di Pesa",
          "country_code": "IT",
          "slug": "san-casciano-in-val-di-pesa",
          "canonical_path": "/cities/it/san-casciano-in-val-di-pesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:085016",
          "name": "San Cataldo",
          "country_code": "IT",
          "slug": "san-cataldo",
          "canonical_path": "/cities/it/san-cataldo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058119",
          "name": "San Cesareo",
          "country_code": "IT",
          "slug": "san-cesareo",
          "canonical_path": "/cities/it/san-cesareo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075068",
          "name": "San Cesario di Lecce",
          "country_code": "IT",
          "slug": "san-cesario-di-lecce",
          "canonical_path": "/cities/it/san-cesario-di-lecce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036036",
          "name": "San Cesario sul Panaro",
          "country_code": "IT",
          "slug": "san-cesario-sul-panaro",
          "canonical_path": "/cities/it/san-cesario-sul-panaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:2523511",
          "name": "San Cipirello",
          "country_code": "IT",
          "slug": "san-cipirello",
          "canonical_path": "/cities/it/san-cipirello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061074",
          "name": "San Cipriano d'Aversa",
          "country_code": "IT",
          "slug": "san-cipriano-d-aversa",
          "canonical_path": "/cities/it/san-cipriano-d-aversa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065118",
          "name": "San Cipriano Picentino",
          "country_code": "IT",
          "slug": "san-cipriano-picentino",
          "canonical_path": "/cities/it/san-cipriano-picentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099016",
          "name": "San Clemente",
          "country_code": "IT",
          "slug": "san-clemente",
          "canonical_path": "/cities/it/san-clemente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015191",
          "name": "San Colombano al Lambro",
          "country_code": "IT",
          "slug": "san-colombano-al-lambro",
          "canonical_path": "/cities/it/san-colombano-al-lambro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:005097",
          "name": "San Damiano d'Asti",
          "country_code": "IT",
          "slug": "san-damiano-d-asti",
          "canonical_path": "/cities/it/san-damiano-d-asti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030099",
          "name": "San Daniele del Friuli",
          "country_code": "IT",
          "slug": "san-daniele-del-friuli",
          "canonical_path": "/cities/it/san-daniele-del-friuli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027033",
          "name": "San Donà di Piave",
          "country_code": "IT",
          "slug": "san-dona-di-piave",
          "canonical_path": "/cities/it/san-dona-di-piave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074013",
          "name": "San Donaci",
          "country_code": "IT",
          "slug": "san-donaci",
          "canonical_path": "/cities/it/san-donaci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075069",
          "name": "San Donato di Lecce",
          "country_code": "IT",
          "slug": "san-donato-di-lecce",
          "canonical_path": "/cities/it/san-donato-di-lecce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015192",
          "name": "San Donato Milanese",
          "country_code": "IT",
          "slug": "san-donato-milanese",
          "canonical_path": "/cities/it/san-donato-milanese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:032004",
          "name": "San Dorligo della Valle",
          "country_code": "IT",
          "slug": "san-dorligo-della-valle",
          "canonical_path": "/cities/it/san-dorligo-della-valle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061075",
          "name": "San Felice a Cancello",
          "country_code": "IT",
          "slug": "san-felice-a-cancello",
          "canonical_path": "/cities/it/san-felice-a-cancello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059025",
          "name": "San Felice Circeo",
          "country_code": "IT",
          "slug": "san-felice-circeo",
          "canonical_path": "/cities/it/san-felice-circeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036037",
          "name": "San Felice sul Panaro",
          "country_code": "IT",
          "slug": "san-felice-sul-panaro",
          "canonical_path": "/cities/it/san-felice-sul-panaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110007",
          "name": "San Ferdinando di Puglia",
          "country_code": "IT",
          "slug": "san-ferdinando-di-puglia",
          "canonical_path": "/cities/it/san-ferdinando-di-puglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013206",
          "name": "San Fermo della Battaglia",
          "country_code": "IT",
          "slug": "san-fermo-della-battaglia",
          "canonical_path": "/cities/it/san-fermo-della-battaglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083077",
          "name": "San Filippo del Mela",
          "country_code": "IT",
          "slug": "san-filippo-del-mela",
          "canonical_path": "/cities/it/san-filippo-del-mela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026072",
          "name": "San Fior",
          "country_code": "IT",
          "slug": "san-fior",
          "canonical_path": "/cities/it/san-fior/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:117014",
          "name": "San Gavino Monreale",
          "country_code": "IT",
          "slug": "san-gavino-monreale",
          "canonical_path": "/cities/it/san-gavino-monreale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063066",
          "name": "San Gennaro Vesuviano",
          "country_code": "IT",
          "slug": "san-gennaro-vesuviano",
          "canonical_path": "/cities/it/san-gennaro-vesuviano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052028",
          "name": "San Gimignano",
          "country_code": "IT",
          "slug": "san-gimignano",
          "canonical_path": "/cities/it/san-gimignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063067",
          "name": "San Giorgio a Cremano",
          "country_code": "IT",
          "slug": "san-giorgio-a-cremano",
          "canonical_path": "/cities/it/san-giorgio-a-cremano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020057",
          "name": "San Giorgio Bigarello",
          "country_code": "IT",
          "slug": "san-giorgio-bigarello",
          "canonical_path": "/cities/it/san-giorgio-bigarello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:062058",
          "name": "San Giorgio del Sannio",
          "country_code": "IT",
          "slug": "san-giorgio-del-sannio",
          "canonical_path": "/cities/it/san-giorgio-del-sannio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028075",
          "name": "San Giorgio delle Pertiche",
          "country_code": "IT",
          "slug": "san-giorgio-delle-pertiche",
          "canonical_path": "/cities/it/san-giorgio-delle-pertiche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030100",
          "name": "San Giorgio di Nogaro",
          "country_code": "IT",
          "slug": "san-giorgio-di-nogaro",
          "canonical_path": "/cities/it/san-giorgio-di-nogaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037052",
          "name": "San Giorgio di Piano",
          "country_code": "IT",
          "slug": "san-giorgio-di-piano",
          "canonical_path": "/cities/it/san-giorgio-di-piano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028076",
          "name": "San Giorgio in Bosco",
          "country_code": "IT",
          "slug": "san-giorgio-in-bosco",
          "canonical_path": "/cities/it/san-giorgio-in-bosco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073024",
          "name": "San Giorgio Ionico",
          "country_code": "IT",
          "slug": "san-giorgio-ionico",
          "canonical_path": "/cities/it/san-giorgio-ionico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:033040",
          "name": "San Giorgio Piacentino",
          "country_code": "IT",
          "slug": "san-giorgio-piacentino",
          "canonical_path": "/cities/it/san-giorgio-piacentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015194",
          "name": "San Giorgio su Legnano",
          "country_code": "IT",
          "slug": "san-giorgio-su-legnano",
          "canonical_path": "/cities/it/san-giorgio-su-legnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030101",
          "name": "San Giovanni al Natisone",
          "country_code": "IT",
          "slug": "san-giovanni-al-natisone",
          "canonical_path": "/cities/it/san-giovanni-al-natisone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084036",
          "name": "San Giovanni Gemini",
          "country_code": "IT",
          "slug": "san-giovanni-gemini",
          "canonical_path": "/cities/it/san-giovanni-gemini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078119",
          "name": "San Giovanni in Fiore",
          "country_code": "IT",
          "slug": "san-giovanni-in-fiore",
          "canonical_path": "/cities/it/san-giovanni-in-fiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099017",
          "name": "San Giovanni in Marignano",
          "country_code": "IT",
          "slug": "san-giovanni-in-marignano",
          "canonical_path": "/cities/it/san-giovanni-in-marignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037053",
          "name": "San Giovanni in Persiceto",
          "country_code": "IT",
          "slug": "san-giovanni-in-persiceto",
          "canonical_path": "/cities/it/san-giovanni-in-persiceto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087041",
          "name": "San Giovanni la Punta",
          "country_code": "IT",
          "slug": "san-giovanni-la-punta",
          "canonical_path": "/cities/it/san-giovanni-la-punta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023071",
          "name": "San Giovanni Lupatoto",
          "country_code": "IT",
          "slug": "san-giovanni-lupatoto",
          "canonical_path": "/cities/it/san-giovanni-lupatoto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071046",
          "name": "San Giovanni Rotondo",
          "country_code": "IT",
          "slug": "san-giovanni-rotondo",
          "canonical_path": "/cities/it/san-giovanni-rotondo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069081",
          "name": "San Giovanni Teatino",
          "country_code": "IT",
          "slug": "san-giovanni-teatino",
          "canonical_path": "/cities/it/san-giovanni-teatino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051033",
          "name": "San Giovanni Valdarno",
          "country_code": "IT",
          "slug": "san-giovanni-valdarno",
          "canonical_path": "/cities/it/san-giovanni-valdarno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015195",
          "name": "San Giuliano Milanese",
          "country_code": "IT",
          "slug": "san-giuliano-milanese",
          "canonical_path": "/cities/it/san-giuliano-milanese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050031",
          "name": "San Giuliano Terme",
          "country_code": "IT",
          "slug": "san-giuliano-terme",
          "canonical_path": "/cities/it/san-giuliano-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082064",
          "name": "San Giuseppe Jato",
          "country_code": "IT",
          "slug": "san-giuseppe-jato",
          "canonical_path": "/cities/it/san-giuseppe-jato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063068",
          "name": "San Giuseppe Vesuviano",
          "country_code": "IT",
          "slug": "san-giuseppe-vesuviano",
          "canonical_path": "/cities/it/san-giuseppe-vesuviano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054044",
          "name": "San Giustino",
          "country_code": "IT",
          "slug": "san-giustino",
          "canonical_path": "/cities/it/san-giustino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087042",
          "name": "San Gregorio di Catania",
          "country_code": "IT",
          "slug": "san-gregorio-di-catania",
          "canonical_path": "/cities/it/san-gregorio-di-catania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037054",
          "name": "San Lazzaro di Savena",
          "country_code": "IT",
          "slug": "san-lazzaro-di-savena",
          "canonical_path": "/cities/it/san-lazzaro-di-savena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078122",
          "name": "San Lucido",
          "country_code": "IT",
          "slug": "san-lucido",
          "canonical_path": "/cities/it/san-lucido/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061077",
          "name": "San Marcellino",
          "country_code": "IT",
          "slug": "san-marcellino",
          "canonical_path": "/cities/it/san-marcellino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047024",
          "name": "San Marcello Piteglio",
          "country_code": "IT",
          "slug": "san-marcello-piteglio",
          "canonical_path": "/cities/it/san-marcello-piteglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078123",
          "name": "San Marco Argentano",
          "country_code": "IT",
          "slug": "san-marco-argentano",
          "canonical_path": "/cities/it/san-marco-argentano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061104",
          "name": "San Marco Evangelista",
          "country_code": "IT",
          "slug": "san-marco-evangelista",
          "canonical_path": "/cities/it/san-marco-evangelista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071047",
          "name": "San Marco in Lamis",
          "country_code": "IT",
          "slug": "san-marco-in-lamis",
          "canonical_path": "/cities/it/san-marco-in-lamis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023073",
          "name": "San Martino Buon Albergo",
          "country_code": "IT",
          "slug": "san-martino-buon-albergo",
          "canonical_path": "/cities/it/san-martino-buon-albergo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028077",
          "name": "San Martino di Lupari",
          "country_code": "IT",
          "slug": "san-martino-di-lupari",
          "canonical_path": "/cities/it/san-martino-di-lupari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035037",
          "name": "San Martino in Rio",
          "country_code": "IT",
          "slug": "san-martino-in-rio",
          "canonical_path": "/cities/it/san-martino-in-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018137",
          "name": "San Martino Siccomario",
          "country_code": "IT",
          "slug": "san-martino-siccomario",
          "canonical_path": "/cities/it/san-martino-siccomario/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073025",
          "name": "San Marzano di San Giuseppe",
          "country_code": "IT",
          "slug": "san-marzano-di-san-giuseppe",
          "canonical_path": "/cities/it/san-marzano-di-san-giuseppe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065122",
          "name": "San Marzano sul Sarno",
          "country_code": "IT",
          "slug": "san-marzano-sul-sarno",
          "canonical_path": "/cities/it/san-marzano-sul-sarno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001248",
          "name": "San Maurizio Canavese",
          "country_code": "IT",
          "slug": "san-maurizio-canavese",
          "canonical_path": "/cities/it/san-maurizio-canavese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040041",
          "name": "San Mauro Pascoli",
          "country_code": "IT",
          "slug": "san-mauro-pascoli",
          "canonical_path": "/cities/it/san-mauro-pascoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001249",
          "name": "San Mauro Torinese",
          "country_code": "IT",
          "slug": "san-mauro-torinese",
          "canonical_path": "/cities/it/san-mauro-torinese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027034",
          "name": "San Michele al Tagliamento",
          "country_code": "IT",
          "slug": "san-michele-al-tagliamento",
          "canonical_path": "/cities/it/san-michele-al-tagliamento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074014",
          "name": "San Michele Salentino",
          "country_code": "IT",
          "slug": "san-michele-salentino",
          "canonical_path": "/cities/it/san-michele-salentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050032",
          "name": "San Miniato",
          "country_code": "IT",
          "slug": "san-miniato",
          "canonical_path": "/cities/it/san-miniato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071049",
          "name": "San Nicandro Garganico",
          "country_code": "IT",
          "slug": "san-nicandro-garganico",
          "canonical_path": "/cities/it/san-nicandro-garganico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061078",
          "name": "San Nicola la Strada",
          "country_code": "IT",
          "slug": "san-nicola-la-strada",
          "canonical_path": "/cities/it/san-nicola-la-strada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074015",
          "name": "San Pancrazio Salentino",
          "country_code": "IT",
          "slug": "san-pancrazio-salentino",
          "canonical_path": "/cities/it/san-pancrazio-salentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:8948703",
          "name": "San Paolo",
          "country_code": "IT",
          "slug": "san-paolo",
          "canonical_path": "/cities/it/san-paolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016189",
          "name": "San Paolo d'Argon",
          "country_code": "IT",
          "slug": "san-paolo-d-argon",
          "canonical_path": "/cities/it/san-paolo-d-argon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071050",
          "name": "San Paolo di Civitate",
          "country_code": "IT",
          "slug": "san-paolo-di-civitate",
          "canonical_path": "/cities/it/san-paolo-di-civitate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087044",
          "name": "San Pietro Clarenza",
          "country_code": "IT",
          "slug": "san-pietro-clarenza",
          "canonical_path": "/cities/it/san-pietro-clarenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026073",
          "name": "San Pietro di Feletto",
          "country_code": "IT",
          "slug": "san-pietro-di-feletto",
          "canonical_path": "/cities/it/san-pietro-di-feletto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023076",
          "name": "San Pietro in Cariano",
          "country_code": "IT",
          "slug": "san-pietro-in-cariano",
          "canonical_path": "/cities/it/san-pietro-in-cariano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037055",
          "name": "San Pietro in Casale",
          "country_code": "IT",
          "slug": "san-pietro-in-casale",
          "canonical_path": "/cities/it/san-pietro-in-casale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074016",
          "name": "San Pietro Vernotico",
          "country_code": "IT",
          "slug": "san-pietro-vernotico",
          "canonical_path": "/cities/it/san-pietro-vernotico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035038",
          "name": "San Polo d'Enza",
          "country_code": "IT",
          "slug": "san-polo-d-enza",
          "canonical_path": "/cities/it/san-polo-d-enza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061081",
          "name": "San Prisco",
          "country_code": "IT",
          "slug": "san-prisco",
          "canonical_path": "/cities/it/san-prisco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036039",
          "name": "San Prospero",
          "country_code": "IT",
          "slug": "san-prospero",
          "canonical_path": "/cities/it/san-prospero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069083",
          "name": "San Salvo",
          "country_code": "IT",
          "slug": "san-salvo",
          "canonical_path": "/cities/it/san-salvo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063070",
          "name": "San Sebastiano al Vesuvio",
          "country_code": "IT",
          "slug": "san-sebastiano-al-vesuvio",
          "canonical_path": "/cities/it/san-sebastiano-al-vesuvio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034033",
          "name": "San Secondo Parmense",
          "country_code": "IT",
          "slug": "san-secondo-parmense",
          "canonical_path": "/cities/it/san-secondo-parmense/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043047",
          "name": "San Severino Marche",
          "country_code": "IT",
          "slug": "san-severino-marche",
          "canonical_path": "/cities/it/san-severino-marche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071051",
          "name": "San Severo",
          "country_code": "IT",
          "slug": "san-severo",
          "canonical_path": "/cities/it/san-severo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118044",
          "name": "San Sperate",
          "country_code": "IT",
          "slug": "san-sperate",
          "canonical_path": "/cities/it/san-sperate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027036",
          "name": "San Stino di Livenza",
          "country_code": "IT",
          "slug": "san-stino-di-livenza",
          "canonical_path": "/cities/it/san-stino-di-livenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061085",
          "name": "San Tammaro",
          "country_code": "IT",
          "slug": "san-tammaro",
          "canonical_path": "/cities/it/san-tammaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065132",
          "name": "San Valentino Torio",
          "country_code": "IT",
          "slug": "san-valentino-torio",
          "canonical_path": "/cities/it/san-valentino-torio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026076",
          "name": "San Vendemiano",
          "country_code": "IT",
          "slug": "san-vendemiano",
          "canonical_path": "/cities/it/san-vendemiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:049018",
          "name": "San Vincenzo",
          "country_code": "IT",
          "slug": "san-vincenzo",
          "canonical_path": "/cities/it/san-vincenzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063075",
          "name": "San Vitaliano",
          "country_code": "IT",
          "slug": "san-vitaliano",
          "canonical_path": "/cities/it/san-vitaliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093041",
          "name": "San Vito al Tagliamento",
          "country_code": "IT",
          "slug": "san-vito-al-tagliamento",
          "canonical_path": "/cities/it/san-vito-al-tagliamento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069086",
          "name": "San Vito Chietino",
          "country_code": "IT",
          "slug": "san-vito-chietino",
          "canonical_path": "/cities/it/san-vito-chietino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074017",
          "name": "San Vito dei Normanni",
          "country_code": "IT",
          "slug": "san-vito-dei-normanni",
          "canonical_path": "/cities/it/san-vito-dei-normanni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015201",
          "name": "San Vittore Olona",
          "country_code": "IT",
          "slug": "san-vittore-olona",
          "canonical_path": "/cities/it/san-vittore-olona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026077",
          "name": "San Zenone degli Ezzelini",
          "country_code": "IT",
          "slug": "san-zenone-degli-ezzelini",
          "canonical_path": "/cities/it/san-zenone-degli-ezzelini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024091",
          "name": "Sandrigo",
          "country_code": "IT",
          "slug": "sandrigo",
          "canonical_path": "/cities/it/sandrigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:117015",
          "name": "Sanluri",
          "country_code": "IT",
          "slug": "sanluri",
          "canonical_path": "/cities/it/sanluri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018138",
          "name": "Sannazzaro de' Burgondi",
          "country_code": "IT",
          "slug": "sannazzaro-de-burgondi",
          "canonical_path": "/cities/it/sannazzaro-de-burgondi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072040",
          "name": "Sannicandro di Bari",
          "country_code": "IT",
          "slug": "sannicandro-di-bari",
          "canonical_path": "/cities/it/sannicandro-di-bari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075070",
          "name": "Sannicola",
          "country_code": "IT",
          "slug": "sannicola",
          "canonical_path": "/cities/it/sannicola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:008055",
          "name": "Sanremo",
          "country_code": "IT",
          "slug": "sanremo",
          "canonical_path": "/cities/it/sanremo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051034",
          "name": "Sansepolcro",
          "country_code": "IT",
          "slug": "sansepolcro",
          "canonical_path": "/cities/it/sansepolcro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037056",
          "name": "Sant'Agata Bolognese",
          "country_code": "IT",
          "slug": "sant-agata-bolognese",
          "canonical_path": "/cities/it/sant-agata-bolognese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:062070",
          "name": "Sant'Agata de' Goti",
          "country_code": "IT",
          "slug": "sant-agata-de-goti",
          "canonical_path": "/cities/it/sant-agata-de-goti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083084",
          "name": "Sant'Agata di Militello",
          "country_code": "IT",
          "slug": "sant-agata-di-militello",
          "canonical_path": "/cities/it/sant-agata-di-militello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087045",
          "name": "Sant'Agata li Battiati",
          "country_code": "IT",
          "slug": "sant-agata-li-battiati",
          "canonical_path": "/cities/it/sant-agata-li-battiati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063071",
          "name": "Sant'Agnello",
          "country_code": "IT",
          "slug": "sant-agnello",
          "canonical_path": "/cities/it/sant-agnello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023077",
          "name": "Sant'Ambrogio di Valpolicella",
          "country_code": "IT",
          "slug": "sant-ambrogio-di-valpolicella",
          "canonical_path": "/cities/it/sant-ambrogio-di-valpolicella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063072",
          "name": "Sant'Anastasia",
          "country_code": "IT",
          "slug": "sant-anastasia",
          "canonical_path": "/cities/it/sant-anastasia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028082",
          "name": "Sant'Angelo di Piove di Sacco",
          "country_code": "IT",
          "slug": "sant-angelo-di-piove-di-sacco",
          "canonical_path": "/cities/it/sant-angelo-di-piove-di-sacco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:098050",
          "name": "Sant'Angelo Lodigiano",
          "country_code": "IT",
          "slug": "sant-angelo-lodigiano",
          "canonical_path": "/cities/it/sant-angelo-lodigiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058098",
          "name": "Sant'Angelo Romano",
          "country_code": "IT",
          "slug": "sant-angelo-romano",
          "canonical_path": "/cities/it/sant-angelo-romano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063073",
          "name": "Sant'Antimo",
          "country_code": "IT",
          "slug": "sant-antimo",
          "canonical_path": "/cities/it/sant-antimo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:119020",
          "name": "Sant'Antioco",
          "country_code": "IT",
          "slug": "sant-antioco",
          "canonical_path": "/cities/it/sant-antioco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063074",
          "name": "Sant'Antonio Abate",
          "country_code": "IT",
          "slug": "sant-antonio-abate",
          "canonical_path": "/cities/it/sant-antonio-abate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076080",
          "name": "Sant'Arcangelo",
          "country_code": "IT",
          "slug": "sant-arcangelo",
          "canonical_path": "/cities/it/sant-arcangelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061087",
          "name": "Sant'Arpino",
          "country_code": "IT",
          "slug": "sant-arpino",
          "canonical_path": "/cities/it/sant-arpino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067038",
          "name": "Sant'Egidio alla Vibrata",
          "country_code": "IT",
          "slug": "sant-egidio-alla-vibrata",
          "canonical_path": "/cities/it/sant-egidio-alla-vibrata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065130",
          "name": "Sant'Egidio del Monte Albino",
          "country_code": "IT",
          "slug": "sant-egidio-del-monte-albino",
          "canonical_path": "/cities/it/sant-egidio-del-monte-albino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060068",
          "name": "Sant'Elia Fiumerapido",
          "country_code": "IT",
          "slug": "sant-elia-fiumerapido",
          "canonical_path": "/cities/it/sant-elia-fiumerapido/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:109037",
          "name": "Sant'Elpidio a Mare",
          "country_code": "IT",
          "slug": "sant-elpidio-a-mare",
          "canonical_path": "/cities/it/sant-elpidio-a-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035039",
          "name": "Sant'Ilario d'Enza",
          "country_code": "IT",
          "slug": "sant-ilario-d-enza",
          "canonical_path": "/cities/it/sant-ilario-d-enza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010055",
          "name": "Sant'Olcese",
          "country_code": "IT",
          "slug": "sant-olcese",
          "canonical_path": "/cities/it/sant-olcese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067039",
          "name": "Sant'Omero",
          "country_code": "IT",
          "slug": "sant-omero",
          "canonical_path": "/cities/it/sant-omero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:2523366",
          "name": "Santa Caterina Villarmosa",
          "country_code": "IT",
          "slug": "santa-caterina-villarmosa",
          "canonical_path": "/cities/it/santa-caterina-villarmosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088010",
          "name": "Santa Croce Camerina",
          "country_code": "IT",
          "slug": "santa-croce-camerina",
          "canonical_path": "/cities/it/santa-croce-camerina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050033",
          "name": "Santa Croce sull'Arno",
          "country_code": "IT",
          "slug": "santa-croce-sull-arno",
          "canonical_path": "/cities/it/santa-croce-sull-arno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082067",
          "name": "Santa Flavia",
          "country_code": "IT",
          "slug": "santa-flavia",
          "canonical_path": "/cities/it/santa-flavia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025048",
          "name": "Santa Giustina",
          "country_code": "IT",
          "slug": "santa-giustina",
          "canonical_path": "/cities/it/santa-giustina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028080",
          "name": "Santa Giustina in Colle",
          "country_code": "IT",
          "slug": "santa-giustina-in-colle",
          "canonical_path": "/cities/it/santa-giustina-in-colle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026075",
          "name": "Santa Lucia di Piave",
          "country_code": "IT",
          "slug": "santa-lucia-di-piave",
          "canonical_path": "/cities/it/santa-lucia-di-piave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084038",
          "name": "Santa Margherita di Belice",
          "country_code": "IT",
          "slug": "santa-margherita-di-belice",
          "canonical_path": "/cities/it/santa-margherita-di-belice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010054",
          "name": "Santa Margherita Ligure",
          "country_code": "IT",
          "slug": "santa-margherita-ligure",
          "canonical_path": "/cities/it/santa-margherita-ligure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050035",
          "name": "Santa Maria a Monte",
          "country_code": "IT",
          "slug": "santa-maria-a-monte",
          "canonical_path": "/cities/it/santa-maria-a-monte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061082",
          "name": "Santa Maria a Vico",
          "country_code": "IT",
          "slug": "santa-maria-a-vico",
          "canonical_path": "/cities/it/santa-maria-a-vico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061083",
          "name": "Santa Maria Capua Vetere",
          "country_code": "IT",
          "slug": "santa-maria-capua-vetere",
          "canonical_path": "/cities/it/santa-maria-capua-vetere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078132",
          "name": "Santa Maria del Cedro",
          "country_code": "IT",
          "slug": "santa-maria-del-cedro",
          "canonical_path": "/cities/it/santa-maria-del-cedro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087047",
          "name": "Santa Maria di Licodia",
          "country_code": "IT",
          "slug": "santa-maria-di-licodia",
          "canonical_path": "/cities/it/santa-maria-di-licodia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027035",
          "name": "Santa Maria di Sala",
          "country_code": "IT",
          "slug": "santa-maria-di-sala",
          "canonical_path": "/cities/it/santa-maria-di-sala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063090",
          "name": "Santa Maria la Carità",
          "country_code": "IT",
          "slug": "santa-maria-la-carita",
          "canonical_path": "/cities/it/santa-maria-la-carita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058097",
          "name": "Santa Marinella",
          "country_code": "IT",
          "slug": "santa-marinella",
          "canonical_path": "/cities/it/santa-marinella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083089",
          "name": "Santa Teresa di Riva",
          "country_code": "IT",
          "slug": "santa-teresa-di-riva",
          "canonical_path": "/cities/it/santa-teresa-di-riva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087048",
          "name": "Santa Venerina",
          "country_code": "IT",
          "slug": "santa-venerina",
          "canonical_path": "/cities/it/santa-venerina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099018",
          "name": "Santarcangelo di Romagna",
          "country_code": "IT",
          "slug": "santarcangelo-di-romagna",
          "canonical_path": "/cities/it/santarcangelo-di-romagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001257",
          "name": "Santena",
          "country_code": "IT",
          "slug": "santena",
          "canonical_path": "/cities/it/santena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072041",
          "name": "Santeramo in Colle",
          "country_code": "IT",
          "slug": "santeramo-in-colle",
          "canonical_path": "/cities/it/santeramo-in-colle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:002133",
          "name": "Santhià",
          "country_code": "IT",
          "slug": "santhia",
          "canonical_path": "/cities/it/santhia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059026",
          "name": "Santi Cosma e Damiano",
          "country_code": "IT",
          "slug": "santi-cosma-e-damiano",
          "canonical_path": "/cities/it/santi-cosma-e-damiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011026",
          "name": "Santo Stefano di Magra",
          "country_code": "IT",
          "slug": "santo-stefano-di-magra",
          "canonical_path": "/cities/it/santo-stefano-di-magra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024095",
          "name": "Santorso",
          "country_code": "IT",
          "slug": "santorso",
          "canonical_path": "/cities/it/santorso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028085",
          "name": "Saonara",
          "country_code": "IT",
          "slug": "saonara",
          "canonical_path": "/cities/it/saonara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065134",
          "name": "Sapri",
          "country_code": "IT",
          "slug": "sapri",
          "canonical_path": "/cities/it/sapri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024097",
          "name": "Sarcedo",
          "country_code": "IT",
          "slug": "sarcedo",
          "canonical_path": "/cities/it/sarcedo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024098",
          "name": "Sarego",
          "country_code": "IT",
          "slug": "sarego",
          "canonical_path": "/cities/it/sarego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021086",
          "name": "Sarentino",
          "country_code": "IT",
          "slug": "sarentino",
          "canonical_path": "/cities/it/sarentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017174",
          "name": "Sarezzo",
          "country_code": "IT",
          "slug": "sarezzo",
          "canonical_path": "/cities/it/sarezzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016193",
          "name": "Sarnico",
          "country_code": "IT",
          "slug": "sarnico",
          "canonical_path": "/cities/it/sarnico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065135",
          "name": "Sarno",
          "country_code": "IT",
          "slug": "sarno",
          "canonical_path": "/cities/it/sarno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012119",
          "name": "Saronno",
          "country_code": "IT",
          "slug": "saronno",
          "canonical_path": "/cities/it/saronno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011027",
          "name": "Sarzana",
          "country_code": "IT",
          "slug": "sarzana",
          "canonical_path": "/cities/it/sarzana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037057",
          "name": "Sasso Marconi",
          "country_code": "IT",
          "slug": "sasso-marconi",
          "canonical_path": "/cities/it/sasso-marconi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042044",
          "name": "Sassoferrato",
          "country_code": "IT",
          "slug": "sassoferrato",
          "canonical_path": "/cities/it/sassoferrato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036040",
          "name": "Sassuolo",
          "country_code": "IT",
          "slug": "sassuolo",
          "canonical_path": "/cities/it/sassuolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073026",
          "name": "Sava",
          "country_code": "IT",
          "slug": "sava",
          "canonical_path": "/cities/it/sava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063076",
          "name": "Saviano",
          "country_code": "IT",
          "slug": "saviano",
          "canonical_path": "/cities/it/saviano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004215",
          "name": "Savigliano",
          "country_code": "IT",
          "slug": "savigliano",
          "canonical_path": "/cities/it/savigliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036041",
          "name": "Savignano sul Panaro",
          "country_code": "IT",
          "slug": "savignano-sul-panaro",
          "canonical_path": "/cities/it/savignano-sul-panaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:040045",
          "name": "Savignano sul Rubicone",
          "country_code": "IT",
          "slug": "savignano-sul-rubicone",
          "canonical_path": "/cities/it/savignano-sul-rubicone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009056",
          "name": "Savona",
          "country_code": "IT",
          "slug": "savona",
          "canonical_path": "/cities/it/savona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065137",
          "name": "Scafati",
          "country_code": "IT",
          "slug": "scafati",
          "canonical_path": "/cities/it/scafati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078138",
          "name": "Scalea",
          "country_code": "IT",
          "slug": "scalea",
          "canonical_path": "/cities/it/scalea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:035040",
          "name": "Scandiano",
          "country_code": "IT",
          "slug": "scandiano",
          "canonical_path": "/cities/it/scandiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048041",
          "name": "Scandicci",
          "country_code": "IT",
          "slug": "scandicci",
          "canonical_path": "/cities/it/scandicci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:077031",
          "name": "Scanzano Jonico",
          "country_code": "IT",
          "slug": "scanzano-jonico",
          "canonical_path": "/cities/it/scanzano-jonico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016194",
          "name": "Scanzorosciate",
          "country_code": "IT",
          "slug": "scanzorosciate",
          "canonical_path": "/cities/it/scanzorosciate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048053",
          "name": "Scarperia e San Piero",
          "country_code": "IT",
          "slug": "scarperia-e-san-piero",
          "canonical_path": "/cities/it/scarperia-e-san-piero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024100",
          "name": "Schio",
          "country_code": "IT",
          "slug": "schio",
          "canonical_path": "/cities/it/schio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:084041",
          "name": "Sciacca",
          "country_code": "IT",
          "slug": "sciacca",
          "canonical_path": "/cities/it/sciacca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088011",
          "name": "Scicli",
          "country_code": "IT",
          "slug": "scicli",
          "canonical_path": "/cities/it/scicli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063077",
          "name": "Scisciano",
          "country_code": "IT",
          "slug": "scisciano",
          "canonical_path": "/cities/it/scisciano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087049",
          "name": "Scordia",
          "country_code": "IT",
          "slug": "scordia",
          "canonical_path": "/cities/it/scordia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075073",
          "name": "Scorrano",
          "country_code": "IT",
          "slug": "scorrano",
          "canonical_path": "/cities/it/scorrano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027037",
          "name": "Scorzè",
          "country_code": "IT",
          "slug": "scorze",
          "canonical_path": "/cities/it/scorze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025053",
          "name": "Sedico",
          "country_code": "IT",
          "slug": "sedico",
          "canonical_path": "/cities/it/sedico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015204",
          "name": "Sedriano",
          "country_code": "IT",
          "slug": "sedriano",
          "canonical_path": "/cities/it/sedriano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058102",
          "name": "Segni",
          "country_code": "IT",
          "slug": "segni",
          "canonical_path": "/cities/it/segni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015205",
          "name": "Segrate",
          "country_code": "IT",
          "slug": "segrate",
          "canonical_path": "/cities/it/segrate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118048",
          "name": "Selargius",
          "country_code": "IT",
          "slug": "selargius",
          "canonical_path": "/cities/it/selargius/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079127",
          "name": "Sellia Marina",
          "country_code": "IT",
          "slug": "sellia-marina",
          "canonical_path": "/cities/it/sellia-marina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028086",
          "name": "Selvazzano Dentro",
          "country_code": "IT",
          "slug": "selvazzano-dentro",
          "canonical_path": "/cities/it/selvazzano-dentro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015206",
          "name": "Senago",
          "country_code": "IT",
          "slug": "senago",
          "canonical_path": "/cities/it/senago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042045",
          "name": "Senigallia",
          "country_code": "IT",
          "slug": "senigallia",
          "canonical_path": "/cities/it/senigallia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076085",
          "name": "Senise",
          "country_code": "IT",
          "slug": "senise",
          "canonical_path": "/cities/it/senise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:112053",
          "name": "Sennori",
          "country_code": "IT",
          "slug": "sennori",
          "canonical_path": "/cities/it/sennori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046028",
          "name": "Seravezza",
          "country_code": "IT",
          "slug": "seravezza",
          "canonical_path": "/cities/it/seravezza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108039",
          "name": "Seregno",
          "country_code": "IT",
          "slug": "seregno",
          "canonical_path": "/cities/it/seregno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016198",
          "name": "Seriate",
          "country_code": "IT",
          "slug": "seriate",
          "canonical_path": "/cities/it/seriate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064099",
          "name": "Serino",
          "country_code": "IT",
          "slug": "serino",
          "canonical_path": "/cities/it/serino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020061",
          "name": "Sermide e Felonica",
          "country_code": "IT",
          "slug": "sermide-e-felonica",
          "canonical_path": "/cities/it/sermide-e-felonica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059027",
          "name": "Sermoneta",
          "country_code": "IT",
          "slug": "sermoneta",
          "canonical_path": "/cities/it/sermoneta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026080",
          "name": "Sernaglia della Battaglia",
          "country_code": "IT",
          "slug": "sernaglia-della-battaglia",
          "canonical_path": "/cities/it/sernaglia-della-battaglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010058",
          "name": "Serra Riccò",
          "country_code": "IT",
          "slug": "serra-ricco",
          "canonical_path": "/cities/it/serra-ricco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:102037",
          "name": "Serra San Bruno",
          "country_code": "IT",
          "slug": "serra-san-bruno",
          "canonical_path": "/cities/it/serra-san-bruno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:085018",
          "name": "Serradifalco",
          "country_code": "IT",
          "slug": "serradifalco",
          "canonical_path": "/cities/it/serradifalco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:117018",
          "name": "Serramanna",
          "country_code": "IT",
          "slug": "serramanna",
          "canonical_path": "/cities/it/serramanna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036042",
          "name": "Serramazzoni",
          "country_code": "IT",
          "slug": "serramazzoni",
          "canonical_path": "/cities/it/serramazzoni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047020",
          "name": "Serravalle Pistoiese",
          "country_code": "IT",
          "slug": "serravalle-pistoiese",
          "canonical_path": "/cities/it/serravalle-pistoiese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:006160",
          "name": "Serravalle Scrivia",
          "country_code": "IT",
          "slug": "serravalle-scrivia",
          "canonical_path": "/cities/it/serravalle-scrivia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061088",
          "name": "Sessa Aurunca",
          "country_code": "IT",
          "slug": "sessa-aurunca",
          "canonical_path": "/cities/it/sessa-aurunca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093043",
          "name": "Sesto al Reghena",
          "country_code": "IT",
          "slug": "sesto-al-reghena",
          "canonical_path": "/cities/it/sesto-al-reghena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012120",
          "name": "Sesto Calende",
          "country_code": "IT",
          "slug": "sesto-calende",
          "canonical_path": "/cities/it/sesto-calende/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048043",
          "name": "Sesto Fiorentino",
          "country_code": "IT",
          "slug": "sesto-fiorentino",
          "canonical_path": "/cities/it/sesto-fiorentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015209",
          "name": "Sesto San Giovanni",
          "country_code": "IT",
          "slug": "sesto-san-giovanni",
          "canonical_path": "/cities/it/sesto-san-giovanni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:010059",
          "name": "Sestri Levante",
          "country_code": "IT",
          "slug": "sestri-levante",
          "canonical_path": "/cities/it/sestri-levante/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118053",
          "name": "Sestu",
          "country_code": "IT",
          "slug": "sestu",
          "canonical_path": "/cities/it/sestu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015210",
          "name": "Settala",
          "country_code": "IT",
          "slug": "settala",
          "canonical_path": "/cities/it/settala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:025075",
          "name": "Setteville",
          "country_code": "IT",
          "slug": "setteville",
          "canonical_path": "/cities/it/setteville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015211",
          "name": "Settimo Milanese",
          "country_code": "IT",
          "slug": "settimo-milanese",
          "canonical_path": "/cities/it/settimo-milanese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118054",
          "name": "Settimo San Pietro",
          "country_code": "IT",
          "slug": "settimo-san-pietro",
          "canonical_path": "/cities/it/settimo-san-pietro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001265",
          "name": "Settimo Torinese",
          "country_code": "IT",
          "slug": "settimo-torinese",
          "canonical_path": "/cities/it/settimo-torinese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108040",
          "name": "Seveso",
          "country_code": "IT",
          "slug": "seveso",
          "canonical_path": "/cities/it/seveso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059028",
          "name": "Sezze",
          "country_code": "IT",
          "slug": "sezze",
          "canonical_path": "/cities/it/sezze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065142",
          "name": "Siano",
          "country_code": "IT",
          "slug": "siano",
          "canonical_path": "/cities/it/siano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080088",
          "name": "Siderno",
          "country_code": "IT",
          "slug": "siderno",
          "canonical_path": "/cities/it/siderno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052032",
          "name": "Siena",
          "country_code": "IT",
          "slug": "siena",
          "canonical_path": "/cities/it/siena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048044",
          "name": "Signa",
          "country_code": "IT",
          "slug": "signa",
          "canonical_path": "/cities/it/signa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021093",
          "name": "Silandro",
          "country_code": "IT",
          "slug": "silandro",
          "canonical_path": "/cities/it/silandro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026081",
          "name": "Silea",
          "country_code": "IT",
          "slug": "silea",
          "canonical_path": "/cities/it/silea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067040",
          "name": "Silvi",
          "country_code": "IT",
          "slug": "silvi",
          "canonical_path": "/cities/it/silvi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052033",
          "name": "Sinalunga",
          "country_code": "IT",
          "slug": "sinalunga",
          "canonical_path": "/cities/it/sinalunga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:114048",
          "name": "Siniscola",
          "country_code": "IT",
          "slug": "siniscola",
          "canonical_path": "/cities/it/siniscola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118058",
          "name": "Sinnai",
          "country_code": "IT",
          "slug": "sinnai",
          "canonical_path": "/cities/it/sinnai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089017",
          "name": "Siracusa",
          "country_code": "IT",
          "slug": "siracusa",
          "canonical_path": "/cities/it/siracusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017179",
          "name": "Sirmione",
          "country_code": "IT",
          "slug": "sirmione",
          "canonical_path": "/cities/it/sirmione/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034049",
          "name": "Sissa Trecasali",
          "country_code": "IT",
          "slug": "sissa-trecasali",
          "canonical_path": "/cities/it/sissa-trecasali/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018150",
          "name": "Siziano",
          "country_code": "IT",
          "slug": "siziano",
          "canonical_path": "/cities/it/siziano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023081",
          "name": "Soave",
          "country_code": "IT",
          "slug": "soave",
          "canonical_path": "/cities/it/soave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089018",
          "name": "Solarino",
          "country_code": "IT",
          "slug": "solarino",
          "canonical_path": "/cities/it/solarino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015213",
          "name": "Solaro",
          "country_code": "IT",
          "slug": "solaro",
          "canonical_path": "/cities/it/solaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012122",
          "name": "Solbiate Olona",
          "country_code": "IT",
          "slug": "solbiate-olona",
          "canonical_path": "/cities/it/solbiate-olona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028087",
          "name": "Solesino",
          "country_code": "IT",
          "slug": "solesino",
          "canonical_path": "/cities/it/solesino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075076",
          "name": "Soleto",
          "country_code": "IT",
          "slug": "soleto",
          "canonical_path": "/cities/it/soleto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036044",
          "name": "Soliera",
          "country_code": "IT",
          "slug": "soliera",
          "canonical_path": "/cities/it/soliera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:064101",
          "name": "Solofra",
          "country_code": "IT",
          "slug": "solofra",
          "canonical_path": "/cities/it/solofra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012123",
          "name": "Somma Lombardo",
          "country_code": "IT",
          "slug": "somma-lombardo",
          "canonical_path": "/cities/it/somma-lombardo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063079",
          "name": "Somma Vesuviana",
          "country_code": "IT",
          "slug": "somma-vesuviana",
          "canonical_path": "/cities/it/somma-vesuviana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023082",
          "name": "Sommacampagna",
          "country_code": "IT",
          "slug": "sommacampagna",
          "canonical_path": "/cities/it/sommacampagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004222",
          "name": "Sommariva del Bosco",
          "country_code": "IT",
          "slug": "sommariva-del-bosco",
          "canonical_path": "/cities/it/sommariva-del-bosco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:085019",
          "name": "Sommatino",
          "country_code": "IT",
          "slug": "sommatino",
          "canonical_path": "/cities/it/sommatino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023083",
          "name": "Sona",
          "country_code": "IT",
          "slug": "sona",
          "canonical_path": "/cities/it/sona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019097",
          "name": "Soncino",
          "country_code": "IT",
          "slug": "soncino",
          "canonical_path": "/cities/it/soncino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:014061",
          "name": "Sondrio",
          "country_code": "IT",
          "slug": "sondrio",
          "canonical_path": "/cities/it/sondrio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059029",
          "name": "Sonnino",
          "country_code": "IT",
          "slug": "sonnino",
          "canonical_path": "/cities/it/sonnino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060074",
          "name": "Sora",
          "country_code": "IT",
          "slug": "sora",
          "canonical_path": "/cities/it/sora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034051",
          "name": "Sorbolo Mezzani",
          "country_code": "IT",
          "slug": "sorbolo-mezzani",
          "canonical_path": "/cities/it/sorbolo-mezzani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019098",
          "name": "Soresina",
          "country_code": "IT",
          "slug": "soresina",
          "canonical_path": "/cities/it/soresina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056048",
          "name": "Soriano nel Cimino",
          "country_code": "IT",
          "slug": "soriano-nel-cimino",
          "canonical_path": "/cities/it/soriano-nel-cimino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016202",
          "name": "Sorisole",
          "country_code": "IT",
          "slug": "sorisole",
          "canonical_path": "/cities/it/sorisole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063080",
          "name": "Sorrento",
          "country_code": "IT",
          "slug": "sorrento",
          "canonical_path": "/cities/it/sorrento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:112055",
          "name": "Sorso",
          "country_code": "IT",
          "slug": "sorso",
          "canonical_path": "/cities/it/sorso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:089019",
          "name": "Sortino",
          "country_code": "IT",
          "slug": "sortino",
          "canonical_path": "/cities/it/sortino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:079137",
          "name": "Soverato",
          "country_code": "IT",
          "slug": "soverato",
          "canonical_path": "/cities/it/soverato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016204",
          "name": "Sovere",
          "country_code": "IT",
          "slug": "sovere",
          "canonical_path": "/cities/it/sovere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052034",
          "name": "Sovicille",
          "country_code": "IT",
          "slug": "sovicille",
          "canonical_path": "/cities/it/sovicille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108041",
          "name": "Sovico",
          "country_code": "IT",
          "slug": "sovico",
          "canonical_path": "/cities/it/sovico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061089",
          "name": "Sparanise",
          "country_code": "IT",
          "slug": "sparanise",
          "canonical_path": "/cities/it/sparanise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054050",
          "name": "Spello",
          "country_code": "IT",
          "slug": "spello",
          "canonical_path": "/cities/it/spello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078142",
          "name": "Spezzano Albanese",
          "country_code": "IT",
          "slug": "spezzano-albanese",
          "canonical_path": "/cities/it/spezzano-albanese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036045",
          "name": "Spilamberto",
          "country_code": "IT",
          "slug": "spilamberto",
          "canonical_path": "/cities/it/spilamberto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093044",
          "name": "Spilimbergo",
          "country_code": "IT",
          "slug": "spilimbergo",
          "canonical_path": "/cities/it/spilimbergo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110008",
          "name": "Spinazzola",
          "country_code": "IT",
          "slug": "spinazzola",
          "canonical_path": "/cities/it/spinazzola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027038",
          "name": "Spinea",
          "country_code": "IT",
          "slug": "spinea",
          "canonical_path": "/cities/it/spinea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:044071",
          "name": "Spinetoli",
          "country_code": "IT",
          "slug": "spinetoli",
          "canonical_path": "/cities/it/spinetoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:019102",
          "name": "Spino d'Adda",
          "country_code": "IT",
          "slug": "spino-d-adda",
          "canonical_path": "/cities/it/spino-d-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016206",
          "name": "Spirano",
          "country_code": "IT",
          "slug": "spirano",
          "canonical_path": "/cities/it/spirano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054051",
          "name": "Spoleto",
          "country_code": "IT",
          "slug": "spoleto",
          "canonical_path": "/cities/it/spoleto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:068041",
          "name": "Spoltore",
          "country_code": "IT",
          "slug": "spoltore",
          "canonical_path": "/cities/it/spoltore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026082",
          "name": "Spresiano",
          "country_code": "IT",
          "slug": "spresiano",
          "canonical_path": "/cities/it/spresiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075079",
          "name": "Squinzano",
          "country_code": "IT",
          "slug": "squinzano",
          "canonical_path": "/cities/it/squinzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:031023",
          "name": "Staranzano",
          "country_code": "IT",
          "slug": "staranzano",
          "canonical_path": "/cities/it/staranzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073029",
          "name": "Statte",
          "country_code": "IT",
          "slug": "statte",
          "canonical_path": "/cities/it/statte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016207",
          "name": "Stezzano",
          "country_code": "IT",
          "slug": "stezzano",
          "canonical_path": "/cities/it/stezzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071054",
          "name": "Stornara",
          "country_code": "IT",
          "slug": "stornara",
          "canonical_path": "/cities/it/stornara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071055",
          "name": "Stornarella",
          "country_code": "IT",
          "slug": "stornarella",
          "canonical_path": "/cities/it/stornarella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027039",
          "name": "Stra",
          "country_code": "IT",
          "slug": "stra",
          "canonical_path": "/cities/it/stra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018153",
          "name": "Stradella",
          "country_code": "IT",
          "slug": "stradella",
          "canonical_path": "/cities/it/stradella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001269",
          "name": "Strambino",
          "country_code": "IT",
          "slug": "strambino",
          "canonical_path": "/cities/it/strambino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063081",
          "name": "Striano",
          "country_code": "IT",
          "slug": "striano",
          "canonical_path": "/cities/it/striano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:101025",
          "name": "Strongoli",
          "country_code": "IT",
          "slug": "strongoli",
          "canonical_path": "/cities/it/strongoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051037",
          "name": "Subbiano",
          "country_code": "IT",
          "slug": "subbiano",
          "canonical_path": "/cities/it/subbiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058103",
          "name": "Subiaco",
          "country_code": "IT",
          "slug": "subiaco",
          "canonical_path": "/cities/it/subiaco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061090",
          "name": "Succivo",
          "country_code": "IT",
          "slug": "succivo",
          "canonical_path": "/cities/it/succivo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:066098",
          "name": "Sulmona",
          "country_code": "IT",
          "slug": "sulmona",
          "canonical_path": "/cities/it/sulmona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012124",
          "name": "Sumirago",
          "country_code": "IT",
          "slug": "sumirago",
          "canonical_path": "/cities/it/sumirago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075083",
          "name": "Surbo",
          "country_code": "IT",
          "slug": "surbo",
          "canonical_path": "/cities/it/surbo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001270",
          "name": "Susa",
          "country_code": "IT",
          "slug": "susa",
          "canonical_path": "/cities/it/susa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026083",
          "name": "Susegana",
          "country_code": "IT",
          "slug": "susegana",
          "canonical_path": "/cities/it/susegana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056049",
          "name": "Sutri",
          "country_code": "IT",
          "slug": "sutri",
          "canonical_path": "/cities/it/sutri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020065",
          "name": "Suzzara",
          "country_code": "IT",
          "slug": "suzzara",
          "canonical_path": "/cities/it/suzzara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:008059",
          "name": "Taggia",
          "country_code": "IT",
          "slug": "taggia",
          "canonical_path": "/cities/it/taggia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:066099",
          "name": "Tagliacozzo",
          "country_code": "IT",
          "slug": "tagliacozzo",
          "canonical_path": "/cities/it/tagliacozzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:029046",
          "name": "Taglio di Po",
          "country_code": "IT",
          "slug": "taglio-di-po",
          "canonical_path": "/cities/it/taglio-di-po/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083097",
          "name": "Taormina",
          "country_code": "IT",
          "slug": "taormina",
          "canonical_path": "/cities/it/taormina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:073027",
          "name": "Taranto",
          "country_code": "IT",
          "slug": "taranto",
          "canonical_path": "/cities/it/taranto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030116",
          "name": "Tarcento",
          "country_code": "IT",
          "slug": "tarcento",
          "canonical_path": "/cities/it/tarcento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056050",
          "name": "Tarquinia",
          "country_code": "IT",
          "slug": "tarquinia",
          "canonical_path": "/cities/it/tarquinia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080093",
          "name": "Taurianova",
          "country_code": "IT",
          "slug": "taurianova",
          "canonical_path": "/cities/it/taurianova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075084",
          "name": "Taurisano",
          "country_code": "IT",
          "slug": "taurisano",
          "canonical_path": "/cities/it/taurisano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030118",
          "name": "Tavagnacco",
          "country_code": "IT",
          "slug": "tavagnacco",
          "canonical_path": "/cities/it/tavagnacco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:098056",
          "name": "Tavazzano con Villavesco",
          "country_code": "IT",
          "slug": "tavazzano-con-villavesco",
          "canonical_path": "/cities/it/tavazzano-con-villavesco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013222",
          "name": "Tavernerio",
          "country_code": "IT",
          "slug": "tavernerio",
          "canonical_path": "/cities/it/tavernerio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075085",
          "name": "Taviano",
          "country_code": "IT",
          "slug": "taviano",
          "canonical_path": "/cities/it/taviano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041065",
          "name": "Tavullia",
          "country_code": "IT",
          "slug": "tavullia",
          "canonical_path": "/cities/it/tavullia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061091",
          "name": "Teano",
          "country_code": "IT",
          "slug": "teano",
          "canonical_path": "/cities/it/teano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065146",
          "name": "Teggiano",
          "country_code": "IT",
          "slug": "teggiano",
          "canonical_path": "/cities/it/teggiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:062074",
          "name": "Telese Terme",
          "country_code": "IT",
          "slug": "telese-terme",
          "canonical_path": "/cities/it/telese-terme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016212",
          "name": "Telgate",
          "country_code": "IT",
          "slug": "telgate",
          "canonical_path": "/cities/it/telgate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:113025",
          "name": "Tempio Pausania",
          "country_code": "IT",
          "slug": "tempio-pausania",
          "canonical_path": "/cities/it/tempio-pausania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028089",
          "name": "Teolo",
          "country_code": "IT",
          "slug": "teolo",
          "canonical_path": "/cities/it/teolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067041",
          "name": "Teramo",
          "country_code": "IT",
          "slug": "teramo",
          "canonical_path": "/cities/it/teramo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021097",
          "name": "Terlano",
          "country_code": "IT",
          "slug": "terlano",
          "canonical_path": "/cities/it/terlano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072043",
          "name": "Terlizzi",
          "country_code": "IT",
          "slug": "terlizzi",
          "canonical_path": "/cities/it/terlizzi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083106",
          "name": "Terme Vigliatore",
          "country_code": "IT",
          "slug": "terme-vigliatore",
          "canonical_path": "/cities/it/terme-vigliatore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082070",
          "name": "Termini Imerese",
          "country_code": "IT",
          "slug": "termini-imerese",
          "canonical_path": "/cities/it/termini-imerese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:070078",
          "name": "Termoli",
          "country_code": "IT",
          "slug": "termoli",
          "canonical_path": "/cities/it/termoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:055032",
          "name": "Terni",
          "country_code": "IT",
          "slug": "terni",
          "canonical_path": "/cities/it/terni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016213",
          "name": "Terno d'Isola",
          "country_code": "IT",
          "slug": "terno-d-isola",
          "canonical_path": "/cities/it/terno-d-isola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:059032",
          "name": "Terracina",
          "country_code": "IT",
          "slug": "terracina",
          "canonical_path": "/cities/it/terracina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:115075",
          "name": "Terralba",
          "country_code": "IT",
          "slug": "terralba",
          "canonical_path": "/cities/it/terralba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:051039",
          "name": "Terranuova Bracciolini",
          "country_code": "IT",
          "slug": "terranuova-bracciolini",
          "canonical_path": "/cities/it/terranuova-bracciolini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082071",
          "name": "Terrasini",
          "country_code": "IT",
          "slug": "terrasini",
          "canonical_path": "/cities/it/terrasini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038028",
          "name": "Terre del Reno",
          "country_code": "IT",
          "slug": "terre-del-reno",
          "canonical_path": "/cities/it/terre-del-reno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041070",
          "name": "Terre Roveresche",
          "country_code": "IT",
          "slug": "terre-roveresche",
          "canonical_path": "/cities/it/terre-roveresche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063082",
          "name": "Terzigno",
          "country_code": "IT",
          "slug": "terzigno",
          "canonical_path": "/cities/it/terzigno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061092",
          "name": "Teverola",
          "country_code": "IT",
          "slug": "teverola",
          "canonical_path": "/cities/it/teverola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024104",
          "name": "Tezze sul Brenta",
          "country_code": "IT",
          "slug": "tezze-sul-brenta",
          "canonical_path": "/cities/it/tezze-sul-brenta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024105",
          "name": "Thiene",
          "country_code": "IT",
          "slug": "thiene",
          "canonical_path": "/cities/it/thiene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:014066",
          "name": "Tirano",
          "country_code": "IT",
          "slug": "tirano",
          "canonical_path": "/cities/it/tirano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076089",
          "name": "Tito",
          "country_code": "IT",
          "slug": "tito",
          "canonical_path": "/cities/it/tito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058104",
          "name": "Tivoli",
          "country_code": "IT",
          "slug": "tivoli",
          "canonical_path": "/cities/it/tivoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054052",
          "name": "Todi",
          "country_code": "IT",
          "slug": "todi",
          "canonical_path": "/cities/it/todi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043053",
          "name": "Tolentino",
          "country_code": "IT",
          "slug": "tolentino",
          "canonical_path": "/cities/it/tolentino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030121",
          "name": "Tolmezzo",
          "country_code": "IT",
          "slug": "tolmezzo",
          "canonical_path": "/cities/it/tolmezzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028091",
          "name": "Tombolo",
          "country_code": "IT",
          "slug": "tombolo",
          "canonical_path": "/cities/it/tombolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017186",
          "name": "Torbole Casaglia",
          "country_code": "IT",
          "slug": "torbole-casaglia",
          "canonical_path": "/cities/it/torbole-casaglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074018",
          "name": "Torchiarolo",
          "country_code": "IT",
          "slug": "torchiarolo",
          "canonical_path": "/cities/it/torchiarolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054053",
          "name": "Torgiano",
          "country_code": "IT",
          "slug": "torgiano",
          "canonical_path": "/cities/it/torgiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001272",
          "name": "Torino",
          "country_code": "IT",
          "slug": "torino",
          "canonical_path": "/cities/it/torino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072044",
          "name": "Toritto",
          "country_code": "IT",
          "slug": "toritto",
          "canonical_path": "/cities/it/toritto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063083",
          "name": "Torre Annunziata",
          "country_code": "IT",
          "slug": "torre-annunziata",
          "canonical_path": "/cities/it/torre-annunziata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016214",
          "name": "Torre Boldone",
          "country_code": "IT",
          "slug": "torre-boldone",
          "canonical_path": "/cities/it/torre-boldone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063084",
          "name": "Torre del Greco",
          "country_code": "IT",
          "slug": "torre-del-greco",
          "canonical_path": "/cities/it/torre-del-greco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074019",
          "name": "Torre Santa Susanna",
          "country_code": "IT",
          "slug": "torre-santa-susanna",
          "canonical_path": "/cities/it/torre-santa-susanna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024107",
          "name": "Torrebelvicino",
          "country_code": "IT",
          "slug": "torrebelvicino",
          "canonical_path": "/cities/it/torrebelvicino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028092",
          "name": "Torreglia",
          "country_code": "IT",
          "slug": "torreglia",
          "canonical_path": "/cities/it/torreglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083098",
          "name": "Torregrotta",
          "country_code": "IT",
          "slug": "torregrotta",
          "canonical_path": "/cities/it/torregrotta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071056",
          "name": "Torremaggiore",
          "country_code": "IT",
          "slug": "torremaggiore",
          "canonical_path": "/cities/it/torremaggiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024108",
          "name": "Torri di Quartesolo",
          "country_code": "IT",
          "slug": "torri-di-quartesolo",
          "canonical_path": "/cities/it/torri-di-quartesolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034041",
          "name": "Torrile",
          "country_code": "IT",
          "slug": "torrile",
          "canonical_path": "/cities/it/torrile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:052035",
          "name": "Torrita di Siena",
          "country_code": "IT",
          "slug": "torrita-di-siena",
          "canonical_path": "/cities/it/torrita-di-siena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:116017",
          "name": "Tortolì",
          "country_code": "IT",
          "slug": "tortoli",
          "canonical_path": "/cities/it/tortoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:006174",
          "name": "Tortona",
          "country_code": "IT",
          "slug": "tortona",
          "canonical_path": "/cities/it/tortona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078149",
          "name": "Tortora",
          "country_code": "IT",
          "slug": "tortora",
          "canonical_path": "/cities/it/tortora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:067044",
          "name": "Tortoreto",
          "country_code": "IT",
          "slug": "tortoreto",
          "canonical_path": "/cities/it/tortoreto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083099",
          "name": "Tortorici",
          "country_code": "IT",
          "slug": "tortorici",
          "canonical_path": "/cities/it/tortorici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017187",
          "name": "Toscolano-Maderno",
          "country_code": "IT",
          "slug": "toscolano-maderno",
          "canonical_path": "/cities/it/toscolano-maderno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082073",
          "name": "Trabia",
          "country_code": "IT",
          "slug": "trabia",
          "canonical_path": "/cities/it/trabia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012127",
          "name": "Tradate",
          "country_code": "IT",
          "slug": "tradate",
          "canonical_path": "/cities/it/tradate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110009",
          "name": "Trani",
          "country_code": "IT",
          "slug": "trani",
          "canonical_path": "/cities/it/trani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081021",
          "name": "Trapani",
          "country_code": "IT",
          "slug": "trapani",
          "canonical_path": "/cities/it/trapani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:066102",
          "name": "Trasacco",
          "country_code": "IT",
          "slug": "trasacco",
          "canonical_path": "/cities/it/trasacco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017188",
          "name": "Travagliato",
          "country_code": "IT",
          "slug": "travagliato",
          "canonical_path": "/cities/it/travagliato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:034042",
          "name": "Traversetolo",
          "country_code": "IT",
          "slug": "traversetolo",
          "canonical_path": "/cities/it/traversetolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028093",
          "name": "Trebaseleghe",
          "country_code": "IT",
          "slug": "trebaseleghe",
          "canonical_path": "/cities/it/trebaseleghe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078150",
          "name": "Trebisacce",
          "country_code": "IT",
          "slug": "trebisacce",
          "canonical_path": "/cities/it/trebisacce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063091",
          "name": "Trecase",
          "country_code": "IT",
          "slug": "trecase",
          "canonical_path": "/cities/it/trecase/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087050",
          "name": "Trecastagni",
          "country_code": "IT",
          "slug": "trecastagni",
          "canonical_path": "/cities/it/trecastagni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:042050",
          "name": "Trecastelli",
          "country_code": "IT",
          "slug": "trecastelli",
          "canonical_path": "/cities/it/trecastelli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003149",
          "name": "Trecate",
          "country_code": "IT",
          "slug": "trecate",
          "canonical_path": "/cities/it/trecate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023087",
          "name": "Tregnago",
          "country_code": "IT",
          "slug": "tregnago",
          "canonical_path": "/cities/it/tregnago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:043054",
          "name": "Treia",
          "country_code": "IT",
          "slug": "treia",
          "canonical_path": "/cities/it/treia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087051",
          "name": "Tremestieri Etneo",
          "country_code": "IT",
          "slug": "tremestieri-etneo",
          "canonical_path": "/cities/it/tremestieri-etneo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022205",
          "name": "Trento",
          "country_code": "IT",
          "slug": "trento",
          "canonical_path": "/cities/it/trento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061094",
          "name": "Trentola Ducenta",
          "country_code": "IT",
          "slug": "trentola-ducenta",
          "canonical_path": "/cities/it/trentola-ducenta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017190",
          "name": "Trenzano",
          "country_code": "IT",
          "slug": "trenzano",
          "canonical_path": "/cities/it/trenzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075087",
          "name": "Trepuzzi",
          "country_code": "IT",
          "slug": "trepuzzi",
          "canonical_path": "/cities/it/trepuzzi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016218",
          "name": "Trescore Balneario",
          "country_code": "IT",
          "slug": "trescore-balneario",
          "canonical_path": "/cities/it/trescore-balneario/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038030",
          "name": "Tresignana",
          "country_code": "IT",
          "slug": "tresignana",
          "canonical_path": "/cities/it/tresignana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054054",
          "name": "Trevi",
          "country_code": "IT",
          "slug": "trevi",
          "canonical_path": "/cities/it/trevi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016219",
          "name": "Treviglio",
          "country_code": "IT",
          "slug": "treviglio",
          "canonical_path": "/cities/it/treviglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026085",
          "name": "Trevignano",
          "country_code": "IT",
          "slug": "trevignano",
          "canonical_path": "/cities/it/trevignano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058107",
          "name": "Trevignano Romano",
          "country_code": "IT",
          "slug": "trevignano-romano",
          "canonical_path": "/cities/it/trevignano-romano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016220",
          "name": "Treviolo",
          "country_code": "IT",
          "slug": "treviolo",
          "canonical_path": "/cities/it/treviolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026086",
          "name": "Treviso",
          "country_code": "IT",
          "slug": "treviso",
          "canonical_path": "/cities/it/treviso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015219",
          "name": "Trezzano Rosa",
          "country_code": "IT",
          "slug": "trezzano-rosa",
          "canonical_path": "/cities/it/trezzano-rosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015220",
          "name": "Trezzano sul Naviglio",
          "country_code": "IT",
          "slug": "trezzano-sul-naviglio",
          "canonical_path": "/cities/it/trezzano-sul-naviglio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015221",
          "name": "Trezzo sull'Adda",
          "country_code": "IT",
          "slug": "trezzo-sull-adda",
          "canonical_path": "/cities/it/trezzo-sull-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075088",
          "name": "Tricase",
          "country_code": "IT",
          "slug": "tricase",
          "canonical_path": "/cities/it/tricase/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030127",
          "name": "Tricesimo",
          "country_code": "IT",
          "slug": "tricesimo",
          "canonical_path": "/cities/it/tricesimo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:032006",
          "name": "Trieste",
          "country_code": "IT",
          "slug": "trieste",
          "canonical_path": "/cities/it/trieste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072046",
          "name": "Triggiano",
          "country_code": "IT",
          "slug": "triggiano",
          "canonical_path": "/cities/it/triggiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:110010",
          "name": "Trinitapoli",
          "country_code": "IT",
          "slug": "trinitapoli",
          "canonical_path": "/cities/it/trinitapoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:002148",
          "name": "Trino",
          "country_code": "IT",
          "slug": "trino",
          "canonical_path": "/cities/it/trino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024110",
          "name": "Trissino",
          "country_code": "IT",
          "slug": "trissino",
          "canonical_path": "/cities/it/trissino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108043",
          "name": "Triuggio",
          "country_code": "IT",
          "slug": "triuggio",
          "canonical_path": "/cities/it/triuggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001280",
          "name": "Trofarello",
          "country_code": "IT",
          "slug": "trofarello",
          "canonical_path": "/cities/it/trofarello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071058",
          "name": "Troia",
          "country_code": "IT",
          "slug": "troia",
          "canonical_path": "/cities/it/troia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086018",
          "name": "Troina",
          "country_code": "IT",
          "slug": "troina",
          "canonical_path": "/cities/it/troina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:102044",
          "name": "Tropea",
          "country_code": "IT",
          "slug": "tropea",
          "canonical_path": "/cities/it/tropea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015224",
          "name": "Truccazzano",
          "country_code": "IT",
          "slug": "truccazzano",
          "canonical_path": "/cities/it/truccazzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075089",
          "name": "Tuglie",
          "country_code": "IT",
          "slug": "tuglie",
          "canonical_path": "/cities/it/tuglie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013227",
          "name": "Turate",
          "country_code": "IT",
          "slug": "turate",
          "canonical_path": "/cities/it/turate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015226",
          "name": "Turbigo",
          "country_code": "IT",
          "slug": "turbigo",
          "canonical_path": "/cities/it/turbigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072047",
          "name": "Turi",
          "country_code": "IT",
          "slug": "turi",
          "canonical_path": "/cities/it/turi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056052",
          "name": "Tuscania",
          "country_code": "IT",
          "slug": "tuscania",
          "canonical_path": "/cities/it/tuscania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012130",
          "name": "Uboldo",
          "country_code": "IT",
          "slug": "uboldo",
          "canonical_path": "/cities/it/uboldo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:030129",
          "name": "Udine",
          "country_code": "IT",
          "slug": "udine",
          "canonical_path": "/cities/it/udine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075090",
          "name": "Ugento",
          "country_code": "IT",
          "slug": "ugento",
          "canonical_path": "/cities/it/ugento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013256",
          "name": "Uggiate con Ronago",
          "country_code": "IT",
          "slug": "uggiate-con-ronago",
          "canonical_path": "/cities/it/uggiate-con-ronago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:054056",
          "name": "Umbertide",
          "country_code": "IT",
          "slug": "umbertide",
          "canonical_path": "/cities/it/umbertide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041066",
          "name": "Urbania",
          "country_code": "IT",
          "slug": "urbania",
          "canonical_path": "/cities/it/urbania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041067",
          "name": "Urbino",
          "country_code": "IT",
          "slug": "urbino",
          "canonical_path": "/cities/it/urbino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016222",
          "name": "Urgnano",
          "country_code": "IT",
          "slug": "urgnano",
          "canonical_path": "/cities/it/urgnano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108044",
          "name": "Usmate Velate",
          "country_code": "IT",
          "slug": "usmate-velate",
          "canonical_path": "/cities/it/usmate-velate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118064",
          "name": "Uta",
          "country_code": "IT",
          "slug": "uta",
          "canonical_path": "/cities/it/uta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:047021",
          "name": "Uzzano",
          "country_code": "IT",
          "slug": "uzzano",
          "canonical_path": "/cities/it/uzzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009064",
          "name": "Vado Ligure",
          "country_code": "IT",
          "slug": "vado-ligure",
          "canonical_path": "/cities/it/vado-ligure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048046",
          "name": "Vaglia",
          "country_code": "IT",
          "slug": "vaglia",
          "canonical_path": "/cities/it/vaglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:100006",
          "name": "Vaiano",
          "country_code": "IT",
          "slug": "vaiano",
          "canonical_path": "/cities/it/vaiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061095",
          "name": "Vairano Patenora",
          "country_code": "IT",
          "slug": "vairano-patenora",
          "canonical_path": "/cities/it/vairano-patenora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024111",
          "name": "Valdagno",
          "country_code": "IT",
          "slug": "valdagno",
          "canonical_path": "/cities/it/valdagno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:081022",
          "name": "Valderice",
          "country_code": "IT",
          "slug": "valderice",
          "canonical_path": "/cities/it/valderice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:096088",
          "name": "Valdilana",
          "country_code": "IT",
          "slug": "valdilana",
          "canonical_path": "/cities/it/valdilana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026087",
          "name": "Valdobbiadene",
          "country_code": "IT",
          "slug": "valdobbiadene",
          "canonical_path": "/cities/it/valdobbiadene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023089",
          "name": "Valeggio sul Mincio",
          "country_code": "IT",
          "slug": "valeggio-sul-mincio",
          "canonical_path": "/cities/it/valeggio-sul-mincio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:006177",
          "name": "Valenza",
          "country_code": "IT",
          "slug": "valenza",
          "canonical_path": "/cities/it/valenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:072048",
          "name": "Valenzano",
          "country_code": "IT",
          "slug": "valenzano",
          "canonical_path": "/cities/it/valenzano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:086019",
          "name": "Valguarnera Caropepe",
          "country_code": "IT",
          "slug": "valguarnera-caropepe",
          "canonical_path": "/cities/it/valguarnera-caropepe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021108",
          "name": "Valle Aurina",
          "country_code": "IT",
          "slug": "valle-aurina",
          "canonical_path": "/cities/it/valle-aurina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:008063",
          "name": "Vallecrosia",
          "country_code": "IT",
          "slug": "vallecrosia",
          "canonical_path": "/cities/it/vallecrosia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:041068",
          "name": "Vallefoglia",
          "country_code": "IT",
          "slug": "vallefoglia",
          "canonical_path": "/cities/it/vallefoglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:022248",
          "name": "Vallelaghi",
          "country_code": "IT",
          "slug": "vallelaghi",
          "canonical_path": "/cities/it/vallelaghi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065154",
          "name": "Vallo della Lucania",
          "country_code": "IT",
          "slug": "vallo-della-lucania",
          "canonical_path": "/cities/it/vallo-della-lucania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097083",
          "name": "Valmadrera",
          "country_code": "IT",
          "slug": "valmadrera",
          "canonical_path": "/cities/it/valmadrera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058110",
          "name": "Valmontone",
          "country_code": "IT",
          "slug": "valmontone",
          "canonical_path": "/cities/it/valmontone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037061",
          "name": "Valsamoggia",
          "country_code": "IT",
          "slug": "valsamoggia",
          "canonical_path": "/cities/it/valsamoggia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087052",
          "name": "Valverde",
          "country_code": "IT",
          "slug": "valverde",
          "canonical_path": "/cities/it/valverde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015249",
          "name": "Vanzaghello",
          "country_code": "IT",
          "slug": "vanzaghello",
          "canonical_path": "/cities/it/vanzaghello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015229",
          "name": "Vanzago",
          "country_code": "IT",
          "slug": "vanzago",
          "canonical_path": "/cities/it/vanzago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015230",
          "name": "Vaprio d'Adda",
          "country_code": "IT",
          "slug": "vaprio-d-adda",
          "canonical_path": "/cities/it/vaprio-d-adda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:002156",
          "name": "Varallo",
          "country_code": "IT",
          "slug": "varallo",
          "canonical_path": "/cities/it/varallo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:003154",
          "name": "Varallo Pombia",
          "country_code": "IT",
          "slug": "varallo-pombia",
          "canonical_path": "/cities/it/varallo-pombia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:009065",
          "name": "Varazze",
          "country_code": "IT",
          "slug": "varazze",
          "canonical_path": "/cities/it/varazze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108045",
          "name": "Varedo",
          "country_code": "IT",
          "slug": "varedo",
          "canonical_path": "/cities/it/varedo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012133",
          "name": "Varese",
          "country_code": "IT",
          "slug": "varese",
          "canonical_path": "/cities/it/varese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021111",
          "name": "Varna",
          "country_code": "IT",
          "slug": "varna",
          "canonical_path": "/cities/it/varna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:069099",
          "name": "Vasto",
          "country_code": "IT",
          "slug": "vasto",
          "canonical_path": "/cities/it/vasto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026088",
          "name": "Vazzola",
          "country_code": "IT",
          "slug": "vazzola",
          "canonical_path": "/cities/it/vazzola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050037",
          "name": "Vecchiano",
          "country_code": "IT",
          "slug": "vecchiano",
          "canonical_path": "/cities/it/vecchiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108046",
          "name": "Vedano al Lambro",
          "country_code": "IT",
          "slug": "vedano-al-lambro",
          "canonical_path": "/cities/it/vedano-al-lambro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012134",
          "name": "Vedano Olona",
          "country_code": "IT",
          "slug": "vedano-olona",
          "canonical_path": "/cities/it/vedano-olona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026089",
          "name": "Vedelago",
          "country_code": "IT",
          "slug": "vedelago",
          "canonical_path": "/cities/it/vedelago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075092",
          "name": "Veglie",
          "country_code": "IT",
          "slug": "veglie",
          "canonical_path": "/cities/it/veglie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058111",
          "name": "Velletri",
          "country_code": "IT",
          "slug": "velletri",
          "canonical_path": "/cities/it/velletri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:094052",
          "name": "Venafro",
          "country_code": "IT",
          "slug": "venafro",
          "canonical_path": "/cities/it/venafro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001292",
          "name": "Venaria Reale",
          "country_code": "IT",
          "slug": "venaria-reale",
          "canonical_path": "/cities/it/venaria-reale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012136",
          "name": "Venegono Inferiore",
          "country_code": "IT",
          "slug": "venegono-inferiore",
          "canonical_path": "/cities/it/venegono-inferiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012137",
          "name": "Venegono Superiore",
          "country_code": "IT",
          "slug": "venegono-superiore",
          "canonical_path": "/cities/it/venegono-superiore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027042",
          "name": "Venezia",
          "country_code": "IT",
          "slug": "venezia",
          "canonical_path": "/cities/it/venezia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:076095",
          "name": "Venosa",
          "country_code": "IT",
          "slug": "venosa",
          "canonical_path": "/cities/it/venosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:008065",
          "name": "Ventimiglia",
          "country_code": "IT",
          "slug": "ventimiglia",
          "canonical_path": "/cities/it/ventimiglia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108048",
          "name": "Verano Brianza",
          "country_code": "IT",
          "slug": "verano-brianza",
          "canonical_path": "/cities/it/verano-brianza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:103072",
          "name": "Verbania",
          "country_code": "IT",
          "slug": "verbania",
          "canonical_path": "/cities/it/verbania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:002158",
          "name": "Vercelli",
          "country_code": "IT",
          "slug": "vercelli",
          "canonical_path": "/cities/it/vercelli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016232",
          "name": "Verdellino",
          "country_code": "IT",
          "slug": "verdellino",
          "canonical_path": "/cities/it/verdellino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016233",
          "name": "Verdello",
          "country_code": "IT",
          "slug": "verdello",
          "canonical_path": "/cities/it/verdello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:097091",
          "name": "Verderio",
          "country_code": "IT",
          "slug": "verderio",
          "canonical_path": "/cities/it/verderio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037059",
          "name": "Vergato",
          "country_code": "IT",
          "slug": "vergato",
          "canonical_path": "/cities/it/vergato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012138",
          "name": "Vergiate",
          "country_code": "IT",
          "slug": "vergiate",
          "canonical_path": "/cities/it/vergiate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015251",
          "name": "Vermezzo con Zelo",
          "country_code": "IT",
          "slug": "vermezzo-con-zelo",
          "canonical_path": "/cities/it/vermezzo-con-zelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:100007",
          "name": "Vernio",
          "country_code": "IT",
          "slug": "vernio",
          "canonical_path": "/cities/it/vernio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:075093",
          "name": "Vernole",
          "country_code": "IT",
          "slug": "vernole",
          "canonical_path": "/cities/it/vernole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017195",
          "name": "Verolanuova",
          "country_code": "IT",
          "slug": "verolanuova",
          "canonical_path": "/cities/it/verolanuova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:060085",
          "name": "Veroli",
          "country_code": "IT",
          "slug": "veroli",
          "canonical_path": "/cities/it/veroli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023091",
          "name": "Verona",
          "country_code": "IT",
          "slug": "verona",
          "canonical_path": "/cities/it/verona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023092",
          "name": "Veronella",
          "country_code": "IT",
          "slug": "veronella",
          "canonical_path": "/cities/it/veronella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:099020",
          "name": "Verucchio",
          "country_code": "IT",
          "slug": "verucchio",
          "canonical_path": "/cities/it/verucchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004240",
          "name": "Verzuolo",
          "country_code": "IT",
          "slug": "verzuolo",
          "canonical_path": "/cities/it/verzuolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056057",
          "name": "Vetralla",
          "country_code": "IT",
          "slug": "vetralla",
          "canonical_path": "/cities/it/vetralla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:011031",
          "name": "Vezzano Ligure",
          "country_code": "IT",
          "slug": "vezzano-ligure",
          "canonical_path": "/cities/it/vezzano-ligure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020066",
          "name": "Viadana",
          "country_code": "IT",
          "slug": "viadana",
          "canonical_path": "/cities/it/viadana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087053",
          "name": "Viagrande",
          "country_code": "IT",
          "slug": "viagrande",
          "canonical_path": "/cities/it/viagrande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:046033",
          "name": "Viareggio",
          "country_code": "IT",
          "slug": "viareggio",
          "canonical_path": "/cities/it/viareggio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:102047",
          "name": "Vibo Valentia",
          "country_code": "IT",
          "slug": "vibo-valentia",
          "canonical_path": "/cities/it/vibo-valentia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048049",
          "name": "Vicchio",
          "country_code": "IT",
          "slug": "vicchio",
          "canonical_path": "/cities/it/vicchio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024116",
          "name": "Vicenza",
          "country_code": "IT",
          "slug": "vicenza",
          "canonical_path": "/cities/it/vicenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071059",
          "name": "Vico del Gargano",
          "country_code": "IT",
          "slug": "vico-del-gargano",
          "canonical_path": "/cities/it/vico-del-gargano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063086",
          "name": "Vico Equense",
          "country_code": "IT",
          "slug": "vico-equense",
          "canonical_path": "/cities/it/vico-equense/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050038",
          "name": "Vicopisano",
          "country_code": "IT",
          "slug": "vicopisano",
          "canonical_path": "/cities/it/vicopisano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018176",
          "name": "Vidigulfo",
          "country_code": "IT",
          "slug": "vidigulfo",
          "canonical_path": "/cities/it/vidigulfo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:071060",
          "name": "Vieste",
          "country_code": "IT",
          "slug": "vieste",
          "canonical_path": "/cities/it/vieste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:065157",
          "name": "Vietri sul Mare",
          "country_code": "IT",
          "slug": "vietri-sul-mare",
          "canonical_path": "/cities/it/vietri-sul-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:038022",
          "name": "Vigarano Mainarda",
          "country_code": "IT",
          "slug": "vigarano-mainarda",
          "canonical_path": "/cities/it/vigarano-mainarda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023094",
          "name": "Vigasio",
          "country_code": "IT",
          "slug": "vigasio",
          "canonical_path": "/cities/it/vigasio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018177",
          "name": "Vigevano",
          "country_code": "IT",
          "slug": "vigevano",
          "canonical_path": "/cities/it/vigevano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:012139",
          "name": "Viggiù",
          "country_code": "IT",
          "slug": "viggiu",
          "canonical_path": "/cities/it/viggiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:096077",
          "name": "Vigliano Biellese",
          "country_code": "IT",
          "slug": "vigliano-biellese",
          "canonical_path": "/cities/it/vigliano-biellese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015237",
          "name": "Vignate",
          "country_code": "IT",
          "slug": "vignate",
          "canonical_path": "/cities/it/vignate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:036046",
          "name": "Vignola",
          "country_code": "IT",
          "slug": "vignola",
          "canonical_path": "/cities/it/vignola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028099",
          "name": "Vigodarzere",
          "country_code": "IT",
          "slug": "vigodarzere",
          "canonical_path": "/cities/it/vigodarzere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001299",
          "name": "Vigone",
          "country_code": "IT",
          "slug": "vigone",
          "canonical_path": "/cities/it/vigone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:027043",
          "name": "Vigonovo",
          "country_code": "IT",
          "slug": "vigonovo",
          "canonical_path": "/cities/it/vigonovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028100",
          "name": "Vigonza",
          "country_code": "IT",
          "slug": "vigonza",
          "canonical_path": "/cities/it/vigonza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023095",
          "name": "Villa Bartolomea",
          "country_code": "IT",
          "slug": "villa-bartolomea",
          "canonical_path": "/cities/it/villa-bartolomea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017199",
          "name": "Villa Carcina",
          "country_code": "IT",
          "slug": "villa-carcina",
          "canonical_path": "/cities/it/villa-carcina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:074020",
          "name": "Villa Castelli",
          "country_code": "IT",
          "slug": "villa-castelli",
          "canonical_path": "/cities/it/villa-castelli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015248",
          "name": "Villa Cortese",
          "country_code": "IT",
          "slug": "villa-cortese",
          "canonical_path": "/cities/it/villa-cortese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016239",
          "name": "Villa d'Almè",
          "country_code": "IT",
          "slug": "villa-d-alme",
          "canonical_path": "/cities/it/villa-d-alme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028101",
          "name": "Villa del Conte",
          "country_code": "IT",
          "slug": "villa-del-conte",
          "canonical_path": "/cities/it/villa-del-conte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061098",
          "name": "Villa di Briano",
          "country_code": "IT",
          "slug": "villa-di-briano",
          "canonical_path": "/cities/it/villa-di-briano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016240",
          "name": "Villa di Serio",
          "country_code": "IT",
          "slug": "villa-di-serio",
          "canonical_path": "/cities/it/villa-di-serio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:013245",
          "name": "Villa Guardia",
          "country_code": "IT",
          "slug": "villa-guardia",
          "canonical_path": "/cities/it/villa-guardia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061099",
          "name": "Villa Literno",
          "country_code": "IT",
          "slug": "villa-literno",
          "canonical_path": "/cities/it/villa-literno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:080096",
          "name": "Villa San Giovanni",
          "country_code": "IT",
          "slug": "villa-san-giovanni",
          "canonical_path": "/cities/it/villa-san-giovanni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:082079",
          "name": "Villabate",
          "country_code": "IT",
          "slug": "villabate",
          "canonical_path": "/cities/it/villabate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:117025",
          "name": "Villacidro",
          "country_code": "IT",
          "slug": "villacidro",
          "canonical_path": "/cities/it/villacidro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:3164254",
          "name": "Villadose",
          "country_code": "IT",
          "slug": "villadose",
          "canonical_path": "/cities/it/villadose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:103075",
          "name": "Villadossola",
          "country_code": "IT",
          "slug": "villadossola",
          "canonical_path": "/cities/it/villadossola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023096",
          "name": "Villafranca di Verona",
          "country_code": "IT",
          "slug": "villafranca-di-verona",
          "canonical_path": "/cities/it/villafranca-di-verona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028103",
          "name": "Villafranca Padovana",
          "country_code": "IT",
          "slug": "villafranca-padovana",
          "canonical_path": "/cities/it/villafranca-padovana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:083105",
          "name": "Villafranca Tirrena",
          "country_code": "IT",
          "slug": "villafranca-tirrena",
          "canonical_path": "/cities/it/villafranca-tirrena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:geonames:8394394",
          "name": "Villalba",
          "country_code": "IT",
          "slug": "villalba",
          "canonical_path": "/cities/it/villalba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:005118",
          "name": "Villanova d'Asti",
          "country_code": "IT",
          "slug": "villanova-d-asti",
          "canonical_path": "/cities/it/villanova-d-asti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:028104",
          "name": "Villanova di Camposampiero",
          "country_code": "IT",
          "slug": "villanova-di-camposampiero",
          "canonical_path": "/cities/it/villanova-di-camposampiero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:004245",
          "name": "Villanova Mondovì",
          "country_code": "IT",
          "slug": "villanova-mondovi",
          "canonical_path": "/cities/it/villanova-mondovi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017201",
          "name": "Villanuova sul Clisi",
          "country_code": "IT",
          "slug": "villanuova-sul-clisi",
          "canonical_path": "/cities/it/villanuova-sul-clisi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:078154",
          "name": "Villapiana",
          "country_code": "IT",
          "slug": "villapiana",
          "canonical_path": "/cities/it/villapiana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063087",
          "name": "Villaricca",
          "country_code": "IT",
          "slug": "villaricca",
          "canonical_path": "/cities/it/villaricca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108049",
          "name": "Villasanta",
          "country_code": "IT",
          "slug": "villasanta",
          "canonical_path": "/cities/it/villasanta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:118071",
          "name": "Villasor",
          "country_code": "IT",
          "slug": "villasor",
          "canonical_path": "/cities/it/villasor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024118",
          "name": "Villaverla",
          "country_code": "IT",
          "slug": "villaverla",
          "canonical_path": "/cities/it/villaverla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016242",
          "name": "Villongo",
          "country_code": "IT",
          "slug": "villongo",
          "canonical_path": "/cities/it/villongo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026091",
          "name": "Villorba",
          "country_code": "IT",
          "slug": "villorba",
          "canonical_path": "/cities/it/villorba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:108050",
          "name": "Vimercate",
          "country_code": "IT",
          "slug": "vimercate",
          "canonical_path": "/cities/it/vimercate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015242",
          "name": "Vimodrone",
          "country_code": "IT",
          "slug": "vimodrone",
          "canonical_path": "/cities/it/vimodrone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:048050",
          "name": "Vinci",
          "country_code": "IT",
          "slug": "vinci",
          "canonical_path": "/cities/it/vinci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001309",
          "name": "Vinovo",
          "country_code": "IT",
          "slug": "vinovo",
          "canonical_path": "/cities/it/vinovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:021115",
          "name": "Vipiteno",
          "country_code": "IT",
          "slug": "vipiteno",
          "canonical_path": "/cities/it/vipiteno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056059",
          "name": "Viterbo",
          "country_code": "IT",
          "slug": "viterbo",
          "canonical_path": "/cities/it/viterbo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:056060",
          "name": "Vitorchiano",
          "country_code": "IT",
          "slug": "vitorchiano",
          "canonical_path": "/cities/it/vitorchiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:088012",
          "name": "Vittoria",
          "country_code": "IT",
          "slug": "vittoria",
          "canonical_path": "/cities/it/vittoria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026092",
          "name": "Vittorio Veneto",
          "country_code": "IT",
          "slug": "vittorio-veneto",
          "canonical_path": "/cities/it/vittorio-veneto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015243",
          "name": "Vittuone",
          "country_code": "IT",
          "slug": "vittuone",
          "canonical_path": "/cities/it/vittuone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:061100",
          "name": "Vitulazio",
          "country_code": "IT",
          "slug": "vitulazio",
          "canonical_path": "/cities/it/vitulazio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087054",
          "name": "Vizzini",
          "country_code": "IT",
          "slug": "vizzini",
          "canonical_path": "/cities/it/vizzini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:017204",
          "name": "Vobarno",
          "country_code": "IT",
          "slug": "vobarno",
          "canonical_path": "/cities/it/vobarno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:018182",
          "name": "Voghera",
          "country_code": "IT",
          "slug": "voghera",
          "canonical_path": "/cities/it/voghera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:063089",
          "name": "Volla",
          "country_code": "IT",
          "slug": "volla",
          "canonical_path": "/cities/it/volla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026093",
          "name": "Volpago del Montello",
          "country_code": "IT",
          "slug": "volpago-del-montello",
          "canonical_path": "/cities/it/volpago-del-montello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001314",
          "name": "Volpiano",
          "country_code": "IT",
          "slug": "volpiano",
          "canonical_path": "/cities/it/volpiano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:020070",
          "name": "Volta Mantovana",
          "country_code": "IT",
          "slug": "volta-mantovana",
          "canonical_path": "/cities/it/volta-mantovana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:050039",
          "name": "Volterra",
          "country_code": "IT",
          "slug": "volterra",
          "canonical_path": "/cities/it/volterra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:001315",
          "name": "Volvera",
          "country_code": "IT",
          "slug": "volvera",
          "canonical_path": "/cities/it/volvera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:087055",
          "name": "Zafferana Etnea",
          "country_code": "IT",
          "slug": "zafferana-etnea",
          "canonical_path": "/cities/it/zafferana-etnea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:058114",
          "name": "Zagarolo",
          "country_code": "IT",
          "slug": "zagarolo",
          "canonical_path": "/cities/it/zagarolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024119",
          "name": "Zanè",
          "country_code": "IT",
          "slug": "zane",
          "canonical_path": "/cities/it/zane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016245",
          "name": "Zanica",
          "country_code": "IT",
          "slug": "zanica",
          "canonical_path": "/cities/it/zanica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:098061",
          "name": "Zelo Buon Persico",
          "country_code": "IT",
          "slug": "zelo-buon-persico",
          "canonical_path": "/cities/it/zelo-buon-persico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:026095",
          "name": "Zero Branco",
          "country_code": "IT",
          "slug": "zero-branco",
          "canonical_path": "/cities/it/zero-branco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:023097",
          "name": "Zevio",
          "country_code": "IT",
          "slug": "zevio",
          "canonical_path": "/cities/it/zevio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:015247",
          "name": "Zibido San Giacomo",
          "country_code": "IT",
          "slug": "zibido-san-giacomo",
          "canonical_path": "/cities/it/zibido-san-giacomo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:016246",
          "name": "Zogno",
          "country_code": "IT",
          "slug": "zogno",
          "canonical_path": "/cities/it/zogno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:037060",
          "name": "Zola Predosa",
          "country_code": "IT",
          "slug": "zola-predosa",
          "canonical_path": "/cities/it/zola-predosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:093051",
          "name": "Zoppola",
          "country_code": "IT",
          "slug": "zoppola",
          "canonical_path": "/cities/it/zoppola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:it:istat6:024122",
          "name": "Zugliano",
          "country_code": "IT",
          "slug": "zugliano",
          "canonical_path": "/cities/it/zugliano/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "JP",
      "path": "cities/jp.json",
      "city_count": 2497,
      "cities": [
        {
          "entity_id": "city:jp:geonames:2130741",
          "name": "Abashiri",
          "country_code": "JP",
          "slug": "abashiri",
          "canonical_path": "/cities/jp/abashiri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2113164",
          "name": "Abiko",
          "country_code": "JP",
          "slug": "abiko",
          "canonical_path": "/cities/jp/abiko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130732",
          "name": "Abira",
          "country_code": "JP",
          "slug": "abira",
          "canonical_path": "/cities/jp/abira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11837950",
          "name": "Agano",
          "country_code": "JP",
          "slug": "agano",
          "canonical_path": "/cities/jp/agano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865714",
          "name": "Ageo",
          "country_code": "JP",
          "slug": "ageo",
          "canonical_path": "/cities/jp/ageo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865661",
          "name": "Aioi",
          "country_code": "JP",
          "slug": "aioi",
          "canonical_path": "/cities/jp/aioi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611646",
          "name": "Aira",
          "country_code": "JP",
          "slug": "aira",
          "canonical_path": "/cities/jp/aira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822212",
          "name": "Aisai",
          "country_code": "JP",
          "slug": "aisai",
          "canonical_path": "/cities/jp/aisai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:7451505",
          "name": "Aizu-misato Machi",
          "country_code": "JP",
          "slug": "aizu-misato-machi",
          "canonical_path": "/cities/jp/aizu-misato-machi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822148",
          "name": "Aizu-Wakamatsu",
          "country_code": "JP",
          "slug": "aizu-wakamatsu",
          "canonical_path": "/cities/jp/aizu-wakamatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130708",
          "name": "Ajigasawa",
          "country_code": "JP",
          "slug": "ajigasawa",
          "canonical_path": "/cities/jp/ajigasawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2113149",
          "name": "Ajiki",
          "country_code": "JP",
          "slug": "ajiki",
          "canonical_path": "/cities/jp/ajiki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130705",
          "name": "Akabira",
          "country_code": "JP",
          "slug": "akabira",
          "canonical_path": "/cities/jp/akabira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612564",
          "name": "Akaiwa",
          "country_code": "JP",
          "slug": "akaiwa-31-7405227",
          "canonical_path": "/cities/jp/akaiwa-31-7405227/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865559",
          "name": "Akaiwa",
          "country_code": "JP",
          "slug": "akaiwa",
          "canonical_path": "/cities/jp/akaiwa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1847966",
          "name": "Akashi",
          "country_code": "JP",
          "slug": "akashi",
          "canonical_path": "/cities/jp/akashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865449",
          "name": "Aki",
          "country_code": "JP",
          "slug": "aki",
          "canonical_path": "/cities/jp/aki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612331",
          "name": "Aki-takata",
          "country_code": "JP",
          "slug": "aki-takata",
          "canonical_path": "/cities/jp/aki-takata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612343",
          "name": "Akiruno",
          "country_code": "JP",
          "slug": "akiruno",
          "canonical_path": "/cities/jp/akiruno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822132",
          "name": "Akishima",
          "country_code": "JP",
          "slug": "akishima",
          "canonical_path": "/cities/jp/akishima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2113126",
          "name": "Akita",
          "country_code": "JP",
          "slug": "akita",
          "canonical_path": "/cities/jp/akita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130677",
          "name": "Akkeshi",
          "country_code": "JP",
          "slug": "akkeshi",
          "canonical_path": "/cities/jp/akkeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865401",
          "name": "Akune",
          "country_code": "JP",
          "slug": "akune",
          "canonical_path": "/cities/jp/akune/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611659",
          "name": "Ama",
          "country_code": "JP",
          "slug": "ama",
          "canonical_path": "/cities/jp/ama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865387",
          "name": "Amagasaki",
          "country_code": "JP",
          "slug": "amagasaki",
          "canonical_path": "/cities/jp/amagasaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865376",
          "name": "Amagi",
          "country_code": "JP",
          "slug": "amagi-18-1853737",
          "canonical_path": "/cities/jp/amagi-18-1853737/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11777305",
          "name": "Amaji",
          "country_code": "JP",
          "slug": "amaji",
          "canonical_path": "/cities/jp/amaji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:7424125",
          "name": "Amakusa",
          "country_code": "JP",
          "slug": "amakusa",
          "canonical_path": "/cities/jp/amakusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:7303145",
          "name": "Amami",
          "country_code": "JP",
          "slug": "amami",
          "canonical_path": "/cities/jp/amami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2113115",
          "name": "Ami",
          "country_code": "JP",
          "slug": "ami",
          "canonical_path": "/cities/jp/ami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865312",
          "name": "Anamizu",
          "country_code": "JP",
          "slug": "anamizu",
          "canonical_path": "/cities/jp/anamizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865309",
          "name": "Anan",
          "country_code": "JP",
          "slug": "anan",
          "canonical_path": "/cities/jp/anan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865294",
          "name": "Anjō",
          "country_code": "JP",
          "slug": "anjo",
          "canonical_path": "/cities/jp/anjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865290",
          "name": "Annaka",
          "country_code": "JP",
          "slug": "annaka",
          "canonical_path": "/cities/jp/annaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10987894",
          "name": "Aoi",
          "country_code": "JP",
          "slug": "aoi",
          "canonical_path": "/cities/jp/aoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130658",
          "name": "Aomori",
          "country_code": "JP",
          "slug": "aomori",
          "canonical_path": "/cities/jp/aomori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11274040",
          "name": "Arao",
          "country_code": "JP",
          "slug": "arao",
          "canonical_path": "/cities/jp/arao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611643",
          "name": "Arida",
          "country_code": "JP",
          "slug": "arida",
          "canonical_path": "/cities/jp/arida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865103",
          "name": "Arita",
          "country_code": "JP",
          "slug": "arita",
          "canonical_path": "/cities/jp/arita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865090",
          "name": "Asagaya-minami",
          "country_code": "JP",
          "slug": "asagaya-minami",
          "canonical_path": "/cities/jp/asagaya-minami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156698",
          "name": "Asahi",
          "country_code": "JP",
          "slug": "asahi-23-1857355",
          "canonical_path": "/cities/jp/asahi-23-1857355/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13665338",
          "name": "Asahi",
          "country_code": "JP",
          "slug": "asahi-42-1852239",
          "canonical_path": "/cities/jp/asahi-42-1852239/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2113077",
          "name": "Asahi",
          "country_code": "JP",
          "slug": "asahi",
          "canonical_path": "/cities/jp/asahi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130629",
          "name": "Asahikawa",
          "country_code": "JP",
          "slug": "asahikawa",
          "canonical_path": "/cities/jp/asahikawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1907299",
          "name": "Asaka",
          "country_code": "JP",
          "slug": "asaka",
          "canonical_path": "/cities/jp/asaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2113068",
          "name": "Asakawa",
          "country_code": "JP",
          "slug": "asakawa",
          "canonical_path": "/cities/jp/asakawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612694",
          "name": "Asakuchi",
          "country_code": "JP",
          "slug": "asakuchi",
          "canonical_path": "/cities/jp/asakuchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612701",
          "name": "Asakura",
          "country_code": "JP",
          "slug": "asakura",
          "canonical_path": "/cities/jp/asakura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130612",
          "name": "Ashibetsu",
          "country_code": "JP",
          "slug": "ashibetsu",
          "canonical_path": "/cities/jp/ashibetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1865005",
          "name": "Ashikaga",
          "country_code": "JP",
          "slug": "ashikaga",
          "canonical_path": "/cities/jp/ashikaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864985",
          "name": "Ashiya",
          "country_code": "JP",
          "slug": "ashiya",
          "canonical_path": "/cities/jp/ashiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864986",
          "name": "Ashiya",
          "country_code": "JP",
          "slug": "ashiya-07-1854055",
          "canonical_path": "/cities/jp/ashiya-07-1854055/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130603",
          "name": "Ashoro",
          "country_code": "JP",
          "slug": "ashoro",
          "canonical_path": "/cities/jp/ashoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6324583",
          "name": "Aso",
          "country_code": "JP",
          "slug": "aso",
          "canonical_path": "/cities/jp/aso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864967",
          "name": "Asuka",
          "country_code": "JP",
          "slug": "asuka",
          "canonical_path": "/cities/jp/asuka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864945",
          "name": "Atami",
          "country_code": "JP",
          "slug": "atami",
          "canonical_path": "/cities/jp/atami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1847963",
          "name": "Atsugi",
          "country_code": "JP",
          "slug": "atsugi",
          "canonical_path": "/cities/jp/atsugi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612333",
          "name": "Awa",
          "country_code": "JP",
          "slug": "awa",
          "canonical_path": "/cities/jp/awa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612338",
          "name": "Awaji",
          "country_code": "JP",
          "slug": "awaji",
          "canonical_path": "/cities/jp/awaji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864894",
          "name": "Awara",
          "country_code": "JP",
          "slug": "awara",
          "canonical_path": "/cities/jp/awara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864874",
          "name": "Aya",
          "country_code": "JP",
          "slug": "aya",
          "canonical_path": "/cities/jp/aya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864873",
          "name": "Ayabe",
          "country_code": "JP",
          "slug": "ayabe",
          "canonical_path": "/cities/jp/ayabe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611642",
          "name": "Ayase",
          "country_code": "JP",
          "slug": "ayase",
          "canonical_path": "/cities/jp/ayase/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10865290",
          "name": "Azabu-jūban",
          "country_code": "JP",
          "slug": "azabu-juban",
          "canonical_path": "/cities/jp/azabu-juban/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822111",
          "name": "Azumino",
          "country_code": "JP",
          "slug": "azumino",
          "canonical_path": "/cities/jp/azumino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822106",
          "name": "Bandō",
          "country_code": "JP",
          "slug": "bando",
          "canonical_path": "/cities/jp/bando/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10913431",
          "name": "Baraki",
          "country_code": "JP",
          "slug": "baraki",
          "canonical_path": "/cities/jp/baraki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864750",
          "name": "Beppu",
          "country_code": "JP",
          "slug": "beppu",
          "canonical_path": "/cities/jp/beppu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130534",
          "name": "Bibai",
          "country_code": "JP",
          "slug": "bibai",
          "canonical_path": "/cities/jp/bibai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130531",
          "name": "Biei",
          "country_code": "JP",
          "slug": "biei",
          "canonical_path": "/cities/jp/biei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130518",
          "name": "Biratori",
          "country_code": "JP",
          "slug": "biratori",
          "canonical_path": "/cities/jp/biratori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611946",
          "name": "Bizen",
          "country_code": "JP",
          "slug": "bizen",
          "canonical_path": "/cities/jp/bizen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851170",
          "name": "Bungo-Takada-shi",
          "country_code": "JP",
          "slug": "bungo-takada-shi",
          "canonical_path": "/cities/jp/bungo-takada-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8198709",
          "name": "Buzen",
          "country_code": "JP",
          "slug": "buzen",
          "canonical_path": "/cities/jp/buzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864655",
          "name": "Chabana",
          "country_code": "JP",
          "slug": "chabana",
          "canonical_path": "/cities/jp/chabana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864652",
          "name": "Chatan",
          "country_code": "JP",
          "slug": "chatan",
          "canonical_path": "/cities/jp/chatan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2113015",
          "name": "Chiba",
          "country_code": "JP",
          "slug": "chiba",
          "canonical_path": "/cities/jp/chiba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864637",
          "name": "Chichibu",
          "country_code": "JP",
          "slug": "chichibu",
          "canonical_path": "/cities/jp/chichibu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864624",
          "name": "Chigasaki",
          "country_code": "JP",
          "slug": "chigasaki",
          "canonical_path": "/cities/jp/chigasaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611638",
          "name": "Chikugo",
          "country_code": "JP",
          "slug": "chikugo",
          "canonical_path": "/cities/jp/chikugo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822112",
          "name": "Chikuma",
          "country_code": "JP",
          "slug": "chikuma",
          "canonical_path": "/cities/jp/chikuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822097",
          "name": "Chikusei",
          "country_code": "JP",
          "slug": "chikusei",
          "canonical_path": "/cities/jp/chikusei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864572",
          "name": "Chikushino-shi",
          "country_code": "JP",
          "slug": "chikushino-shi",
          "canonical_path": "/cities/jp/chikushino-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864565",
          "name": "China",
          "country_code": "JP",
          "slug": "china",
          "canonical_path": "/cities/jp/china/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864557",
          "name": "Chino",
          "country_code": "JP",
          "slug": "chino",
          "canonical_path": "/cities/jp/chino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864549",
          "name": "Chiryū",
          "country_code": "JP",
          "slug": "chiryu",
          "canonical_path": "/cities/jp/chiryu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822211",
          "name": "Chita",
          "country_code": "JP",
          "slug": "chita",
          "canonical_path": "/cities/jp/chita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130452",
          "name": "Chitose",
          "country_code": "JP",
          "slug": "chitose",
          "canonical_path": "/cities/jp/chitose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864523",
          "name": "Chizu",
          "country_code": "JP",
          "slug": "chizu",
          "canonical_path": "/cities/jp/chizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864518",
          "name": "Chōfu",
          "country_code": "JP",
          "slug": "chofu",
          "canonical_path": "/cities/jp/chofu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2113001",
          "name": "Chōnan",
          "country_code": "JP",
          "slug": "chonan",
          "canonical_path": "/cities/jp/chonan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112996",
          "name": "Choshi",
          "country_code": "JP",
          "slug": "choshi",
          "canonical_path": "/cities/jp/choshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13353695",
          "name": "Chūō",
          "country_code": "JP",
          "slug": "chuo-40-1864487",
          "canonical_path": "/cities/jp/chuo-40-1864487/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112989",
          "name": "Daigo",
          "country_code": "JP",
          "slug": "daigo",
          "canonical_path": "/cities/jp/daigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822199",
          "name": "Daisen",
          "country_code": "JP",
          "slug": "daisen",
          "canonical_path": "/cities/jp/daisen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864416",
          "name": "Daitō",
          "country_code": "JP",
          "slug": "daito",
          "canonical_path": "/cities/jp/daito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112980",
          "name": "Date",
          "country_code": "JP",
          "slug": "date",
          "canonical_path": "/cities/jp/date/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130421",
          "name": "Date",
          "country_code": "JP",
          "slug": "date-12-2130419",
          "canonical_path": "/cities/jp/date-12-2130419/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012335",
          "name": "dateshi",
          "country_code": "JP",
          "slug": "dateshi-012335",
          "canonical_path": "/cities/jp/dateshi-012335/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072133",
          "name": "dateshi",
          "country_code": "JP",
          "slug": "dateshi-072133",
          "canonical_path": "/cities/jp/dateshi-072133/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:7422816",
          "name": "Dazaifu",
          "country_code": "JP",
          "slug": "dazaifu",
          "canonical_path": "/cities/jp/dazaifu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864381",
          "name": "Den’enchōfu",
          "country_code": "JP",
          "slug": "den-enchofu",
          "canonical_path": "/cities/jp/den-enchofu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8576482",
          "name": "Ebara",
          "country_code": "JP",
          "slug": "ebara",
          "canonical_path": "/cities/jp/ebara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130404",
          "name": "Ebetsu",
          "country_code": "JP",
          "slug": "ebetsu",
          "canonical_path": "/cities/jp/ebetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822128",
          "name": "Ebina",
          "country_code": "JP",
          "slug": "ebina",
          "canonical_path": "/cities/jp/ebina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611943",
          "name": "Ebino",
          "country_code": "JP",
          "slug": "ebino",
          "canonical_path": "/cities/jp/ebino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822220",
          "name": "Ena",
          "country_code": "JP",
          "slug": "ena",
          "canonical_path": "/cities/jp/ena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11127679",
          "name": "Eniwa",
          "country_code": "JP",
          "slug": "eniwa",
          "canonical_path": "/cities/jp/eniwa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130364",
          "name": "Esashi",
          "country_code": "JP",
          "slug": "esashi",
          "canonical_path": "/cities/jp/esashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611950",
          "name": "Etajima",
          "country_code": "JP",
          "slug": "etajima",
          "canonical_path": "/cities/jp/etajima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864068",
          "name": "Etchūjima",
          "country_code": "JP",
          "slug": "etchujima",
          "canonical_path": "/cities/jp/etchujima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611632",
          "name": "Fuchū",
          "country_code": "JP",
          "slug": "fuchu",
          "canonical_path": "/cities/jp/fuchu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132063",
          "name": "fuchuushi",
          "country_code": "JP",
          "slug": "fuchuushi-132063",
          "canonical_path": "/cities/jp/fuchuushi-132063/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342084",
          "name": "fuchuushi",
          "country_code": "JP",
          "slug": "fuchuushi-342084",
          "canonical_path": "/cities/jp/fuchuushi-342084/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612588",
          "name": "Fuefuki",
          "country_code": "JP",
          "slug": "fuefuki",
          "canonical_path": "/cities/jp/fuefuki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864134",
          "name": "Fuji",
          "country_code": "JP",
          "slug": "fuji",
          "canonical_path": "/cities/jp/fuji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864132",
          "name": "Fujieda",
          "country_code": "JP",
          "slug": "fujieda",
          "canonical_path": "/cities/jp/fujieda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825495",
          "name": "Fujiidera",
          "country_code": "JP",
          "slug": "fujiidera",
          "canonical_path": "/cities/jp/fujiidera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:7281819",
          "name": "Fujikawaguchiko",
          "country_code": "JP",
          "slug": "fujikawaguchiko",
          "canonical_path": "/cities/jp/fujikawaguchiko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8604658",
          "name": "Fujimi",
          "country_code": "JP",
          "slug": "fujimi",
          "canonical_path": "/cities/jp/fujimi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822159",
          "name": "Fujimino",
          "country_code": "JP",
          "slug": "fujimino",
          "canonical_path": "/cities/jp/fujimino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864105",
          "name": "Fujinomiya",
          "country_code": "JP",
          "slug": "fujinomiya",
          "canonical_path": "/cities/jp/fujinomiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864099",
          "name": "Fujioka",
          "country_code": "JP",
          "slug": "fujioka-10-7453836",
          "canonical_path": "/cities/jp/fujioka-10-7453836/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130337",
          "name": "Fujisaki",
          "country_code": "JP",
          "slug": "fujisaki",
          "canonical_path": "/cities/jp/fujisaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864092",
          "name": "Fujisawa",
          "country_code": "JP",
          "slug": "fujisawa",
          "canonical_path": "/cities/jp/fujisawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10629856",
          "name": "Fujiyoshida",
          "country_code": "JP",
          "slug": "fujiyoshida",
          "canonical_path": "/cities/jp/fujiyoshida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130332",
          "name": "Fukagawa",
          "country_code": "JP",
          "slug": "fukagawa",
          "canonical_path": "/cities/jp/fukagawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2038800",
          "name": "Fukaura",
          "country_code": "JP",
          "slug": "fukaura",
          "canonical_path": "/cities/jp/fukaura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864009",
          "name": "Fukuchiyama",
          "country_code": "JP",
          "slug": "fukuchiyama",
          "canonical_path": "/cities/jp/fukuchiyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863997",
          "name": "Fukuechō",
          "country_code": "JP",
          "slug": "fukuecho",
          "canonical_path": "/cities/jp/fukuecho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863985",
          "name": "Fukui-shi",
          "country_code": "JP",
          "slug": "fukui-shi",
          "canonical_path": "/cities/jp/fukui-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863973",
          "name": "Fukumitsu",
          "country_code": "JP",
          "slug": "fukumitsu",
          "canonical_path": "/cities/jp/fukumitsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863967",
          "name": "Fukuoka",
          "country_code": "JP",
          "slug": "fukuoka",
          "canonical_path": "/cities/jp/fukuoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863945",
          "name": "Fukuroi",
          "country_code": "JP",
          "slug": "fukuroi",
          "canonical_path": "/cities/jp/fukuroi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112923",
          "name": "Fukushima",
          "country_code": "JP",
          "slug": "fukushima",
          "canonical_path": "/cities/jp/fukushima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612700",
          "name": "Fukutsu",
          "country_code": "JP",
          "slug": "fukutsu",
          "canonical_path": "/cities/jp/fukutsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863917",
          "name": "Fukuyama",
          "country_code": "JP",
          "slug": "fukuyama",
          "canonical_path": "/cities/jp/fukuyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112917",
          "name": "Funagata",
          "country_code": "JP",
          "slug": "funagata",
          "canonical_path": "/cities/jp/funagata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130306",
          "name": "Furano",
          "country_code": "JP",
          "slug": "furano",
          "canonical_path": "/cities/jp/furano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1907148",
          "name": "Fussa",
          "country_code": "JP",
          "slug": "fussa",
          "canonical_path": "/cities/jp/fussa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863713",
          "name": "Futtsu",
          "country_code": "JP",
          "slug": "futtsu",
          "canonical_path": "/cities/jp/futtsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863693",
          "name": "Gamagōri",
          "country_code": "JP",
          "slug": "gamagori",
          "canonical_path": "/cities/jp/gamagori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10985971",
          "name": "Gamō",
          "country_code": "JP",
          "slug": "gamo",
          "canonical_path": "/cities/jp/gamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848055",
          "name": "Gero",
          "country_code": "JP",
          "slug": "gero",
          "canonical_path": "/cities/jp/gero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863641",
          "name": "Gifu",
          "country_code": "JP",
          "slug": "gifu",
          "canonical_path": "/cities/jp/gifu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863627",
          "name": "Ginowan",
          "country_code": "JP",
          "slug": "ginowan",
          "canonical_path": "/cities/jp/ginowan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863625",
          "name": "Ginoza",
          "country_code": "JP",
          "slug": "ginoza",
          "canonical_path": "/cities/jp/ginoza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863614",
          "name": "Gobō",
          "country_code": "JP",
          "slug": "gobo",
          "canonical_path": "/cities/jp/gobo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863611",
          "name": "Gōdo",
          "country_code": "JP",
          "slug": "godo",
          "canonical_path": "/cities/jp/godo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863592",
          "name": "Gojō",
          "country_code": "JP",
          "slug": "gojo",
          "canonical_path": "/cities/jp/gojo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112860",
          "name": "Gojōnome",
          "country_code": "JP",
          "slug": "gojonome",
          "canonical_path": "/cities/jp/gojonome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863541",
          "name": "Gose",
          "country_code": "JP",
          "slug": "gose",
          "canonical_path": "/cities/jp/gose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863540",
          "name": "Gosen",
          "country_code": "JP",
          "slug": "gosen",
          "canonical_path": "/cities/jp/gosen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2131612",
          "name": "Goshogawara",
          "country_code": "JP",
          "slug": "goshogawara",
          "canonical_path": "/cities/jp/goshogawara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863528",
          "name": "Gotemba",
          "country_code": "JP",
          "slug": "gotemba",
          "canonical_path": "/cities/jp/gotemba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612559",
          "name": "Gotō",
          "country_code": "JP",
          "slug": "goto",
          "canonical_path": "/cities/jp/goto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863521",
          "name": "Gōtsuchō",
          "country_code": "JP",
          "slug": "gotsucho",
          "canonical_path": "/cities/jp/gotsucho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822219",
          "name": "Gujō",
          "country_code": "JP",
          "slug": "gujo",
          "canonical_path": "/cities/jp/gujo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863482",
          "name": "Gyōda",
          "country_code": "JP",
          "slug": "gyoda",
          "canonical_path": "/cities/jp/gyoda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825496",
          "name": "Habikino",
          "country_code": "JP",
          "slug": "habikino",
          "canonical_path": "/cities/jp/habikino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130215",
          "name": "Haboro",
          "country_code": "JP",
          "slug": "haboro",
          "canonical_path": "/cities/jp/haboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611619",
          "name": "Hachijō",
          "country_code": "JP",
          "slug": "hachijo",
          "canonical_path": "/cities/jp/hachijo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822186",
          "name": "Hachimantai",
          "country_code": "JP",
          "slug": "hachimantai",
          "canonical_path": "/cities/jp/hachimantai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130203",
          "name": "Hachinohe",
          "country_code": "JP",
          "slug": "hachinohe",
          "canonical_path": "/cities/jp/hachinohe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863440",
          "name": "Hachiōji",
          "country_code": "JP",
          "slug": "hachioji",
          "canonical_path": "/cities/jp/hachioji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863431",
          "name": "Hadano",
          "country_code": "JP",
          "slug": "hadano",
          "canonical_path": "/cities/jp/hadano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863418",
          "name": "Hagi",
          "country_code": "JP",
          "slug": "hagi",
          "canonical_path": "/cities/jp/hagi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130188",
          "name": "Hakodate",
          "country_code": "JP",
          "slug": "hakodate",
          "canonical_path": "/cities/jp/hakodate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863357",
          "name": "Hakone",
          "country_code": "JP",
          "slug": "hakone",
          "canonical_path": "/cities/jp/hakone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8630153",
          "name": "Hakuba",
          "country_code": "JP",
          "slug": "hakuba",
          "canonical_path": "/cities/jp/hakuba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863341",
          "name": "Hakui",
          "country_code": "JP",
          "slug": "hakui",
          "canonical_path": "/cities/jp/hakui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863310",
          "name": "Hamada",
          "country_code": "JP",
          "slug": "hamada",
          "canonical_path": "/cities/jp/hamada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863289",
          "name": "Hamamatsu",
          "country_code": "JP",
          "slug": "hamamatsu",
          "canonical_path": "/cities/jp/hamamatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112823",
          "name": "Hanamaki",
          "country_code": "JP",
          "slug": "hanamaki",
          "canonical_path": "/cities/jp/hanamaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112818",
          "name": "Hanawa",
          "country_code": "JP",
          "slug": "hanawa",
          "canonical_path": "/cities/jp/hanawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130146",
          "name": "Hanawa",
          "country_code": "JP",
          "slug": "hanawa-02-2129593",
          "canonical_path": "/cities/jp/hanawa-02-2129593/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863209",
          "name": "Handa",
          "country_code": "JP",
          "slug": "handa",
          "canonical_path": "/cities/jp/handa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825497",
          "name": "Hannan",
          "country_code": "JP",
          "slug": "hannan",
          "canonical_path": "/cities/jp/hannan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863183",
          "name": "Hannō",
          "country_code": "JP",
          "slug": "hanno",
          "canonical_path": "/cities/jp/hanno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863173",
          "name": "Hanyū",
          "country_code": "JP",
          "slug": "hanyu",
          "canonical_path": "/cities/jp/hanyu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112802",
          "name": "Hasaki",
          "country_code": "JP",
          "slug": "hasaki",
          "canonical_path": "/cities/jp/hasaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822214",
          "name": "Hashima",
          "country_code": "JP",
          "slug": "hashima",
          "canonical_path": "/cities/jp/hashima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863082",
          "name": "Hashimoto",
          "country_code": "JP",
          "slug": "hashimoto",
          "canonical_path": "/cities/jp/hashimoto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1907123",
          "name": "Hasuda",
          "country_code": "JP",
          "slug": "hasuda",
          "canonical_path": "/cities/jp/hasuda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863023",
          "name": "Hatogaya-honchō",
          "country_code": "JP",
          "slug": "hatogaya-honcho",
          "canonical_path": "/cities/jp/hatogaya-honcho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156709",
          "name": "Hatoyama",
          "country_code": "JP",
          "slug": "hatoyama",
          "canonical_path": "/cities/jp/hatoyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8573533",
          "name": "Hatsudai",
          "country_code": "JP",
          "slug": "hatsudai",
          "canonical_path": "/cities/jp/hatsudai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863018",
          "name": "Hatsukaichi",
          "country_code": "JP",
          "slug": "hatsukaichi",
          "canonical_path": "/cities/jp/hatsukaichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862992",
          "name": "Hayama",
          "country_code": "JP",
          "slug": "hayama",
          "canonical_path": "/cities/jp/hayama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862971",
          "name": "Hayashima",
          "country_code": "JP",
          "slug": "hayashima",
          "canonical_path": "/cities/jp/hayashima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8572884",
          "name": "Heiwadai",
          "country_code": "JP",
          "slug": "heiwadai",
          "canonical_path": "/cities/jp/heiwadai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862912",
          "name": "Hekinan",
          "country_code": "JP",
          "slug": "hekinan",
          "canonical_path": "/cities/jp/hekinan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10878299",
          "name": "Hibarigaoka",
          "country_code": "JP",
          "slug": "hibarigaoka",
          "canonical_path": "/cities/jp/hibarigaoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822161",
          "name": "Hidaka",
          "country_code": "JP",
          "slug": "hidaka",
          "canonical_path": "/cities/jp/hidaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822162",
          "name": "Higashi-Matsuyama",
          "country_code": "JP",
          "slug": "higashi-matsuyama",
          "canonical_path": "/cities/jp/higashi-matsuyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862761",
          "name": "Higashi-nihombashi",
          "country_code": "JP",
          "slug": "higashi-nihombashi",
          "canonical_path": "/cities/jp/higashi-nihombashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8572758",
          "name": "HIgashifushimi",
          "country_code": "JP",
          "slug": "higashifushimi",
          "canonical_path": "/cities/jp/higashifushimi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611627",
          "name": "Higashihiroshima",
          "country_code": "JP",
          "slug": "higashihiroshima",
          "canonical_path": "/cities/jp/higashihiroshima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612539",
          "name": "Higashikagawa",
          "country_code": "JP",
          "slug": "higashikagawa",
          "canonical_path": "/cities/jp/higashikagawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13132769",
          "name": "Higashikagura",
          "country_code": "JP",
          "slug": "higashikagura",
          "canonical_path": "/cities/jp/higashikagura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13132768",
          "name": "Higashikawa",
          "country_code": "JP",
          "slug": "higashikawa",
          "canonical_path": "/cities/jp/higashikawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611628",
          "name": "Higashikurume",
          "country_code": "JP",
          "slug": "higashikurume",
          "canonical_path": "/cities/jp/higashikurume/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822189",
          "name": "Higashimatsushima",
          "country_code": "JP",
          "slug": "higashimatsushima",
          "canonical_path": "/cities/jp/higashimatsushima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:7279570",
          "name": "Higashimurayama",
          "country_code": "JP",
          "slug": "higashimurayama",
          "canonical_path": "/cities/jp/higashimurayama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112758",
          "name": "Higashine",
          "country_code": "JP",
          "slug": "higashine",
          "canonical_path": "/cities/jp/higashine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854923",
          "name": "Higashinozoe",
          "country_code": "JP",
          "slug": "higashinozoe",
          "canonical_path": "/cities/jp/higashinozoe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862752",
          "name": "Higashiosaka",
          "country_code": "JP",
          "slug": "higashiosaka",
          "canonical_path": "/cities/jp/higashiosaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862689",
          "name": "Hiji",
          "country_code": "JP",
          "slug": "hiji",
          "canonical_path": "/cities/jp/hiji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1896348",
          "name": "Hikari",
          "country_code": "JP",
          "slug": "hikari",
          "canonical_path": "/cities/jp/hikari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8572885",
          "name": "Hikawadai",
          "country_code": "JP",
          "slug": "hikawadai",
          "canonical_path": "/cities/jp/hikawadai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862636",
          "name": "Hikone",
          "country_code": "JP",
          "slug": "hikone",
          "canonical_path": "/cities/jp/hikone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862627",
          "name": "Himeji",
          "country_code": "JP",
          "slug": "himeji",
          "canonical_path": "/cities/jp/himeji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611221",
          "name": "Himi",
          "country_code": "JP",
          "slug": "himi",
          "canonical_path": "/cities/jp/himi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862599",
          "name": "Hino",
          "country_code": "JP",
          "slug": "hino",
          "canonical_path": "/cities/jp/hino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862601",
          "name": "Hino",
          "country_code": "JP",
          "slug": "hino-35-1863686",
          "canonical_path": "/cities/jp/hino-35-1863686/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862555",
          "name": "Hirado",
          "country_code": "JP",
          "slug": "hirado",
          "canonical_path": "/cities/jp/hirado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862540",
          "name": "Hirakata",
          "country_code": "JP",
          "slug": "hirakata",
          "canonical_path": "/cities/jp/hirakata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822206",
          "name": "Hirakawa",
          "country_code": "JP",
          "slug": "hirakawa",
          "canonical_path": "/cities/jp/hirakawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129464",
          "name": "Hiranai",
          "country_code": "JP",
          "slug": "hiranai",
          "canonical_path": "/cities/jp/hiranai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862513",
          "name": "Hirao",
          "country_code": "JP",
          "slug": "hirao",
          "canonical_path": "/cities/jp/hirao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862505",
          "name": "Hirara",
          "country_code": "JP",
          "slug": "hirara",
          "canonical_path": "/cities/jp/hirara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862462",
          "name": "Hiratsuka",
          "country_code": "JP",
          "slug": "hiratsuka",
          "canonical_path": "/cities/jp/hiratsuka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130061",
          "name": "Hiroo",
          "country_code": "JP",
          "slug": "hiroo",
          "canonical_path": "/cities/jp/hiroo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130057",
          "name": "Hirosaki",
          "country_code": "JP",
          "slug": "hirosaki",
          "canonical_path": "/cities/jp/hirosaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862415",
          "name": "Hiroshima",
          "country_code": "JP",
          "slug": "hiroshima",
          "canonical_path": "/cities/jp/hiroshima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862373",
          "name": "Hita",
          "country_code": "JP",
          "slug": "hita",
          "canonical_path": "/cities/jp/hita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112708",
          "name": "Hitachi",
          "country_code": "JP",
          "slug": "hitachi",
          "canonical_path": "/cities/jp/hitachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822096",
          "name": "Hitachi-Naka",
          "country_code": "JP",
          "slug": "hitachi-naka",
          "canonical_path": "/cities/jp/hitachi-naka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822107",
          "name": "Hitachi-ota",
          "country_code": "JP",
          "slug": "hitachi-ota",
          "canonical_path": "/cities/jp/hitachi-ota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822102",
          "name": "Hitachiomiya",
          "country_code": "JP",
          "slug": "hitachiomiya",
          "canonical_path": "/cities/jp/hitachiomiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862352",
          "name": "Hitoyoshi",
          "country_code": "JP",
          "slug": "hitoyoshi",
          "canonical_path": "/cities/jp/hitoyoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156691",
          "name": "Hōdatsushimizu",
          "country_code": "JP",
          "slug": "hodatsushimizu",
          "canonical_path": "/cities/jp/hodatsushimizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862302",
          "name": "Hōfu",
          "country_code": "JP",
          "slug": "hofu",
          "canonical_path": "/cities/jp/hofu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1926142",
          "name": "Hōjō",
          "country_code": "JP",
          "slug": "hojo",
          "canonical_path": "/cities/jp/hojo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112688",
          "name": "Hokota",
          "country_code": "JP",
          "slug": "hokota",
          "canonical_path": "/cities/jp/hokota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11524139",
          "name": "Hokuto",
          "country_code": "JP",
          "slug": "hokuto-46-7415915",
          "canonical_path": "/cities/jp/hokuto-46-7415915/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6862586",
          "name": "Hokuto",
          "country_code": "JP",
          "slug": "hokuto",
          "canonical_path": "/cities/jp/hokuto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012360",
          "name": "hokutoshi",
          "country_code": "JP",
          "slug": "hokutoshi-012360",
          "canonical_path": "/cities/jp/hokutoshi-012360/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192091",
          "name": "hokutoshi",
          "country_code": "JP",
          "slug": "hokutoshi-192091",
          "canonical_path": "/cities/jp/hokutoshi-192091/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127588",
          "name": "Honchō",
          "country_code": "JP",
          "slug": "honcho",
          "canonical_path": "/cities/jp/honcho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127635",
          "name": "Honchō",
          "country_code": "JP",
          "slug": "honcho-12-7428076",
          "canonical_path": "/cities/jp/honcho-12-7428076/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129003",
          "name": "Honchō",
          "country_code": "JP",
          "slug": "honcho-12-2129779",
          "canonical_path": "/cities/jp/honcho-12-2129779/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862198",
          "name": "Honjō",
          "country_code": "JP",
          "slug": "honjo",
          "canonical_path": "/cities/jp/honjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862201",
          "name": "Honjō",
          "country_code": "JP",
          "slug": "honjo-25-7413964",
          "canonical_path": "/cities/jp/honjo-25-7413964/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848445",
          "name": "Honmachi",
          "country_code": "JP",
          "slug": "honmachi",
          "canonical_path": "/cities/jp/honmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128215",
          "name": "Honmachi",
          "country_code": "JP",
          "slug": "honmachi-12-7428106",
          "canonical_path": "/cities/jp/honmachi-12-7428106/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862136",
          "name": "Hōryūji",
          "country_code": "JP",
          "slug": "horyuji",
          "canonical_path": "/cities/jp/horyuji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611625",
          "name": "Hyūga",
          "country_code": "JP",
          "slug": "hyuga",
          "canonical_path": "/cities/jp/hyuga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862034",
          "name": "Ibara",
          "country_code": "JP",
          "slug": "ibara",
          "canonical_path": "/cities/jp/ibara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862033",
          "name": "Ibaraki",
          "country_code": "JP",
          "slug": "ibaraki",
          "canonical_path": "/cities/jp/ibaraki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1862010",
          "name": "Ibusuki",
          "country_code": "JP",
          "slug": "ibusuki",
          "canonical_path": "/cities/jp/ibusuki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112664",
          "name": "Ichihara",
          "country_code": "JP",
          "slug": "ichihara",
          "canonical_path": "/cities/jp/ichihara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156713",
          "name": "Ichikai",
          "country_code": "JP",
          "slug": "ichikai",
          "canonical_path": "/cities/jp/ichikai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612692",
          "name": "Ichikikushikino",
          "country_code": "JP",
          "slug": "ichikikushikino",
          "canonical_path": "/cities/jp/ichikikushikino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129961",
          "name": "Ichinohe",
          "country_code": "JP",
          "slug": "ichinohe",
          "canonical_path": "/cities/jp/ichinohe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861949",
          "name": "Ichinomiya",
          "country_code": "JP",
          "slug": "ichinomiya",
          "canonical_path": "/cities/jp/ichinomiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112658",
          "name": "Ichinomiya",
          "country_code": "JP",
          "slug": "ichinomiya-04-2112997",
          "canonical_path": "/cities/jp/ichinomiya-04-2112997/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112656",
          "name": "Ichinoseki",
          "country_code": "JP",
          "slug": "ichinoseki",
          "canonical_path": "/cities/jp/ichinoseki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9636928",
          "name": "Ide",
          "country_code": "JP",
          "slug": "ide",
          "canonical_path": "/cities/jp/ide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11468270",
          "name": "Iga",
          "country_code": "JP",
          "slug": "iga",
          "canonical_path": "/cities/jp/iga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861864",
          "name": "Iida",
          "country_code": "JP",
          "slug": "iida",
          "canonical_path": "/cities/jp/iida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861852",
          "name": "Iijima",
          "country_code": "JP",
          "slug": "iijima",
          "canonical_path": "/cities/jp/iijima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861838",
          "name": "Iiyama",
          "country_code": "JP",
          "slug": "iiyama",
          "canonical_path": "/cities/jp/iiyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112642",
          "name": "Iizakamachi",
          "country_code": "JP",
          "slug": "iizakamachi",
          "canonical_path": "/cities/jp/iizakamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861835",
          "name": "Iizuka",
          "country_code": "JP",
          "slug": "iizuka",
          "canonical_path": "/cities/jp/iizuka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861825",
          "name": "Ijūin",
          "country_code": "JP",
          "slug": "ijuin",
          "canonical_path": "/cities/jp/ijuin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861793",
          "name": "Ikeda",
          "country_code": "JP",
          "slug": "ikeda",
          "canonical_path": "/cities/jp/ikeda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861795",
          "name": "Ikeda",
          "country_code": "JP",
          "slug": "ikeda-32-1861785",
          "canonical_path": "/cities/jp/ikeda-32-1861785/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129951",
          "name": "Ikeda",
          "country_code": "JP",
          "slug": "ikeda-12-7428097",
          "canonical_path": "/cities/jp/ikeda-12-7428097/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612327",
          "name": "Iki",
          "country_code": "JP",
          "slug": "iki",
          "canonical_path": "/cities/jp/iki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861749",
          "name": "Ikoma",
          "country_code": "JP",
          "slug": "ikoma",
          "canonical_path": "/cities/jp/ikoma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1926134",
          "name": "Imabari",
          "country_code": "JP",
          "slug": "imabari",
          "canonical_path": "/cities/jp/imabari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129933",
          "name": "Imagane",
          "country_code": "JP",
          "slug": "imagane",
          "canonical_path": "/cities/jp/imagane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861699",
          "name": "Imaichi",
          "country_code": "JP",
          "slug": "imaichi",
          "canonical_path": "/cities/jp/imaichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822125",
          "name": "Imizu",
          "country_code": "JP",
          "slug": "imizu",
          "canonical_path": "/cities/jp/imizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861641",
          "name": "Ina",
          "country_code": "JP",
          "slug": "ina",
          "canonical_path": "/cities/jp/ina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822173",
          "name": "Inabe",
          "country_code": "JP",
          "slug": "inabe",
          "canonical_path": "/cities/jp/inabe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112624",
          "name": "Inada",
          "country_code": "JP",
          "slug": "inada",
          "canonical_path": "/cities/jp/inada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612578",
          "name": "Inagi",
          "country_code": "JP",
          "slug": "inagi",
          "canonical_path": "/cities/jp/inagi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13132797",
          "name": "Inami",
          "country_code": "JP",
          "slug": "inami-13-1860701",
          "canonical_path": "/cities/jp/inami-13-1860701/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861630",
          "name": "Inami",
          "country_code": "JP",
          "slug": "inami",
          "canonical_path": "/cities/jp/inami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822108",
          "name": "Inashiki",
          "country_code": "JP",
          "slug": "inashiki",
          "canonical_path": "/cities/jp/inashiki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112615",
          "name": "Inawashiro",
          "country_code": "JP",
          "slug": "inawashiro",
          "canonical_path": "/cities/jp/inawashiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861602",
          "name": "Inazawa",
          "country_code": "JP",
          "slug": "inazawa",
          "canonical_path": "/cities/jp/inazawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861584",
          "name": "Ino",
          "country_code": "JP",
          "slug": "ino",
          "canonical_path": "/cities/jp/ino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861528",
          "name": "Inuyama",
          "country_code": "JP",
          "slug": "inuyama",
          "canonical_path": "/cities/jp/inuyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822179",
          "name": "Inzai",
          "country_code": "JP",
          "slug": "inzai",
          "canonical_path": "/cities/jp/inzai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822163",
          "name": "Iruma",
          "country_code": "JP",
          "slug": "iruma",
          "canonical_path": "/cities/jp/iruma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611944",
          "name": "Isa",
          "country_code": "JP",
          "slug": "isa",
          "canonical_path": "/cities/jp/isa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861464",
          "name": "Isahaya",
          "country_code": "JP",
          "slug": "isahaya",
          "canonical_path": "/cities/jp/isahaya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861450",
          "name": "Ise",
          "country_code": "JP",
          "slug": "ise",
          "canonical_path": "/cities/jp/ise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861449",
          "name": "Isehara",
          "country_code": "JP",
          "slug": "isehara",
          "canonical_path": "/cities/jp/isehara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8601397",
          "name": "Isen",
          "country_code": "JP",
          "slug": "isen",
          "canonical_path": "/cities/jp/isen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861436",
          "name": "Isesaki",
          "country_code": "JP",
          "slug": "isesaki",
          "canonical_path": "/cities/jp/isesaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861416",
          "name": "Ishigaki",
          "country_code": "JP",
          "slug": "ishigaki",
          "canonical_path": "/cities/jp/ishigaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861400",
          "name": "Ishii",
          "country_code": "JP",
          "slug": "ishii",
          "canonical_path": "/cities/jp/ishii/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129909",
          "name": "Ishikari",
          "country_code": "JP",
          "slug": "ishikari",
          "canonical_path": "/cities/jp/ishikari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112583",
          "name": "Ishikawa",
          "country_code": "JP",
          "slug": "ishikawa-08-7451502",
          "canonical_path": "/cities/jp/ishikawa-08-7451502/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112576",
          "name": "Ishinomaki",
          "country_code": "JP",
          "slug": "ishinomaki",
          "canonical_path": "/cities/jp/ishinomaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112571",
          "name": "Ishioka",
          "country_code": "JP",
          "slug": "ishioka",
          "canonical_path": "/cities/jp/ishioka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822180",
          "name": "Isumi",
          "country_code": "JP",
          "slug": "isumi",
          "canonical_path": "/cities/jp/isumi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112555",
          "name": "Itako",
          "country_code": "JP",
          "slug": "itako",
          "canonical_path": "/cities/jp/itako/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861310",
          "name": "Itami",
          "country_code": "JP",
          "slug": "itami",
          "canonical_path": "/cities/jp/itami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129884",
          "name": "Itayanagi",
          "country_code": "JP",
          "slug": "itayanagi",
          "canonical_path": "/cities/jp/itayanagi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861290",
          "name": "Itō",
          "country_code": "JP",
          "slug": "ito",
          "canonical_path": "/cities/jp/ito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861285",
          "name": "Itoigawa",
          "country_code": "JP",
          "slug": "itoigawa",
          "canonical_path": "/cities/jp/itoigawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861280",
          "name": "Itoman",
          "country_code": "JP",
          "slug": "itoman",
          "canonical_path": "/cities/jp/itoman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612341",
          "name": "Itoshima",
          "country_code": "JP",
          "slug": "itoshima",
          "canonical_path": "/cities/jp/itoshima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861244",
          "name": "Iwade",
          "country_code": "JP",
          "slug": "iwade",
          "canonical_path": "/cities/jp/iwade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112543",
          "name": "Iwaizumi",
          "country_code": "JP",
          "slug": "iwaizumi",
          "canonical_path": "/cities/jp/iwaizumi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112539",
          "name": "Iwaki",
          "country_code": "JP",
          "slug": "iwaki",
          "canonical_path": "/cities/jp/iwaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861212",
          "name": "Iwakuni",
          "country_code": "JP",
          "slug": "iwakuni",
          "canonical_path": "/cities/jp/iwakuni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861207",
          "name": "Iwakura",
          "country_code": "JP",
          "slug": "iwakura",
          "canonical_path": "/cities/jp/iwakura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129870",
          "name": "Iwamizawa",
          "country_code": "JP",
          "slug": "iwamizawa",
          "canonical_path": "/cities/jp/iwamizawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129868",
          "name": "Iwanai",
          "country_code": "JP",
          "slug": "iwanai",
          "canonical_path": "/cities/jp/iwanai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112527",
          "name": "Iwanuma",
          "country_code": "JP",
          "slug": "iwanuma",
          "canonical_path": "/cities/jp/iwanuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861174",
          "name": "Iwashita",
          "country_code": "JP",
          "slug": "iwashita",
          "canonical_path": "/cities/jp/iwashita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861171",
          "name": "Iwata",
          "country_code": "JP",
          "slug": "iwata",
          "canonical_path": "/cities/jp/iwata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1926006",
          "name": "Iyo",
          "country_code": "JP",
          "slug": "iyo",
          "canonical_path": "/cities/jp/iyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822192",
          "name": "Izu",
          "country_code": "JP",
          "slug": "izu",
          "canonical_path": "/cities/jp/izu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861107",
          "name": "Izumi",
          "country_code": "JP",
          "slug": "izumi",
          "canonical_path": "/cities/jp/izumi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861108",
          "name": "Izumi",
          "country_code": "JP",
          "slug": "izumi-18-1861090",
          "canonical_path": "/cities/jp/izumi-18-1861090/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861095",
          "name": "Izumiōtsu",
          "country_code": "JP",
          "slug": "izumiotsu",
          "canonical_path": "/cities/jp/izumiotsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861091",
          "name": "Izumisano",
          "country_code": "JP",
          "slug": "izumisano",
          "canonical_path": "/cities/jp/izumisano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8992027",
          "name": "Izumizaki",
          "country_code": "JP",
          "slug": "izumizaki",
          "canonical_path": "/cities/jp/izumizaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1861084",
          "name": "Izumo",
          "country_code": "JP",
          "slug": "izumo",
          "canonical_path": "/cities/jp/izumo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822191",
          "name": "Izunokuni",
          "country_code": "JP",
          "slug": "izunokuni",
          "canonical_path": "/cities/jp/izunokuni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825489",
          "name": "Jōetsu",
          "country_code": "JP",
          "slug": "joetsu",
          "canonical_path": "/cities/jp/joetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822154",
          "name": "Jōsō",
          "country_code": "JP",
          "slug": "joso",
          "canonical_path": "/cities/jp/joso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611939",
          "name": "Jōyō",
          "country_code": "JP",
          "slug": "joyo",
          "canonical_path": "/cities/jp/joyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11010183",
          "name": "Jūjō-nakahara",
          "country_code": "JP",
          "slug": "jujo-nakahara",
          "canonical_path": "/cities/jp/jujo-nakahara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860878",
          "name": "Kadena",
          "country_code": "JP",
          "slug": "kadena",
          "canonical_path": "/cities/jp/kadena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860875",
          "name": "Kadogawa",
          "country_code": "JP",
          "slug": "kadogawa",
          "canonical_path": "/cities/jp/kadogawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860871",
          "name": "Kadoma",
          "country_code": "JP",
          "slug": "kadoma",
          "canonical_path": "/cities/jp/kadoma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822141",
          "name": "Kaga",
          "country_code": "JP",
          "slug": "kaga",
          "canonical_path": "/cities/jp/kaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860827",
          "name": "Kagoshima",
          "country_code": "JP",
          "slug": "kagoshima",
          "canonical_path": "/cities/jp/kagoshima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822140",
          "name": "Kahoku",
          "country_code": "JP",
          "slug": "kahoku",
          "canonical_path": "/cities/jp/kahoku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612336",
          "name": "Kai",
          "country_code": "JP",
          "slug": "kai",
          "canonical_path": "/cities/jp/kai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860785",
          "name": "Kainan",
          "country_code": "JP",
          "slug": "kainan",
          "canonical_path": "/cities/jp/kainan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822215",
          "name": "Kaizu",
          "country_code": "JP",
          "slug": "kaizu",
          "canonical_path": "/cities/jp/kaizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860765",
          "name": "Kaizuka",
          "country_code": "JP",
          "slug": "kaizuka",
          "canonical_path": "/cities/jp/kaizuka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860750",
          "name": "Kajiki",
          "country_code": "JP",
          "slug": "kajiki",
          "canonical_path": "/cities/jp/kajiki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860735",
          "name": "Kakamigahara",
          "country_code": "JP",
          "slug": "kakamigahara",
          "canonical_path": "/cities/jp/kakamigahara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860728",
          "name": "Kakegawa",
          "country_code": "JP",
          "slug": "kakegawa",
          "canonical_path": "/cities/jp/kakegawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860704",
          "name": "Kakogawachō-honmachi",
          "country_code": "JP",
          "slug": "kakogawacho-honmachi",
          "canonical_path": "/cities/jp/kakogawacho-honmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112455",
          "name": "Kakuda",
          "country_code": "JP",
          "slug": "kakuda",
          "canonical_path": "/cities/jp/kakuda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611942",
          "name": "Kamagaya",
          "country_code": "JP",
          "slug": "kamagaya",
          "canonical_path": "/cities/jp/kamagaya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112444",
          "name": "Kamaishi",
          "country_code": "JP",
          "slug": "kamaishi",
          "canonical_path": "/cities/jp/kamaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860672",
          "name": "Kamakura",
          "country_code": "JP",
          "slug": "kamakura",
          "canonical_path": "/cities/jp/kamakura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860635",
          "name": "Kameoka",
          "country_code": "JP",
          "slug": "kameoka",
          "canonical_path": "/cities/jp/kameoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860626",
          "name": "Kameyama",
          "country_code": "JP",
          "slug": "kameyama",
          "canonical_path": "/cities/jp/kameyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860588",
          "name": "Kamigōri",
          "country_code": "JP",
          "slug": "kamigori",
          "canonical_path": "/cities/jp/kamigori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860563",
          "name": "Kamiichi",
          "country_code": "JP",
          "slug": "kamiichi",
          "canonical_path": "/cities/jp/kamiichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8573577",
          "name": "Kamiigusa",
          "country_code": "JP",
          "slug": "kamiigusa",
          "canonical_path": "/cities/jp/kamiigusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129766",
          "name": "Kamiiso",
          "country_code": "JP",
          "slug": "kamiiso",
          "canonical_path": "/cities/jp/kamiiso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11103179",
          "name": "Kamikawa",
          "country_code": "JP",
          "slug": "kamikawa-13-7370808",
          "canonical_path": "/cities/jp/kamikawa-13-7370808/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129761",
          "name": "Kamikawa",
          "country_code": "JP",
          "slug": "kamikawa",
          "canonical_path": "/cities/jp/kamikawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10866099",
          "name": "Kaminakazato",
          "country_code": "JP",
          "slug": "kaminakazato",
          "canonical_path": "/cities/jp/kaminakazato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860458",
          "name": "Kaminokawa",
          "country_code": "JP",
          "slug": "kaminokawa",
          "canonical_path": "/cities/jp/kaminokawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129741",
          "name": "Kaminokuni",
          "country_code": "JP",
          "slug": "kaminokuni",
          "canonical_path": "/cities/jp/kaminokuni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112409",
          "name": "Kaminoyama",
          "country_code": "JP",
          "slug": "kaminoyama",
          "canonical_path": "/cities/jp/kaminoyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822103",
          "name": "Kamisu",
          "country_code": "JP",
          "slug": "kamisu",
          "canonical_path": "/cities/jp/kamisu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849944",
          "name": "Kamitosa",
          "country_code": "JP",
          "slug": "kamitosa",
          "canonical_path": "/cities/jp/kamitosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860341",
          "name": "Kamo",
          "country_code": "JP",
          "slug": "kamo",
          "canonical_path": "/cities/jp/kamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112297",
          "name": "Kamogawa",
          "country_code": "JP",
          "slug": "kamogawa",
          "canonical_path": "/cities/jp/kamogawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860321",
          "name": "Kamojimachō-jōgejima",
          "country_code": "JP",
          "slug": "kamojimacho-jogejima",
          "canonical_path": "/cities/jp/kamojimacho-jogejima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860243",
          "name": "Kanazawa",
          "country_code": "JP",
          "slug": "kanazawa",
          "canonical_path": "/cities/jp/kanazawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860234",
          "name": "Kanda",
          "country_code": "JP",
          "slug": "kanda",
          "canonical_path": "/cities/jp/kanda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112370",
          "name": "Kanegasaki",
          "country_code": "JP",
          "slug": "kanegasaki",
          "canonical_path": "/cities/jp/kanegasaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860211",
          "name": "Kanekomachi",
          "country_code": "JP",
          "slug": "kanekomachi",
          "canonical_path": "/cities/jp/kanekomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112367",
          "name": "Kaneyama",
          "country_code": "JP",
          "slug": "kaneyama",
          "canonical_path": "/cities/jp/kaneyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822216",
          "name": "Kani",
          "country_code": "JP",
          "slug": "kani",
          "canonical_path": "/cities/jp/kani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860191",
          "name": "Kanie",
          "country_code": "JP",
          "slug": "kanie",
          "canonical_path": "/cities/jp/kanie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9633110",
          "name": "Kanmaki",
          "country_code": "JP",
          "slug": "kanmaki",
          "canonical_path": "/cities/jp/kanmaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860176",
          "name": "Kannabechō-yahiro",
          "country_code": "JP",
          "slug": "kannabecho-yahiro",
          "canonical_path": "/cities/jp/kannabecho-yahiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860112",
          "name": "Kanoya",
          "country_code": "JP",
          "slug": "kanoya",
          "canonical_path": "/cities/jp/kanoya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860098",
          "name": "Kanuma",
          "country_code": "JP",
          "slug": "kanuma",
          "canonical_path": "/cities/jp/kanuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860063",
          "name": "Karatsu",
          "country_code": "JP",
          "slug": "karatsu",
          "canonical_path": "/cities/jp/karatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860034",
          "name": "Kariya",
          "country_code": "JP",
          "slug": "kariya",
          "canonical_path": "/cities/jp/kariya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1860026",
          "name": "Karuizawa",
          "country_code": "JP",
          "slug": "karuizawa",
          "canonical_path": "/cities/jp/karuizawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129646",
          "name": "Karumai",
          "country_code": "JP",
          "slug": "karumai",
          "canonical_path": "/cities/jp/karumai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612478",
          "name": "Kasai",
          "country_code": "JP",
          "slug": "kasai",
          "canonical_path": "/cities/jp/kasai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112343",
          "name": "Kasama",
          "country_code": "JP",
          "slug": "kasama",
          "canonical_path": "/cities/jp/kasama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859998",
          "name": "Kasamatsuchō",
          "country_code": "JP",
          "slug": "kasamatsucho",
          "canonical_path": "/cities/jp/kasamatsucho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859990",
          "name": "Kasaoka",
          "country_code": "JP",
          "slug": "kasaoka",
          "canonical_path": "/cities/jp/kasaoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822120",
          "name": "Kashiba",
          "country_code": "JP",
          "slug": "kashiba",
          "canonical_path": "/cities/jp/kashiba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859952",
          "name": "Kashihara",
          "country_code": "JP",
          "slug": "kashihara",
          "canonical_path": "/cities/jp/kashihara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859951",
          "name": "Kashihara-shi",
          "country_code": "JP",
          "slug": "kashihara-shi",
          "canonical_path": "/cities/jp/kashihara-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859941",
          "name": "Kashima",
          "country_code": "JP",
          "slug": "kashima",
          "canonical_path": "/cities/jp/kashima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082228",
          "name": "kashimashi",
          "country_code": "JP",
          "slug": "kashimashi-082228",
          "canonical_path": "/cities/jp/kashimashi-082228/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412074",
          "name": "kashimashi",
          "country_code": "JP",
          "slug": "kashimashi-412074",
          "canonical_path": "/cities/jp/kashimashi-412074/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859924",
          "name": "Kashiwa",
          "country_code": "JP",
          "slug": "kashiwa",
          "canonical_path": "/cities/jp/kashiwa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859923",
          "name": "Kashiwabara",
          "country_code": "JP",
          "slug": "kashiwabara",
          "canonical_path": "/cities/jp/kashiwabara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859913",
          "name": "Kashiwara",
          "country_code": "JP",
          "slug": "kashiwara",
          "canonical_path": "/cities/jp/kashiwara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859908",
          "name": "Kashiwazaki",
          "country_code": "JP",
          "slug": "kashiwazaki",
          "canonical_path": "/cities/jp/kashiwazaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822147",
          "name": "Kasuga",
          "country_code": "JP",
          "slug": "kasuga",
          "canonical_path": "/cities/jp/kasuga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859891",
          "name": "Kasugai",
          "country_code": "JP",
          "slug": "kasugai",
          "canonical_path": "/cities/jp/kasugai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859884",
          "name": "Kasukabe",
          "country_code": "JP",
          "slug": "kasukabe",
          "canonical_path": "/cities/jp/kasukabe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822098",
          "name": "Kasumigaura",
          "country_code": "JP",
          "slug": "kasumigaura",
          "canonical_path": "/cities/jp/kasumigaura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822203",
          "name": "Katagami",
          "country_code": "JP",
          "slug": "katagami",
          "canonical_path": "/cities/jp/katagami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9888360",
          "name": "Katanawa",
          "country_code": "JP",
          "slug": "katanawa",
          "canonical_path": "/cities/jp/katanawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611624",
          "name": "Katano",
          "country_code": "JP",
          "slug": "katano",
          "canonical_path": "/cities/jp/katano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611935",
          "name": "Katō",
          "country_code": "JP",
          "slug": "kato",
          "canonical_path": "/cities/jp/kato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112319",
          "name": "Katori-shi",
          "country_code": "JP",
          "slug": "katori-shi",
          "canonical_path": "/cities/jp/katori-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822119",
          "name": "Katsuragi",
          "country_code": "JP",
          "slug": "katsuragi",
          "canonical_path": "/cities/jp/katsuragi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8469284",
          "name": "Katsushika",
          "country_code": "JP",
          "slug": "katsushika",
          "canonical_path": "/cities/jp/katsushika/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112312",
          "name": "Katsuta",
          "country_code": "JP",
          "slug": "katsuta",
          "canonical_path": "/cities/jp/katsuta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112309",
          "name": "Katsuura",
          "country_code": "JP",
          "slug": "katsuura-04-9062338",
          "canonical_path": "/cities/jp/katsuura-04-9062338/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859765",
          "name": "Katsuyama",
          "country_code": "JP",
          "slug": "katsuyama",
          "canonical_path": "/cities/jp/katsuyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825498",
          "name": "Kawachi-Nagano",
          "country_code": "JP",
          "slug": "kawachi-nagano",
          "canonical_path": "/cities/jp/kawachi-nagano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6696932",
          "name": "Kawage",
          "country_code": "JP",
          "slug": "kawage",
          "canonical_path": "/cities/jp/kawage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859740",
          "name": "Kawagoe",
          "country_code": "JP",
          "slug": "kawagoe",
          "canonical_path": "/cities/jp/kawagoe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859730",
          "name": "Kawaguchi",
          "country_code": "JP",
          "slug": "kawaguchi",
          "canonical_path": "/cities/jp/kawaguchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859732",
          "name": "Kawaguchi",
          "country_code": "JP",
          "slug": "kawaguchi-39-7406323",
          "canonical_path": "/cities/jp/kawaguchi-39-7406323/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11151271",
          "name": "Kawahara",
          "country_code": "JP",
          "slug": "kawahara",
          "canonical_path": "/cities/jp/kawahara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859688",
          "name": "Kawaminami",
          "country_code": "JP",
          "slug": "kawaminami",
          "canonical_path": "/cities/jp/kawaminami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859675",
          "name": "Kawanishi",
          "country_code": "JP",
          "slug": "kawanishi",
          "canonical_path": "/cities/jp/kawanishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859661",
          "name": "Kawara",
          "country_code": "JP",
          "slug": "kawara",
          "canonical_path": "/cities/jp/kawara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859642",
          "name": "Kawasaki",
          "country_code": "JP",
          "slug": "kawasaki",
          "canonical_path": "/cities/jp/kawasaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859647",
          "name": "Kawasaki",
          "country_code": "JP",
          "slug": "kawasaki-07-1851269",
          "canonical_path": "/cities/jp/kawasaki-07-1851269/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112284",
          "name": "Kawasaki",
          "country_code": "JP",
          "slug": "kawasaki-24-2111130",
          "canonical_path": "/cities/jp/kawasaki-24-2111130/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859586",
          "name": "Kazo",
          "country_code": "JP",
          "slug": "kazo",
          "canonical_path": "/cities/jp/kazo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112263",
          "name": "Kesennuma",
          "country_code": "JP",
          "slug": "kesennuma",
          "canonical_path": "/cities/jp/kesennuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859521",
          "name": "Kichijōji-honchō",
          "country_code": "JP",
          "slug": "kichijoji-honcho",
          "canonical_path": "/cities/jp/kichijoji-honcho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11468427",
          "name": "Kihoku",
          "country_code": "JP",
          "slug": "kihoku",
          "canonical_path": "/cities/jp/kihoku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6691616",
          "name": "Kihoku-chō",
          "country_code": "JP",
          "slug": "kihoku-cho",
          "canonical_path": "/cities/jp/kihoku-cho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859492",
          "name": "Kikuchi",
          "country_code": "JP",
          "slug": "kikuchi",
          "canonical_path": "/cities/jp/kikuchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822193",
          "name": "Kikugawa",
          "country_code": "JP",
          "slug": "kikugawa",
          "canonical_path": "/cities/jp/kikugawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1907307",
          "name": "Kimitsu",
          "country_code": "JP",
          "slug": "kimitsu",
          "canonical_path": "/cities/jp/kimitsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859462",
          "name": "Kin",
          "country_code": "JP",
          "slug": "kin",
          "canonical_path": "/cities/jp/kin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822171",
          "name": "Kinokawa",
          "country_code": "JP",
          "slug": "kinokawa",
          "canonical_path": "/cities/jp/kinokawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:7303138",
          "name": "Kirishima",
          "country_code": "JP",
          "slug": "kirishima",
          "canonical_path": "/cities/jp/kirishima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859405",
          "name": "Kiryū",
          "country_code": "JP",
          "slug": "kiryu",
          "canonical_path": "/cities/jp/kiryu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859393",
          "name": "Kisarazu",
          "country_code": "JP",
          "slug": "kisarazu",
          "canonical_path": "/cities/jp/kisarazu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859383",
          "name": "Kishiwada",
          "country_code": "JP",
          "slug": "kishiwada",
          "canonical_path": "/cities/jp/kishiwada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8469285",
          "name": "Kita",
          "country_code": "JP",
          "slug": "kita",
          "canonical_path": "/cities/jp/kita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822204",
          "name": "Kita-Akita",
          "country_code": "JP",
          "slug": "kita-akita",
          "canonical_path": "/cities/jp/kita-akita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859355",
          "name": "Kitagata",
          "country_code": "JP",
          "slug": "kitagata",
          "canonical_path": "/cities/jp/kitagata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2130054",
          "name": "Kitahiroshima",
          "country_code": "JP",
          "slug": "kitahiroshima",
          "canonical_path": "/cities/jp/kitahiroshima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112232",
          "name": "Kitaibaraki",
          "country_code": "JP",
          "slug": "kitaibaraki",
          "canonical_path": "/cities/jp/kitaibaraki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112227",
          "name": "Kitakami",
          "country_code": "JP",
          "slug": "kitakami",
          "canonical_path": "/cities/jp/kitakami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859319",
          "name": "Kitakata",
          "country_code": "JP",
          "slug": "kitakata",
          "canonical_path": "/cities/jp/kitakata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859307",
          "name": "Kitakyushu",
          "country_code": "JP",
          "slug": "kitakyushu",
          "canonical_path": "/cities/jp/kitakyushu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129537",
          "name": "Kitami",
          "country_code": "JP",
          "slug": "kitami",
          "canonical_path": "/cities/jp/kitami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822164",
          "name": "Kitamoto",
          "country_code": "JP",
          "slug": "kitamoto",
          "canonical_path": "/cities/jp/kitamoto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822208",
          "name": "Kitanagoya",
          "country_code": "JP",
          "slug": "kitanagoya",
          "canonical_path": "/cities/jp/kitanagoya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859234",
          "name": "Kitsuki",
          "country_code": "JP",
          "slug": "kitsuki",
          "canonical_path": "/cities/jp/kitsuki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611938",
          "name": "Kiyose",
          "country_code": "JP",
          "slug": "kiyose",
          "canonical_path": "/cities/jp/kiyose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859210",
          "name": "Kiyosu",
          "country_code": "JP",
          "slug": "kiyosu",
          "canonical_path": "/cities/jp/kiyosu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611622",
          "name": "Kizugawa",
          "country_code": "JP",
          "slug": "kizugawa",
          "canonical_path": "/cities/jp/kizugawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859175",
          "name": "Kobayashi",
          "country_code": "JP",
          "slug": "kobayashi",
          "canonical_path": "/cities/jp/kobayashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859171",
          "name": "Kobe",
          "country_code": "JP",
          "slug": "kobe",
          "canonical_path": "/cities/jp/kobe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859146",
          "name": "Kochi",
          "country_code": "JP",
          "slug": "kochi-20-1859127",
          "canonical_path": "/cities/jp/kochi-20-1859127/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859143",
          "name": "Kōchi",
          "country_code": "JP",
          "slug": "kochi",
          "canonical_path": "/cities/jp/kochi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611930",
          "name": "Kodaira",
          "country_code": "JP",
          "slug": "kodaira",
          "canonical_path": "/cities/jp/kodaira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859113",
          "name": "Kodamachō-kodamaminami",
          "country_code": "JP",
          "slug": "kodamacho-kodamaminami",
          "canonical_path": "/cities/jp/kodamacho-kodamaminami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859100",
          "name": "Kofu",
          "country_code": "JP",
          "slug": "kofu",
          "canonical_path": "/cities/jp/kofu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859093",
          "name": "Koga",
          "country_code": "JP",
          "slug": "koga",
          "canonical_path": "/cities/jp/koga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859094",
          "name": "Koga",
          "country_code": "JP",
          "slug": "koga-07-1859090",
          "canonical_path": "/cities/jp/koga-07-1859090/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612579",
          "name": "Koganei",
          "country_code": "JP",
          "slug": "koganei",
          "canonical_path": "/cities/jp/koganei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082040",
          "name": "kogashi",
          "country_code": "JP",
          "slug": "kogashi-082040",
          "canonical_path": "/cities/jp/kogashi-082040/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402231",
          "name": "kogashi",
          "country_code": "JP",
          "slug": "kogashi-402231",
          "canonical_path": "/cities/jp/kogashi-402231/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1859079",
          "name": "Kōge",
          "country_code": "JP",
          "slug": "koge",
          "canonical_path": "/cities/jp/koge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112182",
          "name": "Kogota",
          "country_code": "JP",
          "slug": "kogota",
          "canonical_path": "/cities/jp/kogota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112181",
          "name": "Kogota-ekimae",
          "country_code": "JP",
          "slug": "kogota-ekimae",
          "canonical_path": "/cities/jp/kogota-ekimae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822117",
          "name": "Kōka",
          "country_code": "JP",
          "slug": "koka",
          "canonical_path": "/cities/jp/koka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858964",
          "name": "Kokubunji",
          "country_code": "JP",
          "slug": "kokubunji",
          "canonical_path": "/cities/jp/kokubunji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612580",
          "name": "Komae",
          "country_code": "JP",
          "slug": "komae",
          "canonical_path": "/cities/jp/komae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822178",
          "name": "Komagane",
          "country_code": "JP",
          "slug": "komagane",
          "canonical_path": "/cities/jp/komagane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858926",
          "name": "Komaki",
          "country_code": "JP",
          "slug": "komaki",
          "canonical_path": "/cities/jp/komaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858910",
          "name": "Komatsu",
          "country_code": "JP",
          "slug": "komatsu",
          "canonical_path": "/cities/jp/komatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112156",
          "name": "Komatsu",
          "country_code": "JP",
          "slug": "komatsu-44-2112756",
          "canonical_path": "/cities/jp/komatsu-44-2112756/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858902",
          "name": "Komatsushimachō",
          "country_code": "JP",
          "slug": "komatsushimacho",
          "canonical_path": "/cities/jp/komatsushimacho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858866",
          "name": "Komono",
          "country_code": "JP",
          "slug": "komono",
          "canonical_path": "/cities/jp/komono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858858",
          "name": "Komoro",
          "country_code": "JP",
          "slug": "komoro",
          "canonical_path": "/cities/jp/komoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612571",
          "name": "Konan",
          "country_code": "JP",
          "slug": "konan-35-1858739",
          "canonical_path": "/cities/jp/konan-35-1858739/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858836",
          "name": "Kōnan",
          "country_code": "JP",
          "slug": "konan",
          "canonical_path": "/cities/jp/konan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858794",
          "name": "Kōnosu",
          "country_code": "JP",
          "slug": "konosu",
          "canonical_path": "/cities/jp/konosu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112144",
          "name": "Koori",
          "country_code": "JP",
          "slug": "koori",
          "canonical_path": "/cities/jp/koori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156710",
          "name": "Kōra",
          "country_code": "JP",
          "slug": "kora",
          "canonical_path": "/cities/jp/kora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112141",
          "name": "Kōriyama",
          "country_code": "JP",
          "slug": "koriyama",
          "canonical_path": "/cities/jp/koriyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822194",
          "name": "Kosai",
          "country_code": "JP",
          "slug": "kosai",
          "canonical_path": "/cities/jp/kosai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8672343",
          "name": "Koshi",
          "country_code": "JP",
          "slug": "koshi",
          "canonical_path": "/cities/jp/koshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612553",
          "name": "Kōshi",
          "country_code": "JP",
          "slug": "koshi-21-7413153",
          "canonical_path": "/cities/jp/koshi-21-7413153/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858729",
          "name": "Koshigaya",
          "country_code": "JP",
          "slug": "koshigaya",
          "canonical_path": "/cities/jp/koshigaya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129447",
          "name": "Koshimizu",
          "country_code": "JP",
          "slug": "koshimizu",
          "canonical_path": "/cities/jp/koshimizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612589",
          "name": "Kōshū",
          "country_code": "JP",
          "slug": "koshu",
          "canonical_path": "/cities/jp/koshu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10988468",
          "name": "Kosuge",
          "country_code": "JP",
          "slug": "kosuge",
          "canonical_path": "/cities/jp/kosuge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9015407",
          "name": "Kotake",
          "country_code": "JP",
          "slug": "kotake",
          "canonical_path": "/cities/jp/kotake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11209896",
          "name": "Kotō",
          "country_code": "JP",
          "slug": "koto",
          "canonical_path": "/cities/jp/koto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858667",
          "name": "Kotohira",
          "country_code": "JP",
          "slug": "kotohira",
          "canonical_path": "/cities/jp/kotohira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232173",
          "name": "kounanshi",
          "country_code": "JP",
          "slug": "kounanshi-232173",
          "canonical_path": "/cities/jp/kounanshi-232173/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392111",
          "name": "kounanshi",
          "country_code": "JP",
          "slug": "kounanshi-392111",
          "canonical_path": "/cities/jp/kounanshi-392111/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112124",
          "name": "Kōzaki",
          "country_code": "JP",
          "slug": "kozaki",
          "canonical_path": "/cities/jp/kozaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858498",
          "name": "Kudamatsu",
          "country_code": "JP",
          "slug": "kudamatsu",
          "canonical_path": "/cities/jp/kudamatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129427",
          "name": "Kuji",
          "country_code": "JP",
          "slug": "kuji",
          "canonical_path": "/cities/jp/kuji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858445",
          "name": "Kukichūō",
          "country_code": "JP",
          "slug": "kukichuo",
          "canonical_path": "/cities/jp/kukichuo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858428",
          "name": "Kumagaya",
          "country_code": "JP",
          "slug": "kumagaya",
          "canonical_path": "/cities/jp/kumagaya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858421",
          "name": "Kumamoto",
          "country_code": "JP",
          "slug": "kumamoto",
          "canonical_path": "/cities/jp/kumamoto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822172",
          "name": "Kumano",
          "country_code": "JP",
          "slug": "kumano",
          "canonical_path": "/cities/jp/kumano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822157",
          "name": "Kumejima",
          "country_code": "JP",
          "slug": "kumejima",
          "canonical_path": "/cities/jp/kumejima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612682",
          "name": "Kunisaki",
          "country_code": "JP",
          "slug": "kunisaki",
          "canonical_path": "/cities/jp/kunisaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611617",
          "name": "Kunitachi",
          "country_code": "JP",
          "slug": "kunitachi",
          "canonical_path": "/cities/jp/kunitachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858311",
          "name": "Kurashiki",
          "country_code": "JP",
          "slug": "kurashiki",
          "canonical_path": "/cities/jp/kurashiki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858301",
          "name": "Kurayoshi",
          "country_code": "JP",
          "slug": "kurayoshi",
          "canonical_path": "/cities/jp/kurayoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858296",
          "name": "Kure",
          "country_code": "JP",
          "slug": "kure",
          "canonical_path": "/cities/jp/kure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822190",
          "name": "Kurihara",
          "country_code": "JP",
          "slug": "kurihara",
          "canonical_path": "/cities/jp/kurihara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129397",
          "name": "Kuriyama",
          "country_code": "JP",
          "slug": "kuriyama",
          "canonical_path": "/cities/jp/kuriyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822126",
          "name": "Kurobe-shi",
          "country_code": "JP",
          "slug": "kurobe-shi",
          "canonical_path": "/cities/jp/kurobe-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858249",
          "name": "Kuroda",
          "country_code": "JP",
          "slug": "kuroda",
          "canonical_path": "/cities/jp/kuroda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129395",
          "name": "Kuroishi",
          "country_code": "JP",
          "slug": "kuroishi",
          "canonical_path": "/cities/jp/kuroishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858088",
          "name": "Kurume",
          "country_code": "JP",
          "slug": "kurume",
          "canonical_path": "/cities/jp/kurume/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858066",
          "name": "Kusatsu",
          "country_code": "JP",
          "slug": "kusatsu",
          "canonical_path": "/cities/jp/kusatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858067",
          "name": "Kusatsu",
          "country_code": "JP",
          "slug": "kusatsu-35-1858063",
          "canonical_path": "/cities/jp/kusatsu-35-1858063/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1895695",
          "name": "Kushima",
          "country_code": "JP",
          "slug": "kushima",
          "canonical_path": "/cities/jp/kushima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1858033",
          "name": "Kushimoto",
          "country_code": "JP",
          "slug": "kushimoto",
          "canonical_path": "/cities/jp/kushimoto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129376",
          "name": "Kushiro",
          "country_code": "JP",
          "slug": "kushiro",
          "canonical_path": "/cities/jp/kushiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11468429",
          "name": "Kuwana",
          "country_code": "JP",
          "slug": "kuwana",
          "canonical_path": "/cities/jp/kuwana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129354",
          "name": "Kuzumaki",
          "country_code": "JP",
          "slug": "kuzumaki",
          "canonical_path": "/cities/jp/kuzumaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156697",
          "name": "Kyōtamba",
          "country_code": "JP",
          "slug": "kyotamba",
          "canonical_path": "/cities/jp/kyotamba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612555",
          "name": "Kyōtanabe",
          "country_code": "JP",
          "slug": "kyotanabe",
          "canonical_path": "/cities/jp/kyotanabe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612557",
          "name": "Kyōtango",
          "country_code": "JP",
          "slug": "kyotango",
          "canonical_path": "/cities/jp/kyotango/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857910",
          "name": "Kyoto",
          "country_code": "JP",
          "slug": "kyoto",
          "canonical_path": "/cities/jp/kyoto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10924870",
          "name": "Mabashi",
          "country_code": "JP",
          "slug": "mabashi",
          "canonical_path": "/cities/jp/mabashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857871",
          "name": "Machida",
          "country_code": "JP",
          "slug": "machida",
          "canonical_path": "/cities/jp/machida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10971146",
          "name": "Machiya",
          "country_code": "JP",
          "slug": "machiya",
          "canonical_path": "/cities/jp/machiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857844",
          "name": "Maebaru-chūō",
          "country_code": "JP",
          "slug": "maebaru-chuo",
          "canonical_path": "/cities/jp/maebaru-chuo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857843",
          "name": "Maebashi",
          "country_code": "JP",
          "slug": "maebashi",
          "canonical_path": "/cities/jp/maebashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857769",
          "name": "Maibara",
          "country_code": "JP",
          "slug": "maibara",
          "canonical_path": "/cities/jp/maibara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857766",
          "name": "Maizuru",
          "country_code": "JP",
          "slug": "maizuru",
          "canonical_path": "/cities/jp/maizuru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129324",
          "name": "Makubetsu",
          "country_code": "JP",
          "slug": "makubetsu",
          "canonical_path": "/cities/jp/makubetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857712",
          "name": "Makurazaki",
          "country_code": "JP",
          "slug": "makurazaki",
          "canonical_path": "/cities/jp/makurazaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857692",
          "name": "Manazuru",
          "country_code": "JP",
          "slug": "manazuru",
          "canonical_path": "/cities/jp/manazuru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612565",
          "name": "Maniwa",
          "country_code": "JP",
          "slug": "maniwa",
          "canonical_path": "/cities/jp/maniwa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857665",
          "name": "Marugame",
          "country_code": "JP",
          "slug": "marugame",
          "canonical_path": "/cities/jp/marugame/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2112008",
          "name": "Marumori",
          "country_code": "JP",
          "slug": "marumori",
          "canonical_path": "/cities/jp/marumori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8659953",
          "name": "Maruobara",
          "country_code": "JP",
          "slug": "maruobara",
          "canonical_path": "/cities/jp/maruobara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1926101",
          "name": "Masaki-chō",
          "country_code": "JP",
          "slug": "masaki-cho",
          "canonical_path": "/cities/jp/masaki-cho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111999",
          "name": "Mashiko",
          "country_code": "JP",
          "slug": "mashiko",
          "canonical_path": "/cities/jp/mashiko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857594",
          "name": "Masuda",
          "country_code": "JP",
          "slug": "masuda-36-1857590",
          "canonical_path": "/cities/jp/masuda-36-1857590/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857568",
          "name": "Matsubara",
          "country_code": "JP",
          "slug": "matsubara-32-1857563",
          "canonical_path": "/cities/jp/matsubara-32-1857563/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10979195",
          "name": "Matsubushi",
          "country_code": "JP",
          "slug": "matsubushi",
          "canonical_path": "/cities/jp/matsubushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857553",
          "name": "Matsudo",
          "country_code": "JP",
          "slug": "matsudo",
          "canonical_path": "/cities/jp/matsudo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857550",
          "name": "Matsue",
          "country_code": "JP",
          "slug": "matsue",
          "canonical_path": "/cities/jp/matsue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129282",
          "name": "Matsumae",
          "country_code": "JP",
          "slug": "matsumae",
          "canonical_path": "/cities/jp/matsumae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857519",
          "name": "Matsumoto",
          "country_code": "JP",
          "slug": "matsumoto",
          "canonical_path": "/cities/jp/matsumoto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11468431",
          "name": "Matsusaka",
          "country_code": "JP",
          "slug": "matsusaka",
          "canonical_path": "/cities/jp/matsusaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156715",
          "name": "Matsushige",
          "country_code": "JP",
          "slug": "matsushige",
          "canonical_path": "/cities/jp/matsushige/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111964",
          "name": "Matsushima",
          "country_code": "JP",
          "slug": "matsushima",
          "canonical_path": "/cities/jp/matsushima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857470",
          "name": "Matsutō",
          "country_code": "JP",
          "slug": "matsuto",
          "canonical_path": "/cities/jp/matsuto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822144",
          "name": "Matsuura",
          "country_code": "JP",
          "slug": "matsuura",
          "canonical_path": "/cities/jp/matsuura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1926099",
          "name": "Matsuyama",
          "country_code": "JP",
          "slug": "matsuyama",
          "canonical_path": "/cities/jp/matsuyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857451",
          "name": "Matsuzaki",
          "country_code": "JP",
          "slug": "matsuzaki-37-1860327",
          "canonical_path": "/cities/jp/matsuzaki-37-1860327/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10866030",
          "name": "Mejiro",
          "country_code": "JP",
          "slug": "mejiro",
          "canonical_path": "/cities/jp/mejiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857403",
          "name": "Menuma",
          "country_code": "JP",
          "slug": "menuma",
          "canonical_path": "/cities/jp/menuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857379",
          "name": "Mibu",
          "country_code": "JP",
          "slug": "mibu",
          "canonical_path": "/cities/jp/mibu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822155",
          "name": "Midori",
          "country_code": "JP",
          "slug": "midori",
          "canonical_path": "/cities/jp/midori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857343",
          "name": "Mifune",
          "country_code": "JP",
          "slug": "mifune",
          "canonical_path": "/cities/jp/mifune/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857334",
          "name": "Mihara",
          "country_code": "JP",
          "slug": "mihara",
          "canonical_path": "/cities/jp/mihara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129245",
          "name": "Mikasa",
          "country_code": "JP",
          "slug": "mikasa",
          "canonical_path": "/cities/jp/mikasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857276",
          "name": "Miki",
          "country_code": "JP",
          "slug": "miki",
          "canonical_path": "/cities/jp/miki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612574",
          "name": "Mima",
          "country_code": "JP",
          "slug": "mima",
          "canonical_path": "/cities/jp/mima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857219",
          "name": "Minabe",
          "country_code": "JP",
          "slug": "minabe",
          "canonical_path": "/cities/jp/minabe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857208",
          "name": "Minamata",
          "country_code": "JP",
          "slug": "minamata",
          "canonical_path": "/cities/jp/minamata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11205269",
          "name": "Minami-Alps",
          "country_code": "JP",
          "slug": "minami-alps",
          "canonical_path": "/cities/jp/minami-alps/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822149",
          "name": "Minami-Sōma",
          "country_code": "JP",
          "slug": "minami-soma",
          "canonical_path": "/cities/jp/minami-soma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156739",
          "name": "Minamiarupusu",
          "country_code": "JP",
          "slug": "minamiarupusu",
          "canonical_path": "/cities/jp/minamiarupusu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822114",
          "name": "Minamiashigara",
          "country_code": "JP",
          "slug": "minamiashigara",
          "canonical_path": "/cities/jp/minamiashigara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612479",
          "name": "Minamiawaji",
          "country_code": "JP",
          "slug": "minamiawaji",
          "canonical_path": "/cities/jp/minamiawaji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612454",
          "name": "Minamibōsō",
          "country_code": "JP",
          "slug": "minamiboso",
          "canonical_path": "/cities/jp/minamiboso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10300676",
          "name": "Minamichita",
          "country_code": "JP",
          "slug": "minamichita",
          "canonical_path": "/cities/jp/minamichita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11468435",
          "name": "Minamiise",
          "country_code": "JP",
          "slug": "minamiise",
          "canonical_path": "/cities/jp/minamiise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612540",
          "name": "Minamikyushu",
          "country_code": "JP",
          "slug": "minamikyushu",
          "canonical_path": "/cities/jp/minamikyushu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156705",
          "name": "Minamiminowa",
          "country_code": "JP",
          "slug": "minamiminowa",
          "canonical_path": "/cities/jp/minamiminowa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10926134",
          "name": "Minaminagareyama",
          "country_code": "JP",
          "slug": "minaminagareyama",
          "canonical_path": "/cities/jp/minaminagareyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110999",
          "name": "Minamisanriku",
          "country_code": "JP",
          "slug": "minamisanriku",
          "canonical_path": "/cities/jp/minamisanriku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612541",
          "name": "Minamisatsuma",
          "country_code": "JP",
          "slug": "minamisatsuma",
          "canonical_path": "/cities/jp/minamisatsuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612560",
          "name": "Minamishimabara",
          "country_code": "JP",
          "slug": "minamishimabara",
          "canonical_path": "/cities/jp/minamishimabara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825490",
          "name": "Minamiuonuma",
          "country_code": "JP",
          "slug": "minamiuonuma",
          "canonical_path": "/cities/jp/minamiuonuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857117",
          "name": "Minano",
          "country_code": "JP",
          "slug": "minano",
          "canonical_path": "/cities/jp/minano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852383",
          "name": "Minato",
          "country_code": "JP",
          "slug": "minato",
          "canonical_path": "/cities/jp/minato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13353696",
          "name": "Minato City",
          "country_code": "JP",
          "slug": "minato-city",
          "canonical_path": "/cities/jp/minato-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611936",
          "name": "Mine",
          "country_code": "JP",
          "slug": "mine",
          "canonical_path": "/cities/jp/mine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857062",
          "name": "Mino",
          "country_code": "JP",
          "slug": "mino",
          "canonical_path": "/cities/jp/mino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1857046",
          "name": "Minoh",
          "country_code": "JP",
          "slug": "minoh",
          "canonical_path": "/cities/jp/minoh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822217",
          "name": "Minokamo",
          "country_code": "JP",
          "slug": "minokamo",
          "canonical_path": "/cities/jp/minokamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8604581",
          "name": "Misasa",
          "country_code": "JP",
          "slug": "misasa",
          "canonical_path": "/cities/jp/misasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822137",
          "name": "Misato, Saitama",
          "country_code": "JP",
          "slug": "misato-saitama",
          "canonical_path": "/cities/jp/misato-saitama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129211",
          "name": "Misawa",
          "country_code": "JP",
          "slug": "misawa",
          "canonical_path": "/cities/jp/misawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856977",
          "name": "Mishima",
          "country_code": "JP",
          "slug": "mishima",
          "canonical_path": "/cities/jp/mishima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856938",
          "name": "Mitake",
          "country_code": "JP",
          "slug": "mitake",
          "canonical_path": "/cities/jp/mitake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111901",
          "name": "Mito",
          "country_code": "JP",
          "slug": "mito",
          "canonical_path": "/cities/jp/mito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611615",
          "name": "Mitoyo",
          "country_code": "JP",
          "slug": "mitoyo",
          "canonical_path": "/cities/jp/mitoyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856878",
          "name": "Mitsuke",
          "country_code": "JP",
          "slug": "mitsuke",
          "canonical_path": "/cities/jp/mitsuke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1907309",
          "name": "Miura",
          "country_code": "JP",
          "slug": "miura",
          "canonical_path": "/cities/jp/miura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856826",
          "name": "Miyada",
          "country_code": "JP",
          "slug": "miyada",
          "canonical_path": "/cities/jp/miyada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111886",
          "name": "Miyajuku",
          "country_code": "JP",
          "slug": "miyajuku",
          "canonical_path": "/cities/jp/miyajuku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111884",
          "name": "Miyako",
          "country_code": "JP",
          "slug": "miyako",
          "canonical_path": "/cities/jp/miyako/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822158",
          "name": "Miyakojima",
          "country_code": "JP",
          "slug": "miyakojima",
          "canonical_path": "/cities/jp/miyakojima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856775",
          "name": "Miyakonojō",
          "country_code": "JP",
          "slug": "miyakonojo",
          "canonical_path": "/cities/jp/miyakonojo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612459",
          "name": "Miyama",
          "country_code": "JP",
          "slug": "miyama",
          "canonical_path": "/cities/jp/miyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612460",
          "name": "Miyawaka",
          "country_code": "JP",
          "slug": "miyawaka",
          "canonical_path": "/cities/jp/miyawaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856717",
          "name": "Miyazaki",
          "country_code": "JP",
          "slug": "miyazaki",
          "canonical_path": "/cities/jp/miyazaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856703",
          "name": "Miyazu",
          "country_code": "JP",
          "slug": "miyazu",
          "canonical_path": "/cities/jp/miyazu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612340",
          "name": "Miyoshi",
          "country_code": "JP",
          "slug": "miyoshi-01-1856697",
          "canonical_path": "/cities/jp/miyoshi-01-1856697/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856698",
          "name": "Miyoshi",
          "country_code": "JP",
          "slug": "miyoshi",
          "canonical_path": "/cities/jp/miyoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11012851",
          "name": "Miyoshidai",
          "country_code": "JP",
          "slug": "miyoshidai",
          "canonical_path": "/cities/jp/miyoshidai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232360",
          "name": "miyoshishi",
          "country_code": "JP",
          "slug": "miyoshishi-232360",
          "canonical_path": "/cities/jp/miyoshishi-232360/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:362085",
          "name": "miyoshishi",
          "country_code": "JP",
          "slug": "miyoshishi-362085",
          "canonical_path": "/cities/jp/miyoshishi-362085/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11350714",
          "name": "Miyota",
          "country_code": "JP",
          "slug": "miyota",
          "canonical_path": "/cities/jp/miyota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10918042",
          "name": "Mizue",
          "country_code": "JP",
          "slug": "mizue",
          "canonical_path": "/cities/jp/mizue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612473",
          "name": "Mizuho",
          "country_code": "JP",
          "slug": "mizuho",
          "canonical_path": "/cities/jp/mizuho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856667",
          "name": "Mizunami",
          "country_code": "JP",
          "slug": "mizunami",
          "canonical_path": "/cities/jp/mizunami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111855",
          "name": "Mobara",
          "country_code": "JP",
          "slug": "mobara",
          "canonical_path": "/cities/jp/mobara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129163",
          "name": "Mombetsu",
          "country_code": "JP",
          "slug": "mombetsu",
          "canonical_path": "/cities/jp/mombetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111836",
          "name": "Mooka",
          "country_code": "JP",
          "slug": "mooka",
          "canonical_path": "/cities/jp/mooka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856586",
          "name": "Mori",
          "country_code": "JP",
          "slug": "mori",
          "canonical_path": "/cities/jp/mori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856584",
          "name": "Moriguchi",
          "country_code": "JP",
          "slug": "moriguchi",
          "canonical_path": "/cities/jp/moriguchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111834",
          "name": "Morioka",
          "country_code": "JP",
          "slug": "morioka",
          "canonical_path": "/cities/jp/morioka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111831",
          "name": "Moriya",
          "country_code": "JP",
          "slug": "moriya",
          "canonical_path": "/cities/jp/moriya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856569",
          "name": "Moriyama",
          "country_code": "JP",
          "slug": "moriyama",
          "canonical_path": "/cities/jp/moriyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9889353",
          "name": "Moroura",
          "country_code": "JP",
          "slug": "moroura",
          "canonical_path": "/cities/jp/moroura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111827",
          "name": "Motegi",
          "country_code": "JP",
          "slug": "motegi",
          "canonical_path": "/cities/jp/motegi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11001656",
          "name": "Motobu",
          "country_code": "JP",
          "slug": "motobu",
          "canonical_path": "/cities/jp/motobu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111824",
          "name": "Motomiya",
          "country_code": "JP",
          "slug": "motomiya",
          "canonical_path": "/cities/jp/motomiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822218",
          "name": "Motosu",
          "country_code": "JP",
          "slug": "motosu",
          "canonical_path": "/cities/jp/motosu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856456",
          "name": "Mukō",
          "country_code": "JP",
          "slug": "muko",
          "canonical_path": "/cities/jp/muko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611614",
          "name": "Munakata",
          "country_code": "JP",
          "slug": "munakata",
          "canonical_path": "/cities/jp/munakata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856434",
          "name": "Murakami",
          "country_code": "JP",
          "slug": "murakami",
          "canonical_path": "/cities/jp/murakami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856426",
          "name": "Muramatsu",
          "country_code": "JP",
          "slug": "muramatsu",
          "canonical_path": "/cities/jp/muramatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111809",
          "name": "Murata",
          "country_code": "JP",
          "slug": "murata",
          "canonical_path": "/cities/jp/murata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822113",
          "name": "Murayama",
          "country_code": "JP",
          "slug": "murayama",
          "canonical_path": "/cities/jp/murayama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856411",
          "name": "Mure",
          "country_code": "JP",
          "slug": "mure",
          "canonical_path": "/cities/jp/mure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129101",
          "name": "Muroran",
          "country_code": "JP",
          "slug": "muroran",
          "canonical_path": "/cities/jp/muroran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856392",
          "name": "Muroto-misakicho",
          "country_code": "JP",
          "slug": "muroto-misakicho",
          "canonical_path": "/cities/jp/muroto-misakicho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822130",
          "name": "Musashimurayama",
          "country_code": "JP",
          "slug": "musashimurayama",
          "canonical_path": "/cities/jp/musashimurayama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856367",
          "name": "Musashino",
          "country_code": "JP",
          "slug": "musashino",
          "canonical_path": "/cities/jp/musashino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127878",
          "name": "Mutsu",
          "country_code": "JP",
          "slug": "mutsu",
          "canonical_path": "/cities/jp/mutsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825491",
          "name": "Myoko",
          "country_code": "JP",
          "slug": "myoko",
          "canonical_path": "/cities/jp/myoko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856293",
          "name": "Nabari",
          "country_code": "JP",
          "slug": "nabari",
          "canonical_path": "/cities/jp/nabari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856243",
          "name": "Nagahama",
          "country_code": "JP",
          "slug": "nagahama",
          "canonical_path": "/cities/jp/nagahama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111781",
          "name": "Nagai",
          "country_code": "JP",
          "slug": "nagai",
          "canonical_path": "/cities/jp/nagai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611613",
          "name": "Nagakute",
          "country_code": "JP",
          "slug": "nagakute",
          "canonical_path": "/cities/jp/nagakute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856215",
          "name": "Nagano",
          "country_code": "JP",
          "slug": "nagano",
          "canonical_path": "/cities/jp/nagano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856212",
          "name": "Naganohara",
          "country_code": "JP",
          "slug": "naganohara",
          "canonical_path": "/cities/jp/naganohara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129080",
          "name": "Naganuma",
          "country_code": "JP",
          "slug": "naganuma",
          "canonical_path": "/cities/jp/naganuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856199",
          "name": "Nagaoka",
          "country_code": "JP",
          "slug": "nagaoka",
          "canonical_path": "/cities/jp/nagaoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856184",
          "name": "Nagareyama",
          "country_code": "JP",
          "slug": "nagareyama",
          "canonical_path": "/cities/jp/nagareyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856177",
          "name": "Nagasaki",
          "country_code": "JP",
          "slug": "nagasaki",
          "canonical_path": "/cities/jp/nagasaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856120",
          "name": "Nagasu",
          "country_code": "JP",
          "slug": "nagasu",
          "canonical_path": "/cities/jp/nagasu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1899102",
          "name": "Nagato",
          "country_code": "JP",
          "slug": "nagato",
          "canonical_path": "/cities/jp/nagato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9191703",
          "name": "Nagatoro",
          "country_code": "JP",
          "slug": "nagatoro",
          "canonical_path": "/cities/jp/nagatoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11397286",
          "name": "Nagawa",
          "country_code": "JP",
          "slug": "nagawa",
          "canonical_path": "/cities/jp/nagawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156706",
          "name": "Nagi",
          "country_code": "JP",
          "slug": "nagi",
          "canonical_path": "/cities/jp/nagi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856068",
          "name": "Nago",
          "country_code": "JP",
          "slug": "nago",
          "canonical_path": "/cities/jp/nago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856057",
          "name": "Nagoya",
          "country_code": "JP",
          "slug": "nagoya",
          "canonical_path": "/cities/jp/nagoya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1856035",
          "name": "Naha",
          "country_code": "JP",
          "slug": "naha",
          "canonical_path": "/cities/jp/naha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129073",
          "name": "Naie",
          "country_code": "JP",
          "slug": "naie",
          "canonical_path": "/cities/jp/naie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111749",
          "name": "Naka",
          "country_code": "JP",
          "slug": "naka",
          "canonical_path": "/cities/jp/naka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822224",
          "name": "Nakagusuku",
          "country_code": "JP",
          "slug": "nakagusuku",
          "canonical_path": "/cities/jp/nakagusuku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855907",
          "name": "Nakama",
          "country_code": "JP",
          "slug": "nakama",
          "canonical_path": "/cities/jp/nakama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855863",
          "name": "Nakano",
          "country_code": "JP",
          "slug": "nakano",
          "canonical_path": "/cities/jp/nakano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8715035",
          "name": "Nakano",
          "country_code": "JP",
          "slug": "nakano-40-1855848",
          "canonical_path": "/cities/jp/nakano-40-1855848/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855852",
          "name": "Nakanojō",
          "country_code": "JP",
          "slug": "nakanojo",
          "canonical_path": "/cities/jp/nakanojo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129034",
          "name": "Nakashibetsu",
          "country_code": "JP",
          "slug": "nakashibetsu",
          "canonical_path": "/cities/jp/nakashibetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855757",
          "name": "Nakatsu",
          "country_code": "JP",
          "slug": "nakatsu",
          "canonical_path": "/cities/jp/nakatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855753",
          "name": "Nakatsugawa",
          "country_code": "JP",
          "slug": "nakatsugawa",
          "canonical_path": "/cities/jp/nakatsugawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10971152",
          "name": "Nakazato",
          "country_code": "JP",
          "slug": "nakazato",
          "canonical_path": "/cities/jp/nakazato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855713",
          "name": "Nakijin",
          "country_code": "JP",
          "slug": "nakijin",
          "canonical_path": "/cities/jp/nakijin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855697",
          "name": "Nambu",
          "country_code": "JP",
          "slug": "nambu",
          "canonical_path": "/cities/jp/nambu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822104",
          "name": "Namegata",
          "country_code": "JP",
          "slug": "namegata",
          "canonical_path": "/cities/jp/namegata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855694",
          "name": "Namerikawa",
          "country_code": "JP",
          "slug": "namerikawa",
          "canonical_path": "/cities/jp/namerikawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129005",
          "name": "Namioka",
          "country_code": "JP",
          "slug": "namioka",
          "canonical_path": "/cities/jp/namioka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855670",
          "name": "Nanao",
          "country_code": "JP",
          "slug": "nanao",
          "canonical_path": "/cities/jp/nanao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822223",
          "name": "Nanjō",
          "country_code": "JP",
          "slug": "nanjo",
          "canonical_path": "/cities/jp/nanjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612330",
          "name": "Nankoku",
          "country_code": "JP",
          "slug": "nankoku",
          "canonical_path": "/cities/jp/nankoku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612558",
          "name": "Nantan",
          "country_code": "JP",
          "slug": "nantan",
          "canonical_path": "/cities/jp/nantan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822123",
          "name": "Nanto",
          "country_code": "JP",
          "slug": "nanto",
          "canonical_path": "/cities/jp/nanto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6694821",
          "name": "Nanto-shi",
          "country_code": "JP",
          "slug": "nanto-shi",
          "canonical_path": "/cities/jp/nanto-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611932",
          "name": "Nanyō",
          "country_code": "JP",
          "slug": "nanyo",
          "canonical_path": "/cities/jp/nanyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855612",
          "name": "Nara-shi",
          "country_code": "JP",
          "slug": "nara-shi",
          "canonical_path": "/cities/jp/nara-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612347",
          "name": "Narashino",
          "country_code": "JP",
          "slug": "narashino",
          "canonical_path": "/cities/jp/narashino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8572949",
          "name": "Narimasu",
          "country_code": "JP",
          "slug": "narimasu",
          "canonical_path": "/cities/jp/narimasu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111684",
          "name": "Narita",
          "country_code": "JP",
          "slug": "narita",
          "canonical_path": "/cities/jp/narita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855580",
          "name": "Narutochō-mitsuishi",
          "country_code": "JP",
          "slug": "narutocho-mitsuishi",
          "canonical_path": "/cities/jp/narutocho-mitsuishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822176",
          "name": "Nasukarasuyama",
          "country_code": "JP",
          "slug": "nasukarasuyama",
          "canonical_path": "/cities/jp/nasukarasuyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822174",
          "name": "Nasushiobara",
          "country_code": "JP",
          "slug": "nasushiobara",
          "canonical_path": "/cities/jp/nasushiobara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111669",
          "name": "Natori-shi",
          "country_code": "JP",
          "slug": "natori-shi",
          "canonical_path": "/cities/jp/natori-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128983",
          "name": "Nayoro",
          "country_code": "JP",
          "slug": "nayoro",
          "canonical_path": "/cities/jp/nayoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855540",
          "name": "Naze",
          "country_code": "JP",
          "slug": "naze",
          "canonical_path": "/cities/jp/naze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128975",
          "name": "Nemuro",
          "country_code": "JP",
          "slug": "nemuro",
          "canonical_path": "/cities/jp/nemuro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6697563",
          "name": "Neyagawa",
          "country_code": "JP",
          "slug": "neyagawa",
          "canonical_path": "/cities/jp/neyagawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855476",
          "name": "Nichinan",
          "country_code": "JP",
          "slug": "nichinan",
          "canonical_path": "/cities/jp/nichinan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111656",
          "name": "Nihommatsu",
          "country_code": "JP",
          "slug": "nihommatsu",
          "canonical_path": "/cities/jp/nihommatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855431",
          "name": "Niigata",
          "country_code": "JP",
          "slug": "niigata",
          "canonical_path": "/cities/jp/niigata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855425",
          "name": "Niihama",
          "country_code": "JP",
          "slug": "niihama",
          "canonical_path": "/cities/jp/niihama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855416",
          "name": "Niimi",
          "country_code": "JP",
          "slug": "niimi",
          "canonical_path": "/cities/jp/niimi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822138",
          "name": "Niiza",
          "country_code": "JP",
          "slug": "niiza",
          "canonical_path": "/cities/jp/niiza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822198",
          "name": "Nikaho",
          "country_code": "JP",
          "slug": "nikaho",
          "canonical_path": "/cities/jp/nikaho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855395",
          "name": "Nikkō",
          "country_code": "JP",
          "slug": "nikko",
          "canonical_path": "/cities/jp/nikko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822187",
          "name": "Ninohe",
          "country_code": "JP",
          "slug": "ninohe",
          "canonical_path": "/cities/jp/ninohe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855380",
          "name": "Ninomiya",
          "country_code": "JP",
          "slug": "ninomiya",
          "canonical_path": "/cities/jp/ninomiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855363",
          "name": "Nirasaki",
          "country_code": "JP",
          "slug": "nirasaki",
          "canonical_path": "/cities/jp/nirasaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850692",
          "name": "Nishi-Tokyo-shi",
          "country_code": "JP",
          "slug": "nishi-tokyo-shi",
          "canonical_path": "/cities/jp/nishi-tokyo-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8651153",
          "name": "Nishida",
          "country_code": "JP",
          "slug": "nishida",
          "canonical_path": "/cities/jp/nishida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863978",
          "name": "Nishifukuma",
          "country_code": "JP",
          "slug": "nishifukuma",
          "canonical_path": "/cities/jp/nishifukuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855341",
          "name": "Nishihara",
          "country_code": "JP",
          "slug": "nishihara",
          "canonical_path": "/cities/jp/nishihara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855207",
          "name": "Nishinomiya",
          "country_code": "JP",
          "slug": "nishinomiya",
          "canonical_path": "/cities/jp/nishinomiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855203",
          "name": "Nishinoomote",
          "country_code": "JP",
          "slug": "nishinoomote",
          "canonical_path": "/cities/jp/nishinoomote/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855189",
          "name": "Nishio",
          "country_code": "JP",
          "slug": "nishio",
          "canonical_path": "/cities/jp/nishio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855153",
          "name": "Nishitawara",
          "country_code": "JP",
          "slug": "nishitawara",
          "canonical_path": "/cities/jp/nishitawara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855134",
          "name": "Nishiwaki",
          "country_code": "JP",
          "slug": "nishiwaki",
          "canonical_path": "/cities/jp/nishiwaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822209",
          "name": "Nisshin",
          "country_code": "JP",
          "slug": "nisshin",
          "canonical_path": "/cities/jp/nisshin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128896",
          "name": "Nobeji",
          "country_code": "JP",
          "slug": "nobeji",
          "canonical_path": "/cities/jp/nobeji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855095",
          "name": "Nobeoka",
          "country_code": "JP",
          "slug": "nobeoka",
          "canonical_path": "/cities/jp/nobeoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128894",
          "name": "Noboribetsu",
          "country_code": "JP",
          "slug": "noboribetsu",
          "canonical_path": "/cities/jp/noboribetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855078",
          "name": "Noda",
          "country_code": "JP",
          "slug": "noda",
          "canonical_path": "/cities/jp/noda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1855066",
          "name": "Nōgata",
          "country_code": "JP",
          "slug": "nogata",
          "canonical_path": "/cities/jp/nogata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822143",
          "name": "Nomimachi",
          "country_code": "JP",
          "slug": "nomimachi",
          "canonical_path": "/cities/jp/nomimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854979",
          "name": "Nonoichi",
          "country_code": "JP",
          "slug": "nonoichi",
          "canonical_path": "/cities/jp/nonoichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11010373",
          "name": "Noshio",
          "country_code": "JP",
          "slug": "noshio",
          "canonical_path": "/cities/jp/noshio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128867",
          "name": "Noshiro",
          "country_code": "JP",
          "slug": "noshiro",
          "canonical_path": "/cities/jp/noshiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8573526",
          "name": "Numabukuro",
          "country_code": "JP",
          "slug": "numabukuro",
          "canonical_path": "/cities/jp/numabukuro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111574",
          "name": "Numakunai",
          "country_code": "JP",
          "slug": "numakunai",
          "canonical_path": "/cities/jp/numakunai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854905",
          "name": "Numata",
          "country_code": "JP",
          "slug": "numata",
          "canonical_path": "/cities/jp/numata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854902",
          "name": "Numazu",
          "country_code": "JP",
          "slug": "numazu",
          "canonical_path": "/cities/jp/numazu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612455",
          "name": "Ōamishirasato",
          "country_code": "JP",
          "slug": "oamishirasato",
          "canonical_path": "/cities/jp/oamishirasato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111567",
          "name": "Ōarai",
          "country_code": "JP",
          "slug": "oarai",
          "canonical_path": "/cities/jp/oarai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854849",
          "name": "Obama",
          "country_code": "JP",
          "slug": "obama",
          "canonical_path": "/cities/jp/obama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111559",
          "name": "Obanazawa",
          "country_code": "JP",
          "slug": "obanazawa",
          "canonical_path": "/cities/jp/obanazawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128815",
          "name": "Obihiro",
          "country_code": "JP",
          "slug": "obihiro",
          "canonical_path": "/cities/jp/obihiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854803",
          "name": "Ōbu",
          "country_code": "JP",
          "slug": "obu",
          "canonical_path": "/cities/jp/obu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854798",
          "name": "Obuse",
          "country_code": "JP",
          "slug": "obuse",
          "canonical_path": "/cities/jp/obuse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854794",
          "name": "Ochi",
          "country_code": "JP",
          "slug": "ochi",
          "canonical_path": "/cities/jp/ochi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854774",
          "name": "Ōdachō-ōda",
          "country_code": "JP",
          "slug": "odacho-oda",
          "canonical_path": "/cities/jp/odacho-oda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128787",
          "name": "Ōdate",
          "country_code": "JP",
          "slug": "odate",
          "canonical_path": "/cities/jp/odate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854747",
          "name": "Odawara",
          "country_code": "JP",
          "slug": "odawara",
          "canonical_path": "/cities/jp/odawara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111530",
          "name": "Ōfunato",
          "country_code": "JP",
          "slug": "ofunato",
          "canonical_path": "/cities/jp/ofunato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822201",
          "name": "Oga",
          "country_code": "JP",
          "slug": "oga",
          "canonical_path": "/cities/jp/oga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854703",
          "name": "Ōgaki",
          "country_code": "JP",
          "slug": "ogaki",
          "canonical_path": "/cities/jp/ogaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854691",
          "name": "Ogano",
          "country_code": "JP",
          "slug": "ogano",
          "canonical_path": "/cities/jp/ogano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854665",
          "name": "Ogawamachi",
          "country_code": "JP",
          "slug": "ogawamachi",
          "canonical_path": "/cities/jp/ogawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611611",
          "name": "Ogi",
          "country_code": "JP",
          "slug": "ogi-33-1854650",
          "canonical_path": "/cities/jp/ogi-33-1854650/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10987664",
          "name": "Ōgi",
          "country_code": "JP",
          "slug": "ogi",
          "canonical_path": "/cities/jp/ogi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854629",
          "name": "Ogōri-shimogō",
          "country_code": "JP",
          "slug": "ogori-shimogo",
          "canonical_path": "/cities/jp/ogori-shimogo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854626",
          "name": "Ogose",
          "country_code": "JP",
          "slug": "ogose",
          "canonical_path": "/cities/jp/ogose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854611",
          "name": "Ogunimachi",
          "country_code": "JP",
          "slug": "ogunimachi",
          "canonical_path": "/cities/jp/ogunimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13132743",
          "name": "Ōharu",
          "country_code": "JP",
          "slug": "oharu",
          "canonical_path": "/cities/jp/oharu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2114107",
          "name": "Ōhira",
          "country_code": "JP",
          "slug": "ohira",
          "canonical_path": "/cities/jp/ohira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111471",
          "name": "Ōishida",
          "country_code": "JP",
          "slug": "oishida",
          "canonical_path": "/cities/jp/oishida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854492",
          "name": "Ōiso",
          "country_code": "JP",
          "slug": "oiso",
          "canonical_path": "/cities/jp/oiso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854487",
          "name": "Ōita",
          "country_code": "JP",
          "slug": "oita",
          "canonical_path": "/cities/jp/oita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8572879",
          "name": "Ōizumi-gakuenchō",
          "country_code": "JP",
          "slug": "oizumi-gakuencho",
          "canonical_path": "/cities/jp/oizumi-gakuencho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8572880",
          "name": "Ōizumimachi",
          "country_code": "JP",
          "slug": "oizumimachi",
          "canonical_path": "/cities/jp/oizumimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854444",
          "name": "Ojiya",
          "country_code": "JP",
          "slug": "ojiya",
          "canonical_path": "/cities/jp/ojiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854405",
          "name": "Ōkawa",
          "country_code": "JP",
          "slug": "okawa",
          "canonical_path": "/cities/jp/okawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854384",
          "name": "Okaya",
          "country_code": "JP",
          "slug": "okaya",
          "canonical_path": "/cities/jp/okaya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854383",
          "name": "Okayama",
          "country_code": "JP",
          "slug": "okayama",
          "canonical_path": "/cities/jp/okayama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854376",
          "name": "Okazaki",
          "country_code": "JP",
          "slug": "okazaki",
          "canonical_path": "/cities/jp/okazaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854371",
          "name": "Okegawa",
          "country_code": "JP",
          "slug": "okegawa",
          "canonical_path": "/cities/jp/okegawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1894616",
          "name": "Okinawa",
          "country_code": "JP",
          "slug": "okinawa",
          "canonical_path": "/cities/jp/okinawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854237",
          "name": "Okugano",
          "country_code": "JP",
          "slug": "okugano",
          "canonical_path": "/cities/jp/okugano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9197266",
          "name": "Okuno",
          "country_code": "JP",
          "slug": "okuno",
          "canonical_path": "/cities/jp/okuno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111441",
          "name": "Okunoya",
          "country_code": "JP",
          "slug": "okunoya",
          "canonical_path": "/cities/jp/okunoya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128693",
          "name": "Ōma",
          "country_code": "JP",
          "slug": "oma",
          "canonical_path": "/cities/jp/oma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854186",
          "name": "Ōmachi",
          "country_code": "JP",
          "slug": "omachi",
          "canonical_path": "/cities/jp/omachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854189",
          "name": "Ōmachi",
          "country_code": "JP",
          "slug": "omachi-33-7391358",
          "canonical_path": "/cities/jp/omachi-33-7391358/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822196",
          "name": "Omaezaki",
          "country_code": "JP",
          "slug": "omaezaki",
          "canonical_path": "/cities/jp/omaezaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854177",
          "name": "Ōmamachō-ōmama",
          "country_code": "JP",
          "slug": "omamacho-omama",
          "canonical_path": "/cities/jp/omamacho-omama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854162",
          "name": "Ōme",
          "country_code": "JP",
          "slug": "ome",
          "canonical_path": "/cities/jp/ome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1863451",
          "name": "Ōmihachiman",
          "country_code": "JP",
          "slug": "omihachiman",
          "canonical_path": "/cities/jp/omihachiman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822101",
          "name": "Omitama",
          "country_code": "JP",
          "slug": "omitama",
          "canonical_path": "/cities/jp/omitama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111425",
          "name": "Ōmiya",
          "country_code": "JP",
          "slug": "omiya-14-7452680",
          "canonical_path": "/cities/jp/omiya-14-7452680/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854093",
          "name": "Ōmura",
          "country_code": "JP",
          "slug": "omura",
          "canonical_path": "/cities/jp/omura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854083",
          "name": "Ōmuta",
          "country_code": "JP",
          "slug": "omuta",
          "canonical_path": "/cities/jp/omuta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111401",
          "name": "Onagawa Chō",
          "country_code": "JP",
          "slug": "onagawa-cho",
          "canonical_path": "/cities/jp/onagawa-cho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854037",
          "name": "Onna",
          "country_code": "JP",
          "slug": "onna",
          "canonical_path": "/cities/jp/onna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854022",
          "name": "Ono",
          "country_code": "JP",
          "slug": "ono",
          "canonical_path": "/cities/jp/ono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854026",
          "name": "Ono",
          "country_code": "JP",
          "slug": "ono-13-7370812",
          "canonical_path": "/cities/jp/ono-13-7370812/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1854028",
          "name": "Ōno-hara",
          "country_code": "JP",
          "slug": "ono-hara",
          "canonical_path": "/cities/jp/ono-hara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822146",
          "name": "Ōnojō",
          "country_code": "JP",
          "slug": "onojo",
          "canonical_path": "/cities/jp/onojo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853992",
          "name": "Onomichi",
          "country_code": "JP",
          "slug": "onomichi",
          "canonical_path": "/cities/jp/onomichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102059",
          "name": "ootashi",
          "country_code": "JP",
          "slug": "ootashi-102059",
          "canonical_path": "/cities/jp/ootashi-102059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:322059",
          "name": "ootashi",
          "country_code": "JP",
          "slug": "ootashi-322059",
          "canonical_path": "/cities/jp/ootashi-322059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853909",
          "name": "Osaka",
          "country_code": "JP",
          "slug": "osaka",
          "canonical_path": "/cities/jp/osaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1895636",
          "name": "Ōsaki",
          "country_code": "JP",
          "slug": "osaki",
          "canonical_path": "/cities/jp/osaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822188",
          "name": "Ōsaki",
          "country_code": "JP",
          "slug": "osaki-24-7447001",
          "canonical_path": "/cities/jp/osaki-24-7447001/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128605",
          "name": "Oshamambe",
          "country_code": "JP",
          "slug": "oshamambe",
          "canonical_path": "/cities/jp/oshamambe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611620",
          "name": "Ōshima",
          "country_code": "JP",
          "slug": "oshima-40-1853724",
          "canonical_path": "/cities/jp/oshima-40-1853724/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8604660",
          "name": "Oshino",
          "country_code": "JP",
          "slug": "oshino",
          "canonical_path": "/cities/jp/oshino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822184",
          "name": "Ōshū",
          "country_code": "JP",
          "slug": "oshu",
          "canonical_path": "/cities/jp/oshu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853677",
          "name": "Ōta",
          "country_code": "JP",
          "slug": "ota",
          "canonical_path": "/cities/jp/ota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111335",
          "name": "Ōta",
          "country_code": "JP",
          "slug": "ota-16-2110604",
          "canonical_path": "/cities/jp/ota-16-2110604/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8469289",
          "name": "Ōta",
          "country_code": "JP",
          "slug": "ota-40-1853655",
          "canonical_path": "/cities/jp/ota-40-1853655/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853662",
          "name": "Ōtake",
          "country_code": "JP",
          "slug": "otake",
          "canonical_path": "/cities/jp/otake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111332",
          "name": "Ōtaki",
          "country_code": "JP",
          "slug": "otaki",
          "canonical_path": "/cities/jp/otaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128574",
          "name": "Otaru",
          "country_code": "JP",
          "slug": "otaru",
          "canonical_path": "/cities/jp/otaru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111325",
          "name": "Ōtawara",
          "country_code": "JP",
          "slug": "otawara",
          "canonical_path": "/cities/jp/otawara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128558",
          "name": "Otofuke",
          "country_code": "JP",
          "slug": "otofuke",
          "canonical_path": "/cities/jp/otofuke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853574",
          "name": "Ōtsu",
          "country_code": "JP",
          "slug": "otsu",
          "canonical_path": "/cities/jp/otsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853564",
          "name": "Ōtsuki",
          "country_code": "JP",
          "slug": "otsuki",
          "canonical_path": "/cities/jp/otsuki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822122",
          "name": "Ōuda-yamaguchi",
          "country_code": "JP",
          "slug": "ouda-yamaguchi",
          "canonical_path": "/cities/jp/ouda-yamaguchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128536",
          "name": "Ōwani",
          "country_code": "JP",
          "slug": "owani",
          "canonical_path": "/cities/jp/owani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6698269",
          "name": "Owariasahi",
          "country_code": "JP",
          "slug": "owariasahi",
          "canonical_path": "/cities/jp/owariasahi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853514",
          "name": "Owase",
          "country_code": "JP",
          "slug": "owase",
          "canonical_path": "/cities/jp/owase/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822124",
          "name": "Oyabe",
          "country_code": "JP",
          "slug": "oyabe",
          "canonical_path": "/cities/jp/oyabe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853483",
          "name": "Oyama",
          "country_code": "JP",
          "slug": "oyama",
          "canonical_path": "/cities/jp/oyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853485",
          "name": "Oyama",
          "country_code": "JP",
          "slug": "oyama-37-1851401",
          "canonical_path": "/cities/jp/oyama-37-1851401/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853486",
          "name": "Ōyama",
          "country_code": "JP",
          "slug": "oyama-37-1854181",
          "canonical_path": "/cities/jp/oyama-37-1854181/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10866150",
          "name": "Ōyama-higashichō",
          "country_code": "JP",
          "slug": "oyama-higashicho",
          "canonical_path": "/cities/jp/oyama-higashicho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10866151",
          "name": "Ōyama-kanaichō",
          "country_code": "JP",
          "slug": "oyama-kanaicho",
          "canonical_path": "/cities/jp/oyama-kanaicho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111283",
          "name": "Ōyauchi",
          "country_code": "JP",
          "slug": "oyauchi",
          "canonical_path": "/cities/jp/oyauchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9277789",
          "name": "Ōzato",
          "country_code": "JP",
          "slug": "ozato",
          "canonical_path": "/cities/jp/ozato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10630441",
          "name": "Ozora",
          "country_code": "JP",
          "slug": "ozora",
          "canonical_path": "/cities/jp/ozora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853433",
          "name": "Ōzu",
          "country_code": "JP",
          "slug": "ozu",
          "canonical_path": "/cities/jp/ozu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1926055",
          "name": "Ōzu",
          "country_code": "JP",
          "slug": "ozu-05-1853424",
          "canonical_path": "/cities/jp/ozu-05-1853424/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13118912",
          "name": "Ranzan",
          "country_code": "JP",
          "slug": "ranzan",
          "canonical_path": "/cities/jp/ranzan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128430",
          "name": "Rausu",
          "country_code": "JP",
          "slug": "rausu",
          "canonical_path": "/cities/jp/rausu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111277",
          "name": "Rifu",
          "country_code": "JP",
          "slug": "rifu",
          "canonical_path": "/cities/jp/rifu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822185",
          "name": "Rikuzen-Takata",
          "country_code": "JP",
          "slug": "rikuzen-takata",
          "canonical_path": "/cities/jp/rikuzen-takata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822115",
          "name": "Rittō",
          "country_code": "JP",
          "slug": "ritto",
          "canonical_path": "/cities/jp/ritto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10987759",
          "name": "Rokuchō",
          "country_code": "JP",
          "slug": "rokucho",
          "canonical_path": "/cities/jp/rokucho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111272",
          "name": "Rokugō",
          "country_code": "JP",
          "slug": "rokugo",
          "canonical_path": "/cities/jp/rokugo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128382",
          "name": "Rumoi",
          "country_code": "JP",
          "slug": "rumoi",
          "canonical_path": "/cities/jp/rumoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111258",
          "name": "Ryūgasaki",
          "country_code": "JP",
          "slug": "ryugasaki",
          "canonical_path": "/cities/jp/ryugasaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156712",
          "name": "Ryūō",
          "country_code": "JP",
          "slug": "ryuo-35-1863686",
          "canonical_path": "/cities/jp/ryuo-35-1863686/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853338",
          "name": "Sabae",
          "country_code": "JP",
          "slug": "sabae",
          "canonical_path": "/cities/jp/sabae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825492",
          "name": "Sado",
          "country_code": "JP",
          "slug": "sado",
          "canonical_path": "/cities/jp/sado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853303",
          "name": "Saga",
          "country_code": "JP",
          "slug": "saga",
          "canonical_path": "/cities/jp/saga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111248",
          "name": "Sagae",
          "country_code": "JP",
          "slug": "sagae",
          "canonical_path": "/cities/jp/sagae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611609",
          "name": "Sagamihara",
          "country_code": "JP",
          "slug": "sagamihara",
          "canonical_path": "/cities/jp/sagamihara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853280",
          "name": "Sagara",
          "country_code": "JP",
          "slug": "sagara",
          "canonical_path": "/cities/jp/sagara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1926054",
          "name": "Saijō",
          "country_code": "JP",
          "slug": "saijo",
          "canonical_path": "/cities/jp/saijo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612561",
          "name": "Saikai",
          "country_code": "JP",
          "slug": "saikai",
          "canonical_path": "/cities/jp/saikai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853237",
          "name": "Saiki",
          "country_code": "JP",
          "slug": "saiki",
          "canonical_path": "/cities/jp/saiki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6940394",
          "name": "Saitama",
          "country_code": "JP",
          "slug": "saitama",
          "canonical_path": "/cities/jp/saitama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611608",
          "name": "Saito",
          "country_code": "JP",
          "slug": "saito",
          "canonical_path": "/cities/jp/saito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853213",
          "name": "Saka",
          "country_code": "JP",
          "slug": "saka",
          "canonical_path": "/cities/jp/saka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853209",
          "name": "Sakado",
          "country_code": "JP",
          "slug": "sakado",
          "canonical_path": "/cities/jp/sakado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611626",
          "name": "Sakai",
          "country_code": "JP",
          "slug": "sakai-06-7467387",
          "canonical_path": "/cities/jp/sakai-06-7467387/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853193",
          "name": "Sakai",
          "country_code": "JP",
          "slug": "sakai",
          "canonical_path": "/cities/jp/sakai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853195",
          "name": "Sakai",
          "country_code": "JP",
          "slug": "sakai-32-1853167",
          "canonical_path": "/cities/jp/sakai-32-1853167/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853192",
          "name": "Sakai-nakajima",
          "country_code": "JP",
          "slug": "sakai-nakajima",
          "canonical_path": "/cities/jp/sakai-nakajima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853190",
          "name": "Sakaidechō",
          "country_code": "JP",
          "slug": "sakaidecho",
          "canonical_path": "/cities/jp/sakaidecho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853174",
          "name": "Sakaiminato",
          "country_code": "JP",
          "slug": "sakaiminato",
          "canonical_path": "/cities/jp/sakaiminato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:182109",
          "name": "sakaishi",
          "country_code": "JP",
          "slug": "sakaishi-182109",
          "canonical_path": "/cities/jp/sakaishi-182109/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:271403",
          "name": "sakaishi",
          "country_code": "JP",
          "slug": "sakaishi-271403",
          "canonical_path": "/cities/jp/sakaishi-271403/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853163",
          "name": "Sakaki",
          "country_code": "JP",
          "slug": "sakaki",
          "canonical_path": "/cities/jp/sakaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853140",
          "name": "Sakata",
          "country_code": "JP",
          "slug": "sakata",
          "canonical_path": "/cities/jp/sakata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853127",
          "name": "Sakawa",
          "country_code": "JP",
          "slug": "sakawa",
          "canonical_path": "/cities/jp/sakawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853081",
          "name": "Saku",
          "country_code": "JP",
          "slug": "saku",
          "canonical_path": "/cities/jp/saku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612337",
          "name": "Sakura",
          "country_code": "JP",
          "slug": "sakura-38-7453516",
          "canonical_path": "/cities/jp/sakura-38-7453516/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111220",
          "name": "Sakura",
          "country_code": "JP",
          "slug": "sakura",
          "canonical_path": "/cities/jp/sakura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822105",
          "name": "Sakuragawa",
          "country_code": "JP",
          "slug": "sakuragawa",
          "canonical_path": "/cities/jp/sakuragawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1853066",
          "name": "Sakurai",
          "country_code": "JP",
          "slug": "sakurai",
          "canonical_path": "/cities/jp/sakurai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092142",
          "name": "sakurashi",
          "country_code": "JP",
          "slug": "sakurashi-092142",
          "canonical_path": "/cities/jp/sakurashi-092142/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122122",
          "name": "sakurashi",
          "country_code": "JP",
          "slug": "sakurashi-122122",
          "canonical_path": "/cities/jp/sakurashi-122122/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852984",
          "name": "Sanjō",
          "country_code": "JP",
          "slug": "sanjo",
          "canonical_path": "/cities/jp/sanjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822168",
          "name": "Sanmu",
          "country_code": "JP",
          "slug": "sanmu",
          "canonical_path": "/cities/jp/sanmu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852964",
          "name": "Sano",
          "country_code": "JP",
          "slug": "sano",
          "canonical_path": "/cities/jp/sano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612582",
          "name": "Sanyōonoda",
          "country_code": "JP",
          "slug": "sanyoonoda",
          "canonical_path": "/cities/jp/sanyoonoda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128295",
          "name": "Sapporo",
          "country_code": "JP",
          "slug": "sapporo",
          "canonical_path": "/cities/jp/sapporo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128279",
          "name": "Sarubetsu",
          "country_code": "JP",
          "slug": "sarubetsu",
          "canonical_path": "/cities/jp/sarubetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852915",
          "name": "Sasaguri",
          "country_code": "JP",
          "slug": "sasaguri",
          "canonical_path": "/cities/jp/sasaguri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852899",
          "name": "Sasebo",
          "country_code": "JP",
          "slug": "sasebo",
          "canonical_path": "/cities/jp/sasebo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156707",
          "name": "Satoshō",
          "country_code": "JP",
          "slug": "satosho",
          "canonical_path": "/cities/jp/satosho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852849",
          "name": "Satte",
          "country_code": "JP",
          "slug": "satte",
          "canonical_path": "/cities/jp/satte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1907146",
          "name": "Sayama",
          "country_code": "JP",
          "slug": "sayama",
          "canonical_path": "/cities/jp/sayama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825499",
          "name": "Sayama",
          "country_code": "JP",
          "slug": "sayama-32-7391699",
          "canonical_path": "/cities/jp/sayama-32-7391699/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852831",
          "name": "Sayō",
          "country_code": "JP",
          "slug": "sayo",
          "canonical_path": "/cities/jp/sayo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1898046",
          "name": "Seirō",
          "country_code": "JP",
          "slug": "seiro",
          "canonical_path": "/cities/jp/seiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852795",
          "name": "Sekichō-furumaya",
          "country_code": "JP",
          "slug": "sekicho-furumaya",
          "canonical_path": "/cities/jp/sekicho-furumaya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852788",
          "name": "Sekigahara",
          "country_code": "JP",
          "slug": "sekigahara",
          "canonical_path": "/cities/jp/sekigahara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852775",
          "name": "Sekimachi",
          "country_code": "JP",
          "slug": "sekimachi",
          "canonical_path": "/cities/jp/sekimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10866168",
          "name": "Sekimachi-higashi",
          "country_code": "JP",
          "slug": "sekimachi-higashi",
          "canonical_path": "/cities/jp/sekimachi-higashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8572938",
          "name": "Sekimachi-minami",
          "country_code": "JP",
          "slug": "sekimachi-minami",
          "canonical_path": "/cities/jp/sekimachi-minami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612707",
          "name": "Semboku",
          "country_code": "JP",
          "slug": "semboku",
          "canonical_path": "/cities/jp/semboku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852736",
          "name": "Sendai",
          "country_code": "JP",
          "slug": "sendai",
          "canonical_path": "/cities/jp/sendai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111149",
          "name": "Sendai",
          "country_code": "JP",
          "slug": "sendai-24-2111147",
          "canonical_path": "/cities/jp/sendai-24-2111147/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825500",
          "name": "Sennan",
          "country_code": "JP",
          "slug": "sennan",
          "canonical_path": "/cities/jp/sennan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111140",
          "name": "Setamai",
          "country_code": "JP",
          "slug": "setamai",
          "canonical_path": "/cities/jp/setamai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852663",
          "name": "Seto",
          "country_code": "JP",
          "slug": "seto",
          "canonical_path": "/cities/jp/seto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612566",
          "name": "Setouchi",
          "country_code": "JP",
          "slug": "setouchi",
          "canonical_path": "/cities/jp/setouchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852643",
          "name": "Settsu",
          "country_code": "JP",
          "slug": "settsu",
          "canonical_path": "/cities/jp/settsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852607",
          "name": "Shibata",
          "country_code": "JP",
          "slug": "shibata",
          "canonical_path": "/cities/jp/shibata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128207",
          "name": "Shibecha",
          "country_code": "JP",
          "slug": "shibecha",
          "canonical_path": "/cities/jp/shibecha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128206",
          "name": "Shibetsu",
          "country_code": "JP",
          "slug": "shibetsu",
          "canonical_path": "/cities/jp/shibetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852595",
          "name": "Shibukawa",
          "country_code": "JP",
          "slug": "shibukawa",
          "canonical_path": "/cities/jp/shibukawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852588",
          "name": "Shibushi",
          "country_code": "JP",
          "slug": "shibushi",
          "canonical_path": "/cities/jp/shibushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852561",
          "name": "Shido",
          "country_code": "JP",
          "slug": "shido",
          "canonical_path": "/cities/jp/shido/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128186",
          "name": "Shihoro",
          "country_code": "JP",
          "slug": "shihoro",
          "canonical_path": "/cities/jp/shihoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825501",
          "name": "Shijōnawate",
          "country_code": "JP",
          "slug": "shijonawate",
          "canonical_path": "/cities/jp/shijonawate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111115",
          "name": "Shikama",
          "country_code": "JP",
          "slug": "shikama",
          "canonical_path": "/cities/jp/shikama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852502",
          "name": "Shiki",
          "country_code": "JP",
          "slug": "shiki",
          "canonical_path": "/cities/jp/shiki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612345",
          "name": "Shikokuchūō",
          "country_code": "JP",
          "slug": "shikokuchuo",
          "canonical_path": "/cities/jp/shikokuchuo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852481",
          "name": "Shima",
          "country_code": "JP",
          "slug": "shima",
          "canonical_path": "/cities/jp/shima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852479",
          "name": "Shimabara",
          "country_code": "JP",
          "slug": "shimabara",
          "canonical_path": "/cities/jp/shimabara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11147658",
          "name": "Shimada",
          "country_code": "JP",
          "slug": "shimada-21-7412706",
          "canonical_path": "/cities/jp/shimada-21-7412706/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852472",
          "name": "Shimada",
          "country_code": "JP",
          "slug": "shimada",
          "canonical_path": "/cities/jp/shimada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128159",
          "name": "Shimizu",
          "country_code": "JP",
          "slug": "shimizu",
          "canonical_path": "/cities/jp/shimizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852163",
          "name": "Shimo-tsuma",
          "country_code": "JP",
          "slug": "shimo-tsuma",
          "canonical_path": "/cities/jp/shimo-tsuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10865987",
          "name": "Shimo’ochiai",
          "country_code": "JP",
          "slug": "shimo-ochiai",
          "canonical_path": "/cities/jp/shimo-ochiai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852357",
          "name": "Shimoda",
          "country_code": "JP",
          "slug": "shimoda",
          "canonical_path": "/cities/jp/shimoda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852314",
          "name": "Shimoichi",
          "country_code": "JP",
          "slug": "shimoichi",
          "canonical_path": "/cities/jp/shimoichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8573717",
          "name": "Shimoigusa",
          "country_code": "JP",
          "slug": "shimoigusa",
          "canonical_path": "/cities/jp/shimoigusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852237",
          "name": "Shimonita",
          "country_code": "JP",
          "slug": "shimonita",
          "canonical_path": "/cities/jp/shimonita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852225",
          "name": "Shimonoseki",
          "country_code": "JP",
          "slug": "shimonoseki",
          "canonical_path": "/cities/jp/shimonoseki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852198",
          "name": "Shimoseki",
          "country_code": "JP",
          "slug": "shimoseki",
          "canonical_path": "/cities/jp/shimoseki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1907301",
          "name": "Shimotoda",
          "country_code": "JP",
          "slug": "shimotoda",
          "canonical_path": "/cities/jp/shimotoda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822175",
          "name": "Shimotsuke",
          "country_code": "JP",
          "slug": "shimotsuke",
          "canonical_path": "/cities/jp/shimotsuke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8572943",
          "name": "Shimura",
          "country_code": "JP",
          "slug": "shimura",
          "canonical_path": "/cities/jp/shimura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852102",
          "name": "Shin’ichi",
          "country_code": "JP",
          "slug": "shin-ichi",
          "canonical_path": "/cities/jp/shin-ichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1847947",
          "name": "Shingū",
          "country_code": "JP",
          "slug": "shingu",
          "canonical_path": "/cities/jp/shingu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852109",
          "name": "Shingū",
          "country_code": "JP",
          "slug": "shingu-07-1859874",
          "canonical_path": "/cities/jp/shingu-07-1859874/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111065",
          "name": "Shinjō",
          "country_code": "JP",
          "slug": "shinjo",
          "canonical_path": "/cities/jp/shinjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062057",
          "name": "shinjoushi",
          "country_code": "JP",
          "slug": "shinjoushi-062057",
          "canonical_path": "/cities/jp/shinjoushi-062057/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232211",
          "name": "shinjoushi",
          "country_code": "JP",
          "slug": "shinjoushi-232211",
          "canonical_path": "/cities/jp/shinjoushi-232211/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111105",
          "name": "Shinmachi",
          "country_code": "JP",
          "slug": "shinmachi",
          "canonical_path": "/cities/jp/shinmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852046",
          "name": "Shinshiro",
          "country_code": "JP",
          "slug": "shinshiro",
          "canonical_path": "/cities/jp/shinshiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128095",
          "name": "Shintoku",
          "country_code": "JP",
          "slug": "shintoku",
          "canonical_path": "/cities/jp/shintoku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822109",
          "name": "Shintomi",
          "country_code": "JP",
          "slug": "shintomi",
          "canonical_path": "/cities/jp/shintomi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111049",
          "name": "Shiogama",
          "country_code": "JP",
          "slug": "shiogama",
          "canonical_path": "/cities/jp/shiogama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1852003",
          "name": "Shiojiri",
          "country_code": "JP",
          "slug": "shiojiri",
          "canonical_path": "/cities/jp/shiojiri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851936",
          "name": "Shirahama",
          "country_code": "JP",
          "slug": "shirahama",
          "canonical_path": "/cities/jp/shirahama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851935",
          "name": "Shirahamachō-usazakiminami",
          "country_code": "JP",
          "slug": "shirahamacho-usazakiminami",
          "canonical_path": "/cities/jp/shirahamacho-usazakiminami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612472",
          "name": "Shirakawa",
          "country_code": "JP",
          "slug": "shirakawa",
          "canonical_path": "/cities/jp/shirakawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128074",
          "name": "Shiranuka",
          "country_code": "JP",
          "slug": "shiranuka",
          "canonical_path": "/cities/jp/shiranuka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2128072",
          "name": "Shiraoi",
          "country_code": "JP",
          "slug": "shiraoi",
          "canonical_path": "/cities/jp/shiraoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851883",
          "name": "Shiraoka",
          "country_code": "JP",
          "slug": "shiraoka",
          "canonical_path": "/cities/jp/shiraoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111018",
          "name": "Shiroi",
          "country_code": "JP",
          "slug": "shiroi",
          "canonical_path": "/cities/jp/shiroi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111016",
          "name": "Shiroishi",
          "country_code": "JP",
          "slug": "shiroishi",
          "canonical_path": "/cities/jp/shiroishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612481",
          "name": "Shisō",
          "country_code": "JP",
          "slug": "shiso",
          "canonical_path": "/cities/jp/shiso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2111008",
          "name": "Shisui",
          "country_code": "JP",
          "slug": "shisui",
          "canonical_path": "/cities/jp/shisui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110994",
          "name": "Shizukuishi",
          "country_code": "JP",
          "slug": "shizukuishi",
          "canonical_path": "/cities/jp/shizukuishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851717",
          "name": "Shizuoka",
          "country_code": "JP",
          "slug": "shizuoka",
          "canonical_path": "/cities/jp/shizuoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851713",
          "name": "Shōbara",
          "country_code": "JP",
          "slug": "shobara",
          "canonical_path": "/cities/jp/shobara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10630004",
          "name": "Shonai",
          "country_code": "JP",
          "slug": "shonai",
          "canonical_path": "/cities/jp/shonai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156738",
          "name": "Shōwa",
          "country_code": "JP",
          "slug": "showa",
          "canonical_path": "/cities/jp/showa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851648",
          "name": "Shukugō",
          "country_code": "JP",
          "slug": "shukugo",
          "canonical_path": "/cities/jp/shukugo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612583",
          "name": "Shūnan",
          "country_code": "JP",
          "slug": "shunan",
          "canonical_path": "/cities/jp/shunan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851622",
          "name": "Sobue",
          "country_code": "JP",
          "slug": "sobue",
          "canonical_path": "/cities/jp/sobue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612456",
          "name": "Sodegaura",
          "country_code": "JP",
          "slug": "sodegaura",
          "canonical_path": "/cities/jp/sodegaura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851617",
          "name": "Soeda",
          "country_code": "JP",
          "slug": "soeda",
          "canonical_path": "/cities/jp/soeda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851606",
          "name": "Sōja",
          "country_code": "JP",
          "slug": "soja",
          "canonical_path": "/cities/jp/soja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851604",
          "name": "Sōka",
          "country_code": "JP",
          "slug": "soka",
          "canonical_path": "/cities/jp/soka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822169",
          "name": "Sōma",
          "country_code": "JP",
          "slug": "soma",
          "canonical_path": "/cities/jp/soma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612542",
          "name": "Soo",
          "country_code": "JP",
          "slug": "soo",
          "canonical_path": "/cities/jp/soo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822167",
          "name": "Sōsa",
          "country_code": "JP",
          "slug": "sosa",
          "canonical_path": "/cities/jp/sosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10267168",
          "name": "Sue",
          "country_code": "JP",
          "slug": "sue",
          "canonical_path": "/cities/jp/sue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851504",
          "name": "Sugito",
          "country_code": "JP",
          "slug": "sugito",
          "canonical_path": "/cities/jp/sugito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851494",
          "name": "Suibara",
          "country_code": "JP",
          "slug": "suibara",
          "canonical_path": "/cities/jp/suibara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851483",
          "name": "Suita",
          "country_code": "JP",
          "slug": "suita",
          "canonical_path": "/cities/jp/suita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110959",
          "name": "Sukagawa",
          "country_code": "JP",
          "slug": "sukagawa",
          "canonical_path": "/cities/jp/sukagawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851462",
          "name": "Sukumo",
          "country_code": "JP",
          "slug": "sukumo",
          "canonical_path": "/cities/jp/sukumo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10963041",
          "name": "Sumiyoshi",
          "country_code": "JP",
          "slug": "sumiyoshi-40-1858665",
          "canonical_path": "/cities/jp/sumiyoshi-40-1858665/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851426",
          "name": "Sumoto",
          "country_code": "JP",
          "slug": "sumoto",
          "canonical_path": "/cities/jp/sumoto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127955",
          "name": "Sunagawa",
          "country_code": "JP",
          "slug": "sunagawa",
          "canonical_path": "/cities/jp/sunagawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851390",
          "name": "Susaki",
          "country_code": "JP",
          "slug": "susaki",
          "canonical_path": "/cities/jp/susaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822195",
          "name": "Susono",
          "country_code": "JP",
          "slug": "susono",
          "canonical_path": "/cities/jp/susono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851368",
          "name": "Suwa",
          "country_code": "JP",
          "slug": "suwa",
          "canonical_path": "/cities/jp/suwa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851357",
          "name": "Suzaka",
          "country_code": "JP",
          "slug": "suzaka",
          "canonical_path": "/cities/jp/suzaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822142",
          "name": "Suzu",
          "country_code": "JP",
          "slug": "suzu",
          "canonical_path": "/cities/jp/suzu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851348",
          "name": "Suzuka",
          "country_code": "JP",
          "slug": "suzuka",
          "canonical_path": "/cities/jp/suzuka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851319",
          "name": "Tachiarai",
          "country_code": "JP",
          "slug": "tachiarai",
          "canonical_path": "/cities/jp/tachiarai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611487",
          "name": "Tachikawa",
          "country_code": "JP",
          "slug": "tachikawa-40-1851306",
          "canonical_path": "/cities/jp/tachikawa-40-1851306/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851286",
          "name": "Tadaoka-higashi",
          "country_code": "JP",
          "slug": "tadaoka-higashi",
          "canonical_path": "/cities/jp/tadaoka-higashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851282",
          "name": "Tadotsu",
          "country_code": "JP",
          "slug": "tadotsu",
          "canonical_path": "/cities/jp/tadotsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851279",
          "name": "Taga",
          "country_code": "JP",
          "slug": "taga",
          "canonical_path": "/cities/jp/taga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110927",
          "name": "Tagajō-shi",
          "country_code": "JP",
          "slug": "tagajo-shi",
          "canonical_path": "/cities/jp/tagajo-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11154442",
          "name": "Tagami",
          "country_code": "JP",
          "slug": "tagami",
          "canonical_path": "/cities/jp/tagami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851273",
          "name": "Tagawa",
          "country_code": "JP",
          "slug": "tagawa",
          "canonical_path": "/cities/jp/tagawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851259",
          "name": "Tahara",
          "country_code": "JP",
          "slug": "tahara",
          "canonical_path": "/cities/jp/tahara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127931",
          "name": "Taiki",
          "country_code": "JP",
          "slug": "taiki",
          "canonical_path": "/cities/jp/taiki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825493",
          "name": "Tainai",
          "country_code": "JP",
          "slug": "tainai",
          "canonical_path": "/cities/jp/tainai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9287951",
          "name": "Taishi",
          "country_code": "JP",
          "slug": "taishi",
          "canonical_path": "/cities/jp/taishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851193",
          "name": "Tajimi",
          "country_code": "JP",
          "slug": "tajimi",
          "canonical_path": "/cities/jp/tajimi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11694589",
          "name": "Tajiri",
          "country_code": "JP",
          "slug": "tajiri",
          "canonical_path": "/cities/jp/tajiri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851176",
          "name": "Takabō",
          "country_code": "JP",
          "slug": "takabo",
          "canonical_path": "/cities/jp/takabo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110893",
          "name": "Takahagi",
          "country_code": "JP",
          "slug": "takahagi",
          "canonical_path": "/cities/jp/takahagi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851154",
          "name": "Takahama",
          "country_code": "JP",
          "slug": "takahama",
          "canonical_path": "/cities/jp/takahama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851155",
          "name": "Takahama",
          "country_code": "JP",
          "slug": "takahama-01-7369801",
          "canonical_path": "/cities/jp/takahama-01-7369801/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851137",
          "name": "Takahashi",
          "country_code": "JP",
          "slug": "takahashi",
          "canonical_path": "/cities/jp/takahashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110891",
          "name": "Takahata",
          "country_code": "JP",
          "slug": "takahata",
          "canonical_path": "/cities/jp/takahata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851125",
          "name": "Takaishi",
          "country_code": "JP",
          "slug": "takaishi",
          "canonical_path": "/cities/jp/takaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851100",
          "name": "Takamatsu",
          "country_code": "JP",
          "slug": "takamatsu",
          "canonical_path": "/cities/jp/takamatsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851079",
          "name": "Takamori",
          "country_code": "JP",
          "slug": "takamori",
          "canonical_path": "/cities/jp/takamori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851068",
          "name": "Takanabe",
          "country_code": "JP",
          "slug": "takanabe",
          "canonical_path": "/cities/jp/takanabe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10866160",
          "name": "Takanodai",
          "country_code": "JP",
          "slug": "takanodai",
          "canonical_path": "/cities/jp/takanodai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851032",
          "name": "Takaoka",
          "country_code": "JP",
          "slug": "takaoka",
          "canonical_path": "/cities/jp/takaoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851012",
          "name": "Takarazuka",
          "country_code": "JP",
          "slug": "takarazuka",
          "canonical_path": "/cities/jp/takarazuka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611486",
          "name": "Takasago",
          "country_code": "JP",
          "slug": "takasago",
          "canonical_path": "/cities/jp/takasago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1851002",
          "name": "Takasaki",
          "country_code": "JP",
          "slug": "takasaki",
          "canonical_path": "/cities/jp/takasaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822116",
          "name": "Takashima",
          "country_code": "JP",
          "slug": "takashima",
          "canonical_path": "/cities/jp/takashima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13132767",
          "name": "Takasu",
          "country_code": "JP",
          "slug": "takasu",
          "canonical_path": "/cities/jp/takasu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850910",
          "name": "Takatsuki",
          "country_code": "JP",
          "slug": "takatsuki",
          "canonical_path": "/cities/jp/takatsuki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850892",
          "name": "Takayama",
          "country_code": "JP",
          "slug": "takayama",
          "canonical_path": "/cities/jp/takayama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850860",
          "name": "Takehara",
          "country_code": "JP",
          "slug": "takehara",
          "canonical_path": "/cities/jp/takehara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10987752",
          "name": "Takenotsuka",
          "country_code": "JP",
          "slug": "takenotsuka",
          "canonical_path": "/cities/jp/takenotsuka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850834",
          "name": "Takeo",
          "country_code": "JP",
          "slug": "takeo",
          "canonical_path": "/cities/jp/takeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850818",
          "name": "Taketoyo",
          "country_code": "JP",
          "slug": "taketoyo",
          "canonical_path": "/cities/jp/taketoyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127896",
          "name": "Takikawa",
          "country_code": "JP",
          "slug": "takikawa",
          "canonical_path": "/cities/jp/takikawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611224",
          "name": "Takizawa",
          "country_code": "JP",
          "slug": "takizawa",
          "canonical_path": "/cities/jp/takizawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110850",
          "name": "Tako",
          "country_code": "JP",
          "slug": "tako",
          "canonical_path": "/cities/jp/tako/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611483",
          "name": "Taku",
          "country_code": "JP",
          "slug": "taku",
          "canonical_path": "/cities/jp/taku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822129",
          "name": "Tama",
          "country_code": "JP",
          "slug": "tama",
          "canonical_path": "/cities/jp/tama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850746",
          "name": "Tamamura",
          "country_code": "JP",
          "slug": "tamamura",
          "canonical_path": "/cities/jp/tamamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850745",
          "name": "Tamana",
          "country_code": "JP",
          "slug": "tamana",
          "canonical_path": "/cities/jp/tamana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850742",
          "name": "Tamano",
          "country_code": "JP",
          "slug": "tamano",
          "canonical_path": "/cities/jp/tamano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13132798",
          "name": "Tamba-Sasayama",
          "country_code": "JP",
          "slug": "tamba-sasayama",
          "canonical_path": "/cities/jp/tamba-sasayama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822170",
          "name": "Tamura",
          "country_code": "JP",
          "slug": "tamura",
          "canonical_path": "/cities/jp/tamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850708",
          "name": "Tanabe",
          "country_code": "JP",
          "slug": "tanabe-43-1850706",
          "canonical_path": "/cities/jp/tanabe-43-1850706/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110837",
          "name": "Tanagura",
          "country_code": "JP",
          "slug": "tanagura",
          "canonical_path": "/cities/jp/tanagura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850621",
          "name": "Tara",
          "country_code": "JP",
          "slug": "tara",
          "canonical_path": "/cities/jp/tara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850617",
          "name": "Taragi",
          "country_code": "JP",
          "slug": "taragi",
          "canonical_path": "/cities/jp/taragi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850600",
          "name": "Tarui",
          "country_code": "JP",
          "slug": "tarui",
          "canonical_path": "/cities/jp/tarui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850589",
          "name": "Tarumizu",
          "country_code": "JP",
          "slug": "tarumizu",
          "canonical_path": "/cities/jp/tarumizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850559",
          "name": "Tatebayashi",
          "country_code": "JP",
          "slug": "tatebayashi",
          "canonical_path": "/cities/jp/tatebayashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850523",
          "name": "Tateyama",
          "country_code": "JP",
          "slug": "tateyama",
          "canonical_path": "/cities/jp/tateyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850508",
          "name": "Tatsugō",
          "country_code": "JP",
          "slug": "tatsugo",
          "canonical_path": "/cities/jp/tatsugo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612326",
          "name": "Tatsuno",
          "country_code": "JP",
          "slug": "tatsuno-13-1847945",
          "canonical_path": "/cities/jp/tatsuno-13-1847945/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850498",
          "name": "Tatsuno",
          "country_code": "JP",
          "slug": "tatsuno",
          "canonical_path": "/cities/jp/tatsuno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9633180",
          "name": "Tatsuno-kita",
          "country_code": "JP",
          "slug": "tatsuno-kita",
          "canonical_path": "/cities/jp/tatsuno-kita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110793",
          "name": "Tendō",
          "country_code": "JP",
          "slug": "tendo",
          "canonical_path": "/cities/jp/tendo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850405",
          "name": "Tennō",
          "country_code": "JP",
          "slug": "tenno",
          "canonical_path": "/cities/jp/tenno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850396",
          "name": "Tenri",
          "country_code": "JP",
          "slug": "tenri",
          "canonical_path": "/cities/jp/tenri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127822",
          "name": "Teshikaga",
          "country_code": "JP",
          "slug": "teshikaga",
          "canonical_path": "/cities/jp/teshikaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850345",
          "name": "Toba",
          "country_code": "JP",
          "slug": "toba",
          "canonical_path": "/cities/jp/toba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127802",
          "name": "Tōbetsu",
          "country_code": "JP",
          "slug": "tobetsu",
          "canonical_path": "/cities/jp/tobetsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850311",
          "name": "Tochigi",
          "country_code": "JP",
          "slug": "tochigi",
          "canonical_path": "/cities/jp/tochigi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110774",
          "name": "Tōgane",
          "country_code": "JP",
          "slug": "togane",
          "canonical_path": "/cities/jp/togane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850269",
          "name": "Togitsu",
          "country_code": "JP",
          "slug": "togitsu",
          "canonical_path": "/cities/jp/togitsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156699",
          "name": "Tōin",
          "country_code": "JP",
          "slug": "toin",
          "canonical_path": "/cities/jp/toin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612537",
          "name": "Tōkai",
          "country_code": "JP",
          "slug": "tokai",
          "canonical_path": "/cities/jp/tokai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850217",
          "name": "Tōkamachi",
          "country_code": "JP",
          "slug": "tokamachi",
          "canonical_path": "/cities/jp/tokamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850207",
          "name": "Toki",
          "country_code": "JP",
          "slug": "toki",
          "canonical_path": "/cities/jp/toki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850185",
          "name": "Tokoname",
          "country_code": "JP",
          "slug": "tokoname",
          "canonical_path": "/cities/jp/tokoname/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850181",
          "name": "Tokorozawa",
          "country_code": "JP",
          "slug": "tokorozawa",
          "canonical_path": "/cities/jp/tokorozawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850158",
          "name": "Tokushima",
          "country_code": "JP",
          "slug": "tokushima",
          "canonical_path": "/cities/jp/tokushima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:wikidata:Q1490",
          "name": "Tokyo",
          "country_code": "JP",
          "slug": "tokyo",
          "canonical_path": "/cities/jp/tokyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127733",
          "name": "Tomakomai",
          "country_code": "JP",
          "slug": "tomakomai",
          "canonical_path": "/cities/jp/tomakomai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611941",
          "name": "Tome",
          "country_code": "JP",
          "slug": "tome",
          "canonical_path": "/cities/jp/tome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822177",
          "name": "Tōmi",
          "country_code": "JP",
          "slug": "tomi",
          "canonical_path": "/cities/jp/tomi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850108",
          "name": "Tomigusuku",
          "country_code": "JP",
          "slug": "tomigusuku",
          "canonical_path": "/cities/jp/tomigusuku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850091",
          "name": "Tomioka",
          "country_code": "JP",
          "slug": "tomioka",
          "canonical_path": "/cities/jp/tomioka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110744",
          "name": "Tomiya",
          "country_code": "JP",
          "slug": "tomiya",
          "canonical_path": "/cities/jp/tomiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110743",
          "name": "Tomobe",
          "country_code": "JP",
          "slug": "tomobe",
          "canonical_path": "/cities/jp/tomobe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822139",
          "name": "Tonami",
          "country_code": "JP",
          "slug": "tonami",
          "canonical_path": "/cities/jp/tonami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850034",
          "name": "Tondabayashichō",
          "country_code": "JP",
          "slug": "tondabayashicho",
          "canonical_path": "/cities/jp/tondabayashicho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110735",
          "name": "Tōno",
          "country_code": "JP",
          "slug": "tono",
          "canonical_path": "/cities/jp/tono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1850004",
          "name": "Tonoshō",
          "country_code": "JP",
          "slug": "tonosho",
          "canonical_path": "/cities/jp/tonosho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611474",
          "name": "Tōon",
          "country_code": "JP",
          "slug": "toon",
          "canonical_path": "/cities/jp/toon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110729",
          "name": "Toride",
          "country_code": "JP",
          "slug": "toride",
          "canonical_path": "/cities/jp/toride/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612328",
          "name": "Tosa",
          "country_code": "JP",
          "slug": "tosa",
          "canonical_path": "/cities/jp/tosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611481",
          "name": "Tosashimizu",
          "country_code": "JP",
          "slug": "tosashimizu",
          "canonical_path": "/cities/jp/tosashimizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849904",
          "name": "Tosu",
          "country_code": "JP",
          "slug": "tosu",
          "canonical_path": "/cities/jp/tosu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849892",
          "name": "Tottori-shi",
          "country_code": "JP",
          "slug": "tottori-shi",
          "canonical_path": "/cities/jp/tottori-shi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822207",
          "name": "Towada",
          "country_code": "JP",
          "slug": "towada",
          "canonical_path": "/cities/jp/towada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849876",
          "name": "Toyama",
          "country_code": "JP",
          "slug": "toyama",
          "canonical_path": "/cities/jp/toyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1864055",
          "name": "Tōyō",
          "country_code": "JP",
          "slug": "toyo",
          "canonical_path": "/cities/jp/toyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822210",
          "name": "Toyoake",
          "country_code": "JP",
          "slug": "toyoake",
          "canonical_path": "/cities/jp/toyoake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849846",
          "name": "Toyohashi",
          "country_code": "JP",
          "slug": "toyohashi",
          "canonical_path": "/cities/jp/toyohashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849845",
          "name": "Toyokawa",
          "country_code": "JP",
          "slug": "toyokawa",
          "canonical_path": "/cities/jp/toyokawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849837",
          "name": "Toyonaka",
          "country_code": "JP",
          "slug": "toyonaka",
          "canonical_path": "/cities/jp/toyonaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849831",
          "name": "Toyooka",
          "country_code": "JP",
          "slug": "toyooka",
          "canonical_path": "/cities/jp/toyooka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156711",
          "name": "Toyosato",
          "country_code": "JP",
          "slug": "toyosato",
          "canonical_path": "/cities/jp/toyosato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849814",
          "name": "Toyota",
          "country_code": "JP",
          "slug": "toyota",
          "canonical_path": "/cities/jp/toyota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849796",
          "name": "Tsu",
          "country_code": "JP",
          "slug": "tsu",
          "canonical_path": "/cities/jp/tsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849788",
          "name": "Tsubame",
          "country_code": "JP",
          "slug": "tsubame",
          "canonical_path": "/cities/jp/tsubame/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849782",
          "name": "Tsubata",
          "country_code": "JP",
          "slug": "tsubata",
          "canonical_path": "/cities/jp/tsubata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822099",
          "name": "Tsuchiura",
          "country_code": "JP",
          "slug": "tsuchiura",
          "canonical_path": "/cities/jp/tsuchiura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822205",
          "name": "Tsugaru",
          "country_code": "JP",
          "slug": "tsugaru",
          "canonical_path": "/cities/jp/tsugaru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849733",
          "name": "Tsuha",
          "country_code": "JP",
          "slug": "tsuha",
          "canonical_path": "/cities/jp/tsuha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110681",
          "name": "Tsukuba",
          "country_code": "JP",
          "slug": "tsukuba",
          "canonical_path": "/cities/jp/tsukuba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822100",
          "name": "Tsukubamirai",
          "country_code": "JP",
          "slug": "tsukubamirai",
          "canonical_path": "/cities/jp/tsukubamirai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849661",
          "name": "Tsukumiura",
          "country_code": "JP",
          "slug": "tsukumiura",
          "canonical_path": "/cities/jp/tsukumiura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849647",
          "name": "Tsuma",
          "country_code": "JP",
          "slug": "tsuma",
          "canonical_path": "/cities/jp/tsuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849621",
          "name": "Tsunō",
          "country_code": "JP",
          "slug": "tsuno",
          "canonical_path": "/cities/jp/tsuno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612329",
          "name": "Tsuru",
          "country_code": "JP",
          "slug": "tsuru",
          "canonical_path": "/cities/jp/tsuru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849592",
          "name": "Tsuruga",
          "country_code": "JP",
          "slug": "tsuruga",
          "canonical_path": "/cities/jp/tsuruga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822165",
          "name": "Tsurugashima",
          "country_code": "JP",
          "slug": "tsurugashima",
          "canonical_path": "/cities/jp/tsurugashima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849584",
          "name": "Tsurugi-asahimachi",
          "country_code": "JP",
          "slug": "tsurugi-asahimachi",
          "canonical_path": "/cities/jp/tsurugi-asahimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849563",
          "name": "Tsuruoka",
          "country_code": "JP",
          "slug": "tsuruoka",
          "canonical_path": "/cities/jp/tsuruoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849561",
          "name": "Tsurusaki",
          "country_code": "JP",
          "slug": "tsurusaki",
          "canonical_path": "/cities/jp/tsurusaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8476318",
          "name": "Tsuruta",
          "country_code": "JP",
          "slug": "tsuruta",
          "canonical_path": "/cities/jp/tsuruta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10630007",
          "name": "Tsushima",
          "country_code": "JP",
          "slug": "tsushima-27-7418810",
          "canonical_path": "/cities/jp/tsushima-27-7418810/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849539",
          "name": "Tsushima",
          "country_code": "JP",
          "slug": "tsushima",
          "canonical_path": "/cities/jp/tsushima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232084",
          "name": "tsushimashi",
          "country_code": "JP",
          "slug": "tsushimashi-232084",
          "canonical_path": "/cities/jp/tsushimashi-232084/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422096",
          "name": "tsushimashi",
          "country_code": "JP",
          "slug": "tsushimashi-422096",
          "canonical_path": "/cities/jp/tsushimashi-422096/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849519",
          "name": "Tsuyama",
          "country_code": "JP",
          "slug": "tsuyama",
          "canonical_path": "/cities/jp/tsuyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849498",
          "name": "Ube",
          "country_code": "JP",
          "slug": "ube",
          "canonical_path": "/cities/jp/ube/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11777417",
          "name": "Uchiko",
          "country_code": "JP",
          "slug": "uchiko",
          "canonical_path": "/cities/jp/uchiko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849429",
          "name": "Ueda",
          "country_code": "JP",
          "slug": "ueda",
          "canonical_path": "/cities/jp/ueda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849407",
          "name": "Uenohara",
          "country_code": "JP",
          "slug": "uenohara",
          "canonical_path": "/cities/jp/uenohara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849372",
          "name": "Uji",
          "country_code": "JP",
          "slug": "uji",
          "canonical_path": "/cities/jp/uji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612554",
          "name": "Uki",
          "country_code": "JP",
          "slug": "uki",
          "canonical_path": "/cities/jp/uki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11397285",
          "name": "Ukiha",
          "country_code": "JP",
          "slug": "ukiha",
          "canonical_path": "/cities/jp/ukiha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10987749",
          "name": "Umejima",
          "country_code": "JP",
          "slug": "umejima",
          "canonical_path": "/cities/jp/umejima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849306",
          "name": "Umeki",
          "country_code": "JP",
          "slug": "umeki",
          "canonical_path": "/cities/jp/umeki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849299",
          "name": "Umi",
          "country_code": "JP",
          "slug": "umi",
          "canonical_path": "/cities/jp/umi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612633",
          "name": "Unnan",
          "country_code": "JP",
          "slug": "unnan",
          "canonical_path": "/cities/jp/unnan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612562",
          "name": "Unzen",
          "country_code": "JP",
          "slug": "unzen",
          "canonical_path": "/cities/jp/unzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6825494",
          "name": "Uonuma",
          "country_code": "JP",
          "slug": "uonuma",
          "canonical_path": "/cities/jp/uonuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849237",
          "name": "Uozu",
          "country_code": "JP",
          "slug": "uozu",
          "canonical_path": "/cities/jp/uozu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822152",
          "name": "Urasoe",
          "country_code": "JP",
          "slug": "urasoe",
          "canonical_path": "/cities/jp/urasoe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849186",
          "name": "Urayasu",
          "country_code": "JP",
          "slug": "urayasu",
          "canonical_path": "/cities/jp/urayasu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822153",
          "name": "Uruma",
          "country_code": "JP",
          "slug": "uruma",
          "canonical_path": "/cities/jp/uruma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11133426",
          "name": "Ushigome",
          "country_code": "JP",
          "slug": "ushigome",
          "canonical_path": "/cities/jp/ushigome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110629",
          "name": "Ushiku",
          "country_code": "JP",
          "slug": "ushiku",
          "canonical_path": "/cities/jp/ushiku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849155",
          "name": "Ushitsu",
          "country_code": "JP",
          "slug": "ushitsu",
          "canonical_path": "/cities/jp/ushitsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849094",
          "name": "Usuki",
          "country_code": "JP",
          "slug": "usuki",
          "canonical_path": "/cities/jp/usuki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127545",
          "name": "Utashinai",
          "country_code": "JP",
          "slug": "utashinai",
          "canonical_path": "/cities/jp/utashinai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849073",
          "name": "Utazu",
          "country_code": "JP",
          "slug": "utazu",
          "canonical_path": "/cities/jp/utazu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849069",
          "name": "Uto",
          "country_code": "JP",
          "slug": "uto",
          "canonical_path": "/cities/jp/uto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1849053",
          "name": "Utsunomiya",
          "country_code": "JP",
          "slug": "utsunomiya",
          "canonical_path": "/cities/jp/utsunomiya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1926020",
          "name": "Uwajima",
          "country_code": "JP",
          "slug": "uwajima",
          "canonical_path": "/cities/jp/uwajima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848988",
          "name": "Wadomari",
          "country_code": "JP",
          "slug": "wadomari",
          "canonical_path": "/cities/jp/wadomari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848976",
          "name": "Wajima",
          "country_code": "JP",
          "slug": "wajima",
          "canonical_path": "/cities/jp/wajima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10267209",
          "name": "Wakasugi",
          "country_code": "JP",
          "slug": "wakasugi",
          "canonical_path": "/cities/jp/wakasugi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1926004",
          "name": "Wakayama",
          "country_code": "JP",
          "slug": "wakayama",
          "canonical_path": "/cities/jp/wakayama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848935",
          "name": "Wake",
          "country_code": "JP",
          "slug": "wake",
          "canonical_path": "/cities/jp/wake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848932",
          "name": "Waki",
          "country_code": "JP",
          "slug": "waki",
          "canonical_path": "/cities/jp/waki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127515",
          "name": "Wakkanai",
          "country_code": "JP",
          "slug": "wakkanai",
          "canonical_path": "/cities/jp/wakkanai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1907300",
          "name": "Wako",
          "country_code": "JP",
          "slug": "wako",
          "canonical_path": "/cities/jp/wako/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110596",
          "name": "Wakuya",
          "country_code": "JP",
          "slug": "wakuya",
          "canonical_path": "/cities/jp/wakuya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612339",
          "name": "Warabi",
          "country_code": "JP",
          "slug": "warabi",
          "canonical_path": "/cities/jp/warabi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10865982",
          "name": "Waseda-tsurumakichō",
          "country_code": "JP",
          "slug": "waseda-tsurumakicho",
          "canonical_path": "/cities/jp/waseda-tsurumakicho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848852",
          "name": "Yabu",
          "country_code": "JP",
          "slug": "yabu",
          "canonical_path": "/cities/jp/yabu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110583",
          "name": "Yabuki",
          "country_code": "JP",
          "slug": "yabuki",
          "canonical_path": "/cities/jp/yabuki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110581",
          "name": "Yachi",
          "country_code": "JP",
          "slug": "yachi",
          "canonical_path": "/cities/jp/yachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110579",
          "name": "Yachimata",
          "country_code": "JP",
          "slug": "yachimata",
          "canonical_path": "/cities/jp/yachimata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13132800",
          "name": "Yachiyo",
          "country_code": "JP",
          "slug": "yachiyo-14-1848093",
          "canonical_path": "/cities/jp/yachiyo-14-1848093/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822182",
          "name": "Yachiyo",
          "country_code": "JP",
          "slug": "yachiyo",
          "canonical_path": "/cities/jp/yachiyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848825",
          "name": "Yae",
          "country_code": "JP",
          "slug": "yae",
          "canonical_path": "/cities/jp/yae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822225",
          "name": "Yaese",
          "country_code": "JP",
          "slug": "yaese",
          "canonical_path": "/cities/jp/yaese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:8997515",
          "name": "Yagoshima",
          "country_code": "JP",
          "slug": "yagoshima",
          "canonical_path": "/cities/jp/yagoshima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:13156692",
          "name": "Yahaba",
          "country_code": "JP",
          "slug": "yahaba",
          "canonical_path": "/cities/jp/yahaba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848778",
          "name": "Yahiko",
          "country_code": "JP",
          "slug": "yahiko",
          "canonical_path": "/cities/jp/yahiko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848776",
          "name": "Yaita",
          "country_code": "JP",
          "slug": "yaita",
          "canonical_path": "/cities/jp/yaita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848774",
          "name": "Yaizu",
          "country_code": "JP",
          "slug": "yaizu",
          "canonical_path": "/cities/jp/yaizu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848764",
          "name": "Yakage",
          "country_code": "JP",
          "slug": "yakage",
          "canonical_path": "/cities/jp/yakage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9197267",
          "name": "Yakami",
          "country_code": "JP",
          "slug": "yakami",
          "canonical_path": "/cities/jp/yakami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127478",
          "name": "Yakumo",
          "country_code": "JP",
          "slug": "yakumo",
          "canonical_path": "/cities/jp/yakumo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110560",
          "name": "Yamada",
          "country_code": "JP",
          "slug": "yamada",
          "canonical_path": "/cities/jp/yamada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848705",
          "name": "Yamaga",
          "country_code": "JP",
          "slug": "yamaga",
          "canonical_path": "/cities/jp/yamaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110556",
          "name": "Yamagata",
          "country_code": "JP",
          "slug": "yamagata",
          "canonical_path": "/cities/jp/yamagata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822213",
          "name": "Yamagata",
          "country_code": "JP",
          "slug": "yamagata-09-1863639",
          "canonical_path": "/cities/jp/yamagata-09-1863639/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062014",
          "name": "yamagatashi",
          "country_code": "JP",
          "slug": "yamagatashi-062014",
          "canonical_path": "/cities/jp/yamagatashi-062014/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212156",
          "name": "yamagatashi",
          "country_code": "JP",
          "slug": "yamagatashi-212156",
          "canonical_path": "/cities/jp/yamagatashi-212156/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848689",
          "name": "Yamaguchi",
          "country_code": "JP",
          "slug": "yamaguchi",
          "canonical_path": "/cities/jp/yamaguchi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848667",
          "name": "Yamakita",
          "country_code": "JP",
          "slug": "yamakita",
          "canonical_path": "/cities/jp/yamakita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611479",
          "name": "Yamanashi",
          "country_code": "JP",
          "slug": "yamanashi",
          "canonical_path": "/cities/jp/yamanashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2114134",
          "name": "Yamanobe",
          "country_code": "JP",
          "slug": "yamanobe",
          "canonical_path": "/cities/jp/yamanobe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848618",
          "name": "Yamashita",
          "country_code": "JP",
          "slug": "yamashita",
          "canonical_path": "/cities/jp/yamashita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611478",
          "name": "Yamato",
          "country_code": "JP",
          "slug": "yamato",
          "canonical_path": "/cities/jp/yamato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848593",
          "name": "Yamato-Takada",
          "country_code": "JP",
          "slug": "yamato-takada",
          "canonical_path": "/cities/jp/yamato-takada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611477",
          "name": "Yamatokōriyama",
          "country_code": "JP",
          "slug": "yamatokoriyama",
          "canonical_path": "/cities/jp/yamatokoriyama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611476",
          "name": "Yame",
          "country_code": "JP",
          "slug": "yame",
          "canonical_path": "/cities/jp/yame/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848573",
          "name": "Yanagawa",
          "country_code": "JP",
          "slug": "yanagawa",
          "canonical_path": "/cities/jp/yanagawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848550",
          "name": "Yanai",
          "country_code": "JP",
          "slug": "yanai",
          "canonical_path": "/cities/jp/yanai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848522",
          "name": "Yao",
          "country_code": "JP",
          "slug": "yao",
          "canonical_path": "/cities/jp/yao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848518",
          "name": "Yaotsu",
          "country_code": "JP",
          "slug": "yaotsu",
          "canonical_path": "/cities/jp/yaotsu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848499",
          "name": "Yashio",
          "country_code": "JP",
          "slug": "yashio",
          "canonical_path": "/cities/jp/yashio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611475",
          "name": "Yasu",
          "country_code": "JP",
          "slug": "yasu",
          "canonical_path": "/cities/jp/yasu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848482",
          "name": "Yasugichō",
          "country_code": "JP",
          "slug": "yasugicho",
          "canonical_path": "/cities/jp/yasugicho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11611940",
          "name": "Yatomi",
          "country_code": "JP",
          "slug": "yatomi",
          "canonical_path": "/cities/jp/yatomi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848447",
          "name": "Yatsuomachi-higashikumisaka",
          "country_code": "JP",
          "slug": "yatsuomachi-higashikumisaka",
          "canonical_path": "/cities/jp/yatsuomachi-higashikumisaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848439",
          "name": "Yawata",
          "country_code": "JP",
          "slug": "yawata",
          "canonical_path": "/cities/jp/yawata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:7303003",
          "name": "Yawatahama",
          "country_code": "JP",
          "slug": "yawatahama",
          "canonical_path": "/cities/jp/yawatahama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2129218",
          "name": "Yoichi",
          "country_code": "JP",
          "slug": "yoichi",
          "canonical_path": "/cities/jp/yoichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848373",
          "name": "Yokkaichi",
          "country_code": "JP",
          "slug": "yokkaichi",
          "canonical_path": "/cities/jp/yokkaichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848354",
          "name": "Yokohama",
          "country_code": "JP",
          "slug": "yokohama",
          "canonical_path": "/cities/jp/yokohama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848313",
          "name": "Yokosuka",
          "country_code": "JP",
          "slug": "yokosuka",
          "canonical_path": "/cities/jp/yokosuka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110506",
          "name": "Yokote",
          "country_code": "JP",
          "slug": "yokote",
          "canonical_path": "/cities/jp/yokote/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:10860988",
          "name": "Yomitan",
          "country_code": "JP",
          "slug": "yomitan",
          "canonical_path": "/cities/jp/yomitan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848281",
          "name": "Yonabaru",
          "country_code": "JP",
          "slug": "yonabaru",
          "canonical_path": "/cities/jp/yonabaru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848277",
          "name": "Yonago",
          "country_code": "JP",
          "slug": "yonago",
          "canonical_path": "/cities/jp/yonago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110498",
          "name": "Yonezawa",
          "country_code": "JP",
          "slug": "yonezawa",
          "canonical_path": "/cities/jp/yonezawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848243",
          "name": "Yorii",
          "country_code": "JP",
          "slug": "yorii",
          "canonical_path": "/cities/jp/yorii/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848194",
          "name": "Yoshii",
          "country_code": "JP",
          "slug": "yoshii",
          "canonical_path": "/cities/jp/yoshii/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848188",
          "name": "Yoshikawa",
          "country_code": "JP",
          "slug": "yoshikawa",
          "canonical_path": "/cities/jp/yoshikawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848169",
          "name": "Yoshino-chō",
          "country_code": "JP",
          "slug": "yoshino-cho",
          "canonical_path": "/cities/jp/yoshino-cho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612576",
          "name": "Yoshinogawa",
          "country_code": "JP",
          "slug": "yoshinogawa",
          "canonical_path": "/cities/jp/yoshinogawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110480",
          "name": "Yotsukaidō",
          "country_code": "JP",
          "slug": "yotsukaido",
          "canonical_path": "/cities/jp/yotsukaido/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848131",
          "name": "Yuasa",
          "country_code": "JP",
          "slug": "yuasa",
          "canonical_path": "/cities/jp/yuasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127419",
          "name": "Yūbari",
          "country_code": "JP",
          "slug": "yubari",
          "canonical_path": "/cities/jp/yubari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:11612342",
          "name": "Yufu",
          "country_code": "JP",
          "slug": "yufu",
          "canonical_path": "/cities/jp/yufu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848113",
          "name": "Yugawara",
          "country_code": "JP",
          "slug": "yugawara",
          "canonical_path": "/cities/jp/yugawara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848096",
          "name": "Yūki",
          "country_code": "JP",
          "slug": "yuki",
          "canonical_path": "/cities/jp/yuki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848087",
          "name": "Yukuhashi",
          "country_code": "JP",
          "slug": "yukuhashi",
          "canonical_path": "/cities/jp/yukuhashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2127398",
          "name": "Yuni",
          "country_code": "JP",
          "slug": "yuni",
          "canonical_path": "/cities/jp/yuni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:6822202",
          "name": "Yurihonjō",
          "country_code": "JP",
          "slug": "yurihonjo",
          "canonical_path": "/cities/jp/yurihonjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848016",
          "name": "Yuza",
          "country_code": "JP",
          "slug": "yuza",
          "canonical_path": "/cities/jp/yuza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:9633009",
          "name": "Yūzaki",
          "country_code": "JP",
          "slug": "yuzaki",
          "canonical_path": "/cities/jp/yuzaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848015",
          "name": "Yuzawa",
          "country_code": "JP",
          "slug": "yuzawa",
          "canonical_path": "/cities/jp/yuzawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:2110460",
          "name": "Yuzawa",
          "country_code": "JP",
          "slug": "yuzawa-02-2110459",
          "canonical_path": "/cities/jp/yuzawa-02-2110459/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1848004",
          "name": "Zama",
          "country_code": "JP",
          "slug": "zama",
          "canonical_path": "/cities/jp/zama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1847983",
          "name": "Zentsujichó",
          "country_code": "JP",
          "slug": "zentsujicho",
          "canonical_path": "/cities/jp/zentsujicho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:geonames:1847968",
          "name": "Zushi",
          "country_code": "JP",
          "slug": "zushi",
          "canonical_path": "/cities/jp/zushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132284",
          "name": "あきる野市",
          "country_code": "JP",
          "slug": "akirunoichi",
          "canonical_path": "/cities/jp/akirunoichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232378",
          "name": "あま市",
          "country_code": "JP",
          "slug": "amashi",
          "canonical_path": "/cities/jp/amashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:182087",
          "name": "あわら市",
          "country_code": "JP",
          "slug": "awarashi",
          "canonical_path": "/cities/jp/awarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122386",
          "name": "いすみ市",
          "country_code": "JP",
          "slug": "isumishi",
          "canonical_path": "/cities/jp/isumishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462195",
          "name": "いちき串木野市",
          "country_code": "JP",
          "slug": "ichikikushikinoshi",
          "canonical_path": "/cities/jp/ichikikushikinoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242144",
          "name": "いなべ市",
          "country_code": "JP",
          "slug": "inabeshi",
          "canonical_path": "/cities/jp/inabeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072044",
          "name": "いわき市",
          "country_code": "JP",
          "slug": "iwakishi",
          "canonical_path": "/cities/jp/iwakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402257",
          "name": "うきは市",
          "country_code": "JP",
          "slug": "ukihashi",
          "canonical_path": "/cities/jp/ukihashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472131",
          "name": "うるま市",
          "country_code": "JP",
          "slug": "urumashi",
          "canonical_path": "/cities/jp/urumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:452092",
          "name": "えびの市",
          "country_code": "JP",
          "slug": "ebinoshi",
          "canonical_path": "/cities/jp/ebinoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082309",
          "name": "かすみがうら市",
          "country_code": "JP",
          "slug": "kasumigaurashi",
          "canonical_path": "/cities/jp/kasumigaurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172090",
          "name": "かほく市",
          "country_code": "JP",
          "slug": "kahokushi",
          "canonical_path": "/cities/jp/kahokushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:111007",
          "name": "さいたま市",
          "country_code": "JP",
          "slug": "saitamashi",
          "canonical_path": "/cities/jp/saitamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:372064",
          "name": "さぬき市",
          "country_code": "JP",
          "slug": "sanukishi",
          "canonical_path": "/cities/jp/sanukishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282294",
          "name": "たつの市",
          "country_code": "JP",
          "slug": "tatsunoshi",
          "canonical_path": "/cities/jp/tatsunoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022098",
          "name": "つがる市",
          "country_code": "JP",
          "slug": "tsugarushi",
          "canonical_path": "/cities/jp/tsugarushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082350",
          "name": "つくばみらい市",
          "country_code": "JP",
          "slug": "tsukubamiraishi",
          "canonical_path": "/cities/jp/tsukubamiraishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082201",
          "name": "つくば市",
          "country_code": "JP",
          "slug": "tsukubashi",
          "canonical_path": "/cities/jp/tsukubashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052141",
          "name": "にかほ市",
          "country_code": "JP",
          "slug": "nikahoshi",
          "canonical_path": "/cities/jp/nikahoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082210",
          "name": "ひたちなか市",
          "country_code": "JP",
          "slug": "hitachinakashi",
          "canonical_path": "/cities/jp/hitachinakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112453",
          "name": "ふじみ野市",
          "country_code": "JP",
          "slug": "fujiminoichi",
          "canonical_path": "/cities/jp/fujiminoichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102121",
          "name": "みどり市",
          "country_code": "JP",
          "slug": "midorishi",
          "canonical_path": "/cities/jp/midorishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402290",
          "name": "みやま市",
          "country_code": "JP",
          "slug": "miyamashi",
          "canonical_path": "/cities/jp/miyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022080",
          "name": "むつ市",
          "country_code": "JP",
          "slug": "mutsushi",
          "canonical_path": "/cities/jp/mutsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232033",
          "name": "一宮市",
          "country_code": "JP",
          "slug": "ichinomiyashi",
          "canonical_path": "/cities/jp/ichinomiyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032093",
          "name": "一関市",
          "country_code": "JP",
          "slug": "ichinosekishi",
          "canonical_path": "/cities/jp/ichinosekishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172022",
          "name": "七尾市",
          "country_code": "JP",
          "slug": "nanaoshi",
          "canonical_path": "/cities/jp/nanaoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342041",
          "name": "三原市",
          "country_code": "JP",
          "slug": "miharashi",
          "canonical_path": "/cities/jp/miharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222062",
          "name": "三島市",
          "country_code": "JP",
          "slug": "mishimashi",
          "canonical_path": "/cities/jp/mishimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:273015",
          "name": "三島郡島本町",
          "country_code": "JP",
          "slug": "mishimagunshimamotomachi",
          "canonical_path": "/cities/jp/mishimagunshimamotomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024414",
          "name": "三戸郡三戸町",
          "country_code": "JP",
          "slug": "sannohegunsannohemachi",
          "canonical_path": "/cities/jp/sannohegunsannohemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024422",
          "name": "三戸郡五戸町",
          "country_code": "JP",
          "slug": "sannohegungonohemachi",
          "canonical_path": "/cities/jp/sannohegungonohemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024457",
          "name": "三戸郡南部町",
          "country_code": "JP",
          "slug": "sannohegunnanbumachi",
          "canonical_path": "/cities/jp/sannohegunnanbumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024465",
          "name": "三戸郡階上町",
          "country_code": "JP",
          "slug": "sannohegunkaijoumachi",
          "canonical_path": "/cities/jp/sannohegunkaijoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:184420",
          "name": "三方郡美浜町",
          "country_code": "JP",
          "slug": "mikatagunmihamamachi",
          "canonical_path": "/cities/jp/mikatagunmihamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282154",
          "name": "三木市",
          "country_code": "JP",
          "slug": "mikishi",
          "canonical_path": "/cities/jp/mikishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152048",
          "name": "三条市",
          "country_code": "JP",
          "slug": "sanjoushi",
          "canonical_path": "/cities/jp/sanjoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342092",
          "name": "三次市",
          "country_code": "JP",
          "slug": "sanjishi",
          "canonical_path": "/cities/jp/sanjishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022071",
          "name": "三沢市",
          "country_code": "JP",
          "slug": "misawashi",
          "canonical_path": "/cities/jp/misawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142107",
          "name": "三浦市",
          "country_code": "JP",
          "slug": "miurashi",
          "canonical_path": "/cities/jp/miurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282197",
          "name": "三田市",
          "country_code": "JP",
          "slug": "mitashi",
          "canonical_path": "/cities/jp/mitashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012220",
          "name": "三笠市",
          "country_code": "JP",
          "slug": "mikasashi",
          "canonical_path": "/cities/jp/mikasashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:372081",
          "name": "三豊市",
          "country_code": "JP",
          "slug": "mitoyoshi",
          "canonical_path": "/cities/jp/mitoyoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112372",
          "name": "三郷市",
          "country_code": "JP",
          "slug": "misatoshi",
          "canonical_path": "/cities/jp/misatoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:243442",
          "name": "三重郡川越町",
          "country_code": "JP",
          "slug": "miegunkawagoemachi",
          "canonical_path": "/cities/jp/miegunkawagoemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:243434",
          "name": "三重郡朝日町",
          "country_code": "JP",
          "slug": "miegunasahimachi",
          "canonical_path": "/cities/jp/miegunasahimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:243418",
          "name": "三重郡菰野町",
          "country_code": "JP",
          "slug": "miegunkomonomachi",
          "canonical_path": "/cities/jp/miegunkomonomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:413461",
          "name": "三養基郡みやき町",
          "country_code": "JP",
          "slug": "miyakigunmiyakimachi",
          "canonical_path": "/cities/jp/miyakigunmiyakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:413453",
          "name": "三養基郡上峰町",
          "country_code": "JP",
          "slug": "miyakigujouminemachi",
          "canonical_path": "/cities/jp/miyakigujouminemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:413411",
          "name": "三養基郡基山町",
          "country_code": "JP",
          "slug": "miyakigunkiyamamachi",
          "canonical_path": "/cities/jp/miyakigunkiyamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132047",
          "name": "三鷹市",
          "country_code": "JP",
          "slug": "mitakashi",
          "canonical_path": "/cities/jp/mitakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203858",
          "name": "上伊那郡南箕輪村",
          "country_code": "JP",
          "slug": "kamiinagunminamiminowamura",
          "canonical_path": "/cities/jp/kamiinagunminamiminowamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203882",
          "name": "上伊那郡宮田村",
          "country_code": "JP",
          "slug": "kamiinagunmiyatamura",
          "canonical_path": "/cities/jp/kamiinagunmiyatamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203831",
          "name": "上伊那郡箕輪町",
          "country_code": "JP",
          "slug": "kamiinagunminowamachi",
          "canonical_path": "/cities/jp/kamiinagunminowamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203823",
          "name": "上伊那郡辰野町",
          "country_code": "JP",
          "slug": "kamiinaguntatsunochou",
          "canonical_path": "/cities/jp/kamiinaguntatsunochou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203840",
          "name": "上伊那郡飯島町",
          "country_code": "JP",
          "slug": "kamiinaguniijimamachi",
          "canonical_path": "/cities/jp/kamiinaguniijimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024121",
          "name": "上北郡おいらせ町",
          "country_code": "JP",
          "slug": "kamikitagunoirasemachi",
          "canonical_path": "/cities/jp/kamikitagunoirasemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024023",
          "name": "上北郡七戸町",
          "country_code": "JP",
          "slug": "kamikitagunshichinohemachi",
          "canonical_path": "/cities/jp/kamikitagunshichinohemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024112",
          "name": "上北郡六ヶ所村",
          "country_code": "JP",
          "slug": "kamikitagunrokuketokoromura",
          "canonical_path": "/cities/jp/kamikitagunrokuketokoromura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024058",
          "name": "上北郡六戸町",
          "country_code": "JP",
          "slug": "kamikitagunrokunohemachi",
          "canonical_path": "/cities/jp/kamikitagunrokunohemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024082",
          "name": "上北郡東北町",
          "country_code": "JP",
          "slug": "kamikitaguntouhokumachi",
          "canonical_path": "/cities/jp/kamikitaguntouhokumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024015",
          "name": "上北郡野辺地町",
          "country_code": "JP",
          "slug": "kamikitagunnohejimachi",
          "canonical_path": "/cities/jp/kamikitagunnohejimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432121",
          "name": "上天草市",
          "country_code": "JP",
          "slug": "kamiamakusashi",
          "canonical_path": "/cities/jp/kamiamakusashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112194",
          "name": "上尾市",
          "country_code": "JP",
          "slug": "ageoshi",
          "canonical_path": "/cities/jp/ageoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062073",
          "name": "上山市",
          "country_code": "JP",
          "slug": "ueyamashi",
          "canonical_path": "/cities/jp/ueyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014541",
          "name": "上川郡当麻町",
          "country_code": "JP",
          "slug": "kamikawaguntoumamachi",
          "canonical_path": "/cities/jp/kamikawaguntoumamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016357",
          "name": "上川郡新得町",
          "country_code": "JP",
          "slug": "kamikawagunshintokumachi",
          "canonical_path": "/cities/jp/kamikawagunshintokumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014583",
          "name": "上川郡東川町",
          "country_code": "JP",
          "slug": "kamikawagunhigashikawamachi",
          "canonical_path": "/cities/jp/kamikawagunhigashikawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014532",
          "name": "上川郡東神楽町",
          "country_code": "JP",
          "slug": "kamikawagunhigashikaguramachi",
          "canonical_path": "/cities/jp/kamikawagunhigashikaguramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016365",
          "name": "上川郡清水町",
          "country_code": "JP",
          "slug": "kamikawagunshimizuchou",
          "canonical_path": "/cities/jp/kamikawagunshimizuchou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014591",
          "name": "上川郡美瑛町",
          "country_code": "JP",
          "slug": "kamikawagunbieimachi",
          "canonical_path": "/cities/jp/kamikawagunbieimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014524",
          "name": "上川郡鷹栖町",
          "country_code": "JP",
          "slug": "kamikawaguntakasumachi",
          "canonical_path": "/cities/jp/kamikawaguntakasumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:205834",
          "name": "上水内郡信濃町",
          "country_code": "JP",
          "slug": "kamiminochigunshinanochou",
          "canonical_path": "/cities/jp/kamiminochigunshinanochou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:205907",
          "name": "上水内郡飯綱町",
          "country_code": "JP",
          "slug": "kamiminochiguniizunamachi",
          "canonical_path": "/cities/jp/kamiminochiguniizunamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202037",
          "name": "上田市",
          "country_code": "JP",
          "slug": "uedashi",
          "canonical_path": "/cities/jp/uedashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434426",
          "name": "上益城郡嘉島町",
          "country_code": "JP",
          "slug": "kamimashikigunkashimamachi",
          "canonical_path": "/cities/jp/kamimashikigunkashimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434477",
          "name": "上益城郡山都町",
          "country_code": "JP",
          "slug": "kamimashikikouriyamamiyakochou",
          "canonical_path": "/cities/jp/kamimashikikouriyamamiyakochou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434418",
          "name": "上益城郡御船町",
          "country_code": "JP",
          "slug": "kamimashikigunmifunemachi",
          "canonical_path": "/cities/jp/kamimashikigunmifunemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434442",
          "name": "上益城郡甲佐町",
          "country_code": "JP",
          "slug": "kamimashikigunkousamachi",
          "canonical_path": "/cities/jp/kamimashikigunkousamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434434",
          "name": "上益城郡益城町",
          "country_code": "JP",
          "slug": "kamimashikigunmashikimachi",
          "canonical_path": "/cities/jp/kamimashikigunmashikimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152226",
          "name": "上越市",
          "country_code": "JP",
          "slug": "jouetsushi",
          "canonical_path": "/cities/jp/jouetsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192121",
          "name": "上野原市",
          "country_code": "JP",
          "slug": "uenoharashi",
          "canonical_path": "/cities/jp/uenoharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:205419",
          "name": "上高井郡小布施町",
          "country_code": "JP",
          "slug": "kamitakaigunobusemachi",
          "canonical_path": "/cities/jp/kamitakaigunobusemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:205435",
          "name": "上高井郡高山村",
          "country_code": "JP",
          "slug": "kamitakaigunkouzanmura",
          "canonical_path": "/cities/jp/kamitakaigunkouzanmura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204153",
          "name": "下伊那郡喬木村",
          "country_code": "JP",
          "slug": "shimoinagunkyoubokumura",
          "canonical_path": "/cities/jp/shimoinagunkyoubokumura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204021",
          "name": "下伊那郡松川町",
          "country_code": "JP",
          "slug": "shimoinagunmatsukawachou",
          "canonical_path": "/cities/jp/shimoinagunmatsukawachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204161",
          "name": "下伊那郡豊丘村",
          "country_code": "JP",
          "slug": "shimoinaguntoyookamura",
          "canonical_path": "/cities/jp/shimoinaguntoyookamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204072",
          "name": "下伊那郡阿智村",
          "country_code": "JP",
          "slug": "shimoinagunachimura",
          "canonical_path": "/cities/jp/shimoinagunachimura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204030",
          "name": "下伊那郡高森町",
          "country_code": "JP",
          "slug": "shimoinaguntakamorichou",
          "canonical_path": "/cities/jp/shimoinaguntakamorichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:024244",
          "name": "下北郡東通村",
          "country_code": "JP",
          "slug": "shimokitagunhigashidoorimura",
          "canonical_path": "/cities/jp/shimokitagunhigashidoorimura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212202",
          "name": "下呂市",
          "country_code": "JP",
          "slug": "geroshi",
          "canonical_path": "/cities/jp/geroshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082104",
          "name": "下妻市",
          "country_code": "JP",
          "slug": "shimozumashi",
          "canonical_path": "/cities/jp/shimozumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:163422",
          "name": "下新川郡入善町",
          "country_code": "JP",
          "slug": "shimoniikawagunnyuuzenmachi",
          "canonical_path": "/cities/jp/shimoniikawagunnyuuzenmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:163431",
          "name": "下新川郡朝日町",
          "country_code": "JP",
          "slug": "shimoniikawagunasahimachi",
          "canonical_path": "/cities/jp/shimoniikawagunasahimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352071",
          "name": "下松市",
          "country_code": "JP",
          "slug": "kudamatsushi",
          "canonical_path": "/cities/jp/kudamatsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222194",
          "name": "下田市",
          "country_code": "JP",
          "slug": "shimodashi",
          "canonical_path": "/cities/jp/shimodashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:093611",
          "name": "下都賀郡壬生町",
          "country_code": "JP",
          "slug": "shimotsugagunmibumachi",
          "canonical_path": "/cities/jp/shimotsugagunmibumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:093645",
          "name": "下都賀郡野木町",
          "country_code": "JP",
          "slug": "shimotsugagunnogimachi",
          "canonical_path": "/cities/jp/shimotsugagunnogimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092169",
          "name": "下野市",
          "country_code": "JP",
          "slug": "shimotsukeshi",
          "canonical_path": "/cities/jp/shimotsukeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:034827",
          "name": "下閉伊郡山田町",
          "country_code": "JP",
          "slug": "shimoheikouriyamatamachi",
          "canonical_path": "/cities/jp/shimoheikouriyamatamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:034835",
          "name": "下閉伊郡岩泉町",
          "country_code": "JP",
          "slug": "shimoheiguniwaizumimachi",
          "canonical_path": "/cities/jp/shimoheiguniwaizumimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352012",
          "name": "下関市",
          "country_code": "JP",
          "slug": "shimonosekishi",
          "canonical_path": "/cities/jp/shimonosekishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:205613",
          "name": "下高井郡山ノ内町",
          "country_code": "JP",
          "slug": "shimotakaikouriyamanouchimachi",
          "canonical_path": "/cities/jp/shimotakaikouriyamanouchimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:213616",
          "name": "不破郡垂井町",
          "country_code": "JP",
          "slug": "fuwaguntaruimachi",
          "canonical_path": "/cities/jp/fuwaguntaruimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:213624",
          "name": "不破郡関ケ原町",
          "country_code": "JP",
          "slug": "fuwagunsekigaharamachi",
          "canonical_path": "/cities/jp/fuwagunsekigaharamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:264652",
          "name": "与謝郡与謝野町",
          "country_code": "JP",
          "slug": "yosagunyosanomachi",
          "canonical_path": "/cities/jp/yosagunyosanomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192147",
          "name": "中央市",
          "country_code": "JP",
          "slug": "chuuoushi",
          "canonical_path": "/cities/jp/chuuoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016438",
          "name": "中川郡幕別町",
          "country_code": "JP",
          "slug": "nakagawagunmakubetsumachi",
          "canonical_path": "/cities/jp/nakagawagunmakubetsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016462",
          "name": "中川郡本別町",
          "country_code": "JP",
          "slug": "nakagawakoorimotobetsumachi",
          "canonical_path": "/cities/jp/nakagawakoorimotobetsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016446",
          "name": "中川郡池田町",
          "country_code": "JP",
          "slug": "nakagawakooriiketamachi",
          "canonical_path": "/cities/jp/nakagawakooriiketamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:163228",
          "name": "中新川郡上市町",
          "country_code": "JP",
          "slug": "nakaniikawagujoushichou",
          "canonical_path": "/cities/jp/nakaniikawagujoushichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:163236",
          "name": "中新川郡立山町",
          "country_code": "JP",
          "slug": "nakaniikawagunritsuyamachou",
          "canonical_path": "/cities/jp/nakaniikawagunritsuyamachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212067",
          "name": "中津川市",
          "country_code": "JP",
          "slug": "nakatsugawashi",
          "canonical_path": "/cities/jp/nakatsugawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442038",
          "name": "中津市",
          "country_code": "JP",
          "slug": "nakatsushi",
          "canonical_path": "/cities/jp/nakatsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143421",
          "name": "中郡二宮町",
          "country_code": "JP",
          "slug": "nakagunninomiyamachi",
          "canonical_path": "/cities/jp/nakagunninomiyamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143413",
          "name": "中郡大磯町",
          "country_code": "JP",
          "slug": "nakagunooisomachi",
          "canonical_path": "/cities/jp/nakagunooisomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202118",
          "name": "中野市",
          "country_code": "JP",
          "slug": "nakanoshi",
          "canonical_path": "/cities/jp/nakanoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402150",
          "name": "中間市",
          "country_code": "JP",
          "slug": "chuukanshi",
          "canonical_path": "/cities/jp/chuukanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473286",
          "name": "中頭郡中城村",
          "country_code": "JP",
          "slug": "nakazugunchuushiromura",
          "canonical_path": "/cities/jp/nakazugunchuushiromura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473278",
          "name": "中頭郡北中城村",
          "country_code": "JP",
          "slug": "nakazugunkitanakagusukumura",
          "canonical_path": "/cities/jp/nakazugunkitanakagusukumura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473260",
          "name": "中頭郡北谷町",
          "country_code": "JP",
          "slug": "nakazugunkitatanimachi",
          "canonical_path": "/cities/jp/nakazugunkitatanimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473251",
          "name": "中頭郡嘉手納町",
          "country_code": "JP",
          "slug": "nakazugunkadenamachi",
          "canonical_path": "/cities/jp/nakazugunkadenamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473294",
          "name": "中頭郡西原町",
          "country_code": "JP",
          "slug": "nakazugunnishiharamachi",
          "canonical_path": "/cities/jp/nakazugunnishiharamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473243",
          "name": "中頭郡読谷村",
          "country_code": "JP",
          "slug": "nakazugunyomitanmura",
          "canonical_path": "/cities/jp/nakazugunyomitanmura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:452076",
          "name": "串間市",
          "country_code": "JP",
          "slug": "kushimashi",
          "canonical_path": "/cities/jp/kushimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:372021",
          "name": "丸亀市",
          "country_code": "JP",
          "slug": "marugameshi",
          "canonical_path": "/cities/jp/marugameshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282235",
          "name": "丹波市",
          "country_code": "JP",
          "slug": "tanbashi",
          "canonical_path": "/cities/jp/tanbashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282219",
          "name": "丹波篠山市",
          "country_code": "JP",
          "slug": "tanbashinoyamashi",
          "canonical_path": "/cities/jp/tanbashinoyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:233617",
          "name": "丹羽郡大口町",
          "country_code": "JP",
          "slug": "tanbagunooguchimachi",
          "canonical_path": "/cities/jp/tanbagunooguchimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:233625",
          "name": "丹羽郡扶桑町",
          "country_code": "JP",
          "slug": "tanbagunfusoumachi",
          "canonical_path": "/cities/jp/tanbagunfusoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112321",
          "name": "久喜市",
          "country_code": "JP",
          "slug": "kukishi",
          "canonical_path": "/cities/jp/kukishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032077",
          "name": "久慈市",
          "country_code": "JP",
          "slug": "kujishi",
          "canonical_path": "/cities/jp/kujishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402036",
          "name": "久留米市",
          "country_code": "JP",
          "slug": "kurumeshi",
          "canonical_path": "/cities/jp/kurumeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:336661",
          "name": "久米郡美咲町",
          "country_code": "JP",
          "slug": "kumegunmisakimachi",
          "canonical_path": "/cities/jp/kumegunmisakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:013714",
          "name": "久遠郡せたな町",
          "country_code": "JP",
          "slug": "kudougunsetanamachi",
          "canonical_path": "/cities/jp/kudougunsetanamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:035068",
          "name": "九戸郡九戸村",
          "country_code": "JP",
          "slug": "kunohegunkunohemura",
          "canonical_path": "/cities/jp/kunohegunkunohemura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:035076",
          "name": "九戸郡洋野町",
          "country_code": "JP",
          "slug": "kunohegunhironomachi",
          "canonical_path": "/cities/jp/kunohegunhironomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:035017",
          "name": "九戸郡軽米町",
          "country_code": "JP",
          "slug": "kunohegunkarumaimachi",
          "canonical_path": "/cities/jp/kunohegunkarumaimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242101",
          "name": "亀山市",
          "country_code": "JP",
          "slug": "kameyamashi",
          "canonical_path": "/cities/jp/kameyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262064",
          "name": "亀岡市",
          "country_code": "JP",
          "slug": "kameokashi",
          "canonical_path": "/cities/jp/kameokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:013374",
          "name": "亀田郡七飯町",
          "country_code": "JP",
          "slug": "kamedagunnanaemachi",
          "canonical_path": "/cities/jp/kamedagunnanaemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032131",
          "name": "二戸市",
          "country_code": "JP",
          "slug": "ninoheshi",
          "canonical_path": "/cities/jp/ninoheshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072109",
          "name": "二本松市",
          "country_code": "JP",
          "slug": "nihonmatsushi",
          "canonical_path": "/cities/jp/nihonmatsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:013463",
          "name": "二海郡八雲町",
          "country_code": "JP",
          "slug": "futamigunyakumomachi",
          "canonical_path": "/cities/jp/futamigunyakumomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422118",
          "name": "五島市",
          "country_code": "JP",
          "slug": "gotoushi",
          "canonical_path": "/cities/jp/gotoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022055",
          "name": "五所川原市",
          "country_code": "JP",
          "slug": "goshogawarashi",
          "canonical_path": "/cities/jp/goshogawarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292079",
          "name": "五條市",
          "country_code": "JP",
          "slug": "gojoushi",
          "canonical_path": "/cities/jp/gojoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152188",
          "name": "五泉市",
          "country_code": "JP",
          "slug": "gosenshi",
          "canonical_path": "/cities/jp/gosenshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332071",
          "name": "井原市",
          "country_code": "JP",
          "slug": "iharashi",
          "canonical_path": "/cities/jp/iharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:043613",
          "name": "亘理郡亘理町",
          "country_code": "JP",
          "slug": "kourigunkourimachi",
          "canonical_path": "/cities/jp/kourigunkourimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:043621",
          "name": "亘理郡山元町",
          "country_code": "JP",
          "slug": "kourikouriyamamotomachi",
          "canonical_path": "/cities/jp/kourikouriyamamotomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272302",
          "name": "交野市",
          "country_code": "JP",
          "slug": "kounoshi",
          "canonical_path": "/cities/jp/kounoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262129",
          "name": "京丹後市",
          "country_code": "JP",
          "slug": "kyoutangoshi",
          "canonical_path": "/cities/jp/kyoutangoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262111",
          "name": "京田辺市",
          "country_code": "JP",
          "slug": "kyoutanabeshi",
          "canonical_path": "/cities/jp/kyoutanabeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:261009",
          "name": "京都市",
          "country_code": "JP",
          "slug": "kyoutoshi",
          "canonical_path": "/cities/jp/kyoutoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406252",
          "name": "京都郡みやこ町",
          "country_code": "JP",
          "slug": "kyoutogunmiyakomachi",
          "canonical_path": "/cities/jp/kyoutogunmiyakomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406210",
          "name": "京都郡苅田町",
          "country_code": "JP",
          "slug": "kyoutogunkaridamachi",
          "canonical_path": "/cities/jp/kyoutogunkaridamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432032",
          "name": "人吉市",
          "country_code": "JP",
          "slug": "hitoyoshishi",
          "canonical_path": "/cities/jp/hitoyoshishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382027",
          "name": "今治市",
          "country_code": "JP",
          "slug": "imabarishi",
          "canonical_path": "/cities/jp/imabarishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052159",
          "name": "仙北市",
          "country_code": "JP",
          "slug": "senbokushi",
          "canonical_path": "/cities/jp/senbokushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:054348",
          "name": "仙北郡美郷町",
          "country_code": "JP",
          "slug": "senbokugunmisatomachi",
          "canonical_path": "/cities/jp/senbokugunmisatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:041009",
          "name": "仙台市",
          "country_code": "JP",
          "slug": "sendaishi",
          "canonical_path": "/cities/jp/sendaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:374067",
          "name": "仲多度郡まんのう町",
          "country_code": "JP",
          "slug": "nakatadogunmannoumachi",
          "canonical_path": "/cities/jp/nakatadogunmannoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:374041",
          "name": "仲多度郡多度津町",
          "country_code": "JP",
          "slug": "nakatadoguntadotsumachi",
          "canonical_path": "/cities/jp/nakatadoguntadotsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:374032",
          "name": "仲多度郡琴平町",
          "country_code": "JP",
          "slug": "nakatadogunkotohiramachi",
          "canonical_path": "/cities/jp/nakatadogunkotohiramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412058",
          "name": "伊万里市",
          "country_code": "JP",
          "slug": "imarishi",
          "canonical_path": "/cities/jp/imarishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282073",
          "name": "伊丹市",
          "country_code": "JP",
          "slug": "itamishi",
          "canonical_path": "/cities/jp/itamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382108",
          "name": "伊予市",
          "country_code": "JP",
          "slug": "iyoshi",
          "canonical_path": "/cities/jp/iyoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:384011",
          "name": "伊予郡松前町",
          "country_code": "JP",
          "slug": "iyogunmatsumaemachi",
          "canonical_path": "/cities/jp/iyogunmatsumaemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:384020",
          "name": "伊予郡砥部町",
          "country_code": "JP",
          "slug": "iyoguntobemachi",
          "canonical_path": "/cities/jp/iyoguntobemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462241",
          "name": "伊佐市",
          "country_code": "JP",
          "slug": "isashi",
          "canonical_path": "/cities/jp/isashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142140",
          "name": "伊勢原市",
          "country_code": "JP",
          "slug": "iseharashi",
          "canonical_path": "/cities/jp/iseharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102041",
          "name": "伊勢崎市",
          "country_code": "JP",
          "slug": "isesakishi",
          "canonical_path": "/cities/jp/isesakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242039",
          "name": "伊勢市",
          "country_code": "JP",
          "slug": "iseshi",
          "canonical_path": "/cities/jp/iseshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222089",
          "name": "伊東市",
          "country_code": "JP",
          "slug": "itoushi",
          "canonical_path": "/cities/jp/itoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222259",
          "name": "伊豆の国市",
          "country_code": "JP",
          "slug": "izunokunishi",
          "canonical_path": "/cities/jp/izunokunishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222224",
          "name": "伊豆市",
          "country_code": "JP",
          "slug": "izushi",
          "canonical_path": "/cities/jp/izushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242161",
          "name": "伊賀市",
          "country_code": "JP",
          "slug": "igashi",
          "canonical_path": "/cities/jp/igashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:073032",
          "name": "伊達郡国見町",
          "country_code": "JP",
          "slug": "dategunkunimimachi",
          "canonical_path": "/cities/jp/dategunkunimimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:073083",
          "name": "伊達郡川俣町",
          "country_code": "JP",
          "slug": "dategunkawamatamachi",
          "canonical_path": "/cities/jp/dategunkawamatamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:073016",
          "name": "伊達郡桑折町",
          "country_code": "JP",
          "slug": "dategunkuwaorimachi",
          "canonical_path": "/cities/jp/dategunkuwaorimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202096",
          "name": "伊那市",
          "country_code": "JP",
          "slug": "inashi",
          "canonical_path": "/cities/jp/inashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303411",
          "name": "伊都郡かつらぎ町",
          "country_code": "JP",
          "slug": "itogunkatsuragimachi",
          "canonical_path": "/cities/jp/itogunkatsuragimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072028",
          "name": "会津若松市",
          "country_code": "JP",
          "slug": "aizuwakamatsushi",
          "canonical_path": "/cities/jp/aizuwakamatsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422029",
          "name": "佐世保市",
          "country_code": "JP",
          "slug": "saseboshi",
          "canonical_path": "/cities/jp/saseboshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202177",
          "name": "佐久市",
          "country_code": "JP",
          "slug": "sakushi",
          "canonical_path": "/cities/jp/sakushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442054",
          "name": "佐伯市",
          "country_code": "JP",
          "slug": "saekishi",
          "canonical_path": "/cities/jp/saekishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152242",
          "name": "佐渡市",
          "country_code": "JP",
          "slug": "sadoshi",
          "canonical_path": "/cities/jp/sadoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412015",
          "name": "佐賀市",
          "country_code": "JP",
          "slug": "sagashi",
          "canonical_path": "/cities/jp/sagashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092045",
          "name": "佐野市",
          "country_code": "JP",
          "slug": "sanoshi",
          "canonical_path": "/cities/jp/sanoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014087",
          "name": "余市郡余市町",
          "country_code": "JP",
          "slug": "yoichigunyoichimachi",
          "canonical_path": "/cities/jp/yoichigunyoichimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:312037",
          "name": "倉吉市",
          "country_code": "JP",
          "slug": "kurayoshishi",
          "canonical_path": "/cities/jp/kurayoshishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332020",
          "name": "倉敷市",
          "country_code": "JP",
          "slug": "kurashikishi",
          "canonical_path": "/cities/jp/kurashikishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332119",
          "name": "備前市",
          "country_code": "JP",
          "slug": "bizenshi",
          "canonical_path": "/cities/jp/bizenshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352101",
          "name": "光市",
          "country_code": "JP",
          "slug": "hikarishi",
          "canonical_path": "/cities/jp/hikarishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:454052",
          "name": "児湯郡川南町",
          "country_code": "JP",
          "slug": "koyugunkawaminamimachi",
          "canonical_path": "/cities/jp/koyugunkawaminamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:454028",
          "name": "児湯郡新富町",
          "country_code": "JP",
          "slug": "koyugunshintomimachi",
          "canonical_path": "/cities/jp/koyugunshintomimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:454061",
          "name": "児湯郡都農町",
          "country_code": "JP",
          "slug": "koyuguntonoumachi",
          "canonical_path": "/cities/jp/koyuguntonoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:454010",
          "name": "児湯郡高鍋町",
          "country_code": "JP",
          "slug": "koyuguntakanabemachi",
          "canonical_path": "/cities/jp/koyuguntakanabemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113859",
          "name": "児玉郡上里町",
          "country_code": "JP",
          "slug": "kodamagujousatomachi",
          "canonical_path": "/cities/jp/kodamagujousatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113832",
          "name": "児玉郡神川町",
          "country_code": "JP",
          "slug": "kodamagunkamikawamachi",
          "canonical_path": "/cities/jp/kodamagunkamikawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113816",
          "name": "児玉郡美里町",
          "country_code": "JP",
          "slug": "kodamagunmisatomachi",
          "canonical_path": "/cities/jp/kodamagunmisatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112259",
          "name": "入間市",
          "country_code": "JP",
          "slug": "irumashi",
          "canonical_path": "/cities/jp/irumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113247",
          "name": "入間郡三芳町",
          "country_code": "JP",
          "slug": "irumagunmiyoshimachi",
          "canonical_path": "/cities/jp/irumagunmiyoshimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113263",
          "name": "入間郡毛呂山町",
          "country_code": "JP",
          "slug": "irumagunmoroyamamachi",
          "canonical_path": "/cities/jp/irumagunmoroyamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113271",
          "name": "入間郡越生町",
          "country_code": "JP",
          "slug": "irumagunogosemachi",
          "canonical_path": "/cities/jp/irumagunogosemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:134015",
          "name": "八丈町",
          "country_code": "JP",
          "slug": "hachijoumachi",
          "canonical_path": "/cities/jp/hachijoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432024",
          "name": "八代市",
          "country_code": "JP",
          "slug": "yatsushiroshi",
          "canonical_path": "/cities/jp/yatsushiroshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122211",
          "name": "八千代市",
          "country_code": "JP",
          "slug": "yachiyoshi",
          "canonical_path": "/cities/jp/yachiyoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402109",
          "name": "八女市",
          "country_code": "JP",
          "slug": "yameshi",
          "canonical_path": "/cities/jp/yameshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272124",
          "name": "八尾市",
          "country_code": "JP",
          "slug": "yaoshi",
          "canonical_path": "/cities/jp/yaoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262102",
          "name": "八幡市",
          "country_code": "JP",
          "slug": "yahatashi",
          "canonical_path": "/cities/jp/yahatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032140",
          "name": "八幡平市",
          "country_code": "JP",
          "slug": "hachimantaishi",
          "canonical_path": "/cities/jp/hachimantaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382043",
          "name": "八幡浜市",
          "country_code": "JP",
          "slug": "yawatahamashi",
          "canonical_path": "/cities/jp/yawatahamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022039",
          "name": "八戸市",
          "country_code": "JP",
          "slug": "hachinoheshi",
          "canonical_path": "/cities/jp/hachinoheshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112348",
          "name": "八潮市",
          "country_code": "JP",
          "slug": "yashioshi",
          "canonical_path": "/cities/jp/yashioshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132012",
          "name": "八王子市",
          "country_code": "JP",
          "slug": "hachioujishi",
          "canonical_path": "/cities/jp/hachioujishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122301",
          "name": "八街市",
          "country_code": "JP",
          "slug": "yachimatashi",
          "canonical_path": "/cities/jp/yachimatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:313297",
          "name": "八頭郡八頭町",
          "country_code": "JP",
          "slug": "yagashiragunyagashiramachi",
          "canonical_path": "/cities/jp/yagashiragunyagashiramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:313289",
          "name": "八頭郡智頭町",
          "country_code": "JP",
          "slug": "yagashiragunchizumachi",
          "canonical_path": "/cities/jp/yagashiragunchizumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:063622",
          "name": "最上郡最上町",
          "country_code": "JP",
          "slug": "saijougunsaijoumachi",
          "canonical_path": "/cities/jp/saijougunsaijoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:063649",
          "name": "最上郡真室川町",
          "country_code": "JP",
          "slug": "saijougunmamurogawamachi",
          "canonical_path": "/cities/jp/saijougunmamurogawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462080",
          "name": "出水市",
          "country_code": "JP",
          "slug": "shussuishi",
          "canonical_path": "/cities/jp/shussuishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:322032",
          "name": "出雲市",
          "country_code": "JP",
          "slug": "izumoshi",
          "canonical_path": "/cities/jp/izumoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012025",
          "name": "函館市",
          "country_code": "JP",
          "slug": "hakodateshi",
          "canonical_path": "/cities/jp/hakodateshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:043010",
          "name": "刈田郡蔵王町",
          "country_code": "JP",
          "slug": "kattagunzaouchou",
          "canonical_path": "/cities/jp/kattagunzaouchou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232106",
          "name": "刈谷市",
          "country_code": "JP",
          "slug": "kariyashi",
          "canonical_path": "/cities/jp/kariyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442020",
          "name": "別府市",
          "country_code": "JP",
          "slug": "beppushi",
          "canonical_path": "/cities/jp/beppushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:104493",
          "name": "利根郡みなかみ町",
          "country_code": "JP",
          "slug": "tonegunminakamimachi",
          "canonical_path": "/cities/jp/tonegunminakamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:104485",
          "name": "利根郡昭和村",
          "country_code": "JP",
          "slug": "tonegunshouwamura",
          "canonical_path": "/cities/jp/tonegunshouwamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102016",
          "name": "前橋市",
          "country_code": "JP",
          "slug": "maebashishi",
          "canonical_path": "/cities/jp/maebashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282103",
          "name": "加古川市",
          "country_code": "JP",
          "slug": "kakogawashi",
          "canonical_path": "/cities/jp/kakogawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:283827",
          "name": "加古郡播磨町",
          "country_code": "JP",
          "slug": "kakogunharimamachi",
          "canonical_path": "/cities/jp/kakogunharimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:283819",
          "name": "加古郡稲美町",
          "country_code": "JP",
          "slug": "kakoguninamimachi",
          "canonical_path": "/cities/jp/kakoguninamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282286",
          "name": "加東市",
          "country_code": "JP",
          "slug": "katoushi",
          "canonical_path": "/cities/jp/katoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:044458",
          "name": "加美郡加美町",
          "country_code": "JP",
          "slug": "kamigunkamimachi",
          "canonical_path": "/cities/jp/kamigunkamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:044440",
          "name": "加美郡色麻町",
          "country_code": "JP",
          "slug": "kamigunshikamamachi",
          "canonical_path": "/cities/jp/kamigunshikamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152099",
          "name": "加茂市",
          "country_code": "JP",
          "slug": "kamoshi",
          "canonical_path": "/cities/jp/kamoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:215058",
          "name": "加茂郡八百津町",
          "country_code": "JP",
          "slug": "kamogunyaotsumachi",
          "canonical_path": "/cities/jp/kamogunyaotsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:215015",
          "name": "加茂郡坂祝町",
          "country_code": "JP",
          "slug": "kamogunsakahogimachi",
          "canonical_path": "/cities/jp/kamogunsakahogimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:215023",
          "name": "加茂郡富加町",
          "country_code": "JP",
          "slug": "kamoguntomikamachi",
          "canonical_path": "/cities/jp/kamoguntomikamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:215031",
          "name": "加茂郡川辺町",
          "country_code": "JP",
          "slug": "kamogunkawabemachi",
          "canonical_path": "/cities/jp/kamogunkawabemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:215066",
          "name": "加茂郡白川町",
          "country_code": "JP",
          "slug": "kamogunshirakawamachi",
          "canonical_path": "/cities/jp/kamogunshirakawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282201",
          "name": "加西市",
          "country_code": "JP",
          "slug": "kasaishi",
          "canonical_path": "/cities/jp/kasaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172065",
          "name": "加賀市",
          "country_code": "JP",
          "slug": "kagashi",
          "canonical_path": "/cities/jp/kagashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112101",
          "name": "加須市",
          "country_code": "JP",
          "slug": "kazoshi",
          "canonical_path": "/cities/jp/kazoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015865",
          "name": "勇払郡むかわ町",
          "country_code": "JP",
          "slug": "yuufutsugunmukawamachi",
          "canonical_path": "/cities/jp/yuufutsugunmukawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015857",
          "name": "勇払郡安平町",
          "country_code": "JP",
          "slug": "yuufutsugunabiramachi",
          "canonical_path": "/cities/jp/yuufutsugunabiramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:182061",
          "name": "勝山市",
          "country_code": "JP",
          "slug": "katsuyamashi",
          "canonical_path": "/cities/jp/katsuyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122181",
          "name": "勝浦市",
          "country_code": "JP",
          "slug": "katsuurashi",
          "canonical_path": "/cities/jp/katsuurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:336220",
          "name": "勝田郡勝央町",
          "country_code": "JP",
          "slug": "katsutagunshououmachi",
          "canonical_path": "/cities/jp/katsutagunshououmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:336238",
          "name": "勝田郡奈義町",
          "country_code": "JP",
          "slug": "katsutagunnagimachi",
          "canonical_path": "/cities/jp/katsutagunnagimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032069",
          "name": "北上市",
          "country_code": "JP",
          "slug": "kitakamishi",
          "canonical_path": "/cities/jp/kitakamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:401005",
          "name": "北九州市",
          "country_code": "JP",
          "slug": "kitakyuushuushi",
          "canonical_path": "/cities/jp/kitakyuushuushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203238",
          "name": "北佐久郡御代田町",
          "country_code": "JP",
          "slug": "kitasakugunmiyotamachi",
          "canonical_path": "/cities/jp/kitasakugunmiyotamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203246",
          "name": "北佐久郡立科町",
          "country_code": "JP",
          "slug": "kitasakugunritsukamachi",
          "canonical_path": "/cities/jp/kitasakugunritsukamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203211",
          "name": "北佐久郡軽井沢町",
          "country_code": "JP",
          "slug": "kitasakugunkaruizawamachi",
          "canonical_path": "/cities/jp/kitasakugunkaruizawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232343",
          "name": "北名古屋市",
          "country_code": "JP",
          "slug": "kitanagoyashi",
          "canonical_path": "/cities/jp/kitanagoyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:384887",
          "name": "北宇和郡鬼北町",
          "country_code": "JP",
          "slug": "kitauwagunkihokumachi",
          "canonical_path": "/cities/jp/kitauwagunkihokumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204820",
          "name": "北安曇郡松川村",
          "country_code": "JP",
          "slug": "kitaazumigunmatsukawamura",
          "canonical_path": "/cities/jp/kitaazumigunmatsukawamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204811",
          "name": "北安曇郡池田町",
          "country_code": "JP",
          "slug": "kitaazumikooriiketamachi",
          "canonical_path": "/cities/jp/kitaazumikooriiketamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204854",
          "name": "北安曇郡白馬村",
          "country_code": "JP",
          "slug": "kitaazumigunhakubamura",
          "canonical_path": "/cities/jp/kitaazumigunhakubamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012343",
          "name": "北広島市",
          "country_code": "JP",
          "slug": "kitahiroshimashi",
          "canonical_path": "/cities/jp/kitahiroshimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112330",
          "name": "北本市",
          "country_code": "JP",
          "slug": "kitamotoshi",
          "canonical_path": "/cities/jp/kitamotoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:423912",
          "name": "北松浦郡佐々町",
          "country_code": "JP",
          "slug": "kitamatsuuragunsassamachi",
          "canonical_path": "/cities/jp/kitamatsuuragunsassamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023876",
          "name": "北津軽郡中泊町",
          "country_code": "JP",
          "slug": "kitatsugarugunchuutomarimachi",
          "canonical_path": "/cities/jp/kitatsugarugunchuutomarimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023817",
          "name": "北津軽郡板柳町",
          "country_code": "JP",
          "slug": "kitatsugarugunitayanagimachi",
          "canonical_path": "/cities/jp/kitatsugarugunitayanagimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023841",
          "name": "北津軽郡鶴田町",
          "country_code": "JP",
          "slug": "kitatsugaruguntsurutamachi",
          "canonical_path": "/cities/jp/kitatsugaruguntsurutamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052132",
          "name": "北秋田市",
          "country_code": "JP",
          "slug": "kitaakitashi",
          "canonical_path": "/cities/jp/kitaakitashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:103454",
          "name": "北群馬郡吉岡町",
          "country_code": "JP",
          "slug": "kitagunmagunyoshiokamachi",
          "canonical_path": "/cities/jp/kitagunmagunyoshiokamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:103446",
          "name": "北群馬郡榛東村",
          "country_code": "JP",
          "slug": "kitagunmagunshintoumura",
          "canonical_path": "/cities/jp/kitagunmagunshintoumura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082155",
          "name": "北茨城市",
          "country_code": "JP",
          "slug": "kitaibaragishi",
          "canonical_path": "/cities/jp/kitaibaragishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:294241",
          "name": "北葛城郡上牧町",
          "country_code": "JP",
          "slug": "kitakatsuragigujoumakimachi",
          "canonical_path": "/cities/jp/kitakatsuragigujoumakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:294268",
          "name": "北葛城郡広陵町",
          "country_code": "JP",
          "slug": "kitakatsuragigunkouryoumachi",
          "canonical_path": "/cities/jp/kitakatsuragigunkouryoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:294276",
          "name": "北葛城郡河合町",
          "country_code": "JP",
          "slug": "kitakatsuragigunkawaichou",
          "canonical_path": "/cities/jp/kitakatsuragigunkawaichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:294250",
          "name": "北葛城郡王寺町",
          "country_code": "JP",
          "slug": "kitakatsuragigun-outeramachi",
          "canonical_path": "/cities/jp/kitakatsuragigun-outeramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:114642",
          "name": "北葛飾郡杉戸町",
          "country_code": "JP",
          "slug": "kitakatsushikagunsugitomachi",
          "canonical_path": "/cities/jp/kitakatsushikagunsugitomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:114651",
          "name": "北葛飾郡松伏町",
          "country_code": "JP",
          "slug": "kitakatsushikagunmatsubushimachi",
          "canonical_path": "/cities/jp/kitakatsushikagunmatsubushimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012084",
          "name": "北見市",
          "country_code": "JP",
          "slug": "kitamishi",
          "canonical_path": "/cities/jp/kitamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122351",
          "name": "匝瑳市",
          "country_code": "JP",
          "slug": "sousashi",
          "canonical_path": "/cities/jp/sousashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022063",
          "name": "十和田市",
          "country_code": "JP",
          "slug": "towadashi",
          "canonical_path": "/cities/jp/towadashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152102",
          "name": "十日町市",
          "country_code": "JP",
          "slug": "tookamachishi",
          "canonical_path": "/cities/jp/tookamachishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202185",
          "name": "千曲市",
          "country_code": "JP",
          "slug": "chikumashi",
          "canonical_path": "/cities/jp/chikumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012246",
          "name": "千歳市",
          "country_code": "JP",
          "slug": "chitoseshi",
          "canonical_path": "/cities/jp/chitoseshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:121002",
          "name": "千葉市",
          "country_code": "JP",
          "slug": "chibashi",
          "canonical_path": "/cities/jp/chibashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232050",
          "name": "半田市",
          "country_code": "JP",
          "slug": "handashi",
          "canonical_path": "/cities/jp/handashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192082",
          "name": "南アルプス市",
          "country_code": "JP",
          "slug": "minamiarupusushi",
          "canonical_path": "/cities/jp/minamiarupusushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282243",
          "name": "南あわじ市",
          "country_code": "JP",
          "slug": "minamiawajishi",
          "canonical_path": "/cities/jp/minamiawajishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462209",
          "name": "南さつま市",
          "country_code": "JP",
          "slug": "minamisatsumashi",
          "canonical_path": "/cities/jp/minamisatsumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262137",
          "name": "南丹市",
          "country_code": "JP",
          "slug": "nantanshi",
          "canonical_path": "/cities/jp/nantanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462233",
          "name": "南九州市",
          "country_code": "JP",
          "slug": "minamikyuushuushi",
          "canonical_path": "/cities/jp/minamikyuushuushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:073687",
          "name": "南会津郡南会津町",
          "country_code": "JP",
          "slug": "minamiaizugunminamiaizumachi",
          "canonical_path": "/cities/jp/minamiaizugunminamiaizumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203092",
          "name": "南佐久郡佐久穂町",
          "country_code": "JP",
          "slug": "minamisakugunsakuhomachi",
          "canonical_path": "/cities/jp/minamisakugunsakuhomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392049",
          "name": "南国市",
          "country_code": "JP",
          "slug": "nangokushi",
          "canonical_path": "/cities/jp/nangokushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472158",
          "name": "南城市",
          "country_code": "JP",
          "slug": "nanjoushi",
          "canonical_path": "/cities/jp/nanjoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422142",
          "name": "南島原市",
          "country_code": "JP",
          "slug": "nantouharaichi",
          "canonical_path": "/cities/jp/nantouharaichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:193666",
          "name": "南巨摩郡南部町",
          "country_code": "JP",
          "slug": "minamikomagunnanbumachi",
          "canonical_path": "/cities/jp/minamikomagunnanbumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:193682",
          "name": "南巨摩郡富士川町",
          "country_code": "JP",
          "slug": "minamikomagunfujigawamachi",
          "canonical_path": "/cities/jp/minamikomagunfujigawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:193658",
          "name": "南巨摩郡身延町",
          "country_code": "JP",
          "slug": "minamikomagunminobumachi",
          "canonical_path": "/cities/jp/minamikomagunminobumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122343",
          "name": "南房総市",
          "country_code": "JP",
          "slug": "minamibousoushi",
          "canonical_path": "/cities/jp/minamibousoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:273813",
          "name": "南河内郡太子町",
          "country_code": "JP",
          "slug": "minamikawachiguntaishimachi",
          "canonical_path": "/cities/jp/minamikawachiguntaishimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:273821",
          "name": "南河内郡河南町",
          "country_code": "JP",
          "slug": "minamikawachigunkananmachi",
          "canonical_path": "/cities/jp/minamikawachigunkananmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023621",
          "name": "南津軽郡大鰐町",
          "country_code": "JP",
          "slug": "minamitsugarugunoowanimachi",
          "canonical_path": "/cities/jp/minamitsugarugunoowanimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023671",
          "name": "南津軽郡田舎館村",
          "country_code": "JP",
          "slug": "minamitsugaruguninakadatemura",
          "canonical_path": "/cities/jp/minamitsugaruguninakadatemura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023612",
          "name": "南津軽郡藤崎町",
          "country_code": "JP",
          "slug": "minamitsugarugunfujisakimachi",
          "canonical_path": "/cities/jp/minamitsugarugunfujisakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:245615",
          "name": "南牟婁郡御浜町",
          "country_code": "JP",
          "slug": "minamimurogunmihamamachi",
          "canonical_path": "/cities/jp/minamimurogunmihamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:245623",
          "name": "南牟婁郡紀宝町",
          "country_code": "JP",
          "slug": "minamimurogunkihoumachi",
          "canonical_path": "/cities/jp/minamimurogunkihoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072125",
          "name": "南相馬市",
          "country_code": "JP",
          "slug": "minamisoumashi",
          "canonical_path": "/cities/jp/minamisoumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162108",
          "name": "南砺市",
          "country_code": "JP",
          "slug": "nantoshi",
          "canonical_path": "/cities/jp/nantoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:053619",
          "name": "南秋田郡五城目町",
          "country_code": "JP",
          "slug": "minamiakitagungojoumemachi",
          "canonical_path": "/cities/jp/minamiakitagungojoumemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:053635",
          "name": "南秋田郡八郎潟町",
          "country_code": "JP",
          "slug": "minamiakitagunhachirougatamachi",
          "canonical_path": "/cities/jp/minamiakitagunhachirougatamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142174",
          "name": "南足柄市",
          "country_code": "JP",
          "slug": "minamiashigarashi",
          "canonical_path": "/cities/jp/minamiashigarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:194301",
          "name": "南都留郡富士河口湖町",
          "country_code": "JP",
          "slug": "minamitsurugunfujikawaguchikomachi",
          "canonical_path": "/cities/jp/minamitsurugunfujikawaguchikomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:194255",
          "name": "南都留郡山中湖村",
          "country_code": "JP",
          "slug": "minamitsurukouriyamanakanoumimura",
          "canonical_path": "/cities/jp/minamitsurukouriyamanakanoumimura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:194247",
          "name": "南都留郡忍野村",
          "country_code": "JP",
          "slug": "minamitsurugunoshinomura",
          "canonical_path": "/cities/jp/minamitsurugunoshinomura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062138",
          "name": "南陽市",
          "country_code": "JP",
          "slug": "nanyoushi",
          "canonical_path": "/cities/jp/nanyoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152269",
          "name": "南魚沼市",
          "country_code": "JP",
          "slug": "minamiuonumashi",
          "canonical_path": "/cities/jp/minamiuonumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:123293",
          "name": "印旛郡栄町",
          "country_code": "JP",
          "slug": "inbagunsakaemachi",
          "canonical_path": "/cities/jp/inbagunsakaemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:123226",
          "name": "印旛郡酒々井町",
          "country_code": "JP",
          "slug": "inbagunsake-kurikaesi-imachi",
          "canonical_path": "/cities/jp/inbagunsake-kurikaesi-imachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122319",
          "name": "印西市",
          "country_code": "JP",
          "slug": "inzaishi",
          "canonical_path": "/cities/jp/inzaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016624",
          "name": "厚岸郡厚岸町",
          "country_code": "JP",
          "slug": "akkeshigunakkeshimachi",
          "canonical_path": "/cities/jp/akkeshigunakkeshimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016632",
          "name": "厚岸郡浜中町",
          "country_code": "JP",
          "slug": "akkeshigunhamanakamachi",
          "canonical_path": "/cities/jp/akkeshigunhamanakamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142123",
          "name": "厚木市",
          "country_code": "JP",
          "slug": "atsugishi",
          "canonical_path": "/cities/jp/atsugishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075451",
          "name": "双葉郡大熊町",
          "country_code": "JP",
          "slug": "futabagunookumamachi",
          "canonical_path": "/cities/jp/futabagunookumamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075434",
          "name": "双葉郡富岡町",
          "country_code": "JP",
          "slug": "futabaguntomiokamachi",
          "canonical_path": "/cities/jp/futabaguntomiokamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075426",
          "name": "双葉郡楢葉町",
          "country_code": "JP",
          "slug": "futabagunnarahamachi",
          "canonical_path": "/cities/jp/futabagunnarahamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075477",
          "name": "双葉郡浪江町",
          "country_code": "JP",
          "slug": "futabagunnamiemachi",
          "canonical_path": "/cities/jp/futabagunnamiemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082171",
          "name": "取手市",
          "country_code": "JP",
          "slug": "torideshi",
          "canonical_path": "/cities/jp/torideshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212148",
          "name": "可児市",
          "country_code": "JP",
          "slug": "kanishi",
          "canonical_path": "/cities/jp/kanishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212130",
          "name": "各務原市",
          "country_code": "JP",
          "slug": "kakamigaharashi",
          "canonical_path": "/cities/jp/kakamigaharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432164",
          "name": "合志市",
          "country_code": "JP",
          "slug": "goushishi",
          "canonical_path": "/cities/jp/goushishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112437",
          "name": "吉川市",
          "country_code": "JP",
          "slug": "yoshikawashi",
          "canonical_path": "/cities/jp/yoshikawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:362051",
          "name": "吉野川市",
          "country_code": "JP",
          "slug": "yoshinogawashi",
          "canonical_path": "/cities/jp/yoshinogawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:294411",
          "name": "吉野郡吉野町",
          "country_code": "JP",
          "slug": "yoshinogunyoshinochou",
          "canonical_path": "/cities/jp/yoshinogunyoshinochou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:294420",
          "name": "吉野郡大淀町",
          "country_code": "JP",
          "slug": "yoshinogunooyodomachi",
          "canonical_path": "/cities/jp/yoshinogunooyodomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042072",
          "name": "名取市",
          "country_code": "JP",
          "slug": "natorishi",
          "canonical_path": "/cities/jp/natorishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:231002",
          "name": "名古屋市",
          "country_code": "JP",
          "slug": "nagoyashi",
          "canonical_path": "/cities/jp/nagoyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012211",
          "name": "名寄市",
          "country_code": "JP",
          "slug": "nayoroshi",
          "canonical_path": "/cities/jp/nayoroshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242080",
          "name": "名張市",
          "country_code": "JP",
          "slug": "nabarishi",
          "canonical_path": "/cities/jp/nabarishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:363413",
          "name": "名西郡石井町",
          "country_code": "JP",
          "slug": "myouzaigunishiimachi",
          "canonical_path": "/cities/jp/myouzaigunishiimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472093",
          "name": "名護市",
          "country_code": "JP",
          "slug": "nagoshi",
          "canonical_path": "/cities/jp/nagoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262081",
          "name": "向日市",
          "country_code": "JP",
          "slug": "kouhishi",
          "canonical_path": "/cities/jp/kouhishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122254",
          "name": "君津市",
          "country_code": "JP",
          "slug": "kimitsushi",
          "canonical_path": "/cities/jp/kimitsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272051",
          "name": "吹田市",
          "country_code": "JP",
          "slug": "suitashi",
          "canonical_path": "/cities/jp/suitashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:104213",
          "name": "吾妻郡中之条町",
          "country_code": "JP",
          "slug": "azumagunchuuyukijoumachi",
          "canonical_path": "/cities/jp/azumagunchuuyukijoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:104256",
          "name": "吾妻郡嬬恋村",
          "country_code": "JP",
          "slug": "azumaguntsumagoimura",
          "canonical_path": "/cities/jp/azumaguntsumagoimura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:104299",
          "name": "吾妻郡東吾妻町",
          "country_code": "JP",
          "slug": "azumagunhigashiagatsumamachi",
          "canonical_path": "/cities/jp/azumagunhigashiagatsumamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:104264",
          "name": "吾妻郡草津町",
          "country_code": "JP",
          "slug": "azumagunkusatsumachi",
          "canonical_path": "/cities/jp/azumagunkusatsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:104248",
          "name": "吾妻郡長野原町",
          "country_code": "JP",
          "slug": "azumagunchounoharamachi",
          "canonical_path": "/cities/jp/azumagunchounoharamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:393860",
          "name": "吾川郡いの町",
          "country_code": "JP",
          "slug": "agawaguninomachi",
          "canonical_path": "/cities/jp/agawaguninomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342025",
          "name": "呉市",
          "country_code": "JP",
          "slug": "kureshi",
          "canonical_path": "/cities/jp/kureshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352152",
          "name": "周南市",
          "country_code": "JP",
          "slug": "shuunanshi",
          "canonical_path": "/cities/jp/shuunanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112291",
          "name": "和光市",
          "country_code": "JP",
          "slug": "wakoushi",
          "canonical_path": "/cities/jp/wakoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:302015",
          "name": "和歌山市",
          "country_code": "JP",
          "slug": "wakayamashi",
          "canonical_path": "/cities/jp/wakayamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272191",
          "name": "和泉市",
          "country_code": "JP",
          "slug": "izumishi",
          "canonical_path": "/cities/jp/izumishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412023",
          "name": "唐津市",
          "country_code": "JP",
          "slug": "karatsushi",
          "canonical_path": "/cities/jp/karatsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:372048",
          "name": "善通寺市",
          "country_code": "JP",
          "slug": "zentsuujishi",
          "canonical_path": "/cities/jp/zentsuujishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072087",
          "name": "喜多方市",
          "country_code": "JP",
          "slug": "kitakatashi",
          "canonical_path": "/cities/jp/kitakatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402273",
          "name": "嘉麻市",
          "country_code": "JP",
          "slug": "kamashi",
          "canonical_path": "/cities/jp/kamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392103",
          "name": "四万十市",
          "country_code": "JP",
          "slug": "shimantoshi",
          "canonical_path": "/cities/jp/shimantoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382132",
          "name": "四国中央市",
          "country_code": "JP",
          "slug": "shikokuchuuoushi",
          "canonical_path": "/cities/jp/shikokuchuuoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242021",
          "name": "四日市市",
          "country_code": "JP",
          "slug": "yokkaichishi",
          "canonical_path": "/cities/jp/yokkaichishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272299",
          "name": "四條畷市",
          "country_code": "JP",
          "slug": "shijounawateshi",
          "canonical_path": "/cities/jp/shijounawateshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122289",
          "name": "四街道市",
          "country_code": "JP",
          "slug": "yotsukaidoushi",
          "canonical_path": "/cities/jp/yotsukaidoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132144",
          "name": "国分寺市",
          "country_code": "JP",
          "slug": "kokubunjishi",
          "canonical_path": "/cities/jp/kokubunjishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442143",
          "name": "国東市",
          "country_code": "JP",
          "slug": "kunisakishi",
          "canonical_path": "/cities/jp/kunisakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132152",
          "name": "国立市",
          "country_code": "JP",
          "slug": "kunitachishi",
          "canonical_path": "/cities/jp/kunitachishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473065",
          "name": "国頭郡今帰仁村",
          "country_code": "JP",
          "slug": "kunigamigunnakijinmura",
          "canonical_path": "/cities/jp/kunigamigunnakijinmura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473138",
          "name": "国頭郡宜野座村",
          "country_code": "JP",
          "slug": "kunigamigunginozamura",
          "canonical_path": "/cities/jp/kunigamigunginozamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473111",
          "name": "国頭郡恩納村",
          "country_code": "JP",
          "slug": "kunigamigunonnamura",
          "canonical_path": "/cities/jp/kunigamigunonnamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473081",
          "name": "国頭郡本部町",
          "country_code": "JP",
          "slug": "kunigamikoorimotobumachi",
          "canonical_path": "/cities/jp/kunigamikoorimotobumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473146",
          "name": "国頭郡金武町",
          "country_code": "JP",
          "slug": "kunigamigunkanatakemachi",
          "canonical_path": "/cities/jp/kunigamigunkanatakemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392057",
          "name": "土佐市",
          "country_code": "JP",
          "slug": "tosashi",
          "canonical_path": "/cities/jp/tosashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392090",
          "name": "土佐清水市",
          "country_code": "JP",
          "slug": "tosashimizushi",
          "canonical_path": "/cities/jp/tosashimizushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212121",
          "name": "土岐市",
          "country_code": "JP",
          "slug": "tokishi",
          "canonical_path": "/cities/jp/tokishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082031",
          "name": "土浦市",
          "country_code": "JP",
          "slug": "tsuchiurashi",
          "canonical_path": "/cities/jp/tsuchiurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:372030",
          "name": "坂出市",
          "country_code": "JP",
          "slug": "sakaideshi",
          "canonical_path": "/cities/jp/sakaideshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112399",
          "name": "坂戸市",
          "country_code": "JP",
          "slug": "sakatoshi",
          "canonical_path": "/cities/jp/sakatoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082287",
          "name": "坂東市",
          "country_code": "JP",
          "slug": "bandoushi",
          "canonical_path": "/cities/jp/bandoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462144",
          "name": "垂水市",
          "country_code": "JP",
          "slug": "tarumizushi",
          "canonical_path": "/cities/jp/tarumizushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262072",
          "name": "城陽市",
          "country_code": "JP",
          "slug": "jouyoushi",
          "canonical_path": "/cities/jp/jouyoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202151",
          "name": "塩尻市",
          "country_code": "JP",
          "slug": "shiojirishi",
          "canonical_path": "/cities/jp/shiojirishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042030",
          "name": "塩竈市",
          "country_code": "JP",
          "slug": "shiogamashi",
          "canonical_path": "/cities/jp/shiogamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:093840",
          "name": "塩谷郡塩谷町",
          "country_code": "JP",
          "slug": "shioyagunshioyamachi",
          "canonical_path": "/cities/jp/shioyagunshioyamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:093866",
          "name": "塩谷郡高根沢町",
          "country_code": "JP",
          "slug": "shioyaguntakanezawamachi",
          "canonical_path": "/cities/jp/shioyaguntakanezawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:312045",
          "name": "境港市",
          "country_code": "JP",
          "slug": "sakaiminatoshi",
          "canonical_path": "/cities/jp/sakaiminatoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012203",
          "name": "士別市",
          "country_code": "JP",
          "slug": "shibetsushi",
          "canonical_path": "/cities/jp/shibetsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422100",
          "name": "壱岐市",
          "country_code": "JP",
          "slug": "ichishishi",
          "canonical_path": "/cities/jp/ichishishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012092",
          "name": "夕張市",
          "country_code": "JP",
          "slug": "yuubarishi",
          "canonical_path": "/cities/jp/yuubarishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014290",
          "name": "夕張郡栗山町",
          "country_code": "JP",
          "slug": "yuubarigunkuriyamamachi",
          "canonical_path": "/cities/jp/yuubarigunkuriyamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014281",
          "name": "夕張郡長沼町",
          "country_code": "JP",
          "slug": "yuubarigunchounumamachi",
          "canonical_path": "/cities/jp/yuubarigunchounumamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412040",
          "name": "多久市",
          "country_code": "JP",
          "slug": "takushi",
          "canonical_path": "/cities/jp/takushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132241",
          "name": "多摩市",
          "country_code": "JP",
          "slug": "tamashi",
          "canonical_path": "/cities/jp/tamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:244414",
          "name": "多気郡多気町",
          "country_code": "JP",
          "slug": "takiguntakimachi",
          "canonical_path": "/cities/jp/takiguntakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:244431",
          "name": "多気郡大台町",
          "country_code": "JP",
          "slug": "takigunoodaimachi",
          "canonical_path": "/cities/jp/takigunoodaimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:244422",
          "name": "多気郡明和町",
          "country_code": "JP",
          "slug": "takigunmeiwamachi",
          "canonical_path": "/cities/jp/takigunmeiwamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212041",
          "name": "多治見市",
          "country_code": "JP",
          "slug": "tajimishi",
          "canonical_path": "/cities/jp/tajimishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042099",
          "name": "多賀城市",
          "country_code": "JP",
          "slug": "tagajoushi",
          "canonical_path": "/cities/jp/tagajoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052124",
          "name": "大仙市",
          "country_code": "JP",
          "slug": "daisenshi",
          "canonical_path": "/cities/jp/daisenshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442011",
          "name": "大分市",
          "country_code": "JP",
          "slug": "ooitashi",
          "canonical_path": "/cities/jp/ooitashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142131",
          "name": "大和市",
          "country_code": "JP",
          "slug": "yamatoshi",
          "canonical_path": "/cities/jp/yamatoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292036",
          "name": "大和郡山市",
          "country_code": "JP",
          "slug": "yamatokooriyamashi",
          "canonical_path": "/cities/jp/yamatokooriyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292028",
          "name": "大和高田市",
          "country_code": "JP",
          "slug": "yamatotakadashi",
          "canonical_path": "/cities/jp/yamatotakadashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212024",
          "name": "大垣市",
          "country_code": "JP",
          "slug": "oogakishi",
          "canonical_path": "/cities/jp/oogakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:133612",
          "name": "大島町",
          "country_code": "JP",
          "slug": "ooshimamachi",
          "canonical_path": "/cities/jp/ooshimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465356",
          "name": "大島郡与論町",
          "country_code": "JP",
          "slug": "ooshimagunyoronmachi",
          "canonical_path": "/cities/jp/ooshimagunyoronmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465321",
          "name": "大島郡伊仙町",
          "country_code": "JP",
          "slug": "ooshimagunisenmachi",
          "canonical_path": "/cities/jp/ooshimagunisenmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:353051",
          "name": "大島郡周防大島町",
          "country_code": "JP",
          "slug": "ooshimagunsuouooshimamachi",
          "canonical_path": "/cities/jp/ooshimagunsuouooshimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465330",
          "name": "大島郡和泊町",
          "country_code": "JP",
          "slug": "ooshimagunwadomarimachi",
          "canonical_path": "/cities/jp/ooshimagunwadomarimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465291",
          "name": "大島郡喜界町",
          "country_code": "JP",
          "slug": "ooshimagunkikaimachi",
          "canonical_path": "/cities/jp/ooshimagunkikaimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465313",
          "name": "大島郡天城町",
          "country_code": "JP",
          "slug": "ooshimagunamagimachi",
          "canonical_path": "/cities/jp/ooshimagunamagimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465305",
          "name": "大島郡徳之島町",
          "country_code": "JP",
          "slug": "ooshimagunnoriyukishimamachi",
          "canonical_path": "/cities/jp/ooshimagunnoriyukishimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465259",
          "name": "大島郡瀬戸内町",
          "country_code": "JP",
          "slug": "ooshimagunsetouchimachi",
          "canonical_path": "/cities/jp/ooshimagunsetouchimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465348",
          "name": "大島郡知名町",
          "country_code": "JP",
          "slug": "ooshimagunchimeimachi",
          "canonical_path": "/cities/jp/ooshimagunchimeimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465275",
          "name": "大島郡龍郷町",
          "country_code": "JP",
          "slug": "ooshimaguntatsugoumachi",
          "canonical_path": "/cities/jp/ooshimaguntatsugoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042153",
          "name": "大崎市",
          "country_code": "JP",
          "slug": "oosakishi",
          "canonical_path": "/cities/jp/oosakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402125",
          "name": "大川市",
          "country_code": "JP",
          "slug": "ookawashi",
          "canonical_path": "/cities/jp/ookawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232238",
          "name": "大府市",
          "country_code": "JP",
          "slug": "oobushi",
          "canonical_path": "/cities/jp/oobushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192066",
          "name": "大月市",
          "country_code": "JP",
          "slug": "ootsukishi",
          "canonical_path": "/cities/jp/ootsukishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422053",
          "name": "大村市",
          "country_code": "JP",
          "slug": "oomurashi",
          "canonical_path": "/cities/jp/oomurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272183",
          "name": "大東市",
          "country_code": "JP",
          "slug": "daitoushi",
          "canonical_path": "/cities/jp/daitoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074471",
          "name": "大沼郡会津美里町",
          "country_code": "JP",
          "slug": "oonumagunkaitsumisatomachi",
          "canonical_path": "/cities/jp/oonumagunkaitsumisatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252018",
          "name": "大津市",
          "country_code": "JP",
          "slug": "ootsushi",
          "canonical_path": "/cities/jp/ootsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382078",
          "name": "大洲市",
          "country_code": "JP",
          "slug": "oozushi",
          "canonical_path": "/cities/jp/oozushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402028",
          "name": "大牟田市",
          "country_code": "JP",
          "slug": "oomutashi",
          "canonical_path": "/cities/jp/oomutashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092100",
          "name": "大田原市",
          "country_code": "JP",
          "slug": "ootawarashi",
          "canonical_path": "/cities/jp/ootawarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202126",
          "name": "大町市",
          "country_code": "JP",
          "slug": "oomachishi",
          "canonical_path": "/cities/jp/oomachishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342114",
          "name": "大竹市",
          "country_code": "JP",
          "slug": "ootakeshi",
          "canonical_path": "/cities/jp/ootakeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122394",
          "name": "大網白里市",
          "country_code": "JP",
          "slug": "ooamishirasatoshi",
          "canonical_path": "/cities/jp/ooamishirasatoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032034",
          "name": "大船渡市",
          "country_code": "JP",
          "slug": "oofunatoshi",
          "canonical_path": "/cities/jp/oofunatoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402192",
          "name": "大野城市",
          "country_code": "JP",
          "slug": "oonojoushi",
          "canonical_path": "/cities/jp/oonojoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:182052",
          "name": "大野市",
          "country_code": "JP",
          "slug": "oonoshi",
          "canonical_path": "/cities/jp/oonoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:271004",
          "name": "大阪市",
          "country_code": "JP",
          "slug": "oosakashi",
          "canonical_path": "/cities/jp/oosakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272311",
          "name": "大阪狭山市",
          "country_code": "JP",
          "slug": "oosakasayamashi",
          "canonical_path": "/cities/jp/oosakasayamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:184837",
          "name": "大飯郡おおい町",
          "country_code": "JP",
          "slug": "ooigunooimachi",
          "canonical_path": "/cities/jp/ooigunooimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:184811",
          "name": "大飯郡高浜町",
          "country_code": "JP",
          "slug": "ooiguntakahamamachi",
          "canonical_path": "/cities/jp/ooiguntakahamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052043",
          "name": "大館市",
          "country_code": "JP",
          "slug": "oodateshi",
          "canonical_path": "/cities/jp/oodateshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292044",
          "name": "天理市",
          "country_code": "JP",
          "slug": "tenrishi",
          "canonical_path": "/cities/jp/tenrishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062103",
          "name": "天童市",
          "country_code": "JP",
          "slug": "tendoushi",
          "canonical_path": "/cities/jp/tendoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432156",
          "name": "天草市",
          "country_code": "JP",
          "slug": "amakusashi",
          "canonical_path": "/cities/jp/amakusashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402214",
          "name": "太宰府市",
          "country_code": "JP",
          "slug": "dazaifushi",
          "canonical_path": "/cities/jp/dazaifushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124419",
          "name": "夷隅郡大多喜町",
          "country_code": "JP",
          "slug": "isumigunootakimachi",
          "canonical_path": "/cities/jp/isumigunootakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124435",
          "name": "夷隅郡御宿町",
          "country_code": "JP",
          "slug": "isumigunonjukumachi",
          "canonical_path": "/cities/jp/isumigunonjukumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462225",
          "name": "奄美市",
          "country_code": "JP",
          "slug": "amamishi",
          "canonical_path": "/cities/jp/amamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292010",
          "name": "奈良市",
          "country_code": "JP",
          "slug": "narashi",
          "canonical_path": "/cities/jp/narashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032158",
          "name": "奥州市",
          "country_code": "JP",
          "slug": "oushuushi",
          "canonical_path": "/cities/jp/oushuushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152170",
          "name": "妙高市",
          "country_code": "JP",
          "slug": "myoukoushi",
          "canonical_path": "/cities/jp/myoukoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282014",
          "name": "姫路市",
          "country_code": "JP",
          "slug": "himejishi",
          "canonical_path": "/cities/jp/himejishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462250",
          "name": "姶良市",
          "country_code": "JP",
          "slug": "airashi",
          "canonical_path": "/cities/jp/airashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412091",
          "name": "嬉野市",
          "country_code": "JP",
          "slug": "ureshinoshi",
          "canonical_path": "/cities/jp/ureshinoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442119",
          "name": "宇佐市",
          "country_code": "JP",
          "slug": "usashi",
          "canonical_path": "/cities/jp/usashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382035",
          "name": "宇和島市",
          "country_code": "JP",
          "slug": "uwashimashi",
          "canonical_path": "/cities/jp/uwashimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432113",
          "name": "宇土市",
          "country_code": "JP",
          "slug": "utoshi",
          "canonical_path": "/cities/jp/utoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432130",
          "name": "宇城市",
          "country_code": "JP",
          "slug": "ukishi",
          "canonical_path": "/cities/jp/ukishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262048",
          "name": "宇治市",
          "country_code": "JP",
          "slug": "ujishi",
          "canonical_path": "/cities/jp/ujishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352021",
          "name": "宇部市",
          "country_code": "JP",
          "slug": "ubeshi",
          "canonical_path": "/cities/jp/ubeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092011",
          "name": "宇都宮市",
          "country_code": "JP",
          "slug": "utsunomiyashi",
          "canonical_path": "/cities/jp/utsunomiyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292125",
          "name": "宇陀市",
          "country_code": "JP",
          "slug": "udashi",
          "canonical_path": "/cities/jp/udashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272094",
          "name": "守口市",
          "country_code": "JP",
          "slug": "moriguchishi",
          "canonical_path": "/cities/jp/moriguchishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252077",
          "name": "守山市",
          "country_code": "JP",
          "slug": "moriyamashi",
          "canonical_path": "/cities/jp/moriyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082244",
          "name": "守谷市",
          "country_code": "JP",
          "slug": "moriyashi",
          "canonical_path": "/cities/jp/moriyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102113",
          "name": "安中市",
          "country_code": "JP",
          "slug": "annakashi",
          "canonical_path": "/cities/jp/annakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:213837",
          "name": "安八郡安八町",
          "country_code": "JP",
          "slug": "anpachigunanpachimachi",
          "canonical_path": "/cities/jp/anpachigunanpachimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:213811",
          "name": "安八郡神戸町",
          "country_code": "JP",
          "slug": "anpachigunkoubechou",
          "canonical_path": "/cities/jp/anpachigunkoubechou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:213829",
          "name": "安八郡輪之内町",
          "country_code": "JP",
          "slug": "anpachigunwanouchimachi",
          "canonical_path": "/cities/jp/anpachigunwanouchimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232122",
          "name": "安城市",
          "country_code": "JP",
          "slug": "anjoushi",
          "canonical_path": "/cities/jp/anjoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202207",
          "name": "安曇野市",
          "country_code": "JP",
          "slug": "azuminoshi",
          "canonical_path": "/cities/jp/azuminoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:322067",
          "name": "安来市",
          "country_code": "JP",
          "slug": "yasugishi",
          "canonical_path": "/cities/jp/yasugishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392031",
          "name": "安芸市",
          "country_code": "JP",
          "slug": "akishi",
          "canonical_path": "/cities/jp/akishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:343099",
          "name": "安芸郡坂町",
          "country_code": "JP",
          "slug": "akigunsakamachi",
          "canonical_path": "/cities/jp/akigunsakamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:343021",
          "name": "安芸郡府中町",
          "country_code": "JP",
          "slug": "akigunfuchuumachi",
          "canonical_path": "/cities/jp/akigunfuchuumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:343048",
          "name": "安芸郡海田町",
          "country_code": "JP",
          "slug": "akigunkaitamachi",
          "canonical_path": "/cities/jp/akigunkaitamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:343072",
          "name": "安芸郡熊野町",
          "country_code": "JP",
          "slug": "akigunkumanomachi",
          "canonical_path": "/cities/jp/akigunkumanomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342149",
          "name": "安芸高田市",
          "country_code": "JP",
          "slug": "akitakatashi",
          "canonical_path": "/cities/jp/akitakatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282278",
          "name": "宍粟市",
          "country_code": "JP",
          "slug": "shisoushi",
          "canonical_path": "/cities/jp/shisoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402206",
          "name": "宗像市",
          "country_code": "JP",
          "slug": "munakatashi",
          "canonical_path": "/cities/jp/munakatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472051",
          "name": "宜野湾市",
          "country_code": "JP",
          "slug": "ginowanshi",
          "canonical_path": "/cities/jp/ginowanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282146",
          "name": "宝塚市",
          "country_code": "JP",
          "slug": "takarazukashi",
          "canonical_path": "/cities/jp/takarazukashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392022",
          "name": "室戸市",
          "country_code": "JP",
          "slug": "murotoshi",
          "canonical_path": "/cities/jp/murotoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012050",
          "name": "室蘭市",
          "country_code": "JP",
          "slug": "muroranshi",
          "canonical_path": "/cities/jp/muroranshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472140",
          "name": "宮古島市",
          "country_code": "JP",
          "slug": "miyakoshimashi",
          "canonical_path": "/cities/jp/miyakoshimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032026",
          "name": "宮古市",
          "country_code": "JP",
          "slug": "miyakoshi",
          "canonical_path": "/cities/jp/miyakoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:044041",
          "name": "宮城郡七ヶ浜町",
          "country_code": "JP",
          "slug": "miyagigunshichigahamamachi",
          "canonical_path": "/cities/jp/miyagigunshichigahamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:044067",
          "name": "宮城郡利府町",
          "country_code": "JP",
          "slug": "miyagigunrifumachi",
          "canonical_path": "/cities/jp/miyagigunrifumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:044016",
          "name": "宮城郡松島町",
          "country_code": "JP",
          "slug": "miyagigunmatsushimamachi",
          "canonical_path": "/cities/jp/miyagigunmatsushimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:452017",
          "name": "宮崎市",
          "country_code": "JP",
          "slug": "miyazakishi",
          "canonical_path": "/cities/jp/miyazakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262056",
          "name": "宮津市",
          "country_code": "JP",
          "slug": "miyazushi",
          "canonical_path": "/cities/jp/miyazushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402265",
          "name": "宮若市",
          "country_code": "JP",
          "slug": "miyawakashi",
          "canonical_path": "/cities/jp/miyawakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392081",
          "name": "宿毛市",
          "country_code": "JP",
          "slug": "sukumoshi",
          "canonical_path": "/cities/jp/sukumoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192023",
          "name": "富士吉田市",
          "country_code": "JP",
          "slug": "fujiyoshidashi",
          "canonical_path": "/cities/jp/fujiyoshidashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222071",
          "name": "富士宮市",
          "country_code": "JP",
          "slug": "fujinomiyashi",
          "canonical_path": "/cities/jp/fujinomiyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222101",
          "name": "富士市",
          "country_code": "JP",
          "slug": "fujishi",
          "canonical_path": "/cities/jp/fujishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112356",
          "name": "富士見市",
          "country_code": "JP",
          "slug": "fujimishi",
          "canonical_path": "/cities/jp/fujimishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162019",
          "name": "富山市",
          "country_code": "JP",
          "slug": "toyamashi",
          "canonical_path": "/cities/jp/toyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102105",
          "name": "富岡市",
          "country_code": "JP",
          "slug": "tomiokashi",
          "canonical_path": "/cities/jp/tomiokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122262",
          "name": "富津市",
          "country_code": "JP",
          "slug": "futtsushi",
          "canonical_path": "/cities/jp/futtsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272141",
          "name": "富田林市",
          "country_code": "JP",
          "slug": "tondabayashishi",
          "canonical_path": "/cities/jp/tondabayashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012297",
          "name": "富良野市",
          "country_code": "JP",
          "slug": "furanoshi",
          "canonical_path": "/cities/jp/furanoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042161",
          "name": "富谷市",
          "country_code": "JP",
          "slug": "tomiyashi",
          "canonical_path": "/cities/jp/tomiyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122335",
          "name": "富里市",
          "country_code": "JP",
          "slug": "tomisatoshi",
          "canonical_path": "/cities/jp/tomisatoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062065",
          "name": "寒河江市",
          "country_code": "JP",
          "slug": "sagaeshi",
          "canonical_path": "/cities/jp/sagaeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272159",
          "name": "寝屋川市",
          "country_code": "JP",
          "slug": "neyagawashi",
          "canonical_path": "/cities/jp/neyagawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162116",
          "name": "射水市",
          "country_code": "JP",
          "slug": "imizushi",
          "canonical_path": "/cities/jp/imizushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152081",
          "name": "小千谷市",
          "country_code": "JP",
          "slug": "ojiyashi",
          "canonical_path": "/cities/jp/ojiyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412082",
          "name": "小城市",
          "country_code": "JP",
          "slug": "ogishi",
          "canonical_path": "/cities/jp/ogishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092088",
          "name": "小山市",
          "country_code": "JP",
          "slug": "oyamashi",
          "canonical_path": "/cities/jp/oyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132110",
          "name": "小平市",
          "country_code": "JP",
          "slug": "kodairashi",
          "canonical_path": "/cities/jp/kodairashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:362034",
          "name": "小松島市",
          "country_code": "JP",
          "slug": "komatsushimashi",
          "canonical_path": "/cities/jp/komatsushimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172031",
          "name": "小松市",
          "country_code": "JP",
          "slug": "komatsushi",
          "canonical_path": "/cities/jp/komatsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:452050",
          "name": "小林市",
          "country_code": "JP",
          "slug": "kobayashishi",
          "canonical_path": "/cities/jp/kobayashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012033",
          "name": "小樽市",
          "country_code": "JP",
          "slug": "otarushi",
          "canonical_path": "/cities/jp/otarushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:182044",
          "name": "小浜市",
          "country_code": "JP",
          "slug": "obamashi",
          "canonical_path": "/cities/jp/obamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232190",
          "name": "小牧市",
          "country_code": "JP",
          "slug": "komakishi",
          "canonical_path": "/cities/jp/komakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142069",
          "name": "小田原市",
          "country_code": "JP",
          "slug": "odawarashi",
          "canonical_path": "/cities/jp/odawarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203505",
          "name": "小県郡長和町",
          "country_code": "JP",
          "slug": "chiisagatagunchouwamachi",
          "canonical_path": "/cities/jp/chiisagatagunchouwamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162094",
          "name": "小矢部市",
          "country_code": "JP",
          "slug": "oyabeshi",
          "canonical_path": "/cities/jp/oyabeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082368",
          "name": "小美玉市",
          "country_code": "JP",
          "slug": "omitamashi",
          "canonical_path": "/cities/jp/omitamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202088",
          "name": "小諸市",
          "country_code": "JP",
          "slug": "komoroshi",
          "canonical_path": "/cities/jp/komoroshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:373222",
          "name": "小豆郡土庄町",
          "country_code": "JP",
          "slug": "azukiguntonoshoumachi",
          "canonical_path": "/cities/jp/azukiguntonoshoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:373249",
          "name": "小豆郡小豆島町",
          "country_code": "JP",
          "slug": "azukigunshouzushimamachi",
          "canonical_path": "/cities/jp/azukigunshouzushimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402168",
          "name": "小郡市",
          "country_code": "JP",
          "slug": "ogoorishi",
          "canonical_path": "/cities/jp/ogoorishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282189",
          "name": "小野市",
          "country_code": "JP",
          "slug": "onoshi",
          "canonical_path": "/cities/jp/onoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132101",
          "name": "小金井市",
          "country_code": "JP",
          "slug": "koganeishi",
          "canonical_path": "/cities/jp/koganeishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282022",
          "name": "尼崎市",
          "country_code": "JP",
          "slug": "amagasakishi",
          "canonical_path": "/cities/jp/amagasakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232262",
          "name": "尾張旭市",
          "country_code": "JP",
          "slug": "owariasahishi",
          "canonical_path": "/cities/jp/owariasahishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062120",
          "name": "尾花沢市",
          "country_code": "JP",
          "slug": "obanazawashi",
          "canonical_path": "/cities/jp/obanazawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342050",
          "name": "尾道市",
          "country_code": "JP",
          "slug": "onomichishi",
          "canonical_path": "/cities/jp/onomichishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242098",
          "name": "尾鷲市",
          "country_code": "JP",
          "slug": "owaseshi",
          "canonical_path": "/cities/jp/owaseshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352039",
          "name": "山口市",
          "country_code": "JP",
          "slug": "yamaguchishi",
          "canonical_path": "/cities/jp/yamaguchishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:053481",
          "name": "山本郡三種町",
          "country_code": "JP",
          "slug": "yamamotogunsanshumachi",
          "canonical_path": "/cities/jp/yamamotogunsanshumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:053490",
          "name": "山本郡八峰町",
          "country_code": "JP",
          "slug": "yamamotogunhappoumachi",
          "canonical_path": "/cities/jp/yamamotogunhappoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192058",
          "name": "山梨市",
          "country_code": "JP",
          "slug": "yamanashishi",
          "canonical_path": "/cities/jp/yamanashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122378",
          "name": "山武市",
          "country_code": "JP",
          "slug": "sanbushi",
          "canonical_path": "/cities/jp/sanbushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124036",
          "name": "山武郡九十九里町",
          "country_code": "JP",
          "slug": "sanbugunkujuukurimachi",
          "canonical_path": "/cities/jp/sanbugunkujuukurimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124109",
          "name": "山武郡横芝光町",
          "country_code": "JP",
          "slug": "sanbugunyokoshibahikarimachi",
          "canonical_path": "/cities/jp/sanbugunyokoshibahikarimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124095",
          "name": "山武郡芝山町",
          "country_code": "JP",
          "slug": "sanbugunshibayamamachi",
          "canonical_path": "/cities/jp/sanbugunshibayamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:343692",
          "name": "山県郡北広島町",
          "country_code": "JP",
          "slug": "yamagatagunkitahiroshimamachi",
          "canonical_path": "/cities/jp/yamagatagunkitahiroshimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:343684",
          "name": "山県郡安芸太田町",
          "country_code": "JP",
          "slug": "yamagatagunakiootamachi",
          "canonical_path": "/cities/jp/yamagatagunakiootamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352161",
          "name": "山陽小野田市",
          "country_code": "JP",
          "slug": "sanyouonodashi",
          "canonical_path": "/cities/jp/sanyouonodashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432083",
          "name": "山鹿市",
          "country_code": "JP",
          "slug": "yamagashi",
          "canonical_path": "/cities/jp/yamagashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212016",
          "name": "岐阜市",
          "country_code": "JP",
          "slug": "gifushi",
          "canonical_path": "/cities/jp/gifushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:331007",
          "name": "岡山市",
          "country_code": "JP",
          "slug": "okayamashi",
          "canonical_path": "/cities/jp/okayamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232025",
          "name": "岡崎市",
          "country_code": "JP",
          "slug": "okazakishi",
          "canonical_path": "/cities/jp/okazakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202045",
          "name": "岡谷市",
          "country_code": "JP",
          "slug": "okayashi",
          "canonical_path": "/cities/jp/okayashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232289",
          "name": "岩倉市",
          "country_code": "JP",
          "slug": "iwakurashi",
          "canonical_path": "/cities/jp/iwakurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014010",
          "name": "岩内郡共和町",
          "country_code": "JP",
          "slug": "iwanaigunkyouwamachi",
          "canonical_path": "/cities/jp/iwanaigunkyouwamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014028",
          "name": "岩内郡岩内町",
          "country_code": "JP",
          "slug": "iwanaiguniwanaimachi",
          "canonical_path": "/cities/jp/iwanaiguniwanaimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:302091",
          "name": "岩出市",
          "country_code": "JP",
          "slug": "iwadeshi",
          "canonical_path": "/cities/jp/iwadeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352080",
          "name": "岩国市",
          "country_code": "JP",
          "slug": "iwakunishi",
          "canonical_path": "/cities/jp/iwakunishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:033031",
          "name": "岩手郡岩手町",
          "country_code": "JP",
          "slug": "iwateguniwatemachi",
          "canonical_path": "/cities/jp/iwateguniwatemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:033022",
          "name": "岩手郡葛巻町",
          "country_code": "JP",
          "slug": "iwategunkuzumakimachi",
          "canonical_path": "/cities/jp/iwategunkuzumakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:033014",
          "name": "岩手郡雫石町",
          "country_code": "JP",
          "slug": "iwategunshizukuishimachi",
          "canonical_path": "/cities/jp/iwategunshizukuishimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042111",
          "name": "岩沼市",
          "country_code": "JP",
          "slug": "iwanumashi",
          "canonical_path": "/cities/jp/iwanumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:073440",
          "name": "岩瀬郡天栄村",
          "country_code": "JP",
          "slug": "iwasegunten-eimura",
          "canonical_path": "/cities/jp/iwasegunten-eimura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:073423",
          "name": "岩瀬郡鏡石町",
          "country_code": "JP",
          "slug": "iwasegunkagamiishimachi",
          "canonical_path": "/cities/jp/iwasegunkagamiishimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012106",
          "name": "岩見沢市",
          "country_code": "JP",
          "slug": "iwamizawashi",
          "canonical_path": "/cities/jp/iwamizawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272027",
          "name": "岸和田市",
          "country_code": "JP",
          "slug": "kishiwadashi",
          "canonical_path": "/cities/jp/kishiwadashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422037",
          "name": "島原市",
          "country_code": "JP",
          "slug": "shimabarashi",
          "canonical_path": "/cities/jp/shimabarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473481",
          "name": "島尻郡与那原町",
          "country_code": "JP",
          "slug": "shimashirigunyonabarumachi",
          "canonical_path": "/cities/jp/shimashirigunyonabarumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473618",
          "name": "島尻郡久米島町",
          "country_code": "JP",
          "slug": "shimashirigunkumeshimamachi",
          "canonical_path": "/cities/jp/shimashirigunkumeshimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473626",
          "name": "島尻郡八重瀬町",
          "country_code": "JP",
          "slug": "shimashirigunyaesemachi",
          "canonical_path": "/cities/jp/shimashirigunyaesemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:473502",
          "name": "島尻郡南風原町",
          "country_code": "JP",
          "slug": "shimashirigunhaebaramachi",
          "canonical_path": "/cities/jp/shimashirigunhaebaramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222097",
          "name": "島田市",
          "country_code": "JP",
          "slug": "shimadashi",
          "canonical_path": "/cities/jp/shimadashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016659",
          "name": "川上郡弟子屈町",
          "country_code": "JP",
          "slug": "kawakamigunteshikutsuchou",
          "canonical_path": "/cities/jp/kawakamigunteshikutsuchou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016641",
          "name": "川上郡標茶町",
          "country_code": "JP",
          "slug": "kawakamigunshibechamachi",
          "canonical_path": "/cities/jp/kawakamigunshibechamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112038",
          "name": "川口市",
          "country_code": "JP",
          "slug": "kawaguchishi",
          "canonical_path": "/cities/jp/kawaguchishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:141305",
          "name": "川崎市",
          "country_code": "JP",
          "slug": "kawasakishi",
          "canonical_path": "/cities/jp/kawasakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282171",
          "name": "川西市",
          "country_code": "JP",
          "slug": "kawanishishi",
          "canonical_path": "/cities/jp/kawanishishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112011",
          "name": "川越市",
          "country_code": "JP",
          "slug": "kawagoeshi",
          "canonical_path": "/cities/jp/kawagoeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122190",
          "name": "市原市",
          "country_code": "JP",
          "slug": "ichiharashi",
          "canonical_path": "/cities/jp/ichiharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122033",
          "name": "市川市",
          "country_code": "JP",
          "slug": "ichikawashi",
          "canonical_path": "/cities/jp/ichikawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012076",
          "name": "帯広市",
          "country_code": "JP",
          "slug": "obihiroshi",
          "canonical_path": "/cities/jp/obihiroshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232165",
          "name": "常滑市",
          "country_code": "JP",
          "slug": "tokonameshi",
          "canonical_path": "/cities/jp/tokonameshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082112",
          "name": "常総市",
          "country_code": "JP",
          "slug": "jousoushi",
          "canonical_path": "/cities/jp/jousoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082252",
          "name": "常陸大宮市",
          "country_code": "JP",
          "slug": "hitachioomiyashi",
          "canonical_path": "/cities/jp/hitachioomiyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082121",
          "name": "常陸太田市",
          "country_code": "JP",
          "slug": "hitachiootashi",
          "canonical_path": "/cities/jp/hitachiootashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:394289",
          "name": "幡多郡黒潮町",
          "country_code": "JP",
          "slug": "hatagunkuroshiomachi",
          "canonical_path": "/cities/jp/hatagunkuroshiomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142034",
          "name": "平塚市",
          "country_code": "JP",
          "slug": "hiratsukashi",
          "canonical_path": "/cities/jp/hiratsukashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022101",
          "name": "平川市",
          "country_code": "JP",
          "slug": "hirakawashi",
          "canonical_path": "/cities/jp/hirakawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422070",
          "name": "平戸市",
          "country_code": "JP",
          "slug": "hiradoshi",
          "canonical_path": "/cities/jp/hiradoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112402",
          "name": "幸手市",
          "country_code": "JP",
          "slug": "satteshi",
          "canonical_path": "/cities/jp/satteshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016411",
          "name": "広尾郡大樹町",
          "country_code": "JP",
          "slug": "hirooguntaijumachi",
          "canonical_path": "/cities/jp/hirooguntaijumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016420",
          "name": "広尾郡広尾町",
          "country_code": "JP",
          "slug": "hiroogunhiroomachi",
          "canonical_path": "/cities/jp/hiroogunhiroomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:341002",
          "name": "広島市",
          "country_code": "JP",
          "slug": "hiroshimashi",
          "canonical_path": "/cities/jp/hiroshimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342106",
          "name": "庄原市",
          "country_code": "JP",
          "slug": "shoubarashi",
          "canonical_path": "/cities/jp/shoubarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:244724",
          "name": "度会郡南伊勢町",
          "country_code": "JP",
          "slug": "wataraigunminamiisemachi",
          "canonical_path": "/cities/jp/wataraigunminamiisemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:244716",
          "name": "度会郡大紀町",
          "country_code": "JP",
          "slug": "wataraiguntaikimachi",
          "canonical_path": "/cities/jp/wataraiguntaikimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:244708",
          "name": "度会郡度会町",
          "country_code": "JP",
          "slug": "wataraigunwataraimachi",
          "canonical_path": "/cities/jp/wataraigunwataraimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:244619",
          "name": "度会郡玉城町",
          "country_code": "JP",
          "slug": "wataraiguntamakimachi",
          "canonical_path": "/cities/jp/wataraiguntamakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142166",
          "name": "座間市",
          "country_code": "JP",
          "slug": "zamashi",
          "canonical_path": "/cities/jp/zamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:452033",
          "name": "延岡市",
          "country_code": "JP",
          "slug": "nobeokashi",
          "canonical_path": "/cities/jp/nobeokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342131",
          "name": "廿日市市",
          "country_code": "JP",
          "slug": "hatsukaichishi",
          "canonical_path": "/cities/jp/hatsukaichishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022021",
          "name": "弘前市",
          "country_code": "JP",
          "slug": "hirosakishi",
          "canonical_path": "/cities/jp/hirosakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232351",
          "name": "弥富市",
          "country_code": "JP",
          "slug": "yatomishi",
          "canonical_path": "/cities/jp/yatomishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252026",
          "name": "彦根市",
          "country_code": "JP",
          "slug": "hikoneshi",
          "canonical_path": "/cities/jp/hikoneshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222232",
          "name": "御前崎市",
          "country_code": "JP",
          "slug": "omaezakishi",
          "canonical_path": "/cities/jp/omaezakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:302058",
          "name": "御坊市",
          "country_code": "JP",
          "slug": "goboushi",
          "canonical_path": "/cities/jp/goboushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292087",
          "name": "御所市",
          "country_code": "JP",
          "slug": "goshoshi",
          "canonical_path": "/cities/jp/goshoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222151",
          "name": "御殿場市",
          "country_code": "JP",
          "slug": "gotenbashi",
          "canonical_path": "/cities/jp/gotenbashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:362018",
          "name": "徳島市",
          "country_code": "JP",
          "slug": "tokushimashi",
          "canonical_path": "/cities/jp/tokushimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462217",
          "name": "志布志市",
          "country_code": "JP",
          "slug": "shibushishi",
          "canonical_path": "/cities/jp/shibushishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242152",
          "name": "志摩市",
          "country_code": "JP",
          "slug": "shimashi",
          "canonical_path": "/cities/jp/shimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112283",
          "name": "志木市",
          "country_code": "JP",
          "slug": "shikishi",
          "canonical_path": "/cities/jp/shikishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012319",
          "name": "恵庭市",
          "country_code": "JP",
          "slug": "eniwashi",
          "canonical_path": "/cities/jp/eniwashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212105",
          "name": "恵那市",
          "country_code": "JP",
          "slug": "enashi",
          "canonical_path": "/cities/jp/enashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:144011",
          "name": "愛甲郡愛川町",
          "country_code": "JP",
          "slug": "aikougunaikawamachi",
          "canonical_path": "/cities/jp/aikougunaikawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:254258",
          "name": "愛知郡愛荘町",
          "country_code": "JP",
          "slug": "aichigunaishoumachi",
          "canonical_path": "/cities/jp/aichigunaishoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:233021",
          "name": "愛知郡東郷町",
          "country_code": "JP",
          "slug": "aichiguntougoumachi",
          "canonical_path": "/cities/jp/aichiguntougoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232327",
          "name": "愛西市",
          "country_code": "JP",
          "slug": "aisaishi",
          "canonical_path": "/cities/jp/aisaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122114",
          "name": "成田市",
          "country_code": "JP",
          "slug": "naritashi",
          "canonical_path": "/cities/jp/naritashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122220",
          "name": "我孫子市",
          "country_code": "JP",
          "slug": "abikoshi",
          "canonical_path": "/cities/jp/abikoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112241",
          "name": "戸田市",
          "country_code": "JP",
          "slug": "todashi",
          "canonical_path": "/cities/jp/todashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112089",
          "name": "所沢市",
          "country_code": "JP",
          "slug": "tokorozawashi",
          "canonical_path": "/cities/jp/tokorozawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462101",
          "name": "指宿市",
          "country_code": "JP",
          "slug": "ibusukishi",
          "canonical_path": "/cities/jp/ibusukishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222135",
          "name": "掛川市",
          "country_code": "JP",
          "slug": "kakegawashi",
          "canonical_path": "/cities/jp/kakegawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:214035",
          "name": "揖斐郡大野町",
          "country_code": "JP",
          "slug": "ibigunoonomachi",
          "canonical_path": "/cities/jp/ibigunoonomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:214019",
          "name": "揖斐郡揖斐川町",
          "country_code": "JP",
          "slug": "ibigunibigawamachi",
          "canonical_path": "/cities/jp/ibigunibigawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:214043",
          "name": "揖斐郡池田町",
          "country_code": "JP",
          "slug": "ibikooriiketamachi",
          "canonical_path": "/cities/jp/ibikooriiketamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272248",
          "name": "摂津市",
          "country_code": "JP",
          "slug": "settsushi",
          "canonical_path": "/cities/jp/settsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:182028",
          "name": "敦賀市",
          "country_code": "JP",
          "slug": "tsurugashi",
          "canonical_path": "/cities/jp/tsurugashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015458",
          "name": "斜里郡斜里町",
          "country_code": "JP",
          "slug": "sharigunsharimachi",
          "canonical_path": "/cities/jp/sharigunsharimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016047",
          "name": "新冠郡新冠町",
          "country_code": "JP",
          "slug": "niikappugunniikappuchou",
          "canonical_path": "/cities/jp/niikappugunniikappuchou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:302074",
          "name": "新宮市",
          "country_code": "JP",
          "slug": "shinguushi",
          "canonical_path": "/cities/jp/shinguushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382051",
          "name": "新居浜市",
          "country_code": "JP",
          "slug": "niihamashi",
          "canonical_path": "/cities/jp/niihamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112305",
          "name": "新座市",
          "country_code": "JP",
          "slug": "niizashi",
          "canonical_path": "/cities/jp/niizashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:151009",
          "name": "新潟市",
          "country_code": "JP",
          "slug": "niigatashi",
          "canonical_path": "/cities/jp/niigatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152064",
          "name": "新発田市",
          "country_code": "JP",
          "slug": "shibatashi",
          "canonical_path": "/cities/jp/shibatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332101",
          "name": "新見市",
          "country_code": "JP",
          "slug": "niimishi",
          "canonical_path": "/cities/jp/niimishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092061",
          "name": "日光市",
          "country_code": "JP",
          "slug": "nikkoushi",
          "canonical_path": "/cities/jp/nikkoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:452041",
          "name": "日南市",
          "country_code": "JP",
          "slug": "nichinanshi",
          "canonical_path": "/cities/jp/nichinanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:452068",
          "name": "日向市",
          "country_code": "JP",
          "slug": "hyuugashi",
          "canonical_path": "/cities/jp/hyuugashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442046",
          "name": "日田市",
          "country_code": "JP",
          "slug": "hitashi",
          "canonical_path": "/cities/jp/hitashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082023",
          "name": "日立市",
          "country_code": "JP",
          "slug": "hitachishi",
          "canonical_path": "/cities/jp/hitachishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462161",
          "name": "日置市",
          "country_code": "JP",
          "slug": "hiokishi",
          "canonical_path": "/cities/jp/hiokishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232301",
          "name": "日進市",
          "country_code": "JP",
          "slug": "nisshinshi",
          "canonical_path": "/cities/jp/nisshinshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132128",
          "name": "日野市",
          "country_code": "JP",
          "slug": "hinoshi",
          "canonical_path": "/cities/jp/hinoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112429",
          "name": "日高市",
          "country_code": "JP",
          "slug": "hidakashi",
          "canonical_path": "/cities/jp/hidakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303917",
          "name": "日高郡みなべ町",
          "country_code": "JP",
          "slug": "hidakagunminabemachi",
          "canonical_path": "/cities/jp/hidakagunminabemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303909",
          "name": "日高郡印南町",
          "country_code": "JP",
          "slug": "hidakaguninnamimachi",
          "canonical_path": "/cities/jp/hidakaguninnamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016101",
          "name": "日高郡新ひだか町",
          "country_code": "JP",
          "slug": "hidakagunshinhidakamachi",
          "canonical_path": "/cities/jp/hidakagunshinhidakamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303925",
          "name": "日高郡日高川町",
          "country_code": "JP",
          "slug": "hidakagunhidakagawamachi",
          "canonical_path": "/cities/jp/hidakagunhidakagawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303828",
          "name": "日高郡日高町",
          "country_code": "JP",
          "slug": "hidakagunhidakamachi",
          "canonical_path": "/cities/jp/hidakagunhidakamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303836",
          "name": "日高郡由良町",
          "country_code": "JP",
          "slug": "hidakagunyuramachi",
          "canonical_path": "/cities/jp/hidakagunyuramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303810",
          "name": "日高郡美浜町",
          "country_code": "JP",
          "slug": "hidakagunmihamamachi",
          "canonical_path": "/cities/jp/hidakagunmihamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012041",
          "name": "旭川市",
          "country_code": "JP",
          "slug": "asahikawashi",
          "canonical_path": "/cities/jp/asahikawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122157",
          "name": "旭市",
          "country_code": "JP",
          "slug": "asahishi",
          "canonical_path": "/cities/jp/asahishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282031",
          "name": "明石市",
          "country_code": "JP",
          "slug": "akashishi",
          "canonical_path": "/cities/jp/akashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232068",
          "name": "春日井市",
          "country_code": "JP",
          "slug": "kasugaishi",
          "canonical_path": "/cities/jp/kasugaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402184",
          "name": "春日市",
          "country_code": "JP",
          "slug": "kasugashi",
          "canonical_path": "/cities/jp/kasugashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112143",
          "name": "春日部市",
          "country_code": "JP",
          "slug": "kasukabeshi",
          "canonical_path": "/cities/jp/kasukabeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132071",
          "name": "昭島市",
          "country_code": "JP",
          "slug": "akirashimashi",
          "canonical_path": "/cities/jp/akirashimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462179",
          "name": "曽於市",
          "country_code": "JP",
          "slug": "sooichi",
          "canonical_path": "/cities/jp/sooichi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:302040",
          "name": "有田市",
          "country_code": "JP",
          "slug": "aridashi",
          "canonical_path": "/cities/jp/aridashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303623",
          "name": "有田郡広川町",
          "country_code": "JP",
          "slug": "aridagunhirokawachou",
          "canonical_path": "/cities/jp/aridagunhirokawachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303666",
          "name": "有田郡有田川町",
          "country_code": "JP",
          "slug": "aridagunaridagawamachi",
          "canonical_path": "/cities/jp/aridagunaridagawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:303615",
          "name": "有田郡湯浅町",
          "country_code": "JP",
          "slug": "aridagunyuasamachi",
          "canonical_path": "/cities/jp/aridagunyuasamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402281",
          "name": "朝倉市",
          "country_code": "JP",
          "slug": "asakurashi",
          "canonical_path": "/cities/jp/asakurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:404471",
          "name": "朝倉郡筑前町",
          "country_code": "JP",
          "slug": "asakuragunchikuzenmachi",
          "canonical_path": "/cities/jp/asakuragunchikuzenmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282251",
          "name": "朝来市",
          "country_code": "JP",
          "slug": "asagoshi",
          "canonical_path": "/cities/jp/asagoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112275",
          "name": "朝霞市",
          "country_code": "JP",
          "slug": "asakashi",
          "canonical_path": "/cities/jp/asakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204323",
          "name": "木曽郡木曽町",
          "country_code": "JP",
          "slug": "kisogunkisomachi",
          "canonical_path": "/cities/jp/kisogunkisomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122068",
          "name": "木更津市",
          "country_code": "JP",
          "slug": "kisarazushi",
          "canonical_path": "/cities/jp/kisarazushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262145",
          "name": "木津川市",
          "country_code": "JP",
          "slug": "kizugawashi",
          "canonical_path": "/cities/jp/kizugawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072141",
          "name": "本宮市",
          "country_code": "JP",
          "slug": "motomiyashi",
          "canonical_path": "/cities/jp/motomiyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212181",
          "name": "本巣市",
          "country_code": "JP",
          "slug": "motosushi",
          "canonical_path": "/cities/jp/motosushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112119",
          "name": "本庄市",
          "country_code": "JP",
          "slug": "honjoushi",
          "canonical_path": "/cities/jp/honjoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:011002",
          "name": "札幌市",
          "country_code": "JP",
          "slug": "sapporoshi",
          "canonical_path": "/cities/jp/sapporoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152129",
          "name": "村上市",
          "country_code": "JP",
          "slug": "murakamishi",
          "canonical_path": "/cities/jp/murakamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062081",
          "name": "村山市",
          "country_code": "JP",
          "slug": "murayamashi",
          "canonical_path": "/cities/jp/murayamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:372072",
          "name": "東かがわ市",
          "country_code": "JP",
          "slug": "higashikagawashi",
          "canonical_path": "/cities/jp/higashikagawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132225",
          "name": "東久留米市",
          "country_code": "JP",
          "slug": "higashikurumeshi",
          "canonical_path": "/cities/jp/higashikurumeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:313645",
          "name": "東伯郡三朝町",
          "country_code": "JP",
          "slug": "touhakugunmisasamachi",
          "canonical_path": "/cities/jp/touhakugunmisasamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:313726",
          "name": "東伯郡北栄町",
          "country_code": "JP",
          "slug": "touhakugunhokueimachi",
          "canonical_path": "/cities/jp/touhakugunhokueimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:313700",
          "name": "東伯郡湯梨浜町",
          "country_code": "JP",
          "slug": "touhakugunyurihamamachi",
          "canonical_path": "/cities/jp/touhakugunyurihamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:313718",
          "name": "東伯郡琴浦町",
          "country_code": "JP",
          "slug": "touhakugunkotouramachi",
          "canonical_path": "/cities/jp/touhakugunkotouramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132209",
          "name": "東大和市",
          "country_code": "JP",
          "slug": "higashiyamatoshi",
          "canonical_path": "/cities/jp/higashiyamatoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272272",
          "name": "東大阪市",
          "country_code": "JP",
          "slug": "higashioosakashi",
          "canonical_path": "/cities/jp/higashioosakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342122",
          "name": "東広島市",
          "country_code": "JP",
          "slug": "higashihiroshimashi",
          "canonical_path": "/cities/jp/higashihiroshimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:423220",
          "name": "東彼杵郡川棚町",
          "country_code": "JP",
          "slug": "higashisonogigunkawatanamachi",
          "canonical_path": "/cities/jp/higashisonogigunkawatanamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:423211",
          "name": "東彼杵郡東彼杵町",
          "country_code": "JP",
          "slug": "higashisonogigunhigashisonogimachi",
          "canonical_path": "/cities/jp/higashisonogigunhigashisonogimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:423238",
          "name": "東彼杵郡波佐見町",
          "country_code": "JP",
          "slug": "higashisonogigunhasamimachi",
          "canonical_path": "/cities/jp/higashisonogigunhasamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202193",
          "name": "東御市",
          "country_code": "JP",
          "slug": "toumishi",
          "canonical_path": "/cities/jp/toumishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132136",
          "name": "東村山市",
          "country_code": "JP",
          "slug": "higashimurayamashi",
          "canonical_path": "/cities/jp/higashimurayamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:063029",
          "name": "東村山郡中山町",
          "country_code": "JP",
          "slug": "higashimurayamagunchuuyamachou",
          "canonical_path": "/cities/jp/higashimurayamagunchuuyamachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:063011",
          "name": "東村山郡山辺町",
          "country_code": "JP",
          "slug": "higashimurayamakouriyamahenmachi",
          "canonical_path": "/cities/jp/higashimurayamakouriyamahenmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112127",
          "name": "東松山市",
          "country_code": "JP",
          "slug": "higashimatsuyamashi",
          "canonical_path": "/cities/jp/higashimatsuyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042145",
          "name": "東松島市",
          "country_code": "JP",
          "slug": "higashimatsushimashi",
          "canonical_path": "/cities/jp/higashimatsushimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062111",
          "name": "東根市",
          "country_code": "JP",
          "slug": "higashineshi",
          "canonical_path": "/cities/jp/higashineshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023078",
          "name": "東津軽郡外ヶ浜町",
          "country_code": "JP",
          "slug": "higashitsugarugunsotokehamachou",
          "canonical_path": "/cities/jp/higashitsugarugunsotokehamachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023019",
          "name": "東津軽郡平内町",
          "country_code": "JP",
          "slug": "higashitsugarugunhiranaimachi",
          "canonical_path": "/cities/jp/higashitsugarugunhiranaimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232220",
          "name": "東海市",
          "country_code": "JP",
          "slug": "toukaishi",
          "canonical_path": "/cities/jp/toukaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382159",
          "name": "東温市",
          "country_code": "JP",
          "slug": "touonshi",
          "canonical_path": "/cities/jp/touonshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:304280",
          "name": "東牟婁郡串本町",
          "country_code": "JP",
          "slug": "higashimurogunkushimotomachi",
          "canonical_path": "/cities/jp/higashimurogunkushimotomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:304212",
          "name": "東牟婁郡那智勝浦町",
          "country_code": "JP",
          "slug": "higashimurogunnachikatsuuramachi",
          "canonical_path": "/cities/jp/higashimurogunnachikatsuuramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:064262",
          "name": "東田川郡三川町",
          "country_code": "JP",
          "slug": "higashitagawagunmikawamachi",
          "canonical_path": "/cities/jp/higashitagawagunmikawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:064289",
          "name": "東田川郡庄内町",
          "country_code": "JP",
          "slug": "higashitagawagunshounaimachi",
          "canonical_path": "/cities/jp/higashitagawagunshounaimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074837",
          "name": "東白川郡塙町",
          "country_code": "JP",
          "slug": "higashishirakawagunhanawamachi",
          "canonical_path": "/cities/jp/higashishirakawagunhanawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074811",
          "name": "東白川郡棚倉町",
          "country_code": "JP",
          "slug": "higashishirakawaguntanakuramachi",
          "canonical_path": "/cities/jp/higashishirakawaguntanakuramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074829",
          "name": "東白川郡矢祭町",
          "country_code": "JP",
          "slug": "higashishirakawagunyamatsurimachi",
          "canonical_path": "/cities/jp/higashishirakawagunyamatsurimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:204501",
          "name": "東筑摩郡山形村",
          "country_code": "JP",
          "slug": "higashichikumakouriyamakatachimura",
          "canonical_path": "/cities/jp/higashichikumakouriyamakatachimura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:063827",
          "name": "東置賜郡川西町",
          "country_code": "JP",
          "slug": "higashiokitamagunkawanishimachi",
          "canonical_path": "/cities/jp/higashiokitamagunkawanishimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:063819",
          "name": "東置賜郡高畠町",
          "country_code": "JP",
          "slug": "higashiokitamaguntakahatamachi",
          "canonical_path": "/cities/jp/higashiokitamaguntakahatamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:454214",
          "name": "東臼杵郡門川町",
          "country_code": "JP",
          "slug": "higashiusukigunkadogawamachi",
          "canonical_path": "/cities/jp/higashiusukigunkadogawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:083101",
          "name": "東茨城郡城里町",
          "country_code": "JP",
          "slug": "higashiibarakigunshirosatomachi",
          "canonical_path": "/cities/jp/higashiibarakigunshirosatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:083097",
          "name": "東茨城郡大洗町",
          "country_code": "JP",
          "slug": "higashiibarakigunooaraimachi",
          "canonical_path": "/cities/jp/higashiibarakigunooaraimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:083020",
          "name": "東茨城郡茨城町",
          "country_code": "JP",
          "slug": "higashiibarakigunibarakimachi",
          "canonical_path": "/cities/jp/higashiibarakigunibarakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:453820",
          "name": "東諸県郡国富町",
          "country_code": "JP",
          "slug": "higashimorokatagunkunitomimachi",
          "canonical_path": "/cities/jp/higashimorokatagunkunitomimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:453838",
          "name": "東諸県郡綾町",
          "country_code": "JP",
          "slug": "higashimorokatagunayamachi",
          "canonical_path": "/cities/jp/higashimorokatagunayamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252131",
          "name": "東近江市",
          "country_code": "JP",
          "slug": "higashioumishi",
          "canonical_path": "/cities/jp/higashioumishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122131",
          "name": "東金市",
          "country_code": "JP",
          "slug": "touganeshi",
          "canonical_path": "/cities/jp/touganeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:414239",
          "name": "杵島郡大町町",
          "country_code": "JP",
          "slug": "kineshimagunoomachimachi",
          "canonical_path": "/cities/jp/kineshimagunoomachimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:414247",
          "name": "杵島郡江北町",
          "country_code": "JP",
          "slug": "kineshimagunkouhokumachi",
          "canonical_path": "/cities/jp/kineshimagunkouhokumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:414255",
          "name": "杵島郡白石町",
          "country_code": "JP",
          "slug": "kineshimagunshiroishimachi",
          "canonical_path": "/cities/jp/kineshimagunshiroishimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442101",
          "name": "杵築市",
          "country_code": "JP",
          "slug": "kitsukishi",
          "canonical_path": "/cities/jp/kitsukishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:013315",
          "name": "松前郡松前町",
          "country_code": "JP",
          "slug": "matsumaegunmatsumaemachi",
          "canonical_path": "/cities/jp/matsumaegunmatsumaemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272175",
          "name": "松原市",
          "country_code": "JP",
          "slug": "matsubarashi",
          "canonical_path": "/cities/jp/matsubarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382019",
          "name": "松山市",
          "country_code": "JP",
          "slug": "matsuyamashi",
          "canonical_path": "/cities/jp/matsuyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122076",
          "name": "松戸市",
          "country_code": "JP",
          "slug": "matsudoshi",
          "canonical_path": "/cities/jp/matsudoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202029",
          "name": "松本市",
          "country_code": "JP",
          "slug": "matsumotoshi",
          "canonical_path": "/cities/jp/matsumotoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:322016",
          "name": "松江市",
          "country_code": "JP",
          "slug": "matsueshi",
          "canonical_path": "/cities/jp/matsueshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422088",
          "name": "松浦市",
          "country_code": "JP",
          "slug": "matsuurashi",
          "canonical_path": "/cities/jp/matsuurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242047",
          "name": "松阪市",
          "country_code": "JP",
          "slug": "matsusakashi",
          "canonical_path": "/cities/jp/matsusakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:364053",
          "name": "板野郡上板町",
          "country_code": "JP",
          "slug": "itanogujouitamachi",
          "canonical_path": "/cities/jp/itanogujouitamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:364029",
          "name": "板野郡北島町",
          "country_code": "JP",
          "slug": "itanogunkitajimamachi",
          "canonical_path": "/cities/jp/itanogunkitajimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:364011",
          "name": "板野郡松茂町",
          "country_code": "JP",
          "slug": "itanogunmatsushigemachi",
          "canonical_path": "/cities/jp/itanogunmatsushigemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:364045",
          "name": "板野郡板野町",
          "country_code": "JP",
          "slug": "itanogunitanomachi",
          "canonical_path": "/cities/jp/itanogunitanomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:364037",
          "name": "板野郡藍住町",
          "country_code": "JP",
          "slug": "itanogunaizumimachi",
          "canonical_path": "/cities/jp/itanogunaizumimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462047",
          "name": "枕崎市",
          "country_code": "JP",
          "slug": "makurazakishi",
          "canonical_path": "/cities/jp/makurazakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272108",
          "name": "枚方市",
          "country_code": "JP",
          "slug": "hirakatashi",
          "canonical_path": "/cities/jp/hirakatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015148",
          "name": "枝幸郡枝幸町",
          "country_code": "JP",
          "slug": "esashigunesashimachi",
          "canonical_path": "/cities/jp/esashigunesashimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272213",
          "name": "柏原市",
          "country_code": "JP",
          "slug": "kashiwabarashi",
          "canonical_path": "/cities/jp/kashiwabarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152056",
          "name": "柏崎市",
          "country_code": "JP",
          "slug": "kashiwazakishi",
          "canonical_path": "/cities/jp/kashiwazakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122173",
          "name": "柏市",
          "country_code": "JP",
          "slug": "kashiwashi",
          "canonical_path": "/cities/jp/kashiwashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352128",
          "name": "柳井市",
          "country_code": "JP",
          "slug": "yanaishi",
          "canonical_path": "/cities/jp/yanaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402079",
          "name": "柳川市",
          "country_code": "JP",
          "slug": "yanagawashi",
          "canonical_path": "/cities/jp/yanagawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:043214",
          "name": "柴田郡大河原町",
          "country_code": "JP",
          "slug": "shibatagunoogawaramachi",
          "canonical_path": "/cities/jp/shibatagunoogawaramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:043249",
          "name": "柴田郡川崎町",
          "country_code": "JP",
          "slug": "shibatagunkawasakichou",
          "canonical_path": "/cities/jp/shibatagunkawasakichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:043222",
          "name": "柴田郡村田町",
          "country_code": "JP",
          "slug": "shibatagunsontamachi",
          "canonical_path": "/cities/jp/shibatagunsontamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:043231",
          "name": "柴田郡柴田町",
          "country_code": "JP",
          "slug": "shibatagunshibatamachi",
          "canonical_path": "/cities/jp/shibatagunshibatamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092037",
          "name": "栃木市",
          "country_code": "JP",
          "slug": "tochigishi",
          "canonical_path": "/cities/jp/tochigishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042137",
          "name": "栗原市",
          "country_code": "JP",
          "slug": "kuriharashi",
          "canonical_path": "/cities/jp/kuriharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252085",
          "name": "栗東市",
          "country_code": "JP",
          "slug": "rittoushi",
          "canonical_path": "/cities/jp/rittoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012238",
          "name": "根室市",
          "country_code": "JP",
          "slug": "nemuroshi",
          "canonical_path": "/cities/jp/nemuroshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102032",
          "name": "桐生市",
          "country_code": "JP",
          "slug": "kiryuushi",
          "canonical_path": "/cities/jp/kiryuushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242055",
          "name": "桑名市",
          "country_code": "JP",
          "slug": "kuwanashi",
          "canonical_path": "/cities/jp/kuwanashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292061",
          "name": "桜井市",
          "country_code": "JP",
          "slug": "sakuraishi",
          "canonical_path": "/cities/jp/sakuraishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082317",
          "name": "桜川市",
          "country_code": "JP",
          "slug": "sakuragawashi",
          "canonical_path": "/cities/jp/sakuragawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112313",
          "name": "桶川市",
          "country_code": "JP",
          "slug": "okegawashi",
          "canonical_path": "/cities/jp/okegawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:224243",
          "name": "榛原郡吉田町",
          "country_code": "JP",
          "slug": "haibaragunyoshidachou",
          "canonical_path": "/cities/jp/haibaragunyoshidachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:224294",
          "name": "榛原郡川根本町",
          "country_code": "JP",
          "slug": "haibaragunkawanehonmachi",
          "canonical_path": "/cities/jp/haibaragunkawanehonmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016926",
          "name": "標津郡中標津町",
          "country_code": "JP",
          "slug": "shibetsugunchuushibetsumachi",
          "canonical_path": "/cities/jp/shibetsugunchuushibetsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052035",
          "name": "横手市",
          "country_code": "JP",
          "slug": "yokoteshi",
          "canonical_path": "/cities/jp/yokoteshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:141003",
          "name": "横浜市",
          "country_code": "JP",
          "slug": "yokohamashi",
          "canonical_path": "/cities/jp/yokohamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142018",
          "name": "横須賀市",
          "country_code": "JP",
          "slug": "yokosukashi",
          "canonical_path": "/cities/jp/yokosukashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014320",
          "name": "樺戸郡新十津川町",
          "country_code": "JP",
          "slug": "kabatogunshintotsukawamachi",
          "canonical_path": "/cities/jp/kabatogunshintotsukawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:302031",
          "name": "橋本市",
          "country_code": "JP",
          "slug": "hashimotoshi",
          "canonical_path": "/cities/jp/hashimotoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292052",
          "name": "橿原市",
          "country_code": "JP",
          "slug": "kashiharashi",
          "canonical_path": "/cities/jp/kashiharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:013617",
          "name": "檜山郡江差町",
          "country_code": "JP",
          "slug": "hiyamagunesashimachi",
          "canonical_path": "/cities/jp/hiyamagunesashimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132233",
          "name": "武蔵村山市",
          "country_code": "JP",
          "slug": "musashimurayamashi",
          "canonical_path": "/cities/jp/musashimurayamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132039",
          "name": "武蔵野市",
          "country_code": "JP",
          "slug": "musashinoshi",
          "canonical_path": "/cities/jp/musashinoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412066",
          "name": "武雄市",
          "country_code": "JP",
          "slug": "takeoshi",
          "canonical_path": "/cities/jp/takeoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113492",
          "name": "比企郡ときがわ町",
          "country_code": "JP",
          "slug": "hikiguntokigawamachi",
          "canonical_path": "/cities/jp/hikiguntokigawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113476",
          "name": "比企郡吉見町",
          "country_code": "JP",
          "slug": "hikigunyoshimimachi",
          "canonical_path": "/cities/jp/hikigunyoshimimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113433",
          "name": "比企郡小川町",
          "country_code": "JP",
          "slug": "hikigunogawachou",
          "canonical_path": "/cities/jp/hikigunogawachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113425",
          "name": "比企郡嵐山町",
          "country_code": "JP",
          "slug": "hikigunarashiyamamachi",
          "canonical_path": "/cities/jp/hikigunarashiyamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113468",
          "name": "比企郡川島町",
          "country_code": "JP",
          "slug": "hikigunkawashimamachi",
          "canonical_path": "/cities/jp/hikigunkawashimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113417",
          "name": "比企郡滑川町",
          "country_code": "JP",
          "slug": "hikigunnamerikawamachi",
          "canonical_path": "/cities/jp/hikigunnamerikawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113484",
          "name": "比企郡鳩山町",
          "country_code": "JP",
          "slug": "hikigunhatoyamachou",
          "canonical_path": "/cities/jp/hikigunhatoyamachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042056",
          "name": "気仙沼市",
          "country_code": "JP",
          "slug": "kesennumashi",
          "canonical_path": "/cities/jp/kesennumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432059",
          "name": "水俣市",
          "country_code": "JP",
          "slug": "minamatashi",
          "canonical_path": "/cities/jp/minamatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082015",
          "name": "水戸市",
          "country_code": "JP",
          "slug": "mitoshi",
          "canonical_path": "/cities/jp/mitoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162051",
          "name": "氷見市",
          "country_code": "JP",
          "slug": "himishi",
          "canonical_path": "/cities/jp/himishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012173",
          "name": "江別市",
          "country_code": "JP",
          "slug": "ebetsushi",
          "canonical_path": "/cities/jp/ebetsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:322075",
          "name": "江津市",
          "country_code": "JP",
          "slug": "goutsushi",
          "canonical_path": "/cities/jp/goutsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342157",
          "name": "江田島市",
          "country_code": "JP",
          "slug": "edashimashi",
          "canonical_path": "/cities/jp/edashimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272043",
          "name": "池田市",
          "country_code": "JP",
          "slug": "ikedashi",
          "canonical_path": "/cities/jp/ikedashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472115",
          "name": "沖縄市",
          "country_code": "JP",
          "slug": "okinawashi",
          "canonical_path": "/cities/jp/okinawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016012",
          "name": "沙流郡日高町",
          "country_code": "JP",
          "slug": "sarugunhidakamachi",
          "canonical_path": "/cities/jp/sarugunhidakamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272167",
          "name": "河内長野市",
          "country_code": "JP",
          "slug": "kawachinaganoshi",
          "canonical_path": "/cities/jp/kawachinaganoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:173657",
          "name": "河北郡内灘町",
          "country_code": "JP",
          "slug": "kahokugunnainadamachi",
          "canonical_path": "/cities/jp/kahokugunnainadamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:173614",
          "name": "河北郡津幡町",
          "country_code": "JP",
          "slug": "kahokuguntsubatamachi",
          "canonical_path": "/cities/jp/kahokuguntsubatamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016322",
          "name": "河東郡士幌町",
          "country_code": "JP",
          "slug": "kawahigashigunshihoromachi",
          "canonical_path": "/cities/jp/kawahigashigunshihoromachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016314",
          "name": "河東郡音更町",
          "country_code": "JP",
          "slug": "kawahigashigunotoshinachou",
          "canonical_path": "/cities/jp/kawahigashigunotoshinachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016349",
          "name": "河東郡鹿追町",
          "country_code": "JP",
          "slug": "kawahigashigunshikaoimachi",
          "canonical_path": "/cities/jp/kawahigashigunshikaoimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074217",
          "name": "河沼郡会津坂下町",
          "country_code": "JP",
          "slug": "kawanumagunkaitsusakashitamachi",
          "canonical_path": "/cities/jp/kawanumagunkaitsusakashitamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016373",
          "name": "河西郡芽室町",
          "country_code": "JP",
          "slug": "kasaigunmemuromachi",
          "canonical_path": "/cities/jp/kasaigunmemuromachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222038",
          "name": "沼津市",
          "country_code": "JP",
          "slug": "numazushi",
          "canonical_path": "/cities/jp/numazushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102067",
          "name": "沼田市",
          "country_code": "JP",
          "slug": "numatashi",
          "canonical_path": "/cities/jp/numatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272132",
          "name": "泉佐野市",
          "country_code": "JP",
          "slug": "izumisanoshi",
          "canonical_path": "/cities/jp/izumisanoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:273414",
          "name": "泉北郡忠岡町",
          "country_code": "JP",
          "slug": "senbokuguntadaokamachi",
          "canonical_path": "/cities/jp/senbokuguntadaokamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272281",
          "name": "泉南市",
          "country_code": "JP",
          "slug": "sennanshi",
          "canonical_path": "/cities/jp/sennanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:273660",
          "name": "泉南郡岬町",
          "country_code": "JP",
          "slug": "sennangunmisakichou",
          "canonical_path": "/cities/jp/sennangunmisakichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:273619",
          "name": "泉南郡熊取町",
          "country_code": "JP",
          "slug": "sennangunkumatorimachi",
          "canonical_path": "/cities/jp/sennangunkumatorimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:273627",
          "name": "泉南郡田尻町",
          "country_code": "JP",
          "slug": "sennanguntajirimachi",
          "canonical_path": "/cities/jp/sennanguntajirimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272060",
          "name": "泉大津市",
          "country_code": "JP",
          "slug": "izumiootsushi",
          "canonical_path": "/cities/jp/izumiootsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442071",
          "name": "津久見市",
          "country_code": "JP",
          "slug": "tsukumishi",
          "canonical_path": "/cities/jp/tsukumishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332038",
          "name": "津山市",
          "country_code": "JP",
          "slug": "tsuyamashi",
          "canonical_path": "/cities/jp/tsuyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242012",
          "name": "津市",
          "country_code": "JP",
          "slug": "tsushi",
          "canonical_path": "/cities/jp/tsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282057",
          "name": "洲本市",
          "country_code": "JP",
          "slug": "sumotoshi",
          "canonical_path": "/cities/jp/sumotoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122203",
          "name": "流山市",
          "country_code": "JP",
          "slug": "nagareyamashi",
          "canonical_path": "/cities/jp/nagareyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332160",
          "name": "浅口市",
          "country_code": "JP",
          "slug": "asakuchishi",
          "canonical_path": "/cities/jp/asakuchishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:221309",
          "name": "浜松市",
          "country_code": "JP",
          "slug": "hamamatsushi",
          "canonical_path": "/cities/jp/hamamatsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:322024",
          "name": "浜田市",
          "country_code": "JP",
          "slug": "hamadashi",
          "canonical_path": "/cities/jp/hamadashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122271",
          "name": "浦安市",
          "country_code": "JP",
          "slug": "urayasushi",
          "canonical_path": "/cities/jp/urayasushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016071",
          "name": "浦河郡浦河町",
          "country_code": "JP",
          "slug": "urakawagunurakawamachi",
          "canonical_path": "/cities/jp/urakawagunurakawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472085",
          "name": "浦添市",
          "country_code": "JP",
          "slug": "urasoeshi",
          "canonical_path": "/cities/jp/urasoeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:302023",
          "name": "海南市",
          "country_code": "JP",
          "slug": "kainanshi",
          "canonical_path": "/cities/jp/kainanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212211",
          "name": "海津市",
          "country_code": "JP",
          "slug": "kaizushi",
          "canonical_path": "/cities/jp/kaizushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142158",
          "name": "海老名市",
          "country_code": "JP",
          "slug": "ebinashi",
          "canonical_path": "/cities/jp/ebinashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:234249",
          "name": "海部郡大治町",
          "country_code": "JP",
          "slug": "kaifugundaijimachi",
          "canonical_path": "/cities/jp/kaifugundaijimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:363880",
          "name": "海部郡海陽町",
          "country_code": "JP",
          "slug": "kaifugunkaiyoumachi",
          "canonical_path": "/cities/jp/kaifugunkaiyoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:363871",
          "name": "海部郡美波町",
          "country_code": "JP",
          "slug": "kaifugunminamimachi",
          "canonical_path": "/cities/jp/kaifugunminamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:234257",
          "name": "海部郡蟹江町",
          "country_code": "JP",
          "slug": "kaifugunkaniemachi",
          "canonical_path": "/cities/jp/kaifugunkaniemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282260",
          "name": "淡路市",
          "country_code": "JP",
          "slug": "awajishi",
          "canonical_path": "/cities/jp/awajishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012289",
          "name": "深川市",
          "country_code": "JP",
          "slug": "fukagawashi",
          "canonical_path": "/cities/jp/fukagawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112186",
          "name": "深谷市",
          "country_code": "JP",
          "slug": "fukayashi",
          "canonical_path": "/cities/jp/fukayashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132217",
          "name": "清瀬市",
          "country_code": "JP",
          "slug": "kiyoseshi",
          "canonical_path": "/cities/jp/kiyoseshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232335",
          "name": "清須市",
          "country_code": "JP",
          "slug": "kiyosushi",
          "canonical_path": "/cities/jp/kiyosushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102083",
          "name": "渋川市",
          "country_code": "JP",
          "slug": "shibukawashi",
          "canonical_path": "/cities/jp/shibukawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252115",
          "name": "湖南市",
          "country_code": "JP",
          "slug": "konanshi",
          "canonical_path": "/cities/jp/konanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222216",
          "name": "湖西市",
          "country_code": "JP",
          "slug": "kosaishi",
          "canonical_path": "/cities/jp/kosaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052078",
          "name": "湯沢市",
          "country_code": "JP",
          "slug": "yuzawashi",
          "canonical_path": "/cities/jp/yuzawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162060",
          "name": "滑川市",
          "country_code": "JP",
          "slug": "namerikawashi",
          "canonical_path": "/cities/jp/namerikawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012254",
          "name": "滝川市",
          "country_code": "JP",
          "slug": "takikawashi",
          "canonical_path": "/cities/jp/takikawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032166",
          "name": "滝沢市",
          "country_code": "JP",
          "slug": "takizawashi",
          "canonical_path": "/cities/jp/takizawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052116",
          "name": "潟上市",
          "country_code": "JP",
          "slug": "katagamishi",
          "canonical_path": "/cities/jp/katagamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082236",
          "name": "潮来市",
          "country_code": "JP",
          "slug": "itakoshi",
          "canonical_path": "/cities/jp/itakoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332127",
          "name": "瀬戸内市",
          "country_code": "JP",
          "slug": "setouchishi",
          "canonical_path": "/cities/jp/setouchishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232041",
          "name": "瀬戸市",
          "country_code": "JP",
          "slug": "setoshi",
          "canonical_path": "/cities/jp/setoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222127",
          "name": "焼津市",
          "country_code": "JP",
          "slug": "yaizushi",
          "canonical_path": "/cities/jp/yaizushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:431001",
          "name": "熊本市",
          "country_code": "JP",
          "slug": "kumamotoshi",
          "canonical_path": "/cities/jp/kumamotoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465011",
          "name": "熊毛郡中種子町",
          "country_code": "JP",
          "slug": "kumagegunchuushushimachi",
          "canonical_path": "/cities/jp/kumagegunchuushushimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465020",
          "name": "熊毛郡南種子町",
          "country_code": "JP",
          "slug": "kumagegunminamitanemachi",
          "canonical_path": "/cities/jp/kumagegunminamitanemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:465054",
          "name": "熊毛郡屋久島町",
          "country_code": "JP",
          "slug": "kumagegunyakushimamachi",
          "canonical_path": "/cities/jp/kumagegunyakushimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:353442",
          "name": "熊毛郡平生町",
          "country_code": "JP",
          "slug": "kumagegunheizeimachi",
          "canonical_path": "/cities/jp/kumagegunheizeimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:353434",
          "name": "熊毛郡田布施町",
          "country_code": "JP",
          "slug": "kumageguntabusemachi",
          "canonical_path": "/cities/jp/kumageguntabusemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112020",
          "name": "熊谷市",
          "country_code": "JP",
          "slug": "kumagayashi",
          "canonical_path": "/cities/jp/kumagayashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242128",
          "name": "熊野市",
          "country_code": "JP",
          "slug": "kumanoshi",
          "canonical_path": "/cities/jp/kumanoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222054",
          "name": "熱海市",
          "country_code": "JP",
          "slug": "atamishi",
          "canonical_path": "/cities/jp/atamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152137",
          "name": "燕市",
          "country_code": "JP",
          "slug": "tsubameshi",
          "canonical_path": "/cities/jp/tsubameshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082198",
          "name": "牛久市",
          "country_code": "JP",
          "slug": "ushikushi",
          "canonical_path": "/cities/jp/ushikushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222267",
          "name": "牧之原市",
          "country_code": "JP",
          "slug": "makinoharashi",
          "canonical_path": "/cities/jp/makinoharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:254436",
          "name": "犬上郡多賀町",
          "country_code": "JP",
          "slug": "inugamiguntagamachi",
          "canonical_path": "/cities/jp/inugamiguntagamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:254428",
          "name": "犬上郡甲良町",
          "country_code": "JP",
          "slug": "inugamigunkouramachi",
          "canonical_path": "/cities/jp/inugamigunkouramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:254410",
          "name": "犬上郡豊郷町",
          "country_code": "JP",
          "slug": "inugamiguntoyosatomachi",
          "canonical_path": "/cities/jp/inugamiguntoyosatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232157",
          "name": "犬山市",
          "country_code": "JP",
          "slug": "inuyamashi",
          "canonical_path": "/cities/jp/inuyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132195",
          "name": "狛江市",
          "country_code": "JP",
          "slug": "komaeshi",
          "canonical_path": "/cities/jp/komaeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112151",
          "name": "狭山市",
          "country_code": "JP",
          "slug": "sayamashi",
          "canonical_path": "/cities/jp/sayamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:085421",
          "name": "猿島郡五霞町",
          "country_code": "JP",
          "slug": "sarushimagungokamachi",
          "canonical_path": "/cities/jp/sarushimagungokamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:085464",
          "name": "猿島郡境町",
          "country_code": "JP",
          "slug": "sarushimagunsakaimachi",
          "canonical_path": "/cities/jp/sarushimagunsakaimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432067",
          "name": "玉名市",
          "country_code": "JP",
          "slug": "tamanashi",
          "canonical_path": "/cities/jp/tamanashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:433675",
          "name": "玉名郡南関町",
          "country_code": "JP",
          "slug": "tamanagunnankanmachi",
          "canonical_path": "/cities/jp/tamanagunnankanmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:433691",
          "name": "玉名郡和水町",
          "country_code": "JP",
          "slug": "tamanagunnagomimachi",
          "canonical_path": "/cities/jp/tamanagunnagomimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:433641",
          "name": "玉名郡玉東町",
          "country_code": "JP",
          "slug": "tamanagungyokutoumachi",
          "canonical_path": "/cities/jp/tamanagungyokutoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:433683",
          "name": "玉名郡長洲町",
          "country_code": "JP",
          "slug": "tamanagunchousumachi",
          "canonical_path": "/cities/jp/tamanagunchousumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332046",
          "name": "玉野市",
          "country_code": "JP",
          "slug": "tamanoshi",
          "canonical_path": "/cities/jp/tamanoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:444618",
          "name": "玖珠郡九重町",
          "country_code": "JP",
          "slug": "kusugunkokonoemachi",
          "canonical_path": "/cities/jp/kusugunkokonoemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:444626",
          "name": "玖珠郡玖珠町",
          "country_code": "JP",
          "slug": "kusugunkusumachi",
          "canonical_path": "/cities/jp/kusugunkusumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172057",
          "name": "珠洲市",
          "country_code": "JP",
          "slug": "suzushi",
          "canonical_path": "/cities/jp/suzushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:435147",
          "name": "球磨郡あさぎり町",
          "country_code": "JP",
          "slug": "kumagunasagirimachi",
          "canonical_path": "/cities/jp/kumagunasagirimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:435058",
          "name": "球磨郡多良木町",
          "country_code": "JP",
          "slug": "kumaguntaragimachi",
          "canonical_path": "/cities/jp/kumaguntaragimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:435015",
          "name": "球磨郡錦町",
          "country_code": "JP",
          "slug": "kumagunnishikichou",
          "canonical_path": "/cities/jp/kumagunnishikichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212083",
          "name": "瑞浪市",
          "country_code": "JP",
          "slug": "mizunamishi",
          "canonical_path": "/cities/jp/mizunamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212164",
          "name": "瑞穂市",
          "country_code": "JP",
          "slug": "mizuhoshi",
          "canonical_path": "/cities/jp/mizuhoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:103829",
          "name": "甘楽郡下仁田町",
          "country_code": "JP",
          "slug": "kanragunshimonitamachi",
          "canonical_path": "/cities/jp/kanragunshimonitamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:103845",
          "name": "甘楽郡甘楽町",
          "country_code": "JP",
          "slug": "kanragunkanramachi",
          "canonical_path": "/cities/jp/kanragunkanramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292095",
          "name": "生駒市",
          "country_code": "JP",
          "slug": "ikomashi",
          "canonical_path": "/cities/jp/ikomashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:293431",
          "name": "生駒郡三郷町",
          "country_code": "JP",
          "slug": "ikomagunmisatomachi",
          "canonical_path": "/cities/jp/ikomagunmisatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:293458",
          "name": "生駒郡安堵町",
          "country_code": "JP",
          "slug": "ikomagunandomachi",
          "canonical_path": "/cities/jp/ikomagunandomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:293423",
          "name": "生駒郡平群町",
          "country_code": "JP",
          "slug": "ikomagunhegurimachi",
          "canonical_path": "/cities/jp/ikomagunhegurimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:293440",
          "name": "生駒郡斑鳩町",
          "country_code": "JP",
          "slug": "ikomagunikarugamachi",
          "canonical_path": "/cities/jp/ikomagunikarugamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232319",
          "name": "田原市",
          "country_code": "JP",
          "slug": "taharashi",
          "canonical_path": "/cities/jp/taharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402061",
          "name": "田川市",
          "country_code": "JP",
          "slug": "tagawashi",
          "canonical_path": "/cities/jp/tagawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406082",
          "name": "田川郡大任町",
          "country_code": "JP",
          "slug": "tagawaguntaininmachi",
          "canonical_path": "/cities/jp/tagawaguntaininmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406058",
          "name": "田川郡川崎町",
          "country_code": "JP",
          "slug": "tagawagunkawasakichou",
          "canonical_path": "/cities/jp/tagawagunkawasakichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406023",
          "name": "田川郡添田町",
          "country_code": "JP",
          "slug": "tagawagunsoedamachi",
          "canonical_path": "/cities/jp/tagawagunsoedamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406104",
          "name": "田川郡福智町",
          "country_code": "JP",
          "slug": "tagawagunfukuchimachi",
          "canonical_path": "/cities/jp/tagawagunfukuchimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406040",
          "name": "田川郡糸田町",
          "country_code": "JP",
          "slug": "tagawagunitodamachi",
          "canonical_path": "/cities/jp/tagawagunitodamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406015",
          "name": "田川郡香春町",
          "country_code": "JP",
          "slug": "tagawagunkoushunmachi",
          "canonical_path": "/cities/jp/tagawagunkoushunmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072117",
          "name": "田村市",
          "country_code": "JP",
          "slug": "tamurashi",
          "canonical_path": "/cities/jp/tamurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075213",
          "name": "田村郡三春町",
          "country_code": "JP",
          "slug": "tamuragunmiharumachi",
          "canonical_path": "/cities/jp/tamuragunmiharumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075221",
          "name": "田村郡小野町",
          "country_code": "JP",
          "slug": "tamuragunonochou",
          "canonical_path": "/cities/jp/tamuragunonochou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:302066",
          "name": "田辺市",
          "country_code": "JP",
          "slug": "tanabeshi",
          "canonical_path": "/cities/jp/tanabeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052108",
          "name": "由利本荘市",
          "country_code": "JP",
          "slug": "yurihonjoushi",
          "canonical_path": "/cities/jp/yurihonjoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442135",
          "name": "由布市",
          "country_code": "JP",
          "slug": "yuushi",
          "canonical_path": "/cities/jp/yuushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192139",
          "name": "甲州市",
          "country_code": "JP",
          "slug": "koushuushi",
          "canonical_path": "/cities/jp/koushuushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192015",
          "name": "甲府市",
          "country_code": "JP",
          "slug": "koufushi",
          "canonical_path": "/cities/jp/koufushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192104",
          "name": "甲斐市",
          "country_code": "JP",
          "slug": "kaishi",
          "canonical_path": "/cities/jp/kaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252093",
          "name": "甲賀市",
          "country_code": "JP",
          "slug": "koukashi",
          "canonical_path": "/cities/jp/koukashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052060",
          "name": "男鹿市",
          "country_code": "JP",
          "slug": "ogashi",
          "canonical_path": "/cities/jp/ogashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132098",
          "name": "町田市",
          "country_code": "JP",
          "slug": "machidashi",
          "canonical_path": "/cities/jp/machidashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012122",
          "name": "留萌市",
          "country_code": "JP",
          "slug": "rumoishi",
          "canonical_path": "/cities/jp/rumoishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012301",
          "name": "登別市",
          "country_code": "JP",
          "slug": "noboribetsushi",
          "canonical_path": "/cities/jp/noboribetsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042129",
          "name": "登米市",
          "country_code": "JP",
          "slug": "tomeshi",
          "canonical_path": "/cities/jp/tomeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122327",
          "name": "白井市",
          "country_code": "JP",
          "slug": "shiraishi",
          "canonical_path": "/cities/jp/shiraishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172103",
          "name": "白山市",
          "country_code": "JP",
          "slug": "hakusanshi",
          "canonical_path": "/cities/jp/hakusanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112461",
          "name": "白岡市",
          "country_code": "JP",
          "slug": "shiraokashi",
          "canonical_path": "/cities/jp/shiraokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072052",
          "name": "白河市",
          "country_code": "JP",
          "slug": "shirakawashi",
          "canonical_path": "/cities/jp/shirakawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042064",
          "name": "白石市",
          "country_code": "JP",
          "slug": "shiroishishi",
          "canonical_path": "/cities/jp/shiroishishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016683",
          "name": "白糠郡白糠町",
          "country_code": "JP",
          "slug": "shiranukagunshironukachou",
          "canonical_path": "/cities/jp/shiranukagunshironukachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015784",
          "name": "白老郡白老町",
          "country_code": "JP",
          "slug": "shiraoigunshiraoimachi",
          "canonical_path": "/cities/jp/shiraoigunshiraoimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:322041",
          "name": "益田市",
          "country_code": "JP",
          "slug": "masudashi",
          "canonical_path": "/cities/jp/masudashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032018",
          "name": "盛岡市",
          "country_code": "JP",
          "slug": "moriokashi",
          "canonical_path": "/cities/jp/moriokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402044",
          "name": "直方市",
          "country_code": "JP",
          "slug": "noogatashi",
          "canonical_path": "/cities/jp/noogatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:263664",
          "name": "相楽郡精華町",
          "country_code": "JP",
          "slug": "sagaragunseikamachi",
          "canonical_path": "/cities/jp/sagaragunseikamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:141500",
          "name": "相模原市",
          "country_code": "JP",
          "slug": "sagamiharashi",
          "canonical_path": "/cities/jp/sagamiharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282081",
          "name": "相生市",
          "country_code": "JP",
          "slug": "aioishi",
          "canonical_path": "/cities/jp/aioishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072095",
          "name": "相馬市",
          "country_code": "JP",
          "slug": "soumashi",
          "canonical_path": "/cities/jp/soumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075612",
          "name": "相馬郡新地町",
          "country_code": "JP",
          "slug": "soumagunshinchimachi",
          "canonical_path": "/cities/jp/soumagunshinchimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092096",
          "name": "真岡市",
          "country_code": "JP",
          "slug": "mookashi",
          "canonical_path": "/cities/jp/mookashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332143",
          "name": "真庭市",
          "country_code": "JP",
          "slug": "maniwashi",
          "canonical_path": "/cities/jp/maniwashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092118",
          "name": "矢板市",
          "country_code": "JP",
          "slug": "yaitashi",
          "canonical_path": "/cities/jp/yaitashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232246",
          "name": "知多市",
          "country_code": "JP",
          "slug": "chitashi",
          "canonical_path": "/cities/jp/chitashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:234451",
          "name": "知多郡南知多町",
          "country_code": "JP",
          "slug": "chitagunminamichitamachi",
          "canonical_path": "/cities/jp/chitagunminamichitamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:234427",
          "name": "知多郡東浦町",
          "country_code": "JP",
          "slug": "chitagunhigashiuramachi",
          "canonical_path": "/cities/jp/chitagunhigashiuramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:234478",
          "name": "知多郡武豊町",
          "country_code": "JP",
          "slug": "chitaguntaketoyomachi",
          "canonical_path": "/cities/jp/chitaguntaketoyomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:234460",
          "name": "知多郡美浜町",
          "country_code": "JP",
          "slug": "chitagunmihamamachi",
          "canonical_path": "/cities/jp/chitagunmihamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:234419",
          "name": "知多郡阿久比町",
          "country_code": "JP",
          "slug": "chitagunaguimachi",
          "canonical_path": "/cities/jp/chitagunaguimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232254",
          "name": "知立市",
          "country_code": "JP",
          "slug": "chiryuushi",
          "canonical_path": "/cities/jp/chiryuushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472077",
          "name": "石垣市",
          "country_code": "JP",
          "slug": "ishigakishi",
          "canonical_path": "/cities/jp/ishigakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082058",
          "name": "石岡市",
          "country_code": "JP",
          "slug": "ishiokashi",
          "canonical_path": "/cities/jp/ishiokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075035",
          "name": "石川郡平田村",
          "country_code": "JP",
          "slug": "ishikawagunhiratamura",
          "canonical_path": "/cities/jp/ishikawagunhiratamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075043",
          "name": "石川郡浅川町",
          "country_code": "JP",
          "slug": "ishikawagunasakawamachi",
          "canonical_path": "/cities/jp/ishikawagunasakawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075027",
          "name": "石川郡玉川村",
          "country_code": "JP",
          "slug": "ishikawaguntamagawamura",
          "canonical_path": "/cities/jp/ishikawaguntamagawamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:075019",
          "name": "石川郡石川町",
          "country_code": "JP",
          "slug": "ishikawagunishikawachou",
          "canonical_path": "/cities/jp/ishikawagunishikawachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042021",
          "name": "石巻市",
          "country_code": "JP",
          "slug": "ishinomakishi",
          "canonical_path": "/cities/jp/ishinomakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012351",
          "name": "石狩市",
          "country_code": "JP",
          "slug": "ishikarishi",
          "canonical_path": "/cities/jp/ishikarishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:013030",
          "name": "石狩郡当別町",
          "country_code": "JP",
          "slug": "ishikariguntoubetsumachi",
          "canonical_path": "/cities/jp/ishikariguntoubetsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012262",
          "name": "砂川市",
          "country_code": "JP",
          "slug": "sunagawashi",
          "canonical_path": "/cities/jp/sunagawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162086",
          "name": "砺波市",
          "country_code": "JP",
          "slug": "tonamishi",
          "canonical_path": "/cities/jp/tonamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232092",
          "name": "碧南市",
          "country_code": "JP",
          "slug": "hekinanshi",
          "canonical_path": "/cities/jp/hekinanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222119",
          "name": "磐田市",
          "country_code": "JP",
          "slug": "iwatashi",
          "canonical_path": "/cities/jp/iwatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:293628",
          "name": "磯城郡三宅町",
          "country_code": "JP",
          "slug": "shikigunmiyakemachi",
          "canonical_path": "/cities/jp/shikigunmiyakemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:293610",
          "name": "磯城郡川西町",
          "country_code": "JP",
          "slug": "shikigunkawanishimachi",
          "canonical_path": "/cities/jp/shikigunkawanishimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:293636",
          "name": "磯城郡田原本町",
          "country_code": "JP",
          "slug": "shikiguntawaramotomachi",
          "canonical_path": "/cities/jp/shikiguntawaramotomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412104",
          "name": "神埼市",
          "country_code": "JP",
          "slug": "kanzakishi",
          "canonical_path": "/cities/jp/kanzakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:413275",
          "name": "神埼郡吉野ヶ里町",
          "country_code": "JP",
          "slug": "kanzakigunyoshinokesatomachi",
          "canonical_path": "/cities/jp/kanzakigunyoshinokesatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:284424",
          "name": "神崎郡市川町",
          "country_code": "JP",
          "slug": "kanzakigunshikawamachi",
          "canonical_path": "/cities/jp/kanzakigunshikawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:284467",
          "name": "神崎郡神河町",
          "country_code": "JP",
          "slug": "kanzakigunkamikawamachi",
          "canonical_path": "/cities/jp/kanzakigunkamikawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:284432",
          "name": "神崎郡福崎町",
          "country_code": "JP",
          "slug": "kanzakigunfukuzakimachi",
          "canonical_path": "/cities/jp/kanzakigunfukuzakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:281000",
          "name": "神戸市",
          "country_code": "JP",
          "slug": "koubeshi",
          "canonical_path": "/cities/jp/koubeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082325",
          "name": "神栖市",
          "country_code": "JP",
          "slug": "kamisushi",
          "canonical_path": "/cities/jp/kamisushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:182010",
          "name": "福井市",
          "country_code": "JP",
          "slug": "fukuishi",
          "canonical_path": "/cities/jp/fukuishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342076",
          "name": "福山市",
          "country_code": "JP",
          "slug": "fukuyamashi",
          "canonical_path": "/cities/jp/fukuyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:401307",
          "name": "福岡市",
          "country_code": "JP",
          "slug": "fukuokashi",
          "canonical_path": "/cities/jp/fukuokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072010",
          "name": "福島市",
          "country_code": "JP",
          "slug": "fukushimashi",
          "canonical_path": "/cities/jp/fukushimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402249",
          "name": "福津市",
          "country_code": "JP",
          "slug": "fukutsushi",
          "canonical_path": "/cities/jp/fukutsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132187",
          "name": "福生市",
          "country_code": "JP",
          "slug": "fussashi",
          "canonical_path": "/cities/jp/fussashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262013",
          "name": "福知山市",
          "country_code": "JP",
          "slug": "fukuchiyamashi",
          "canonical_path": "/cities/jp/fukuchiyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052019",
          "name": "秋田市",
          "country_code": "JP",
          "slug": "akitashi",
          "canonical_path": "/cities/jp/akitashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142115",
          "name": "秦野市",
          "country_code": "JP",
          "slug": "hatanoshi",
          "canonical_path": "/cities/jp/hatanoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112071",
          "name": "秩父市",
          "country_code": "JP",
          "slug": "chichibushi",
          "canonical_path": "/cities/jp/chichibushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113654",
          "name": "秩父郡小鹿野町",
          "country_code": "JP",
          "slug": "chichibugunoganomachi",
          "canonical_path": "/cities/jp/chichibugunoganomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113611",
          "name": "秩父郡横瀬町",
          "country_code": "JP",
          "slug": "chichibugunyokosemachi",
          "canonical_path": "/cities/jp/chichibugunyokosemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113620",
          "name": "秩父郡皆野町",
          "country_code": "JP",
          "slug": "chichibugunminanomachi",
          "canonical_path": "/cities/jp/chichibugunminanomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:113638",
          "name": "秩父郡長瀞町",
          "country_code": "JP",
          "slug": "chichibugunchoutoromachi",
          "canonical_path": "/cities/jp/chichibugunchoutoromachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012149",
          "name": "稚内市",
          "country_code": "JP",
          "slug": "wakkanaishi",
          "canonical_path": "/cities/jp/wakkanaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132250",
          "name": "稲城市",
          "country_code": "JP",
          "slug": "inagishi",
          "canonical_path": "/cities/jp/inagishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082295",
          "name": "稲敷市",
          "country_code": "JP",
          "slug": "inashikishi",
          "canonical_path": "/cities/jp/inashikishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:084476",
          "name": "稲敷郡河内町",
          "country_code": "JP",
          "slug": "inashikigunkawauchimachi",
          "canonical_path": "/cities/jp/inashikigunkawauchimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:084425",
          "name": "稲敷郡美浦村",
          "country_code": "JP",
          "slug": "inashikigunmihoromura",
          "canonical_path": "/cities/jp/inashikigunmihoromura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:084433",
          "name": "稲敷郡阿見町",
          "country_code": "JP",
          "slug": "inashikigunamichou",
          "canonical_path": "/cities/jp/inashikigunamichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232203",
          "name": "稲沢市",
          "country_code": "JP",
          "slug": "inazawashi",
          "canonical_path": "/cities/jp/inazawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014605",
          "name": "空知郡上富良野町",
          "country_code": "JP",
          "slug": "sorachigujoufuranomachi",
          "canonical_path": "/cities/jp/sorachigujoufuranomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014231",
          "name": "空知郡南幌町",
          "country_code": "JP",
          "slug": "sorachigunnanporomachi",
          "canonical_path": "/cities/jp/sorachigunnanporomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132021",
          "name": "立川市",
          "country_code": "JP",
          "slug": "tachikawashi",
          "canonical_path": "/cities/jp/tachikawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:342033",
          "name": "竹原市",
          "country_code": "JP",
          "slug": "takeharashi",
          "canonical_path": "/cities/jp/takeharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442089",
          "name": "竹田市",
          "country_code": "JP",
          "slug": "takedashi",
          "canonical_path": "/cities/jp/takedashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192112",
          "name": "笛吹市",
          "country_code": "JP",
          "slug": "usuishi",
          "canonical_path": "/cities/jp/usuishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332054",
          "name": "笠岡市",
          "country_code": "JP",
          "slug": "kasaokashi",
          "canonical_path": "/cities/jp/kasaokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082163",
          "name": "笠間市",
          "country_code": "JP",
          "slug": "kasamashi",
          "canonical_path": "/cities/jp/kasamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402117",
          "name": "筑後市",
          "country_code": "JP",
          "slug": "chikugoshi",
          "canonical_path": "/cities/jp/chikugoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402176",
          "name": "筑紫野市",
          "country_code": "JP",
          "slug": "chikushinoshi",
          "canonical_path": "/cities/jp/chikushinoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082279",
          "name": "筑西市",
          "country_code": "JP",
          "slug": "chikuseishi",
          "canonical_path": "/cities/jp/chikuseishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272205",
          "name": "箕面市",
          "country_code": "JP",
          "slug": "minooshi",
          "canonical_path": "/cities/jp/minooshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406465",
          "name": "築上郡上毛町",
          "country_code": "JP",
          "slug": "tsukiagegunuwagemachi",
          "canonical_path": "/cities/jp/tsukiagegunuwagemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406422",
          "name": "築上郡吉富町",
          "country_code": "JP",
          "slug": "tsukiagegunyoshitomimachi",
          "canonical_path": "/cities/jp/tsukiagegunyoshitomimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:406473",
          "name": "築上郡築上町",
          "country_code": "JP",
          "slug": "tsukiagegunchikujoumachi",
          "canonical_path": "/cities/jp/tsukiagegunchikujoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252140",
          "name": "米原市",
          "country_code": "JP",
          "slug": "yoneharashi",
          "canonical_path": "/cities/jp/yoneharashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:312029",
          "name": "米子市",
          "country_code": "JP",
          "slug": "yonagoshi",
          "canonical_path": "/cities/jp/yonagoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062022",
          "name": "米沢市",
          "country_code": "JP",
          "slug": "yonezawashi",
          "canonical_path": "/cities/jp/yonezawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403482",
          "name": "糟屋郡久山町",
          "country_code": "JP",
          "slug": "kasuyagunhisayamamachi",
          "canonical_path": "/cities/jp/kasuyagunhisayamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403415",
          "name": "糟屋郡宇美町",
          "country_code": "JP",
          "slug": "kasuyagunumimachi",
          "canonical_path": "/cities/jp/kasuyagunumimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403431",
          "name": "糟屋郡志免町",
          "country_code": "JP",
          "slug": "kasuyagunshimemachi",
          "canonical_path": "/cities/jp/kasuyagunshimemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403458",
          "name": "糟屋郡新宮町",
          "country_code": "JP",
          "slug": "kasuyagunshinguumachi",
          "canonical_path": "/cities/jp/kasuyagunshinguumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403423",
          "name": "糟屋郡篠栗町",
          "country_code": "JP",
          "slug": "kasuyagunsasagurimachi",
          "canonical_path": "/cities/jp/kasuyagunsasagurimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403491",
          "name": "糟屋郡粕屋町",
          "country_code": "JP",
          "slug": "kasuyagunkasuyamachi",
          "canonical_path": "/cities/jp/kasuyagunkasuyamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403440",
          "name": "糟屋郡須惠町",
          "country_code": "JP",
          "slug": "kasuyagunsuemachi",
          "canonical_path": "/cities/jp/kasuyagunsuemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402303",
          "name": "糸島市",
          "country_code": "JP",
          "slug": "itoshimashi",
          "canonical_path": "/cities/jp/itoshimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472107",
          "name": "糸満市",
          "country_code": "JP",
          "slug": "itomanshi",
          "canonical_path": "/cities/jp/itomanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152161",
          "name": "糸魚川市",
          "country_code": "JP",
          "slug": "itoigawashi",
          "canonical_path": "/cities/jp/itoigawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:302082",
          "name": "紀の川市",
          "country_code": "JP",
          "slug": "kinokawashi",
          "canonical_path": "/cities/jp/kinokawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012190",
          "name": "紋別市",
          "country_code": "JP",
          "slug": "monbetsushi",
          "canonical_path": "/cities/jp/monbetsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015598",
          "name": "紋別郡湧別町",
          "country_code": "JP",
          "slug": "monbetsugunyuubetsumachi",
          "canonical_path": "/cities/jp/monbetsugunyuubetsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015555",
          "name": "紋別郡遠軽町",
          "country_code": "JP",
          "slug": "monbetsugunenkarumachi",
          "canonical_path": "/cities/jp/monbetsugunenkarumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:033227",
          "name": "紫波郡矢巾町",
          "country_code": "JP",
          "slug": "shiwagunyahabamachi",
          "canonical_path": "/cities/jp/shiwagunyahabamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:033219",
          "name": "紫波郡紫波町",
          "country_code": "JP",
          "slug": "shiwagunshiwamachi",
          "canonical_path": "/cities/jp/shiwagunshiwamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082074",
          "name": "結城市",
          "country_code": "JP",
          "slug": "yuukishi",
          "canonical_path": "/cities/jp/yuukishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012114",
          "name": "網走市",
          "country_code": "JP",
          "slug": "abashirishi",
          "canonical_path": "/cities/jp/abashirishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015644",
          "name": "網走郡大空町",
          "country_code": "JP",
          "slug": "abashirigunoozoramachi",
          "canonical_path": "/cities/jp/abashirigunoozoramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015431",
          "name": "網走郡美幌町",
          "country_code": "JP",
          "slug": "abashirigunbihorochou",
          "canonical_path": "/cities/jp/abashirigunbihorochou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:263435",
          "name": "綴喜郡井手町",
          "country_code": "JP",
          "slug": "tsuzukigunidemachi",
          "canonical_path": "/cities/jp/tsuzukigunidemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:263443",
          "name": "綴喜郡宇治田原町",
          "country_code": "JP",
          "slug": "tsuzukigunujitawaramachi",
          "canonical_path": "/cities/jp/tsuzukigunujitawaramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:373869",
          "name": "綾歌郡宇多津町",
          "country_code": "JP",
          "slug": "ayautagunutatsumachi",
          "canonical_path": "/cities/jp/ayautagunutatsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:373877",
          "name": "綾歌郡綾川町",
          "country_code": "JP",
          "slug": "ayautagunayakawamachi",
          "canonical_path": "/cities/jp/ayautagunayakawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142182",
          "name": "綾瀬市",
          "country_code": "JP",
          "slug": "ayaseshi",
          "canonical_path": "/cities/jp/ayaseshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262030",
          "name": "綾部市",
          "country_code": "JP",
          "slug": "ayabeshi",
          "canonical_path": "/cities/jp/ayabeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332089",
          "name": "総社市",
          "country_code": "JP",
          "slug": "soujashi",
          "canonical_path": "/cities/jp/soujashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332151",
          "name": "美作市",
          "country_code": "JP",
          "slug": "mimasakashi",
          "canonical_path": "/cities/jp/mimasakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012157",
          "name": "美唄市",
          "country_code": "JP",
          "slug": "bibaishi",
          "canonical_path": "/cities/jp/bibaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:285862",
          "name": "美方郡新温泉町",
          "country_code": "JP",
          "slug": "mikatagunshin-onsenmachi",
          "canonical_path": "/cities/jp/mikatagunshin-onsenmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:285854",
          "name": "美方郡香美町",
          "country_code": "JP",
          "slug": "mikatagunkamimachi",
          "canonical_path": "/cities/jp/mikatagunkamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212113",
          "name": "美濃加茂市",
          "country_code": "JP",
          "slug": "minokamoshi",
          "canonical_path": "/cities/jp/minokamoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212075",
          "name": "美濃市",
          "country_code": "JP",
          "slug": "minoshi",
          "canonical_path": "/cities/jp/minoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352136",
          "name": "美祢市",
          "country_code": "JP",
          "slug": "mineshi",
          "canonical_path": "/cities/jp/mineshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:362077",
          "name": "美馬市",
          "country_code": "JP",
          "slug": "mimashi",
          "canonical_path": "/cities/jp/mimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172073",
          "name": "羽咋市",
          "country_code": "JP",
          "slug": "hakuishi",
          "canonical_path": "/cities/jp/hakuishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:173860",
          "name": "羽咋郡宝達志水町",
          "country_code": "JP",
          "slug": "hakuigunhoudatsushimizumachi",
          "canonical_path": "/cities/jp/hakuigunhoudatsushimizumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:173843",
          "name": "羽咋郡志賀町",
          "country_code": "JP",
          "slug": "hakuigunshigachou",
          "canonical_path": "/cities/jp/hakuigunshigachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212091",
          "name": "羽島市",
          "country_code": "JP",
          "slug": "haneshimashi",
          "canonical_path": "/cities/jp/haneshimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:213021",
          "name": "羽島郡岐南町",
          "country_code": "JP",
          "slug": "haneshimagunginanmachi",
          "canonical_path": "/cities/jp/haneshimagunginanmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:213039",
          "name": "羽島郡笠松町",
          "country_code": "JP",
          "slug": "haneshimagunkasamatsumachi",
          "canonical_path": "/cities/jp/haneshimagunkasamatsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272221",
          "name": "羽曳野市",
          "country_code": "JP",
          "slug": "habikinoshi",
          "canonical_path": "/cities/jp/habikinoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132276",
          "name": "羽村市",
          "country_code": "JP",
          "slug": "hamurashi",
          "canonical_path": "/cities/jp/hamurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112160",
          "name": "羽生市",
          "country_code": "JP",
          "slug": "hanyuushi",
          "canonical_path": "/cities/jp/hanyuushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122165",
          "name": "習志野市",
          "country_code": "JP",
          "slug": "narashinoshi",
          "canonical_path": "/cities/jp/narashinoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074080",
          "name": "耶麻郡猪苗代町",
          "country_code": "JP",
          "slug": "yamaguninawashiromachi",
          "canonical_path": "/cities/jp/yamaguninawashiromachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074055",
          "name": "耶麻郡西会津町",
          "country_code": "JP",
          "slug": "yamagunnishiaizumachi",
          "canonical_path": "/cities/jp/yamagunnishiaizumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:464911",
          "name": "肝属郡南大隅町",
          "country_code": "JP",
          "slug": "kimotsukigunminamioosumimachi",
          "canonical_path": "/cities/jp/kimotsukigunminamioosumimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:464821",
          "name": "肝属郡東串良町",
          "country_code": "JP",
          "slug": "kimotsukigunhigashikushiramachi",
          "canonical_path": "/cities/jp/kimotsukigunhigashikushiramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:464929",
          "name": "肝属郡肝付町",
          "country_code": "JP",
          "slug": "kimotsukigunkimotsukimachi",
          "canonical_path": "/cities/jp/kimotsukigunkimotsukimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:464902",
          "name": "肝属郡錦江町",
          "country_code": "JP",
          "slug": "kimotsukigunkinkoumachi",
          "canonical_path": "/cities/jp/kimotsukigunkinkoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152277",
          "name": "胎内市",
          "country_code": "JP",
          "slug": "tainaishi",
          "canonical_path": "/cities/jp/tainaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052027",
          "name": "能代市",
          "country_code": "JP",
          "slug": "noshiroshi",
          "canonical_path": "/cities/jp/noshiroshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172111",
          "name": "能美市",
          "country_code": "JP",
          "slug": "nomishi",
          "canonical_path": "/cities/jp/nomishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442062",
          "name": "臼杵市",
          "country_code": "JP",
          "slug": "usukishi",
          "canonical_path": "/cities/jp/usukishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262021",
          "name": "舞鶴市",
          "country_code": "JP",
          "slug": "maizurushi",
          "canonical_path": "/cities/jp/maizurushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122041",
          "name": "船橋市",
          "country_code": "JP",
          "slug": "funabashishi",
          "canonical_path": "/cities/jp/funabashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012165",
          "name": "芦別市",
          "country_code": "JP",
          "slug": "ashibetsushi",
          "canonical_path": "/cities/jp/ashibetsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282065",
          "name": "芦屋市",
          "country_code": "JP",
          "slug": "ashiyashi",
          "canonical_path": "/cities/jp/ashiyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032051",
          "name": "花巻市",
          "country_code": "JP",
          "slug": "hanamakishi",
          "canonical_path": "/cities/jp/hanamakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:093441",
          "name": "芳賀郡市貝町",
          "country_code": "JP",
          "slug": "hagagunichikaimachi",
          "canonical_path": "/cities/jp/hagagunichikaimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:093424",
          "name": "芳賀郡益子町",
          "country_code": "JP",
          "slug": "hagagunmashikochou",
          "canonical_path": "/cities/jp/hagagunmashikochou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:093459",
          "name": "芳賀郡芳賀町",
          "country_code": "JP",
          "slug": "hagagunhagamachi",
          "canonical_path": "/cities/jp/hagagunhagamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:093432",
          "name": "芳賀郡茂木町",
          "country_code": "JP",
          "slug": "hagagunmotegimachi",
          "canonical_path": "/cities/jp/hagagunmotegimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014842",
          "name": "苫前郡羽幌町",
          "country_code": "JP",
          "slug": "tomamaegunhahoromachi",
          "canonical_path": "/cities/jp/tomamaegunhahoromachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012131",
          "name": "苫小牧市",
          "country_code": "JP",
          "slug": "tomakomaishi",
          "canonical_path": "/cities/jp/tomakomaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122106",
          "name": "茂原市",
          "country_code": "JP",
          "slug": "mobarashi",
          "canonical_path": "/cities/jp/mobarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142077",
          "name": "茅ヶ崎市",
          "country_code": "JP",
          "slug": "chigasakishi",
          "canonical_path": "/cities/jp/chigasakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:013455",
          "name": "茅部郡森町",
          "country_code": "JP",
          "slug": "kayabegunmorichou",
          "canonical_path": "/cities/jp/kayabegunmorichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202142",
          "name": "茅野市",
          "country_code": "JP",
          "slug": "chinoshi",
          "canonical_path": "/cities/jp/chinoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272116",
          "name": "茨木市",
          "country_code": "JP",
          "slug": "ibaragishi",
          "canonical_path": "/cities/jp/ibaragishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112216",
          "name": "草加市",
          "country_code": "JP",
          "slug": "soukashi",
          "canonical_path": "/cities/jp/soukashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252069",
          "name": "草津市",
          "country_code": "JP",
          "slug": "kusatsushi",
          "canonical_path": "/cities/jp/kusatsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432041",
          "name": "荒尾市",
          "country_code": "JP",
          "slug": "araoshi",
          "canonical_path": "/cities/jp/araoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222241",
          "name": "菊川市",
          "country_code": "JP",
          "slug": "kikugawashi",
          "canonical_path": "/cities/jp/kikugawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432105",
          "name": "菊池市",
          "country_code": "JP",
          "slug": "kikuchishi",
          "canonical_path": "/cities/jp/kikuchishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434035",
          "name": "菊池郡大津町",
          "country_code": "JP",
          "slug": "kikuchigunootsumachi",
          "canonical_path": "/cities/jp/kikuchigunootsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434043",
          "name": "菊池郡菊陽町",
          "country_code": "JP",
          "slug": "kikuchigunkikuyoumachi",
          "canonical_path": "/cities/jp/kikuchigunkikuyoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352047",
          "name": "萩市",
          "country_code": "JP",
          "slug": "hagishi",
          "canonical_path": "/cities/jp/hagishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292117",
          "name": "葛城市",
          "country_code": "JP",
          "slug": "katsuragishi",
          "canonical_path": "/cities/jp/katsuragishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434825",
          "name": "葦北郡芦北町",
          "country_code": "JP",
          "slug": "ashikitagunashikitamachi",
          "canonical_path": "/cities/jp/ashikitagunashikitamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:253839",
          "name": "蒲生郡日野町",
          "country_code": "JP",
          "slug": "gamougunhinomachi",
          "canonical_path": "/cities/jp/gamougunhinomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:253847",
          "name": "蒲生郡竜王町",
          "country_code": "JP",
          "slug": "gamougunryuuoumachi",
          "canonical_path": "/cities/jp/gamougunryuuoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232149",
          "name": "蒲郡市",
          "country_code": "JP",
          "slug": "gamagoorishi",
          "canonical_path": "/cities/jp/gamagoorishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112381",
          "name": "蓮田市",
          "country_code": "JP",
          "slug": "hasudashi",
          "canonical_path": "/cities/jp/hasudashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112232",
          "name": "蕨市",
          "country_code": "JP",
          "slug": "warabishi",
          "canonical_path": "/cities/jp/warabishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462152",
          "name": "薩摩川内市",
          "country_code": "JP",
          "slug": "satsumasendaishi",
          "canonical_path": "/cities/jp/satsumasendaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272264",
          "name": "藤井寺市",
          "country_code": "JP",
          "slug": "fujiiderashi",
          "canonical_path": "/cities/jp/fujiiderashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102091",
          "name": "藤岡市",
          "country_code": "JP",
          "slug": "fujiokashi",
          "canonical_path": "/cities/jp/fujiokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222143",
          "name": "藤枝市",
          "country_code": "JP",
          "slug": "fujiedashi",
          "canonical_path": "/cities/jp/fujiedashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142051",
          "name": "藤沢市",
          "country_code": "JP",
          "slug": "fujisawashi",
          "canonical_path": "/cities/jp/fujisawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:013951",
          "name": "虻田郡ニセコ町",
          "country_code": "JP",
          "slug": "abutagunnisekomachi",
          "canonical_path": "/cities/jp/abutagunnisekomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:014001",
          "name": "虻田郡倶知安町",
          "country_code": "JP",
          "slug": "abutagunkutchanmachi",
          "canonical_path": "/cities/jp/abutagunkutchanmachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:015849",
          "name": "虻田郡洞爺湖町",
          "country_code": "JP",
          "slug": "abutaguntouyakomachi",
          "canonical_path": "/cities/jp/abutaguntouyakomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082333",
          "name": "行方市",
          "country_code": "JP",
          "slug": "namegatashi",
          "canonical_path": "/cities/jp/namegatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402133",
          "name": "行橋市",
          "country_code": "JP",
          "slug": "yukuhashishi",
          "canonical_path": "/cities/jp/yukuhashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112062",
          "name": "行田市",
          "country_code": "JP",
          "slug": "gyoudashi",
          "canonical_path": "/cities/jp/gyoudashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222160",
          "name": "袋井市",
          "country_code": "JP",
          "slug": "fukuroishi",
          "canonical_path": "/cities/jp/fukuroishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122297",
          "name": "袖ケ浦市",
          "country_code": "JP",
          "slug": "sodekeurashi",
          "canonical_path": "/cities/jp/sodekeurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:222208",
          "name": "裾野市",
          "country_code": "JP",
          "slug": "susonoshi",
          "canonical_path": "/cities/jp/susonoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462136",
          "name": "西之表市",
          "country_code": "JP",
          "slug": "nishinoomoteshi",
          "canonical_path": "/cities/jp/nishinoomoteshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382141",
          "name": "西予市",
          "country_code": "JP",
          "slug": "seiyoshi",
          "canonical_path": "/cities/jp/seiyoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:313904",
          "name": "西伯郡伯耆町",
          "country_code": "JP",
          "slug": "saihakugunhoukimachi",
          "canonical_path": "/cities/jp/saihakugunhoukimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:313891",
          "name": "西伯郡南部町",
          "country_code": "JP",
          "slug": "saihakugunnanbumachi",
          "canonical_path": "/cities/jp/saihakugunnanbumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:313866",
          "name": "西伯郡大山町",
          "country_code": "JP",
          "slug": "saihakugunooyamachou",
          "canonical_path": "/cities/jp/saihakugunooyamachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:133051",
          "name": "西多摩郡日の出町",
          "country_code": "JP",
          "slug": "nishitamagunhinodemachi",
          "canonical_path": "/cities/jp/nishitamagunhinodemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:133035",
          "name": "西多摩郡瑞穂町",
          "country_code": "JP",
          "slug": "nishitamagunmizuhomachi",
          "canonical_path": "/cities/jp/nishitamagunmizuhomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282049",
          "name": "西宮市",
          "country_code": "JP",
          "slug": "nishinomiyashi",
          "canonical_path": "/cities/jp/nishinomiyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232131",
          "name": "西尾市",
          "country_code": "JP",
          "slug": "nishioshi",
          "canonical_path": "/cities/jp/nishioshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:423084",
          "name": "西彼杵郡時津町",
          "country_code": "JP",
          "slug": "nishisonogiguntokitsumachi",
          "canonical_path": "/cities/jp/nishisonogiguntokitsumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:423076",
          "name": "西彼杵郡長与町",
          "country_code": "JP",
          "slug": "nishisonogigunchouyomachi",
          "canonical_path": "/cities/jp/nishisonogigunchouyomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:063240",
          "name": "西村山郡大江町",
          "country_code": "JP",
          "slug": "nishimurayamagunooechou",
          "canonical_path": "/cities/jp/nishimurayamagunooechou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:063231",
          "name": "西村山郡朝日町",
          "country_code": "JP",
          "slug": "nishimurayamagunasahimachi",
          "canonical_path": "/cities/jp/nishimurayamagunasahimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:063215",
          "name": "西村山郡河北町",
          "country_code": "JP",
          "slug": "nishimurayamagunkahokumachi",
          "canonical_path": "/cities/jp/nishimurayamagunkahokumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:382060",
          "name": "西条市",
          "country_code": "JP",
          "slug": "saijoushi",
          "canonical_path": "/cities/jp/saijoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132292",
          "name": "西東京市",
          "country_code": "JP",
          "slug": "nishitoukyoushi",
          "canonical_path": "/cities/jp/nishitoukyoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023230",
          "name": "西津軽郡深浦町",
          "country_code": "JP",
          "slug": "nishitsugarugunfukauramachi",
          "canonical_path": "/cities/jp/nishitsugarugunfukauramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:023213",
          "name": "西津軽郡鰺ヶ沢町",
          "country_code": "JP",
          "slug": "nishitsugarugunajikesawamachi",
          "canonical_path": "/cities/jp/nishitsugarugunajikesawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422126",
          "name": "西海市",
          "country_code": "JP",
          "slug": "saikaishi",
          "canonical_path": "/cities/jp/saikaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:304042",
          "name": "西牟婁郡上富田町",
          "country_code": "JP",
          "slug": "nishimurogujoutondachou",
          "canonical_path": "/cities/jp/nishimurogujoutondachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:304018",
          "name": "西牟婁郡白浜町",
          "country_code": "JP",
          "slug": "nishimurogunshirahamachou",
          "canonical_path": "/cities/jp/nishimurogunshirahamachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074641",
          "name": "西白河郡泉崎村",
          "country_code": "JP",
          "slug": "nishishirakawagunizumisakimura",
          "canonical_path": "/cities/jp/nishishirakawagunizumisakimura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074667",
          "name": "西白河郡矢吹町",
          "country_code": "JP",
          "slug": "nishishirakawagunyabukimachi",
          "canonical_path": "/cities/jp/nishishirakawagunyabukimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:074616",
          "name": "西白河郡西郷村",
          "country_code": "JP",
          "slug": "nishishirakawagunsaigoumura",
          "canonical_path": "/cities/jp/nishishirakawagunsaigoumura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:064017",
          "name": "西置賜郡小国町",
          "country_code": "JP",
          "slug": "nishiokitamagunogunimachi",
          "canonical_path": "/cities/jp/nishiokitamagunogunimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:064025",
          "name": "西置賜郡白鷹町",
          "country_code": "JP",
          "slug": "nishiokitamagunshiratakamachi",
          "canonical_path": "/cities/jp/nishiokitamagunshiratakamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:064033",
          "name": "西置賜郡飯豊町",
          "country_code": "JP",
          "slug": "nishiokitamaguniidemachi",
          "canonical_path": "/cities/jp/nishiokitamaguniidemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282138",
          "name": "西脇市",
          "country_code": "JP",
          "slug": "nishiwakishi",
          "canonical_path": "/cities/jp/nishiwakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:454419",
          "name": "西臼杵郡高千穂町",
          "country_code": "JP",
          "slug": "nishiusukiguntakachihomachi",
          "canonical_path": "/cities/jp/nishiusukiguntakachihomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:452084",
          "name": "西都市",
          "country_code": "JP",
          "slug": "saitoshi",
          "canonical_path": "/cities/jp/saitoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152111",
          "name": "見附市",
          "country_code": "JP",
          "slug": "mitsukeshi",
          "canonical_path": "/cities/jp/mitsukeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:372056",
          "name": "観音寺市",
          "country_code": "JP",
          "slug": "kan-onjishi",
          "canonical_path": "/cities/jp/kan-onjishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:042081",
          "name": "角田市",
          "country_code": "JP",
          "slug": "kakudashi",
          "canonical_path": "/cities/jp/kakudashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132080",
          "name": "調布市",
          "country_code": "JP",
          "slug": "choufushi",
          "canonical_path": "/cities/jp/choufushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202061",
          "name": "諏訪市",
          "country_code": "JP",
          "slug": "suwashi",
          "canonical_path": "/cities/jp/suwashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203611",
          "name": "諏訪郡下諏訪町",
          "country_code": "JP",
          "slug": "suwagunshimosuwamachi",
          "canonical_path": "/cities/jp/suwagunshimosuwamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203637",
          "name": "諏訪郡原村",
          "country_code": "JP",
          "slug": "suwagunharamura",
          "canonical_path": "/cities/jp/suwagunharamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:203629",
          "name": "諏訪郡富士見町",
          "country_code": "JP",
          "slug": "suwagunfujimichou",
          "canonical_path": "/cities/jp/suwagunfujimichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422045",
          "name": "諫早市",
          "country_code": "JP",
          "slug": "isahayashi",
          "canonical_path": "/cities/jp/isahayashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272035",
          "name": "豊中市",
          "country_code": "JP",
          "slug": "toyonakashi",
          "canonical_path": "/cities/jp/toyonakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402141",
          "name": "豊前市",
          "country_code": "JP",
          "slug": "buzenshi",
          "canonical_path": "/cities/jp/buzenshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282090",
          "name": "豊岡市",
          "country_code": "JP",
          "slug": "toyookashi",
          "canonical_path": "/cities/jp/toyookashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232076",
          "name": "豊川市",
          "country_code": "JP",
          "slug": "toyokawashi",
          "canonical_path": "/cities/jp/toyokawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442127",
          "name": "豊後大野市",
          "country_code": "JP",
          "slug": "bungooonoshi",
          "canonical_path": "/cities/jp/bungooonoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:442097",
          "name": "豊後高田市",
          "country_code": "JP",
          "slug": "bungotakadashi",
          "canonical_path": "/cities/jp/bungotakadashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232297",
          "name": "豊明市",
          "country_code": "JP",
          "slug": "toyoakeshi",
          "canonical_path": "/cities/jp/toyoakeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232017",
          "name": "豊橋市",
          "country_code": "JP",
          "slug": "toyohashishi",
          "canonical_path": "/cities/jp/toyohashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232114",
          "name": "豊田市",
          "country_code": "JP",
          "slug": "toyotashi",
          "canonical_path": "/cities/jp/toyotashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:273228",
          "name": "豊能郡能勢町",
          "country_code": "JP",
          "slug": "toyonogunnosemachi",
          "canonical_path": "/cities/jp/toyonogunnosemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:273210",
          "name": "豊能郡豊能町",
          "country_code": "JP",
          "slug": "toyonoguntoyonomachi",
          "canonical_path": "/cities/jp/toyonoguntoyonomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472123",
          "name": "豊見城市",
          "country_code": "JP",
          "slug": "tomigusukushi",
          "canonical_path": "/cities/jp/tomigusukushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272086",
          "name": "貝塚市",
          "country_code": "JP",
          "slug": "kaizukashi",
          "canonical_path": "/cities/jp/kaizukashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:223042",
          "name": "賀茂郡南伊豆町",
          "country_code": "JP",
          "slug": "kamogunminamiizumachi",
          "canonical_path": "/cities/jp/kamogunminamiizumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:223018",
          "name": "賀茂郡東伊豆町",
          "country_code": "JP",
          "slug": "kamogunhigashiizumachi",
          "canonical_path": "/cities/jp/kamogunhigashiizumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:223051",
          "name": "賀茂郡松崎町",
          "country_code": "JP",
          "slug": "kamogunmatsuzakimachi",
          "canonical_path": "/cities/jp/kamogunmatsuzakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:223026",
          "name": "賀茂郡河津町",
          "country_code": "JP",
          "slug": "kamogunkawazumachi",
          "canonical_path": "/cities/jp/kamogunkawazumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:223069",
          "name": "賀茂郡西伊豆町",
          "country_code": "JP",
          "slug": "kamogunnishiizumachi",
          "canonical_path": "/cities/jp/kamogunnishiizumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012181",
          "name": "赤平市",
          "country_code": "JP",
          "slug": "akabirashi",
          "canonical_path": "/cities/jp/akabirashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332135",
          "name": "赤磐市",
          "country_code": "JP",
          "slug": "akaiwashi",
          "canonical_path": "/cities/jp/akaiwashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282120",
          "name": "赤穂市",
          "country_code": "JP",
          "slug": "akoushi",
          "canonical_path": "/cities/jp/akoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:182095",
          "name": "越前市",
          "country_code": "JP",
          "slug": "echizenshi",
          "canonical_path": "/cities/jp/echizenshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112224",
          "name": "越谷市",
          "country_code": "JP",
          "slug": "koshigayashi",
          "canonical_path": "/cities/jp/koshigayashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092029",
          "name": "足利市",
          "country_code": "JP",
          "slug": "ashikagashi",
          "canonical_path": "/cities/jp/ashikagashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016471",
          "name": "足寄郡足寄町",
          "country_code": "JP",
          "slug": "ashorogunashoromachi",
          "canonical_path": "/cities/jp/ashorogunashoromachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143618",
          "name": "足柄上郡中井町",
          "country_code": "JP",
          "slug": "ashigarakamigunchuuimachi",
          "canonical_path": "/cities/jp/ashigarakamigunchuuimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143626",
          "name": "足柄上郡大井町",
          "country_code": "JP",
          "slug": "ashigarakamigunooichou",
          "canonical_path": "/cities/jp/ashigarakamigunooichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143642",
          "name": "足柄上郡山北町",
          "country_code": "JP",
          "slug": "ashigarakamikouriyamakitamachi",
          "canonical_path": "/cities/jp/ashigarakamikouriyamakitamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143634",
          "name": "足柄上郡松田町",
          "country_code": "JP",
          "slug": "ashigarakamigunmatsudamachi",
          "canonical_path": "/cities/jp/ashigarakamigunmatsudamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143669",
          "name": "足柄上郡開成町",
          "country_code": "JP",
          "slug": "ashigarakamigunkaiseimachi",
          "canonical_path": "/cities/jp/ashigarakamigunkaiseimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143847",
          "name": "足柄下郡湯河原町",
          "country_code": "JP",
          "slug": "ashigarashimogunyugawaramachi",
          "canonical_path": "/cities/jp/ashigarashimogunyugawaramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143839",
          "name": "足柄下郡真鶴町",
          "country_code": "JP",
          "slug": "ashigarashimogunmanatsurumachi",
          "canonical_path": "/cities/jp/ashigarashimogunmanatsurumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:143821",
          "name": "足柄下郡箱根町",
          "country_code": "JP",
          "slug": "ashigarashimogunhakonemachi",
          "canonical_path": "/cities/jp/ashigarashimogunhakonemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172049",
          "name": "輪島市",
          "country_code": "JP",
          "slug": "washimashi",
          "canonical_path": "/cities/jp/washimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252042",
          "name": "近江八幡市",
          "country_code": "JP",
          "slug": "oumihachimanshi",
          "canonical_path": "/cities/jp/oumihachimanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142085",
          "name": "逗子市",
          "country_code": "JP",
          "slug": "zushishi",
          "canonical_path": "/cities/jp/zushishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:045012",
          "name": "遠田郡涌谷町",
          "country_code": "JP",
          "slug": "toodagunwakuyamachi",
          "canonical_path": "/cities/jp/toodagunwakuyamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:045055",
          "name": "遠田郡美里町",
          "country_code": "JP",
          "slug": "toodagunmisatomachi",
          "canonical_path": "/cities/jp/toodagunmisatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403831",
          "name": "遠賀郡岡垣町",
          "country_code": "JP",
          "slug": "ongagunokagakichou",
          "canonical_path": "/cities/jp/ongagunokagakichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403822",
          "name": "遠賀郡水巻町",
          "country_code": "JP",
          "slug": "ongagunmizumakimachi",
          "canonical_path": "/cities/jp/ongagunmizumakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403814",
          "name": "遠賀郡芦屋町",
          "country_code": "JP",
          "slug": "ongagunashiyamachi",
          "canonical_path": "/cities/jp/ongagunashiyamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:403849",
          "name": "遠賀郡遠賀町",
          "country_code": "JP",
          "slug": "ongagunongamachi",
          "canonical_path": "/cities/jp/ongagunongamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032085",
          "name": "遠野市",
          "country_code": "JP",
          "slug": "toonoshi",
          "canonical_path": "/cities/jp/toonoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:324493",
          "name": "邑智郡邑南町",
          "country_code": "JP",
          "slug": "ouchigunyuuminamimachi",
          "canonical_path": "/cities/jp/ouchigunyuuminamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:105236",
          "name": "邑楽郡千代田町",
          "country_code": "JP",
          "slug": "ouragunchiyodamachi",
          "canonical_path": "/cities/jp/ouragunchiyodamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:105244",
          "name": "邑楽郡大泉町",
          "country_code": "JP",
          "slug": "ouragunooizumichou",
          "canonical_path": "/cities/jp/ouragunooizumichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:105228",
          "name": "邑楽郡明和町",
          "country_code": "JP",
          "slug": "ouragunmeiwamachi",
          "canonical_path": "/cities/jp/ouragunmeiwamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:105210",
          "name": "邑楽郡板倉町",
          "country_code": "JP",
          "slug": "ouragunitakuramachi",
          "canonical_path": "/cities/jp/ouragunitakuramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:105252",
          "name": "邑楽郡邑楽町",
          "country_code": "JP",
          "slug": "ouragunyuurakumachi",
          "canonical_path": "/cities/jp/ouragunyuurakumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402311",
          "name": "那珂川市",
          "country_code": "JP",
          "slug": "nakagawashi",
          "canonical_path": "/cities/jp/nakagawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082261",
          "name": "那珂市",
          "country_code": "JP",
          "slug": "nakashi",
          "canonical_path": "/cities/jp/nakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:083411",
          "name": "那珂郡東海村",
          "country_code": "JP",
          "slug": "nakaguntoukaimura",
          "canonical_path": "/cities/jp/nakaguntoukaimura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:472018",
          "name": "那覇市",
          "country_code": "JP",
          "slug": "nahashi",
          "canonical_path": "/cities/jp/nahashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:363685",
          "name": "那賀郡那賀町",
          "country_code": "JP",
          "slug": "nakagunnakamachi",
          "canonical_path": "/cities/jp/nakagunnakamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092134",
          "name": "那須塩原市",
          "country_code": "JP",
          "slug": "nasushiobarashi",
          "canonical_path": "/cities/jp/nasushiobarashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092151",
          "name": "那須烏山市",
          "country_code": "JP",
          "slug": "nasukarasuyamashi",
          "canonical_path": "/cities/jp/nasukarasuyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:094111",
          "name": "那須郡那珂川町",
          "country_code": "JP",
          "slug": "nasugunnakagawamachi",
          "canonical_path": "/cities/jp/nasugunnakagawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:094072",
          "name": "那須郡那須町",
          "country_code": "JP",
          "slug": "nasugunnasumachi",
          "canonical_path": "/cities/jp/nasugunnasumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212199",
          "name": "郡上市",
          "country_code": "JP",
          "slug": "gujoushi",
          "canonical_path": "/cities/jp/gujoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072036",
          "name": "郡山市",
          "country_code": "JP",
          "slug": "kouriyamashi",
          "canonical_path": "/cities/jp/kouriyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:452025",
          "name": "都城市",
          "country_code": "JP",
          "slug": "tomishiroshi",
          "canonical_path": "/cities/jp/tomishiroshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192040",
          "name": "都留市",
          "country_code": "JP",
          "slug": "tsurushi",
          "canonical_path": "/cities/jp/tsurushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062049",
          "name": "酒田市",
          "country_code": "JP",
          "slug": "sakatashi",
          "canonical_path": "/cities/jp/sakatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172120",
          "name": "野々市市",
          "country_code": "JP",
          "slug": "nonoichishi",
          "canonical_path": "/cities/jp/nonoichishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016918",
          "name": "野付郡別海町",
          "country_code": "JP",
          "slug": "notsukegunbekkaimachi",
          "canonical_path": "/cities/jp/notsukegunbekkaimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252107",
          "name": "野洲市",
          "country_code": "JP",
          "slug": "yasushi",
          "canonical_path": "/cities/jp/yasushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122084",
          "name": "野田市",
          "country_code": "JP",
          "slug": "nodashi",
          "canonical_path": "/cities/jp/nodashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:172014",
          "name": "金沢市",
          "country_code": "JP",
          "slug": "kanazawashi",
          "canonical_path": "/cities/jp/kanazawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032115",
          "name": "釜石市",
          "country_code": "JP",
          "slug": "kamaishishi",
          "canonical_path": "/cities/jp/kamaishishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:012068",
          "name": "釧路市",
          "country_code": "JP",
          "slug": "kushiroshi",
          "canonical_path": "/cities/jp/kushiroshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:016616",
          "name": "釧路郡釧路町",
          "country_code": "JP",
          "slug": "kushirogunkushiromachi",
          "canonical_path": "/cities/jp/kushirogunkushiromachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242071",
          "name": "鈴鹿市",
          "country_code": "JP",
          "slug": "suzukashi",
          "canonical_path": "/cities/jp/suzukashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082341",
          "name": "鉾田市",
          "country_code": "JP",
          "slug": "hokotashi",
          "canonical_path": "/cities/jp/hokotashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122025",
          "name": "銚子市",
          "country_code": "JP",
          "slug": "choushishi",
          "canonical_path": "/cities/jp/choushishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122246",
          "name": "鎌ケ谷市",
          "country_code": "JP",
          "slug": "kamaketanishi",
          "canonical_path": "/cities/jp/kamaketanishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:142042",
          "name": "鎌倉市",
          "country_code": "JP",
          "slug": "kamakurashi",
          "canonical_path": "/cities/jp/kamakurashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232386",
          "name": "長久手市",
          "country_code": "JP",
          "slug": "nagakuteshi",
          "canonical_path": "/cities/jp/nagakuteshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062090",
          "name": "長井市",
          "country_code": "JP",
          "slug": "nagaishi",
          "canonical_path": "/cities/jp/nagaishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:262099",
          "name": "長岡京市",
          "country_code": "JP",
          "slug": "nagaokakyoushi",
          "canonical_path": "/cities/jp/nagaokakyoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152021",
          "name": "長岡市",
          "country_code": "JP",
          "slug": "nagaokashi",
          "canonical_path": "/cities/jp/nagaokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422011",
          "name": "長崎市",
          "country_code": "JP",
          "slug": "nagasakishi",
          "canonical_path": "/cities/jp/nagasakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252034",
          "name": "長浜市",
          "country_code": "JP",
          "slug": "nagahamashi",
          "canonical_path": "/cities/jp/nagahamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124214",
          "name": "長生郡一宮町",
          "country_code": "JP",
          "slug": "chouseigunichinomiyachou",
          "canonical_path": "/cities/jp/chouseigunichinomiyachou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124249",
          "name": "長生郡白子町",
          "country_code": "JP",
          "slug": "chouseigunshirakomachi",
          "canonical_path": "/cities/jp/chouseigunshirakomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124222",
          "name": "長生郡睦沢町",
          "country_code": "JP",
          "slug": "chouseigunmutsuzawamachi",
          "canonical_path": "/cities/jp/chouseigunmutsuzawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124273",
          "name": "長生郡長南町",
          "country_code": "JP",
          "slug": "chouseigunchouminamimachi",
          "canonical_path": "/cities/jp/chouseigunchouminamimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124265",
          "name": "長生郡長柄町",
          "country_code": "JP",
          "slug": "chouseigunchougaramachi",
          "canonical_path": "/cities/jp/chouseigunchougaramachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:124231",
          "name": "長生郡長生村",
          "country_code": "JP",
          "slug": "chouseigunchounamamura",
          "canonical_path": "/cities/jp/chouseigunchounamamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202011",
          "name": "長野市",
          "country_code": "JP",
          "slug": "naganoshi",
          "canonical_path": "/cities/jp/naganoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352110",
          "name": "長門市",
          "country_code": "JP",
          "slug": "nagatoshi",
          "canonical_path": "/cities/jp/nagatoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272230",
          "name": "門真市",
          "country_code": "JP",
          "slug": "kadomashi",
          "canonical_path": "/cities/jp/kadomashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212059",
          "name": "関市",
          "country_code": "JP",
          "slug": "kanshi",
          "canonical_path": "/cities/jp/kanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272329",
          "name": "阪南市",
          "country_code": "JP",
          "slug": "hannanshi",
          "canonical_path": "/cities/jp/hannanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:352063",
          "name": "防府市",
          "country_code": "JP",
          "slug": "houfushi",
          "canonical_path": "/cities/jp/houfushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462063",
          "name": "阿久根市",
          "country_code": "JP",
          "slug": "akuneshi",
          "canonical_path": "/cities/jp/akuneshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:362042",
          "name": "阿南市",
          "country_code": "JP",
          "slug": "ananshi",
          "canonical_path": "/cities/jp/ananshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:362069",
          "name": "阿波市",
          "country_code": "JP",
          "slug": "awashi",
          "canonical_path": "/cities/jp/awashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:432148",
          "name": "阿蘇市",
          "country_code": "JP",
          "slug": "asoshi",
          "canonical_path": "/cities/jp/asoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434337",
          "name": "阿蘇郡南阿蘇村",
          "country_code": "JP",
          "slug": "asogunminamiasomura",
          "canonical_path": "/cities/jp/asogunminamiasomura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434248",
          "name": "阿蘇郡小国町",
          "country_code": "JP",
          "slug": "asogunogunimachi",
          "canonical_path": "/cities/jp/asogunogunimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434329",
          "name": "阿蘇郡西原村",
          "country_code": "JP",
          "slug": "asogunnishiharamura",
          "canonical_path": "/cities/jp/asogunnishiharamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:434281",
          "name": "阿蘇郡高森町",
          "country_code": "JP",
          "slug": "asoguntakamorichou",
          "canonical_path": "/cities/jp/asoguntakamorichou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152234",
          "name": "阿賀野市",
          "country_code": "JP",
          "slug": "aganoshi",
          "canonical_path": "/cities/jp/aganoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:032107",
          "name": "陸前高田市",
          "country_code": "JP",
          "slug": "rikuzentakatashi",
          "canonical_path": "/cities/jp/rikuzentakatashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:325287",
          "name": "隠岐郡隠岐の島町",
          "country_code": "JP",
          "slug": "okigunokinoshimamachi",
          "canonical_path": "/cities/jp/okigunokinoshimamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:054631",
          "name": "雄勝郡羽後町",
          "country_code": "JP",
          "slug": "okatsugunugomachi",
          "canonical_path": "/cities/jp/okatsugunugomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:422134",
          "name": "雲仙市",
          "country_code": "JP",
          "slug": "unzenshi",
          "canonical_path": "/cities/jp/unzenshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:322091",
          "name": "雲南市",
          "country_code": "JP",
          "slug": "unnanshi",
          "canonical_path": "/cities/jp/unnanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462187",
          "name": "霧島市",
          "country_code": "JP",
          "slug": "kirishimashi",
          "canonical_path": "/cities/jp/kirishimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:132055",
          "name": "青梅市",
          "country_code": "JP",
          "slug": "oumeshi",
          "canonical_path": "/cities/jp/oumeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022012",
          "name": "青森市",
          "country_code": "JP",
          "slug": "aomorishi",
          "canonical_path": "/cities/jp/aomorishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:221007",
          "name": "静岡市",
          "country_code": "JP",
          "slug": "shizuokashi",
          "canonical_path": "/cities/jp/shizuokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:404012",
          "name": "鞍手郡小竹町",
          "country_code": "JP",
          "slug": "kurategunkotakechou",
          "canonical_path": "/cities/jp/kurategunkotakechou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:404021",
          "name": "鞍手郡鞍手町",
          "country_code": "JP",
          "slug": "kurategunkuratemachi",
          "canonical_path": "/cities/jp/kurategunkuratemachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:192074",
          "name": "韮崎市",
          "country_code": "JP",
          "slug": "nirasakishi",
          "canonical_path": "/cities/jp/nirasakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202070",
          "name": "須坂市",
          "country_code": "JP",
          "slug": "suzakashi",
          "canonical_path": "/cities/jp/suzakashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392065",
          "name": "須崎市",
          "country_code": "JP",
          "slug": "susakishi",
          "canonical_path": "/cities/jp/susakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:072079",
          "name": "須賀川市",
          "country_code": "JP",
          "slug": "sukagawashi",
          "canonical_path": "/cities/jp/sukagawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212172",
          "name": "飛騨市",
          "country_code": "JP",
          "slug": "hidashi",
          "canonical_path": "/cities/jp/hidashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:402052",
          "name": "飯塚市",
          "country_code": "JP",
          "slug": "iizukashi",
          "canonical_path": "/cities/jp/iizukashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202134",
          "name": "飯山市",
          "country_code": "JP",
          "slug": "iiyamashi",
          "canonical_path": "/cities/jp/iiyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202053",
          "name": "飯田市",
          "country_code": "JP",
          "slug": "iidashi",
          "canonical_path": "/cities/jp/iidashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112097",
          "name": "飯能市",
          "country_code": "JP",
          "slug": "hannoushi",
          "canonical_path": "/cities/jp/hannoushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282227",
          "name": "養父市",
          "country_code": "JP",
          "slug": "youfushi",
          "canonical_path": "/cities/jp/youfushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122050",
          "name": "館山市",
          "country_code": "JP",
          "slug": "tateyamashi",
          "canonical_path": "/cities/jp/tateyamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102075",
          "name": "館林市",
          "country_code": "JP",
          "slug": "tatebayashishi",
          "canonical_path": "/cities/jp/tatebayashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122360",
          "name": "香取市",
          "country_code": "JP",
          "slug": "katorishi",
          "canonical_path": "/cities/jp/katorishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:123471",
          "name": "香取郡多古町",
          "country_code": "JP",
          "slug": "katoriguntakomachi",
          "canonical_path": "/cities/jp/katoriguntakomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:123498",
          "name": "香取郡東庄町",
          "country_code": "JP",
          "slug": "katoriguntounoshoumachi",
          "canonical_path": "/cities/jp/katoriguntounoshoumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:123421",
          "name": "香取郡神崎町",
          "country_code": "JP",
          "slug": "katorigunkanzakimachi",
          "canonical_path": "/cities/jp/katorigunkanzakimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392120",
          "name": "香美市",
          "country_code": "JP",
          "slug": "kamishi",
          "canonical_path": "/cities/jp/kamishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:292109",
          "name": "香芝市",
          "country_code": "JP",
          "slug": "kashibashi",
          "canonical_path": "/cities/jp/kashibashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:202100",
          "name": "駒ヶ根市",
          "country_code": "JP",
          "slug": "komaganeshi",
          "canonical_path": "/cities/jp/komaganeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:223441",
          "name": "駿東郡小山町",
          "country_code": "JP",
          "slug": "shuntougunoyamamachi",
          "canonical_path": "/cities/jp/shuntougunoyamamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:223417",
          "name": "駿東郡清水町",
          "country_code": "JP",
          "slug": "shuntougunshimizuchou",
          "canonical_path": "/cities/jp/shuntougunshimizuchou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:223425",
          "name": "駿東郡長泉町",
          "country_code": "JP",
          "slug": "shuntougunnagaizumimachi",
          "canonical_path": "/cities/jp/shuntougunnagaizumimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:212032",
          "name": "高山市",
          "country_code": "JP",
          "slug": "kouzanshi",
          "canonical_path": "/cities/jp/kouzanshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162027",
          "name": "高岡市",
          "country_code": "JP",
          "slug": "takaokashi",
          "canonical_path": "/cities/jp/takaokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:394017",
          "name": "高岡郡中土佐町",
          "country_code": "JP",
          "slug": "takaokagunchuutosamachi",
          "canonical_path": "/cities/jp/takaokagunchuutosamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:394025",
          "name": "高岡郡佐川町",
          "country_code": "JP",
          "slug": "takaokagunsagawamachi",
          "canonical_path": "/cities/jp/takaokagunsagawamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:394122",
          "name": "高岡郡四万十町",
          "country_code": "JP",
          "slug": "takaokagunshimantomachi",
          "canonical_path": "/cities/jp/takaokagunshimantomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:394114",
          "name": "高岡郡津野町",
          "country_code": "JP",
          "slug": "takaokaguntsunomachi",
          "canonical_path": "/cities/jp/takaokaguntsunomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:252123",
          "name": "高島市",
          "country_code": "JP",
          "slug": "takashimashi",
          "canonical_path": "/cities/jp/takashimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:102024",
          "name": "高崎市",
          "country_code": "JP",
          "slug": "takasakishi",
          "canonical_path": "/cities/jp/takasakishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:294021",
          "name": "高市郡明日香村",
          "country_code": "JP",
          "slug": "takaichigunasukamura",
          "canonical_path": "/cities/jp/takaichigunasukamura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:294012",
          "name": "高市郡高取町",
          "country_code": "JP",
          "slug": "takaichiguntakatorimachi",
          "canonical_path": "/cities/jp/takaichiguntakatorimachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:372013",
          "name": "高松市",
          "country_code": "JP",
          "slug": "takamatsushi",
          "canonical_path": "/cities/jp/takamatsushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:332097",
          "name": "高梁市",
          "country_code": "JP",
          "slug": "takahashishi",
          "canonical_path": "/cities/jp/takahashishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272078",
          "name": "高槻市",
          "country_code": "JP",
          "slug": "takatsukishi",
          "canonical_path": "/cities/jp/takatsukishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:232271",
          "name": "高浜市",
          "country_code": "JP",
          "slug": "takahamashi",
          "canonical_path": "/cities/jp/takahamashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:392014",
          "name": "高知市",
          "country_code": "JP",
          "slug": "kouchishi",
          "canonical_path": "/cities/jp/kouchishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:272256",
          "name": "高石市",
          "country_code": "JP",
          "slug": "takaishishi",
          "canonical_path": "/cities/jp/takaishishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:282162",
          "name": "高砂市",
          "country_code": "JP",
          "slug": "takasagoshi",
          "canonical_path": "/cities/jp/takasagoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082147",
          "name": "高萩市",
          "country_code": "JP",
          "slug": "takahagishi",
          "canonical_path": "/cities/jp/takahagishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:152251",
          "name": "魚沼市",
          "country_code": "JP",
          "slug": "uonumashi",
          "canonical_path": "/cities/jp/uonumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162043",
          "name": "魚津市",
          "country_code": "JP",
          "slug": "uozushi",
          "canonical_path": "/cities/jp/uozushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:182079",
          "name": "鯖江市",
          "country_code": "JP",
          "slug": "sabaeshi",
          "canonical_path": "/cities/jp/sabaeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:312011",
          "name": "鳥取市",
          "country_code": "JP",
          "slug": "tottorishi",
          "canonical_path": "/cities/jp/tottorishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:412031",
          "name": "鳥栖市",
          "country_code": "JP",
          "slug": "tosushi",
          "canonical_path": "/cities/jp/tosushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:242110",
          "name": "鳥羽市",
          "country_code": "JP",
          "slug": "tobashi",
          "canonical_path": "/cities/jp/tobashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:174611",
          "name": "鳳珠郡穴水町",
          "country_code": "JP",
          "slug": "housugunanamizumachi",
          "canonical_path": "/cities/jp/housugunanamizumachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:174637",
          "name": "鳳珠郡能登町",
          "country_code": "JP",
          "slug": "housugunnotomachi",
          "canonical_path": "/cities/jp/housugunnotomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:362026",
          "name": "鳴門市",
          "country_code": "JP",
          "slug": "narutoshi",
          "canonical_path": "/cities/jp/narutoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:122238",
          "name": "鴨川市",
          "country_code": "JP",
          "slug": "kamogawashi",
          "canonical_path": "/cities/jp/kamogawashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112178",
          "name": "鴻巣市",
          "country_code": "JP",
          "slug": "kounosushi",
          "canonical_path": "/cities/jp/kounosushi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:112411",
          "name": "鶴ヶ島市",
          "country_code": "JP",
          "slug": "tsurukeshimashi",
          "canonical_path": "/cities/jp/tsurukeshimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:062031",
          "name": "鶴岡市",
          "country_code": "JP",
          "slug": "tsuruokashi",
          "canonical_path": "/cities/jp/tsuruokashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462012",
          "name": "鹿児島市",
          "country_code": "JP",
          "slug": "kakoshimashi",
          "canonical_path": "/cities/jp/kakoshimashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:462039",
          "name": "鹿屋市",
          "country_code": "JP",
          "slug": "kanoyashi",
          "canonical_path": "/cities/jp/kanoyashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:092053",
          "name": "鹿沼市",
          "country_code": "JP",
          "slug": "kanumashi",
          "canonical_path": "/cities/jp/kanumashi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:052094",
          "name": "鹿角市",
          "country_code": "JP",
          "slug": "kazunoshi",
          "canonical_path": "/cities/jp/kazunoshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:325058",
          "name": "鹿足郡吉賀町",
          "country_code": "JP",
          "slug": "kanoashigunyoshikamachi",
          "canonical_path": "/cities/jp/kanoashigunyoshikamachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:325015",
          "name": "鹿足郡津和野町",
          "country_code": "JP",
          "slug": "kanoashiguntsuwanomachi",
          "canonical_path": "/cities/jp/kanoashiguntsuwanomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:044211",
          "name": "黒川郡大和町",
          "country_code": "JP",
          "slug": "kurokawagunyamatochou",
          "canonical_path": "/cities/jp/kurokawagunyamatochou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:044245",
          "name": "黒川郡大衡村",
          "country_code": "JP",
          "slug": "kurokawagunoohiramura",
          "canonical_path": "/cities/jp/kurokawagunoohiramura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:044229",
          "name": "黒川郡大郷町",
          "country_code": "JP",
          "slug": "kurokawagunoosatomachi",
          "canonical_path": "/cities/jp/kurokawagunoosatomachi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:022047",
          "name": "黒石市",
          "country_code": "JP",
          "slug": "kuroishishi",
          "canonical_path": "/cities/jp/kuroishishi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:162078",
          "name": "黒部市",
          "country_code": "JP",
          "slug": "kurobeshi",
          "canonical_path": "/cities/jp/kurobeshi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:jp:jis:082082",
          "name": "龍ケ崎市",
          "country_code": "JP",
          "slug": "ryuukesakishi",
          "canonical_path": "/cities/jp/ryuukesakishi/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "LV",
      "path": "cities/lv.json",
      "city_count": 34,
      "cities": [
        {
          "entity_id": "city:lv:wikidata:Q4600918",
          "name": "Ādaži",
          "country_code": "LV",
          "slug": "adazi",
          "canonical_path": "/cities/lv/adazi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600933",
          "name": "Aizkraukle",
          "country_code": "LV",
          "slug": "aizkraukle",
          "canonical_path": "/cities/lv/aizkraukle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:geonames:461602",
          "name": "Aizpute",
          "country_code": "LV",
          "slug": "aizpute",
          "canonical_path": "/cities/lv/aizpute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:geonames:864721",
          "name": "Baloži",
          "country_code": "LV",
          "slug": "balozi",
          "canonical_path": "/cities/lv/balozi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600922",
          "name": "Bauska",
          "country_code": "LV",
          "slug": "bauska",
          "canonical_path": "/cities/lv/bauska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600925",
          "name": "Cēsis",
          "country_code": "LV",
          "slug": "cesis",
          "canonical_path": "/cities/lv/cesis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q80046",
          "name": "Daugavpils",
          "country_code": "LV",
          "slug": "daugavpils",
          "canonical_path": "/cities/lv/daugavpils/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600923",
          "name": "Dobele",
          "country_code": "LV",
          "slug": "dobele",
          "canonical_path": "/cities/lv/dobele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:geonames:459598",
          "name": "Ikšķile",
          "country_code": "LV",
          "slug": "ikskile",
          "canonical_path": "/cities/lv/ikskile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q178382",
          "name": "Jūrmala",
          "country_code": "LV",
          "slug": "jurmala",
          "canonical_path": "/cities/lv/jurmala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:geonames:458972",
          "name": "Kārsava",
          "country_code": "LV",
          "slug": "karsava",
          "canonical_path": "/cities/lv/karsava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600930",
          "name": "Ķekava",
          "country_code": "LV",
          "slug": "kekava",
          "canonical_path": "/cities/lv/kekava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600928",
          "name": "Krāslava",
          "country_code": "LV",
          "slug": "kraslava",
          "canonical_path": "/cities/lv/kraslava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:geonames:458511",
          "name": "Krustpils",
          "country_code": "LV",
          "slug": "krustpils",
          "canonical_path": "/cities/lv/krustpils/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600929",
          "name": "Kuldīga",
          "country_code": "LV",
          "slug": "kuldiga",
          "canonical_path": "/cities/lv/kuldiga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:geonames:457965",
          "name": "Lielvārde",
          "country_code": "LV",
          "slug": "lielvarde",
          "canonical_path": "/cities/lv/lielvarde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q167718",
          "name": "Liepāja",
          "country_code": "LV",
          "slug": "liepaja",
          "canonical_path": "/cities/lv/liepaja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600931",
          "name": "Limbaži",
          "country_code": "LV",
          "slug": "limbazi",
          "canonical_path": "/cities/lv/limbazi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600932",
          "name": "Līvāni",
          "country_code": "LV",
          "slug": "livani",
          "canonical_path": "/cities/lv/livani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600935",
          "name": "Madona",
          "country_code": "LV",
          "slug": "madona",
          "canonical_path": "/cities/lv/madona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600936",
          "name": "Mārupe",
          "country_code": "LV",
          "slug": "marupe",
          "canonical_path": "/cities/lv/marupe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600937",
          "name": "Ogre",
          "country_code": "LV",
          "slug": "ogre",
          "canonical_path": "/cities/lv/ogre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600938",
          "name": "Olaine",
          "country_code": "LV",
          "slug": "olaine",
          "canonical_path": "/cities/lv/olaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600939",
          "name": "Preiļi",
          "country_code": "LV",
          "slug": "preili",
          "canonical_path": "/cities/lv/preili/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q1773",
          "name": "Rīga",
          "country_code": "LV",
          "slug": "riga",
          "canonical_path": "/cities/lv/riga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600942",
          "name": "Salaspils",
          "country_code": "LV",
          "slug": "salaspils",
          "canonical_path": "/cities/lv/salaspils/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600943",
          "name": "Saldus",
          "country_code": "LV",
          "slug": "saldus",
          "canonical_path": "/cities/lv/saldus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600944",
          "name": "Saulkrasti",
          "country_code": "LV",
          "slug": "saulkrasti",
          "canonical_path": "/cities/lv/saulkrasti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600945",
          "name": "Sigulda",
          "country_code": "LV",
          "slug": "sigulda",
          "canonical_path": "/cities/lv/sigulda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600946",
          "name": "Smiltene",
          "country_code": "LV",
          "slug": "smiltene",
          "canonical_path": "/cities/lv/smiltene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600947",
          "name": "Talsi",
          "country_code": "LV",
          "slug": "talsi",
          "canonical_path": "/cities/lv/talsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600948",
          "name": "Tukums",
          "country_code": "LV",
          "slug": "tukums",
          "canonical_path": "/cities/lv/tukums/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:geonames:454714",
          "name": "Ulbroka",
          "country_code": "LV",
          "slug": "ulbroka",
          "canonical_path": "/cities/lv/ulbroka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lv:wikidata:Q4600949",
          "name": "Valka",
          "country_code": "LV",
          "slug": "valka",
          "canonical_path": "/cities/lv/valka/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "LT",
      "path": "cities/lt.json",
      "city_count": 45,
      "cities": [
        {
          "entity_id": "city:lt:geonames:601084",
          "name": "Alytus",
          "country_code": "LT",
          "slug": "alytus",
          "canonical_path": "/cities/lt/alytus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:600994",
          "name": "Anykščiai",
          "country_code": "LT",
          "slug": "anyksciai",
          "canonical_path": "/cities/lt/anyksciai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:600438",
          "name": "Birzai",
          "country_code": "LT",
          "slug": "birzai",
          "canonical_path": "/cities/lt/birzai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:599757",
          "name": "Druskininkai",
          "country_code": "LT",
          "slug": "druskininkai",
          "canonical_path": "/cities/lt/druskininkai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:599602",
          "name": "Elektrėnai",
          "country_code": "LT",
          "slug": "elektrenai",
          "canonical_path": "/cities/lt/elektrenai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:599506",
          "name": "Gargždai",
          "country_code": "LT",
          "slug": "gargzdai",
          "canonical_path": "/cities/lt/gargzdai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598998",
          "name": "Ignalina",
          "country_code": "LT",
          "slug": "ignalina",
          "canonical_path": "/cities/lt/ignalina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598818",
          "name": "Jonava",
          "country_code": "LT",
          "slug": "jonava",
          "canonical_path": "/cities/lt/jonava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598796",
          "name": "Joniškis",
          "country_code": "LT",
          "slug": "joniskis",
          "canonical_path": "/cities/lt/joniskis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598655",
          "name": "Jurbarkas",
          "country_code": "LT",
          "slug": "jurbarkas",
          "canonical_path": "/cities/lt/jurbarkas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598567",
          "name": "Kaišiadorys",
          "country_code": "LT",
          "slug": "kaisiadorys",
          "canonical_path": "/cities/lt/kaisiadorys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598316",
          "name": "Kaunas",
          "country_code": "LT",
          "slug": "kaunas",
          "canonical_path": "/cities/lt/kaunas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598286",
          "name": "Kazlų Rūda",
          "country_code": "LT",
          "slug": "kazlu-ruda",
          "canonical_path": "/cities/lt/kazlu-ruda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598272",
          "name": "Kėdainiai",
          "country_code": "LT",
          "slug": "kedainiai",
          "canonical_path": "/cities/lt/kedainiai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598257",
          "name": "Kelmė",
          "country_code": "LT",
          "slug": "kelme",
          "canonical_path": "/cities/lt/kelme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:598098",
          "name": "Klaipėda",
          "country_code": "LT",
          "slug": "klaipeda",
          "canonical_path": "/cities/lt/klaipeda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:597989",
          "name": "Kretinga",
          "country_code": "LT",
          "slug": "kretinga",
          "canonical_path": "/cities/lt/kretinga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:597806",
          "name": "Kupiskis",
          "country_code": "LT",
          "slug": "kupiskis",
          "canonical_path": "/cities/lt/kupiskis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:597769",
          "name": "Kuršėnai",
          "country_code": "LT",
          "slug": "kursenai",
          "canonical_path": "/cities/lt/kursenai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:597231",
          "name": "Marijampolė",
          "country_code": "LT",
          "slug": "marijampole",
          "canonical_path": "/cities/lt/marijampole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:597188",
          "name": "Mazeikiai",
          "country_code": "LT",
          "slug": "mazeikiai",
          "canonical_path": "/cities/lt/mazeikiai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:596867",
          "name": "Molėtai",
          "country_code": "LT",
          "slug": "moletai",
          "canonical_path": "/cities/lt/moletai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:596719",
          "name": "Naujoji Akmene",
          "country_code": "LT",
          "slug": "naujoji-akmene",
          "canonical_path": "/cities/lt/naujoji-akmene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:596664",
          "name": "Nemenčinė",
          "country_code": "LT",
          "slug": "nemencine",
          "canonical_path": "/cities/lt/nemencine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:596238",
          "name": "Palanga",
          "country_code": "LT",
          "slug": "palanga",
          "canonical_path": "/cities/lt/palanga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:596128",
          "name": "Panevėžys",
          "country_code": "LT",
          "slug": "panevezys",
          "canonical_path": "/cities/lt/panevezys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:595997",
          "name": "Pasvalys",
          "country_code": "LT",
          "slug": "pasvalys",
          "canonical_path": "/cities/lt/pasvalys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:595689",
          "name": "Plunge",
          "country_code": "LT",
          "slug": "plunge",
          "canonical_path": "/cities/lt/plunge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:595596",
          "name": "Prienai",
          "country_code": "LT",
          "slug": "prienai",
          "canonical_path": "/cities/lt/prienai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:595449",
          "name": "Radviliskis",
          "country_code": "LT",
          "slug": "radviliskis",
          "canonical_path": "/cities/lt/radviliskis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:595378",
          "name": "Raseiniai",
          "country_code": "LT",
          "slug": "raseiniai",
          "canonical_path": "/cities/lt/raseiniai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:595213",
          "name": "Rokiškis",
          "country_code": "LT",
          "slug": "rokiskis",
          "canonical_path": "/cities/lt/rokiskis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:595016",
          "name": "Šalčininkai",
          "country_code": "LT",
          "slug": "salcininkai",
          "canonical_path": "/cities/lt/salcininkai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:594739",
          "name": "Šiauliai",
          "country_code": "LT",
          "slug": "siauliai",
          "canonical_path": "/cities/lt/siauliai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:594656",
          "name": "Silute",
          "country_code": "LT",
          "slug": "silute",
          "canonical_path": "/cities/lt/silute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:594607",
          "name": "Širvintos",
          "country_code": "LT",
          "slug": "sirvintos",
          "canonical_path": "/cities/lt/sirvintos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:594488",
          "name": "Skuodas",
          "country_code": "LT",
          "slug": "skuodas",
          "canonical_path": "/cities/lt/skuodas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:593959",
          "name": "Taurage",
          "country_code": "LT",
          "slug": "taurage",
          "canonical_path": "/cities/lt/taurage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:593926",
          "name": "Telsiai",
          "country_code": "LT",
          "slug": "telsiai",
          "canonical_path": "/cities/lt/telsiai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:593733",
          "name": "Ukmerge",
          "country_code": "LT",
          "slug": "ukmerge",
          "canonical_path": "/cities/lt/ukmerge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:593672",
          "name": "Utena",
          "country_code": "LT",
          "slug": "utena",
          "canonical_path": "/cities/lt/utena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:593406",
          "name": "Varėna",
          "country_code": "LT",
          "slug": "varena",
          "canonical_path": "/cities/lt/varena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:wikidata:Q216",
          "name": "Vilnius",
          "country_code": "LT",
          "slug": "vilnius",
          "canonical_path": "/cities/lt/vilnius/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:593063",
          "name": "Visaginas",
          "country_code": "LT",
          "slug": "visaginas",
          "canonical_path": "/cities/lt/visaginas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lt:geonames:592891",
          "name": "Zarasai",
          "country_code": "LT",
          "slug": "zarasai",
          "canonical_path": "/cities/lt/zarasai/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "LU",
      "path": "cities/lu.json",
      "city_count": 31,
      "cities": [
        {
          "entity_id": "city:lu:geonames:2960800",
          "name": "Belvaux",
          "country_code": "LU",
          "slug": "belvaux",
          "canonical_path": "/cities/lu/belvaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0501",
          "name": "Clervaux",
          "country_code": "LU",
          "slug": "clervaux",
          "canonical_path": "/cities/lu/clervaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0202",
          "name": "Differdange",
          "country_code": "LU",
          "slug": "differdange",
          "canonical_path": "/cities/lu/differdange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0203",
          "name": "Dudelange",
          "country_code": "LU",
          "slug": "dudelange",
          "canonical_path": "/cities/lu/dudelange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:1005",
          "name": "Echternach",
          "country_code": "LU",
          "slug": "echternach",
          "canonical_path": "/cities/lu/echternach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0204",
          "name": "Esch-sur-Alzette",
          "country_code": "LU",
          "slug": "esch-sur-alzette",
          "canonical_path": "/cities/lu/esch-sur-alzette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0605",
          "name": "Ettelbruck",
          "country_code": "LU",
          "slug": "ettelbruck",
          "canonical_path": "/cities/lu/ettelbruck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0205",
          "name": "Frisange",
          "country_code": "LU",
          "slug": "frisange",
          "canonical_path": "/cities/lu/frisange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0103",
          "name": "Habscht",
          "country_code": "LU",
          "slug": "habscht",
          "canonical_path": "/cities/lu/habscht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0403",
          "name": "Helperknapp",
          "country_code": "LU",
          "slug": "helperknapp",
          "canonical_path": "/cities/lu/helperknapp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0303",
          "name": "Hesperange",
          "country_code": "LU",
          "slug": "hesperange",
          "canonical_path": "/cities/lu/hesperange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:geonames:7290933",
          "name": "Howald",
          "country_code": "LU",
          "slug": "howald",
          "canonical_path": "/cities/lu/howald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:1105",
          "name": "Junglinster",
          "country_code": "LU",
          "slug": "junglinster",
          "canonical_path": "/cities/lu/junglinster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0104",
          "name": "Käerjeng",
          "country_code": "LU",
          "slug": "kaerjeng",
          "canonical_path": "/cities/lu/kaerjeng/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0206",
          "name": "Kayl",
          "country_code": "LU",
          "slug": "kayl",
          "canonical_path": "/cities/lu/kayl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0105",
          "name": "Kehlen",
          "country_code": "LU",
          "slug": "kehlen",
          "canonical_path": "/cities/lu/kehlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0304",
          "name": "Luxembourg",
          "country_code": "LU",
          "slug": "luxembourg",
          "canonical_path": "/cities/lu/luxembourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0409",
          "name": "Mersch",
          "country_code": "LU",
          "slug": "mersch",
          "canonical_path": "/cities/lu/mersch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:1107",
          "name": "Mertert",
          "country_code": "LU",
          "slug": "mertert",
          "canonical_path": "/cities/lu/mertert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0208",
          "name": "Mondercange",
          "country_code": "LU",
          "slug": "mondercange",
          "canonical_path": "/cities/lu/mondercange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:1204",
          "name": "Mondorf-les-Bains",
          "country_code": "LU",
          "slug": "mondorf-les-bains",
          "canonical_path": "/cities/lu/mondorf-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0305",
          "name": "Niederanven",
          "country_code": "LU",
          "slug": "niederanven",
          "canonical_path": "/cities/lu/niederanven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:geonames:2960143",
          "name": "Rodange",
          "country_code": "LU",
          "slug": "rodange",
          "canonical_path": "/cities/lu/rodange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0211",
          "name": "Roeser",
          "country_code": "LU",
          "slug": "roeser",
          "canonical_path": "/cities/lu/roeser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0212",
          "name": "Rumelange",
          "country_code": "LU",
          "slug": "rumelange",
          "canonical_path": "/cities/lu/rumelange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0213",
          "name": "Sanem",
          "country_code": "LU",
          "slug": "sanem",
          "canonical_path": "/cities/lu/sanem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:geonames:2960067",
          "name": "Soleuvre",
          "country_code": "LU",
          "slug": "soleuvre",
          "canonical_path": "/cities/lu/soleuvre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0110",
          "name": "Steinfort",
          "country_code": "LU",
          "slug": "steinfort",
          "canonical_path": "/cities/lu/steinfort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0308",
          "name": "Steinsel",
          "country_code": "LU",
          "slug": "steinsel",
          "canonical_path": "/cities/lu/steinsel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0807",
          "name": "Wiltz",
          "country_code": "LU",
          "slug": "wiltz",
          "canonical_path": "/cities/lu/wiltz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:lu:statec_commune:0502",
          "name": "Wincrange",
          "country_code": "LU",
          "slug": "wincrange",
          "canonical_path": "/cities/lu/wincrange/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "MT",
      "path": "cities/mt.json",
      "city_count": 15,
      "cities": [
        {
          "entity_id": "city:mt:locality:14",
          "name": "Birkirkara",
          "country_code": "MT",
          "slug": "birkirkara",
          "canonical_path": "/cities/mt/birkirkara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:15",
          "name": "Birżebbuġa",
          "country_code": "MT",
          "slug": "birzebbuga",
          "canonical_path": "/cities/mt/birzebbuga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:geonames:2563181",
          "name": "Cospicua",
          "country_code": "MT",
          "slug": "cospicua",
          "canonical_path": "/cities/mt/cospicua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:12",
          "name": "Ħ’Attard",
          "country_code": "MT",
          "slug": "h-attard",
          "canonical_path": "/cities/mt/h-attard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:10",
          "name": "Iż-Żejtun",
          "country_code": "MT",
          "slug": "iz-zejtun",
          "canonical_path": "/cities/mt/iz-zejtun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:41",
          "name": "L-Imsida",
          "country_code": "MT",
          "slug": "l-imsida",
          "canonical_path": "/cities/mt/l-imsida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:35",
          "name": "Marsaskala",
          "country_code": "MT",
          "slug": "marsaskala",
          "canonical_path": "/cities/mt/marsaskala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:39",
          "name": "Mosta",
          "country_code": "MT",
          "slug": "mosta",
          "canonical_path": "/cities/mt/mosta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:45",
          "name": "Paola",
          "country_code": "MT",
          "slug": "paola",
          "canonical_path": "/cities/mt/paola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:52",
          "name": "San Ġiljan",
          "country_code": "MT",
          "slug": "san-giljan",
          "canonical_path": "/cities/mt/san-giljan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:53",
          "name": "San Ġwann",
          "country_code": "MT",
          "slug": "san-gwann",
          "canonical_path": "/cities/mt/san-gwann/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:55",
          "name": "San Pawl il-Baħar",
          "country_code": "MT",
          "slug": "san-pawl-il-bahar",
          "canonical_path": "/cities/mt/san-pawl-il-bahar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:58",
          "name": "Santa Venera",
          "country_code": "MT",
          "slug": "santa-venera",
          "canonical_path": "/cities/mt/santa-venera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:locality:59",
          "name": "Sliema",
          "country_code": "MT",
          "slug": "sliema",
          "canonical_path": "/cities/mt/sliema/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:mt:wikidata:Q23800",
          "name": "Valletta",
          "country_code": "MT",
          "slug": "valletta",
          "canonical_path": "/cities/mt/valletta/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "NL",
      "path": "cities/nl.json",
      "city_count": 607,
      "cities": [
        {
          "entity_id": "city:nl:wikidata:Q36600",
          "name": "'s-Gravenhage",
          "country_code": "NL",
          "slug": "s-gravenhage",
          "canonical_path": "/cities/nl/s-gravenhage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747364",
          "name": "'s-Gravenzande",
          "country_code": "NL",
          "slug": "s-gravenzande",
          "canonical_path": "/cities/nl/s-gravenzande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9807",
          "name": "'s-Hertogenbosch",
          "country_code": "NL",
          "slug": "s-hertogenbosch",
          "canonical_path": "/cities/nl/s-hertogenbosch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q300665",
          "name": "Aa en Hunze",
          "country_code": "NL",
          "slug": "aa-en-hunze",
          "canonical_path": "/cities/nl/aa-en-hunze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2760144",
          "name": "Aalburg",
          "country_code": "NL",
          "slug": "aalburg",
          "canonical_path": "/cities/nl/aalburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9897",
          "name": "Aalsmeer",
          "country_code": "NL",
          "slug": "aalsmeer",
          "canonical_path": "/cities/nl/aalsmeer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q275909",
          "name": "Aalten",
          "country_code": "NL",
          "slug": "aalten",
          "canonical_path": "/cities/nl/aalten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:6698718",
          "name": "Aarle-Rixtel",
          "country_code": "NL",
          "slug": "aarle-rixtel",
          "canonical_path": "/cities/nl/aarle-rixtel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2760067",
          "name": "Abcoude",
          "country_code": "NL",
          "slug": "abcoude",
          "canonical_path": "/cities/nl/abcoude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q341024",
          "name": "Achtkarspelen",
          "country_code": "NL",
          "slug": "achtkarspelen",
          "canonical_path": "/cities/nl/achtkarspelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759931",
          "name": "Akersloot",
          "country_code": "NL",
          "slug": "akersloot",
          "canonical_path": "/cities/nl/akersloot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q736131",
          "name": "Alblasserdam",
          "country_code": "NL",
          "slug": "alblasserdam",
          "canonical_path": "/cities/nl/alblasserdam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q934525",
          "name": "Albrandswaard",
          "country_code": "NL",
          "slug": "albrandswaard",
          "canonical_path": "/cities/nl/albrandswaard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q972",
          "name": "Alkmaar",
          "country_code": "NL",
          "slug": "alkmaar",
          "canonical_path": "/cities/nl/alkmaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q988",
          "name": "Almelo",
          "country_code": "NL",
          "slug": "almelo",
          "canonical_path": "/cities/nl/almelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q83178",
          "name": "Almere",
          "country_code": "NL",
          "slug": "almere",
          "canonical_path": "/cities/nl/almere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759879",
          "name": "Almere Stad",
          "country_code": "NL",
          "slug": "almere-stad",
          "canonical_path": "/cities/nl/almere-stad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q213246",
          "name": "Alphen aan den Rijn",
          "country_code": "NL",
          "slug": "alphen-aan-den-rijn",
          "canonical_path": "/cities/nl/alphen-aan-den-rijn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9809",
          "name": "Alphen-Chaam",
          "country_code": "NL",
          "slug": "alphen-chaam",
          "canonical_path": "/cities/nl/alphen-chaam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q28057171",
          "name": "Altena",
          "country_code": "NL",
          "slug": "altena",
          "canonical_path": "/cities/nl/altena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759850",
          "name": "Amby",
          "country_code": "NL",
          "slug": "amby",
          "canonical_path": "/cities/nl/amby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759828",
          "name": "Amerongen",
          "country_code": "NL",
          "slug": "amerongen",
          "canonical_path": "/cities/nl/amerongen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q992",
          "name": "Amersfoort",
          "country_code": "NL",
          "slug": "amersfoort",
          "canonical_path": "/cities/nl/amersfoort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9898",
          "name": "Amstelveen",
          "country_code": "NL",
          "slug": "amstelveen",
          "canonical_path": "/cities/nl/amstelveen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9899",
          "name": "Amsterdam",
          "country_code": "NL",
          "slug": "amsterdam",
          "canonical_path": "/cities/nl/amsterdam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759774",
          "name": "Andijk",
          "country_code": "NL",
          "slug": "andijk",
          "canonical_path": "/cities/nl/andijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759737",
          "name": "Anna Paulowna",
          "country_code": "NL",
          "slug": "anna-paulowna",
          "canonical_path": "/cities/nl/anna-paulowna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q101918",
          "name": "Apeldoorn",
          "country_code": "NL",
          "slug": "apeldoorn",
          "canonical_path": "/cities/nl/apeldoorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759687",
          "name": "Appingedam",
          "country_code": "NL",
          "slug": "appingedam",
          "canonical_path": "/cities/nl/appingedam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759684",
          "name": "Arcen",
          "country_code": "NL",
          "slug": "arcen",
          "canonical_path": "/cities/nl/arcen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759664",
          "name": "Arnemuiden",
          "country_code": "NL",
          "slug": "arnemuiden",
          "canonical_path": "/cities/nl/arnemuiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1310",
          "name": "Arnhem",
          "country_code": "NL",
          "slug": "arnhem",
          "canonical_path": "/cities/nl/arnhem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q798",
          "name": "Assen",
          "country_code": "NL",
          "slug": "assen",
          "canonical_path": "/cities/nl/assen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759631",
          "name": "Assendelft",
          "country_code": "NL",
          "slug": "assendelft",
          "canonical_path": "/cities/nl/assendelft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9810",
          "name": "Asten",
          "country_code": "NL",
          "slug": "asten",
          "canonical_path": "/cities/nl/asten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759594",
          "name": "Axel",
          "country_code": "NL",
          "slug": "axel",
          "canonical_path": "/cities/nl/axel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9811",
          "name": "Baarle-Nassau",
          "country_code": "NL",
          "slug": "baarle-nassau",
          "canonical_path": "/cities/nl/baarle-nassau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759549",
          "name": "Baarlo",
          "country_code": "NL",
          "slug": "baarlo",
          "canonical_path": "/cities/nl/baarlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10027",
          "name": "Baarn",
          "country_code": "NL",
          "slug": "baarn",
          "canonical_path": "/cities/nl/baarn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759524",
          "name": "Badhoevedorp",
          "country_code": "NL",
          "slug": "badhoevedorp",
          "canonical_path": "/cities/nl/badhoevedorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q204239",
          "name": "Barendrecht",
          "country_code": "NL",
          "slug": "barendrecht",
          "canonical_path": "/cities/nl/barendrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q164098",
          "name": "Barneveld",
          "country_code": "NL",
          "slug": "barneveld",
          "canonical_path": "/cities/nl/barneveld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759381",
          "name": "Bathmen",
          "country_code": "NL",
          "slug": "bathmen",
          "canonical_path": "/cities/nl/bathmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759356",
          "name": "Bedum",
          "country_code": "NL",
          "slug": "bedum",
          "canonical_path": "/cities/nl/bedum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759349",
          "name": "Beek",
          "country_code": "NL",
          "slug": "beek",
          "canonical_path": "/cities/nl/beek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759350",
          "name": "Beek",
          "country_code": "NL",
          "slug": "beek-05-0888",
          "canonical_path": "/cities/nl/beek-05-0888/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q29957432",
          "name": "Beekdaelen",
          "country_code": "NL",
          "slug": "beekdaelen",
          "canonical_path": "/cities/nl/beekdaelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9805",
          "name": "Beesel",
          "country_code": "NL",
          "slug": "beesel",
          "canonical_path": "/cities/nl/beesel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759271",
          "name": "Beilen",
          "country_code": "NL",
          "slug": "beilen",
          "canonical_path": "/cities/nl/beilen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759256",
          "name": "Belfeld",
          "country_code": "NL",
          "slug": "belfeld",
          "canonical_path": "/cities/nl/belfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759231",
          "name": "Bemmel",
          "country_code": "NL",
          "slug": "bemmel",
          "canonical_path": "/cities/nl/bemmel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759199",
          "name": "Bennebroek",
          "country_code": "NL",
          "slug": "bennebroek",
          "canonical_path": "/cities/nl/bennebroek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759197",
          "name": "Bennekom",
          "country_code": "NL",
          "slug": "bennekom",
          "canonical_path": "/cities/nl/bennekom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759178",
          "name": "Benthuizen",
          "country_code": "NL",
          "slug": "benthuizen",
          "canonical_path": "/cities/nl/benthuizen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q18088965",
          "name": "Berg en Dal",
          "country_code": "NL",
          "slug": "berg-en-dal",
          "canonical_path": "/cities/nl/berg-en-dal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9812",
          "name": "Bergeijk",
          "country_code": "NL",
          "slug": "bergeijk",
          "canonical_path": "/cities/nl/bergeijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759154",
          "name": "Bergen",
          "country_code": "NL",
          "slug": "bergen",
          "canonical_path": "/cities/nl/bergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9804",
          "name": "Bergen (L.)",
          "country_code": "NL",
          "slug": "bergen-l",
          "canonical_path": "/cities/nl/bergen-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9901",
          "name": "Bergen (NH.)",
          "country_code": "NL",
          "slug": "bergen-nh",
          "canonical_path": "/cities/nl/bergen-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9814",
          "name": "Bergen op Zoom",
          "country_code": "NL",
          "slug": "bergen-op-zoom",
          "canonical_path": "/cities/nl/bergen-op-zoom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759126",
          "name": "Berghem",
          "country_code": "NL",
          "slug": "berghem",
          "canonical_path": "/cities/nl/berghem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759113",
          "name": "Bergschenhoek",
          "country_code": "NL",
          "slug": "bergschenhoek",
          "canonical_path": "/cities/nl/bergschenhoek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:6929992",
          "name": "Berkel en Rodenrijs",
          "country_code": "NL",
          "slug": "berkel-en-rodenrijs",
          "canonical_path": "/cities/nl/berkel-en-rodenrijs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q47104",
          "name": "Berkelland",
          "country_code": "NL",
          "slug": "berkelland",
          "canonical_path": "/cities/nl/berkelland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9815",
          "name": "Bernheze",
          "country_code": "NL",
          "slug": "bernheze",
          "canonical_path": "/cities/nl/bernheze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9816",
          "name": "Best",
          "country_code": "NL",
          "slug": "best",
          "canonical_path": "/cities/nl/best/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q851244",
          "name": "Beuningen",
          "country_code": "NL",
          "slug": "beuningen",
          "canonical_path": "/cities/nl/beuningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9905",
          "name": "Beverwijk",
          "country_code": "NL",
          "slug": "beverwijk",
          "canonical_path": "/cities/nl/beverwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758992",
          "name": "Biddinghuizen",
          "country_code": "NL",
          "slug": "biddinghuizen",
          "canonical_path": "/cities/nl/biddinghuizen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758927",
          "name": "Bilthoven",
          "country_code": "NL",
          "slug": "bilthoven",
          "canonical_path": "/cities/nl/bilthoven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9817",
          "name": "Bladel",
          "country_code": "NL",
          "slug": "bladel",
          "canonical_path": "/cities/nl/bladel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9906",
          "name": "Blaricum",
          "country_code": "NL",
          "slug": "blaricum",
          "canonical_path": "/cities/nl/blaricum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758838",
          "name": "Bleiswijk",
          "country_code": "NL",
          "slug": "bleiswijk",
          "canonical_path": "/cities/nl/bleiswijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758831",
          "name": "Blerick",
          "country_code": "NL",
          "slug": "blerick",
          "canonical_path": "/cities/nl/blerick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9908",
          "name": "Bloemendaal",
          "country_code": "NL",
          "slug": "bloemendaal",
          "canonical_path": "/cities/nl/bloemendaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758765",
          "name": "Bodegraven",
          "country_code": "NL",
          "slug": "bodegraven",
          "canonical_path": "/cities/nl/bodegraven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q889423",
          "name": "Bodegraven-Reeuwijk",
          "country_code": "NL",
          "slug": "bodegraven-reeuwijk",
          "canonical_path": "/cities/nl/bodegraven-reeuwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9818",
          "name": "Boekel",
          "country_code": "NL",
          "slug": "boekel",
          "canonical_path": "/cities/nl/boekel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758686",
          "name": "Bolnes",
          "country_code": "NL",
          "slug": "bolnes",
          "canonical_path": "/cities/nl/bolnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758682",
          "name": "Bolsward",
          "country_code": "NL",
          "slug": "bolsward",
          "canonical_path": "/cities/nl/bolsward/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758626",
          "name": "Borculo",
          "country_code": "NL",
          "slug": "borculo",
          "canonical_path": "/cities/nl/borculo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q835118",
          "name": "Borger-Odoorn",
          "country_code": "NL",
          "slug": "borger-odoorn",
          "canonical_path": "/cities/nl/borger-odoorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9997",
          "name": "Borne",
          "country_code": "NL",
          "slug": "borne",
          "canonical_path": "/cities/nl/borne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10071",
          "name": "Borsele",
          "country_code": "NL",
          "slug": "borsele",
          "canonical_path": "/cities/nl/borsele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758587",
          "name": "Borssele",
          "country_code": "NL",
          "slug": "borssele",
          "canonical_path": "/cities/nl/borssele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758547",
          "name": "Boskoop",
          "country_code": "NL",
          "slug": "boskoop",
          "canonical_path": "/cities/nl/boskoop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758462",
          "name": "Boxmeer",
          "country_code": "NL",
          "slug": "boxmeer",
          "canonical_path": "/cities/nl/boxmeer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9821",
          "name": "Boxtel",
          "country_code": "NL",
          "slug": "boxtel",
          "canonical_path": "/cities/nl/boxtel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9822",
          "name": "Breda",
          "country_code": "NL",
          "slug": "breda",
          "canonical_path": "/cities/nl/breda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758333",
          "name": "Breukelen",
          "country_code": "NL",
          "slug": "breukelen",
          "canonical_path": "/cities/nl/breukelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758245",
          "name": "Broek op Langedijk",
          "country_code": "NL",
          "slug": "broek-op-langedijk",
          "canonical_path": "/cities/nl/broek-op-langedijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q747999",
          "name": "Bronckhorst",
          "country_code": "NL",
          "slug": "bronckhorst",
          "canonical_path": "/cities/nl/bronckhorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q843895",
          "name": "Brummen",
          "country_code": "NL",
          "slug": "brummen",
          "canonical_path": "/cities/nl/brummen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9803",
          "name": "Brunssum",
          "country_code": "NL",
          "slug": "brunssum",
          "canonical_path": "/cities/nl/brunssum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758166",
          "name": "Budel",
          "country_code": "NL",
          "slug": "budel",
          "canonical_path": "/cities/nl/budel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758131",
          "name": "Buitenpost",
          "country_code": "NL",
          "slug": "buitenpost",
          "canonical_path": "/cities/nl/buitenpost/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758111",
          "name": "Bunde",
          "country_code": "NL",
          "slug": "bunde",
          "canonical_path": "/cities/nl/bunde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10032",
          "name": "Bunnik",
          "country_code": "NL",
          "slug": "bunnik",
          "canonical_path": "/cities/nl/bunnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10034",
          "name": "Bunschoten",
          "country_code": "NL",
          "slug": "bunschoten",
          "canonical_path": "/cities/nl/bunschoten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q73061",
          "name": "Buren",
          "country_code": "NL",
          "slug": "buren",
          "canonical_path": "/cities/nl/buren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2759103",
          "name": "Burgum",
          "country_code": "NL",
          "slug": "burgum",
          "canonical_path": "/cities/nl/burgum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758064",
          "name": "Bussum",
          "country_code": "NL",
          "slug": "bussum",
          "canonical_path": "/cities/nl/bussum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q734860",
          "name": "Capelle aan den IJssel",
          "country_code": "NL",
          "slug": "capelle-aan-den-ijssel",
          "canonical_path": "/cities/nl/capelle-aan-den-ijssel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2758001",
          "name": "Carnisse",
          "country_code": "NL",
          "slug": "carnisse",
          "canonical_path": "/cities/nl/carnisse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9910",
          "name": "Castricum",
          "country_code": "NL",
          "slug": "castricum",
          "canonical_path": "/cities/nl/castricum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q60453",
          "name": "Coevorden",
          "country_code": "NL",
          "slug": "coevorden",
          "canonical_path": "/cities/nl/coevorden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9823",
          "name": "Cranendonck",
          "country_code": "NL",
          "slug": "cranendonck",
          "canonical_path": "/cities/nl/cranendonck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q816699",
          "name": "Culemborg",
          "country_code": "NL",
          "slug": "culemborg",
          "canonical_path": "/cities/nl/culemborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9998",
          "name": "Dalfsen",
          "country_code": "NL",
          "slug": "dalfsen",
          "canonical_path": "/cities/nl/dalfsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2757838",
          "name": "Damwâld",
          "country_code": "NL",
          "slug": "damwald",
          "canonical_path": "/cities/nl/damwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q389213",
          "name": "Dantumadiel",
          "country_code": "NL",
          "slug": "dantumadiel",
          "canonical_path": "/cities/nl/dantumadiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10035",
          "name": "De Bilt",
          "country_code": "NL",
          "slug": "de-bilt",
          "canonical_path": "/cities/nl/de-bilt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q2114866",
          "name": "De Fryske Marren",
          "country_code": "NL",
          "slug": "de-fryske-marren",
          "canonical_path": "/cities/nl/de-fryske-marren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2757336",
          "name": "De Lier",
          "country_code": "NL",
          "slug": "de-lier",
          "canonical_path": "/cities/nl/de-lier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2757295",
          "name": "De Meern",
          "country_code": "NL",
          "slug": "de-meern",
          "canonical_path": "/cities/nl/de-meern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10036",
          "name": "De Ronde Venen",
          "country_code": "NL",
          "slug": "de-ronde-venen",
          "canonical_path": "/cities/nl/de-ronde-venen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2743590",
          "name": "De Westereen",
          "country_code": "NL",
          "slug": "de-westereen",
          "canonical_path": "/cities/nl/de-westereen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q835108",
          "name": "De Wolden",
          "country_code": "NL",
          "slug": "de-wolden",
          "canonical_path": "/cities/nl/de-wolden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2757698",
          "name": "Dedemsvaart",
          "country_code": "NL",
          "slug": "dedemsvaart",
          "canonical_path": "/cities/nl/dedemsvaart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2757370",
          "name": "Delden",
          "country_code": "NL",
          "slug": "delden",
          "canonical_path": "/cities/nl/delden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q690",
          "name": "Delft",
          "country_code": "NL",
          "slug": "delft",
          "canonical_path": "/cities/nl/delft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2757340",
          "name": "Delfzijl",
          "country_code": "NL",
          "slug": "delfzijl",
          "canonical_path": "/cities/nl/delfzijl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2757244",
          "name": "Den Burg",
          "country_code": "NL",
          "slug": "den-burg",
          "canonical_path": "/cities/nl/den-burg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9911",
          "name": "Den Helder",
          "country_code": "NL",
          "slug": "den-helder",
          "canonical_path": "/cities/nl/den-helder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2757232",
          "name": "Denekamp",
          "country_code": "NL",
          "slug": "denekamp",
          "canonical_path": "/cities/nl/denekamp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9828",
          "name": "Deurne",
          "country_code": "NL",
          "slug": "deurne",
          "canonical_path": "/cities/nl/deurne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10001",
          "name": "Deventer",
          "country_code": "NL",
          "slug": "deventer",
          "canonical_path": "/cities/nl/deventer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756896",
          "name": "Didam",
          "country_code": "NL",
          "slug": "didam",
          "canonical_path": "/cities/nl/didam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9913",
          "name": "Diemen",
          "country_code": "NL",
          "slug": "diemen",
          "canonical_path": "/cities/nl/diemen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756865",
          "name": "Dieren",
          "country_code": "NL",
          "slug": "dieren",
          "canonical_path": "/cities/nl/dieren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q104758977",
          "name": "Dijk en Waard",
          "country_code": "NL",
          "slug": "dijk-en-waard",
          "canonical_path": "/cities/nl/dijk-en-waard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9999",
          "name": "Dinkelland",
          "country_code": "NL",
          "slug": "dinkelland",
          "canonical_path": "/cities/nl/dinkelland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756800",
          "name": "Dinteloord",
          "country_code": "NL",
          "slug": "dinteloord",
          "canonical_path": "/cities/nl/dinteloord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756793",
          "name": "Dinxperlo",
          "country_code": "NL",
          "slug": "dinxperlo",
          "canonical_path": "/cities/nl/dinxperlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q165736",
          "name": "Doesburg",
          "country_code": "NL",
          "slug": "doesburg",
          "canonical_path": "/cities/nl/doesburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q145845",
          "name": "Doetinchem",
          "country_code": "NL",
          "slug": "doetinchem",
          "canonical_path": "/cities/nl/doetinchem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756759",
          "name": "Dokkum",
          "country_code": "NL",
          "slug": "dokkum",
          "canonical_path": "/cities/nl/dokkum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9829",
          "name": "Dongen",
          "country_code": "NL",
          "slug": "dongen",
          "canonical_path": "/cities/nl/dongen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756686",
          "name": "Doorn",
          "country_code": "NL",
          "slug": "doorn",
          "canonical_path": "/cities/nl/doorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756675",
          "name": "Doornsteeg",
          "country_code": "NL",
          "slug": "doornsteeg",
          "canonical_path": "/cities/nl/doornsteeg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q26421",
          "name": "Dordrecht",
          "country_code": "NL",
          "slug": "dordrecht",
          "canonical_path": "/cities/nl/dordrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756644",
          "name": "Drachten",
          "country_code": "NL",
          "slug": "drachten",
          "canonical_path": "/cities/nl/drachten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9915",
          "name": "Drechterland",
          "country_code": "NL",
          "slug": "drechterland",
          "canonical_path": "/cities/nl/drechterland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756619",
          "name": "Driebergen-Rijsenburg",
          "country_code": "NL",
          "slug": "driebergen-rijsenburg",
          "canonical_path": "/cities/nl/driebergen-rijsenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9830",
          "name": "Drimmelen",
          "country_code": "NL",
          "slug": "drimmelen",
          "canonical_path": "/cities/nl/drimmelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q328087",
          "name": "Dronten",
          "country_code": "NL",
          "slug": "dronten",
          "canonical_path": "/cities/nl/dronten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q932142",
          "name": "Druten",
          "country_code": "NL",
          "slug": "druten",
          "canonical_path": "/cities/nl/druten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q613989",
          "name": "Duiven",
          "country_code": "NL",
          "slug": "duiven",
          "canonical_path": "/cities/nl/duiven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756444",
          "name": "Echt",
          "country_code": "NL",
          "slug": "echt",
          "canonical_path": "/cities/nl/echt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9802",
          "name": "Echt-Susteren",
          "country_code": "NL",
          "slug": "echt-susteren",
          "canonical_path": "/cities/nl/echt-susteren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756431",
          "name": "Edam",
          "country_code": "NL",
          "slug": "edam",
          "canonical_path": "/cities/nl/edam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9917",
          "name": "Edam-Volendam",
          "country_code": "NL",
          "slug": "edam-volendam",
          "canonical_path": "/cities/nl/edam-volendam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q26555",
          "name": "Ede",
          "country_code": "NL",
          "slug": "ede",
          "canonical_path": "/cities/nl/ede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756408",
          "name": "Eelde",
          "country_code": "NL",
          "slug": "eelde",
          "canonical_path": "/cities/nl/eelde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10037",
          "name": "Eemnes",
          "country_code": "NL",
          "slug": "eemnes",
          "canonical_path": "/cities/nl/eemnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q97055892",
          "name": "Eemsdelta",
          "country_code": "NL",
          "slug": "eemsdelta",
          "canonical_path": "/cities/nl/eemsdelta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756351",
          "name": "Eerbeek",
          "country_code": "NL",
          "slug": "eerbeek",
          "canonical_path": "/cities/nl/eerbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9831",
          "name": "Eersel",
          "country_code": "NL",
          "slug": "eersel",
          "canonical_path": "/cities/nl/eersel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756295",
          "name": "Eibergen",
          "country_code": "NL",
          "slug": "eibergen",
          "canonical_path": "/cities/nl/eibergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756283",
          "name": "Eijsden",
          "country_code": "NL",
          "slug": "eijsden",
          "canonical_path": "/cities/nl/eijsden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9766",
          "name": "Eijsden-Margraten",
          "country_code": "NL",
          "slug": "eijsden-margraten",
          "canonical_path": "/cities/nl/eijsden-margraten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9832",
          "name": "Eindhoven",
          "country_code": "NL",
          "slug": "eindhoven",
          "canonical_path": "/cities/nl/eindhoven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q165662",
          "name": "Elburg",
          "country_code": "NL",
          "slug": "elburg",
          "canonical_path": "/cities/nl/elburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756169",
          "name": "Elsloo",
          "country_code": "NL",
          "slug": "elsloo",
          "canonical_path": "/cities/nl/elsloo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756161",
          "name": "Elst",
          "country_code": "NL",
          "slug": "elst",
          "canonical_path": "/cities/nl/elst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756139",
          "name": "Emmeloord",
          "country_code": "NL",
          "slug": "emmeloord",
          "canonical_path": "/cities/nl/emmeloord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q14641",
          "name": "Emmen",
          "country_code": "NL",
          "slug": "emmen",
          "canonical_path": "/cities/nl/emmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756133",
          "name": "Emmer-Compascuum",
          "country_code": "NL",
          "slug": "emmer-compascuum",
          "canonical_path": "/cities/nl/emmer-compascuum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9918",
          "name": "Enkhuizen",
          "country_code": "NL",
          "slug": "enkhuizen",
          "canonical_path": "/cities/nl/enkhuizen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10002",
          "name": "Enschede",
          "country_code": "NL",
          "slug": "enschede",
          "canonical_path": "/cities/nl/enschede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2756065",
          "name": "Enter",
          "country_code": "NL",
          "slug": "enter",
          "canonical_path": "/cities/nl/enter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q238396",
          "name": "Epe",
          "country_code": "NL",
          "slug": "epe",
          "canonical_path": "/cities/nl/epe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q753920",
          "name": "Ermelo",
          "country_code": "NL",
          "slug": "ermelo",
          "canonical_path": "/cities/nl/ermelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9833",
          "name": "Etten-Leur",
          "country_code": "NL",
          "slug": "etten-leur",
          "canonical_path": "/cities/nl/etten-leur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755845",
          "name": "Franeker",
          "country_code": "NL",
          "slug": "franeker",
          "canonical_path": "/cities/nl/franeker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755794",
          "name": "Gaanderen",
          "country_code": "NL",
          "slug": "gaanderen",
          "canonical_path": "/cities/nl/gaanderen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9834",
          "name": "Geertruidenberg",
          "country_code": "NL",
          "slug": "geertruidenberg",
          "canonical_path": "/cities/nl/geertruidenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755633",
          "name": "Geldermalsen",
          "country_code": "NL",
          "slug": "geldermalsen",
          "canonical_path": "/cities/nl/geldermalsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755619",
          "name": "Geldrop",
          "country_code": "NL",
          "slug": "geldrop",
          "canonical_path": "/cities/nl/geldrop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9835",
          "name": "Geldrop-Mierlo",
          "country_code": "NL",
          "slug": "geldrop-mierlo",
          "canonical_path": "/cities/nl/geldrop-mierlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755616",
          "name": "Geleen",
          "country_code": "NL",
          "slug": "geleen",
          "canonical_path": "/cities/nl/geleen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755605",
          "name": "Gemert",
          "country_code": "NL",
          "slug": "gemert",
          "canonical_path": "/cities/nl/gemert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9836",
          "name": "Gemert-Bakel",
          "country_code": "NL",
          "slug": "gemert-bakel",
          "canonical_path": "/cities/nl/gemert-bakel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755597",
          "name": "Gendt",
          "country_code": "NL",
          "slug": "gendt",
          "canonical_path": "/cities/nl/gendt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755594",
          "name": "Genemuiden",
          "country_code": "NL",
          "slug": "genemuiden",
          "canonical_path": "/cities/nl/genemuiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9800",
          "name": "Gennep",
          "country_code": "NL",
          "slug": "gennep",
          "canonical_path": "/cities/nl/gennep/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755531",
          "name": "Giessendam",
          "country_code": "NL",
          "slug": "giessendam",
          "canonical_path": "/cities/nl/giessendam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755507",
          "name": "Gilze",
          "country_code": "NL",
          "slug": "gilze",
          "canonical_path": "/cities/nl/gilze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9837",
          "name": "Gilze en Rijen",
          "country_code": "NL",
          "slug": "gilze-en-rijen",
          "canonical_path": "/cities/nl/gilze-en-rijen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755496",
          "name": "Glanerbrug",
          "country_code": "NL",
          "slug": "glanerbrug",
          "canonical_path": "/cities/nl/glanerbrug/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755485",
          "name": "Goedereede",
          "country_code": "NL",
          "slug": "goedereede",
          "canonical_path": "/cities/nl/goedereede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q933459",
          "name": "Goeree-Overflakkee",
          "country_code": "NL",
          "slug": "goeree-overflakkee",
          "canonical_path": "/cities/nl/goeree-overflakkee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10072",
          "name": "Goes",
          "country_code": "NL",
          "slug": "goes",
          "canonical_path": "/cities/nl/goes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9838",
          "name": "Goirle",
          "country_code": "NL",
          "slug": "goirle",
          "canonical_path": "/cities/nl/goirle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q18335889",
          "name": "Gooise Meren",
          "country_code": "NL",
          "slug": "gooise-meren",
          "canonical_path": "/cities/nl/gooise-meren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755449",
          "name": "Goor",
          "country_code": "NL",
          "slug": "goor",
          "canonical_path": "/cities/nl/goor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q244327",
          "name": "Gorinchem",
          "country_code": "NL",
          "slug": "gorinchem",
          "canonical_path": "/cities/nl/gorinchem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755429",
          "name": "Gorredijk",
          "country_code": "NL",
          "slug": "gorredijk",
          "canonical_path": "/cities/nl/gorredijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q84125",
          "name": "Gouda",
          "country_code": "NL",
          "slug": "gouda",
          "canonical_path": "/cities/nl/gouda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755358",
          "name": "Grave",
          "country_code": "NL",
          "slug": "grave",
          "canonical_path": "/cities/nl/grave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755281",
          "name": "Groenlo",
          "country_code": "NL",
          "slug": "groenlo",
          "canonical_path": "/cities/nl/groenlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755272",
          "name": "Groesbeek",
          "country_code": "NL",
          "slug": "groesbeek",
          "canonical_path": "/cities/nl/groesbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q892526",
          "name": "Groningen",
          "country_code": "NL",
          "slug": "groningen",
          "canonical_path": "/cities/nl/groningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2755052",
          "name": "Grou",
          "country_code": "NL",
          "slug": "grou",
          "canonical_path": "/cities/nl/grou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9767",
          "name": "Gulpen-Wittem",
          "country_code": "NL",
          "slug": "gulpen-wittem",
          "canonical_path": "/cities/nl/gulpen-wittem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10003",
          "name": "Haaksbergen",
          "country_code": "NL",
          "slug": "haaksbergen",
          "canonical_path": "/cities/nl/haaksbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9920",
          "name": "Haarlem",
          "country_code": "NL",
          "slug": "haarlem",
          "canonical_path": "/cities/nl/haarlem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9924",
          "name": "Haarlemmermeer",
          "country_code": "NL",
          "slug": "haarlemmermeer",
          "canonical_path": "/cities/nl/haarlemmermeer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754975",
          "name": "Haelen",
          "country_code": "NL",
          "slug": "haelen",
          "canonical_path": "/cities/nl/haelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9841",
          "name": "Halderberge",
          "country_code": "NL",
          "slug": "halderberge",
          "canonical_path": "/cities/nl/halderberge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754922",
          "name": "Halsteren",
          "country_code": "NL",
          "slug": "halsteren",
          "canonical_path": "/cities/nl/halsteren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q3916626",
          "name": "Hardenberg",
          "country_code": "NL",
          "slug": "hardenberg",
          "canonical_path": "/cities/nl/hardenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q58931",
          "name": "Harderwijk",
          "country_code": "NL",
          "slug": "harderwijk",
          "canonical_path": "/cities/nl/harderwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q953012",
          "name": "Hardinxveld-Giessendam",
          "country_code": "NL",
          "slug": "hardinxveld-giessendam",
          "canonical_path": "/cities/nl/hardinxveld-giessendam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754841",
          "name": "Haren",
          "country_code": "NL",
          "slug": "haren",
          "canonical_path": "/cities/nl/haren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q2536628",
          "name": "Harlingen",
          "country_code": "NL",
          "slug": "harlingen",
          "canonical_path": "/cities/nl/harlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754814",
          "name": "Harmelen",
          "country_code": "NL",
          "slug": "harmelen",
          "canonical_path": "/cities/nl/harmelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754779",
          "name": "Hasselt",
          "country_code": "NL",
          "slug": "hasselt",
          "canonical_path": "/cities/nl/hasselt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q58797",
          "name": "Hattem",
          "country_code": "NL",
          "slug": "hattem",
          "canonical_path": "/cities/nl/hattem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9926",
          "name": "Heemskerk",
          "country_code": "NL",
          "slug": "heemskerk",
          "canonical_path": "/cities/nl/heemskerk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9928",
          "name": "Heemstede",
          "country_code": "NL",
          "slug": "heemstede",
          "canonical_path": "/cities/nl/heemstede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q615491",
          "name": "Heerde",
          "country_code": "NL",
          "slug": "heerde",
          "canonical_path": "/cities/nl/heerde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q574558",
          "name": "Heerenveen",
          "country_code": "NL",
          "slug": "heerenveen",
          "canonical_path": "/cities/nl/heerenveen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754659",
          "name": "Heerhugowaard",
          "country_code": "NL",
          "slug": "heerhugowaard",
          "canonical_path": "/cities/nl/heerhugowaard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9799",
          "name": "Heerlen",
          "country_code": "NL",
          "slug": "heerlen",
          "canonical_path": "/cities/nl/heerlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754635",
          "name": "Heesch",
          "country_code": "NL",
          "slug": "heesch",
          "canonical_path": "/cities/nl/heesch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754629",
          "name": "Heeswijk-Dinther",
          "country_code": "NL",
          "slug": "heeswijk-dinther",
          "canonical_path": "/cities/nl/heeswijk-dinther/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754618",
          "name": "Heeze",
          "country_code": "NL",
          "slug": "heeze",
          "canonical_path": "/cities/nl/heeze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9843",
          "name": "Heeze-Leende",
          "country_code": "NL",
          "slug": "heeze-leende",
          "canonical_path": "/cities/nl/heeze-leende/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9932",
          "name": "Heiloo",
          "country_code": "NL",
          "slug": "heiloo",
          "canonical_path": "/cities/nl/heiloo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754502",
          "name": "Heino",
          "country_code": "NL",
          "slug": "heino",
          "canonical_path": "/cities/nl/heino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754482",
          "name": "Helden",
          "country_code": "NL",
          "slug": "helden",
          "canonical_path": "/cities/nl/helden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10005",
          "name": "Hellendoorn",
          "country_code": "NL",
          "slug": "hellendoorn",
          "canonical_path": "/cities/nl/hellendoorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754454",
          "name": "Hellevoetsluis",
          "country_code": "NL",
          "slug": "hellevoetsluis",
          "canonical_path": "/cities/nl/hellevoetsluis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9844",
          "name": "Helmond",
          "country_code": "NL",
          "slug": "helmond",
          "canonical_path": "/cities/nl/helmond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q538725",
          "name": "Hendrik-Ido-Ambacht",
          "country_code": "NL",
          "slug": "hendrik-ido-ambacht",
          "canonical_path": "/cities/nl/hendrik-ido-ambacht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754394",
          "name": "Hengelo",
          "country_code": "NL",
          "slug": "hengelo",
          "canonical_path": "/cities/nl/hengelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q27959423",
          "name": "Het Hogeland",
          "country_code": "NL",
          "slug": "het-hogeland",
          "canonical_path": "/cities/nl/het-hogeland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q932155",
          "name": "Heumen",
          "country_code": "NL",
          "slug": "heumen",
          "canonical_path": "/cities/nl/heumen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9845",
          "name": "Heusden",
          "country_code": "NL",
          "slug": "heusden",
          "canonical_path": "/cities/nl/heusden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754111",
          "name": "Heythuysen",
          "country_code": "NL",
          "slug": "heythuysen",
          "canonical_path": "/cities/nl/heythuysen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q932116",
          "name": "Hillegom",
          "country_code": "NL",
          "slug": "hillegom",
          "canonical_path": "/cities/nl/hillegom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9846",
          "name": "Hilvarenbeek",
          "country_code": "NL",
          "slug": "hilvarenbeek",
          "canonical_path": "/cities/nl/hilvarenbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9934",
          "name": "Hilversum",
          "country_code": "NL",
          "slug": "hilversum",
          "canonical_path": "/cities/nl/hilversum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2754007",
          "name": "Hoek van Holland",
          "country_code": "NL",
          "slug": "hoek-van-holland",
          "canonical_path": "/cities/nl/hoek-van-holland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q56682979",
          "name": "Hoeksche Waard",
          "country_code": "NL",
          "slug": "hoeksche-waard",
          "canonical_path": "/cities/nl/hoeksche-waard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753996",
          "name": "Hoensbroek",
          "country_code": "NL",
          "slug": "hoensbroek",
          "canonical_path": "/cities/nl/hoensbroek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753987",
          "name": "Hoevelaken",
          "country_code": "NL",
          "slug": "hoevelaken",
          "canonical_path": "/cities/nl/hoevelaken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9996",
          "name": "Hof van Twente",
          "country_code": "NL",
          "slug": "hof-van-twente",
          "canonical_path": "/cities/nl/hof-van-twente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9936",
          "name": "Hollands Kroon",
          "country_code": "NL",
          "slug": "hollands-kroon",
          "canonical_path": "/cities/nl/hollands-kroon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753806",
          "name": "Honselersdijk",
          "country_code": "NL",
          "slug": "honselersdijk",
          "canonical_path": "/cities/nl/honselersdijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753801",
          "name": "Hoofddorp",
          "country_code": "NL",
          "slug": "hoofddorp",
          "canonical_path": "/cities/nl/hoofddorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753725",
          "name": "Hoogerheide",
          "country_code": "NL",
          "slug": "hoogerheide",
          "canonical_path": "/cities/nl/hoogerheide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q208012",
          "name": "Hoogeveen",
          "country_code": "NL",
          "slug": "hoogeveen",
          "canonical_path": "/cities/nl/hoogeveen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753706",
          "name": "Hoogezand",
          "country_code": "NL",
          "slug": "hoogezand",
          "canonical_path": "/cities/nl/hoogezand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753688",
          "name": "Hoogkerk",
          "country_code": "NL",
          "slug": "hoogkerk",
          "canonical_path": "/cities/nl/hoogkerk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753686",
          "name": "Hoogland",
          "country_code": "NL",
          "slug": "hoogland",
          "canonical_path": "/cities/nl/hoogland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753666",
          "name": "Hoogvliet",
          "country_code": "NL",
          "slug": "hoogvliet",
          "canonical_path": "/cities/nl/hoogvliet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9938",
          "name": "Hoorn",
          "country_code": "NL",
          "slug": "hoorn",
          "canonical_path": "/cities/nl/hoorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753591",
          "name": "Horst",
          "country_code": "NL",
          "slug": "horst",
          "canonical_path": "/cities/nl/horst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9797",
          "name": "Horst aan de Maas",
          "country_code": "NL",
          "slug": "horst-aan-de-maas",
          "canonical_path": "/cities/nl/horst-aan-de-maas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10044",
          "name": "Houten",
          "country_code": "NL",
          "slug": "houten",
          "canonical_path": "/cities/nl/houten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753504",
          "name": "Huissen",
          "country_code": "NL",
          "slug": "huissen",
          "canonical_path": "/cities/nl/huissen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9939",
          "name": "Huizen",
          "country_code": "NL",
          "slug": "huizen",
          "canonical_path": "/cities/nl/huizen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10073",
          "name": "Hulst",
          "country_code": "NL",
          "slug": "hulst",
          "canonical_path": "/cities/nl/hulst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753376",
          "name": "IJmuiden",
          "country_code": "NL",
          "slug": "ijmuiden",
          "canonical_path": "/cities/nl/ijmuiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753358",
          "name": "IJsselmuiden",
          "country_code": "NL",
          "slug": "ijsselmuiden",
          "canonical_path": "/cities/nl/ijsselmuiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10045",
          "name": "IJsselstein",
          "country_code": "NL",
          "slug": "ijsselstein",
          "canonical_path": "/cities/nl/ijsselstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753197",
          "name": "Joure",
          "country_code": "NL",
          "slug": "joure",
          "canonical_path": "/cities/nl/joure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753184",
          "name": "Julianadorp",
          "country_code": "NL",
          "slug": "julianadorp",
          "canonical_path": "/cities/nl/julianadorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1348471",
          "name": "Kaag en Braassem",
          "country_code": "NL",
          "slug": "kaag-en-braassem",
          "canonical_path": "/cities/nl/kaag-en-braassem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q23814173",
          "name": "Kampen",
          "country_code": "NL",
          "slug": "kampen",
          "canonical_path": "/cities/nl/kampen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10074",
          "name": "Kapelle",
          "country_code": "NL",
          "slug": "kapelle",
          "canonical_path": "/cities/nl/kapelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q208764",
          "name": "Katwijk",
          "country_code": "NL",
          "slug": "katwijk",
          "canonical_path": "/cities/nl/katwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753011",
          "name": "Katwijk aan den Rijn",
          "country_code": "NL",
          "slug": "katwijk-aan-den-rijn",
          "canonical_path": "/cities/nl/katwijk-aan-den-rijn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2753010",
          "name": "Katwijk aan Zee",
          "country_code": "NL",
          "slug": "katwijk-aan-zee",
          "canonical_path": "/cities/nl/katwijk-aan-zee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2752947",
          "name": "Kerkdriel",
          "country_code": "NL",
          "slug": "kerkdriel",
          "canonical_path": "/cities/nl/kerkdriel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9796",
          "name": "Kerkrade",
          "country_code": "NL",
          "slug": "kerkrade",
          "canonical_path": "/cities/nl/kerkrade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2752798",
          "name": "Klazienaveen",
          "country_code": "NL",
          "slug": "klazienaveen",
          "canonical_path": "/cities/nl/klazienaveen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2752600",
          "name": "Klundert",
          "country_code": "NL",
          "slug": "klundert",
          "canonical_path": "/cities/nl/klundert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9940",
          "name": "Koggenland",
          "country_code": "NL",
          "slug": "koggenland",
          "canonical_path": "/cities/nl/koggenland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2752524",
          "name": "Kollum",
          "country_code": "NL",
          "slug": "kollum",
          "canonical_path": "/cities/nl/kollum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2752409",
          "name": "Kortenhoef",
          "country_code": "NL",
          "slug": "kortenhoef",
          "canonical_path": "/cities/nl/kortenhoef/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q739449",
          "name": "Krimpen aan den IJssel",
          "country_code": "NL",
          "slug": "krimpen-aan-den-ijssel",
          "canonical_path": "/cities/nl/krimpen-aan-den-ijssel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q15991891",
          "name": "Krimpenerwaard",
          "country_code": "NL",
          "slug": "krimpenerwaard",
          "canonical_path": "/cities/nl/krimpenerwaard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2752178",
          "name": "Kudelstaart",
          "country_code": "NL",
          "slug": "kudelstaart",
          "canonical_path": "/cities/nl/kudelstaart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9848",
          "name": "Laarbeek",
          "country_code": "NL",
          "slug": "laarbeek",
          "canonical_path": "/cities/nl/laarbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q107242476",
          "name": "Land van Cuijk",
          "country_code": "NL",
          "slug": "land-van-cuijk",
          "canonical_path": "/cities/nl/land-van-cuijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9795",
          "name": "Landgraaf",
          "country_code": "NL",
          "slug": "landgraaf",
          "canonical_path": "/cities/nl/landgraaf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9942",
          "name": "Landsmeer",
          "country_code": "NL",
          "slug": "landsmeer",
          "canonical_path": "/cities/nl/landsmeer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1144739",
          "name": "Lansingerland",
          "country_code": "NL",
          "slug": "lansingerland",
          "canonical_path": "/cities/nl/lansingerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751874",
          "name": "Laren",
          "country_code": "NL",
          "slug": "laren",
          "canonical_path": "/cities/nl/laren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751834",
          "name": "Leek",
          "country_code": "NL",
          "slug": "leek",
          "canonical_path": "/cities/nl/leek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751808",
          "name": "Leerdam",
          "country_code": "NL",
          "slug": "leerdam",
          "canonical_path": "/cities/nl/leerdam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751801",
          "name": "Leersum",
          "country_code": "NL",
          "slug": "leersum",
          "canonical_path": "/cities/nl/leersum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q2311189",
          "name": "Leeuwarden",
          "country_code": "NL",
          "slug": "leeuwarden",
          "canonical_path": "/cities/nl/leeuwarden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q43631",
          "name": "Leiden",
          "country_code": "NL",
          "slug": "leiden",
          "canonical_path": "/cities/nl/leiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1000817",
          "name": "Leiderdorp",
          "country_code": "NL",
          "slug": "leiderdorp",
          "canonical_path": "/cities/nl/leiderdorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q112675",
          "name": "Leidschendam-Voorburg",
          "country_code": "NL",
          "slug": "leidschendam-voorburg",
          "canonical_path": "/cities/nl/leidschendam-voorburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q166065",
          "name": "Lelystad",
          "country_code": "NL",
          "slug": "lelystad",
          "canonical_path": "/cities/nl/lelystad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751729",
          "name": "Lemmer",
          "country_code": "NL",
          "slug": "lemmer",
          "canonical_path": "/cities/nl/lemmer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751714",
          "name": "Lent",
          "country_code": "NL",
          "slug": "lent",
          "canonical_path": "/cities/nl/lent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9793",
          "name": "Leudal",
          "country_code": "NL",
          "slug": "leudal",
          "canonical_path": "/cities/nl/leudal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10046",
          "name": "Leusden",
          "country_code": "NL",
          "slug": "leusden",
          "canonical_path": "/cities/nl/leusden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751686",
          "name": "Leusden-Zuid",
          "country_code": "NL",
          "slug": "leusden-zuid",
          "canonical_path": "/cities/nl/leusden-zuid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751651",
          "name": "Lichtenvoorde",
          "country_code": "NL",
          "slug": "lichtenvoorde",
          "canonical_path": "/cities/nl/lichtenvoorde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751621",
          "name": "Liesveld",
          "country_code": "NL",
          "slug": "liesveld",
          "canonical_path": "/cities/nl/liesveld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751592",
          "name": "Limmen",
          "country_code": "NL",
          "slug": "limmen",
          "canonical_path": "/cities/nl/limmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751583",
          "name": "Lindenheuvel",
          "country_code": "NL",
          "slug": "lindenheuvel",
          "canonical_path": "/cities/nl/lindenheuvel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q952939",
          "name": "Lingewaard",
          "country_code": "NL",
          "slug": "lingewaard",
          "canonical_path": "/cities/nl/lingewaard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q332730",
          "name": "Lisse",
          "country_code": "NL",
          "slug": "lisse",
          "canonical_path": "/cities/nl/lisse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q932058",
          "name": "Lochem",
          "country_code": "NL",
          "slug": "lochem",
          "canonical_path": "/cities/nl/lochem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751523",
          "name": "Loenen aan de Vecht",
          "country_code": "NL",
          "slug": "loenen-aan-de-vecht",
          "canonical_path": "/cities/nl/loenen-aan-de-vecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9850",
          "name": "Loon op Zand",
          "country_code": "NL",
          "slug": "loon-op-zand",
          "canonical_path": "/cities/nl/loon-op-zand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:8714374",
          "name": "Loosdrecht",
          "country_code": "NL",
          "slug": "loosdrecht",
          "canonical_path": "/cities/nl/loosdrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10047",
          "name": "Lopik",
          "country_code": "NL",
          "slug": "lopik",
          "canonical_path": "/cities/nl/lopik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10015",
          "name": "Losser",
          "country_code": "NL",
          "slug": "losser",
          "canonical_path": "/cities/nl/losser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751385",
          "name": "Lunteren",
          "country_code": "NL",
          "slug": "lunteren",
          "canonical_path": "/cities/nl/lunteren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751316",
          "name": "Maarssen",
          "country_code": "NL",
          "slug": "maarssen",
          "canonical_path": "/cities/nl/maarssen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751303",
          "name": "Maasbracht",
          "country_code": "NL",
          "slug": "maasbracht",
          "canonical_path": "/cities/nl/maasbracht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751301",
          "name": "Maasbree",
          "country_code": "NL",
          "slug": "maasbree",
          "canonical_path": "/cities/nl/maasbree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q904544",
          "name": "Maasdriel",
          "country_code": "NL",
          "slug": "maasdriel",
          "canonical_path": "/cities/nl/maasdriel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9792",
          "name": "Maasgouw",
          "country_code": "NL",
          "slug": "maasgouw",
          "canonical_path": "/cities/nl/maasgouw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q104758976",
          "name": "Maashorst",
          "country_code": "NL",
          "slug": "maashorst",
          "canonical_path": "/cities/nl/maashorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q497130",
          "name": "Maassluis",
          "country_code": "NL",
          "slug": "maassluis",
          "canonical_path": "/cities/nl/maassluis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1309",
          "name": "Maastricht",
          "country_code": "NL",
          "slug": "maastricht",
          "canonical_path": "/cities/nl/maastricht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751272",
          "name": "Made",
          "country_code": "NL",
          "slug": "made",
          "canonical_path": "/cities/nl/made/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2751111",
          "name": "Marum",
          "country_code": "NL",
          "slug": "marum",
          "canonical_path": "/cities/nl/marum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9947",
          "name": "Medemblik",
          "country_code": "NL",
          "slug": "medemblik",
          "canonical_path": "/cities/nl/medemblik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9772",
          "name": "Meerssen",
          "country_code": "NL",
          "slug": "meerssen",
          "canonical_path": "/cities/nl/meerssen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q18655255",
          "name": "Meierijstad",
          "country_code": "NL",
          "slug": "meierijstad",
          "canonical_path": "/cities/nl/meierijstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750995",
          "name": "Meijel",
          "country_code": "NL",
          "slug": "meijel",
          "canonical_path": "/cities/nl/meijel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q60425",
          "name": "Meppel",
          "country_code": "NL",
          "slug": "meppel",
          "canonical_path": "/cities/nl/meppel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750896",
          "name": "Middelburg",
          "country_code": "NL",
          "slug": "middelburg",
          "canonical_path": "/cities/nl/middelburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750884",
          "name": "Middelharnis",
          "country_code": "NL",
          "slug": "middelharnis",
          "canonical_path": "/cities/nl/middelharnis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q952206",
          "name": "Midden-Delfland",
          "country_code": "NL",
          "slug": "midden-delfland",
          "canonical_path": "/cities/nl/midden-delfland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q835125",
          "name": "Midden-Drenthe",
          "country_code": "NL",
          "slug": "midden-drenthe",
          "canonical_path": "/cities/nl/midden-drenthe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q23987486",
          "name": "Midden-Groningen",
          "country_code": "NL",
          "slug": "midden-groningen",
          "canonical_path": "/cities/nl/midden-groningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750821",
          "name": "Mierlo",
          "country_code": "NL",
          "slug": "mierlo",
          "canonical_path": "/cities/nl/mierlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750815",
          "name": "Mijdrecht",
          "country_code": "NL",
          "slug": "mijdrecht",
          "canonical_path": "/cities/nl/mijdrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750802",
          "name": "Mill",
          "country_code": "NL",
          "slug": "mill",
          "canonical_path": "/cities/nl/mill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9854",
          "name": "Moerdijk",
          "country_code": "NL",
          "slug": "moerdijk",
          "canonical_path": "/cities/nl/moerdijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q42115473",
          "name": "Molenlanden",
          "country_code": "NL",
          "slug": "molenlanden",
          "canonical_path": "/cities/nl/molenlanden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750630",
          "name": "Monster",
          "country_code": "NL",
          "slug": "monster",
          "canonical_path": "/cities/nl/monster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q952963",
          "name": "Montferland",
          "country_code": "NL",
          "slug": "montferland",
          "canonical_path": "/cities/nl/montferland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10048",
          "name": "Montfoort",
          "country_code": "NL",
          "slug": "montfoort",
          "canonical_path": "/cities/nl/montfoort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9791",
          "name": "Mook en Middelaar",
          "country_code": "NL",
          "slug": "mook-en-middelaar",
          "canonical_path": "/cities/nl/mook-en-middelaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750569",
          "name": "Muiden",
          "country_code": "NL",
          "slug": "muiden",
          "canonical_path": "/cities/nl/muiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750527",
          "name": "Musselkanaal",
          "country_code": "NL",
          "slug": "musselkanaal",
          "canonical_path": "/cities/nl/musselkanaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750523",
          "name": "Naaldwijk",
          "country_code": "NL",
          "slug": "naaldwijk",
          "canonical_path": "/cities/nl/naaldwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750521",
          "name": "Naarden",
          "country_code": "NL",
          "slug": "naarden",
          "canonical_path": "/cities/nl/naarden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q952997",
          "name": "Neder-Betuwe",
          "country_code": "NL",
          "slug": "neder-betuwe",
          "canonical_path": "/cities/nl/neder-betuwe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9789",
          "name": "Nederweert",
          "country_code": "NL",
          "slug": "nederweert",
          "canonical_path": "/cities/nl/nederweert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750460",
          "name": "Neede",
          "country_code": "NL",
          "slug": "neede",
          "canonical_path": "/cities/nl/neede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750366",
          "name": "Nieuw-Bergen",
          "country_code": "NL",
          "slug": "nieuw-bergen",
          "canonical_path": "/cities/nl/nieuw-bergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750163",
          "name": "Nieuw-Lekkerland",
          "country_code": "NL",
          "slug": "nieuw-lekkerland",
          "canonical_path": "/cities/nl/nieuw-lekkerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750158",
          "name": "Nieuw-Loosdrecht",
          "country_code": "NL",
          "slug": "nieuw-loosdrecht",
          "canonical_path": "/cities/nl/nieuw-loosdrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750121",
          "name": "Nieuw-Vennep",
          "country_code": "NL",
          "slug": "nieuw-vennep",
          "canonical_path": "/cities/nl/nieuw-vennep/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10050",
          "name": "Nieuwegein",
          "country_code": "NL",
          "slug": "nieuwegein",
          "canonical_path": "/cities/nl/nieuwegein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750263",
          "name": "Nieuwerkerk aan den IJssel",
          "country_code": "NL",
          "slug": "nieuwerkerk-aan-den-ijssel",
          "canonical_path": "/cities/nl/nieuwerkerk-aan-den-ijssel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q948866",
          "name": "Nieuwkoop",
          "country_code": "NL",
          "slug": "nieuwkoop",
          "canonical_path": "/cities/nl/nieuwkoop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q73226",
          "name": "Nijkerk",
          "country_code": "NL",
          "slug": "nijkerk",
          "canonical_path": "/cities/nl/nijkerk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q47887",
          "name": "Nijmegen",
          "country_code": "NL",
          "slug": "nijmegen",
          "canonical_path": "/cities/nl/nijmegen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750039",
          "name": "Nijverdal",
          "country_code": "NL",
          "slug": "nijverdal",
          "canonical_path": "/cities/nl/nijverdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q14853527",
          "name": "Nissewaard",
          "country_code": "NL",
          "slug": "nissewaard",
          "canonical_path": "/cities/nl/nissewaard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2750031",
          "name": "Nistelrode",
          "country_code": "NL",
          "slug": "nistelrode",
          "canonical_path": "/cities/nl/nistelrode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q29509979",
          "name": "Noardeast-Fryslân",
          "country_code": "NL",
          "slug": "noardeast-fryslan",
          "canonical_path": "/cities/nl/noardeast-fryslan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10077",
          "name": "Noord-Beveland",
          "country_code": "NL",
          "slug": "noord-beveland",
          "canonical_path": "/cities/nl/noord-beveland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749835",
          "name": "Noord-Scharwoude",
          "country_code": "NL",
          "slug": "noord-scharwoude",
          "canonical_path": "/cities/nl/noord-scharwoude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q835083",
          "name": "Noordenveld",
          "country_code": "NL",
          "slug": "noordenveld",
          "canonical_path": "/cities/nl/noordenveld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q69262",
          "name": "Noordoostpolder",
          "country_code": "NL",
          "slug": "noordoostpolder",
          "canonical_path": "/cities/nl/noordoostpolder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q455464",
          "name": "Noordwijk",
          "country_code": "NL",
          "slug": "noordwijk",
          "canonical_path": "/cities/nl/noordwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749812",
          "name": "Noordwijk-Binnen",
          "country_code": "NL",
          "slug": "noordwijk-binnen",
          "canonical_path": "/cities/nl/noordwijk-binnen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749811",
          "name": "Noordwijkerhout",
          "country_code": "NL",
          "slug": "noordwijkerhout",
          "canonical_path": "/cities/nl/noordwijkerhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749800",
          "name": "Nootdorp",
          "country_code": "NL",
          "slug": "nootdorp",
          "canonical_path": "/cities/nl/nootdorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749780",
          "name": "Nuenen",
          "country_code": "NL",
          "slug": "nuenen",
          "canonical_path": "/cities/nl/nuenen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9855",
          "name": "Nuenen, Gerwen en Nederwetten",
          "country_code": "NL",
          "slug": "nuenen-gerwen-en-nederwetten",
          "canonical_path": "/cities/nl/nuenen-gerwen-en-nederwetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q931997",
          "name": "Nunspeet",
          "country_code": "NL",
          "slug": "nunspeet",
          "canonical_path": "/cities/nl/nunspeet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749745",
          "name": "Obdam",
          "country_code": "NL",
          "slug": "obdam",
          "canonical_path": "/cities/nl/obdam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749736",
          "name": "Odijk",
          "country_code": "NL",
          "slug": "odijk",
          "canonical_path": "/cities/nl/odijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q94747",
          "name": "Oegstgeest",
          "country_code": "NL",
          "slug": "oegstgeest",
          "canonical_path": "/cities/nl/oegstgeest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9856",
          "name": "Oirschot",
          "country_code": "NL",
          "slug": "oirschot",
          "canonical_path": "/cities/nl/oirschot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9857",
          "name": "Oisterwijk",
          "country_code": "NL",
          "slug": "oisterwijk",
          "canonical_path": "/cities/nl/oisterwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1347872",
          "name": "Oldambt",
          "country_code": "NL",
          "slug": "oldambt",
          "canonical_path": "/cities/nl/oldambt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q932042",
          "name": "Oldebroek",
          "country_code": "NL",
          "slug": "oldebroek",
          "canonical_path": "/cities/nl/oldebroek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10016",
          "name": "Oldenzaal",
          "country_code": "NL",
          "slug": "oldenzaal",
          "canonical_path": "/cities/nl/oldenzaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10017",
          "name": "Olst-Wijhe",
          "country_code": "NL",
          "slug": "olst-wijhe",
          "canonical_path": "/cities/nl/olst-wijhe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10018",
          "name": "Ommen",
          "country_code": "NL",
          "slug": "ommen",
          "canonical_path": "/cities/nl/ommen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1147580",
          "name": "Oost Gelre",
          "country_code": "NL",
          "slug": "oost-gelre",
          "canonical_path": "/cities/nl/oost-gelre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749525",
          "name": "Oosteinde",
          "country_code": "NL",
          "slug": "oosteinde",
          "canonical_path": "/cities/nl/oosteinde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749503",
          "name": "Oosterbeek",
          "country_code": "NL",
          "slug": "oosterbeek",
          "canonical_path": "/cities/nl/oosterbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9858",
          "name": "Oosterhout",
          "country_code": "NL",
          "slug": "oosterhout",
          "canonical_path": "/cities/nl/oosterhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749391",
          "name": "Oosterwolde",
          "country_code": "NL",
          "slug": "oosterwolde",
          "canonical_path": "/cities/nl/oosterwolde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q259205",
          "name": "Ooststellingwerf",
          "country_code": "NL",
          "slug": "ooststellingwerf",
          "canonical_path": "/cities/nl/ooststellingwerf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9951",
          "name": "Oostzaan",
          "country_code": "NL",
          "slug": "oostzaan",
          "canonical_path": "/cities/nl/oostzaan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749296",
          "name": "Opheusden",
          "country_code": "NL",
          "slug": "opheusden",
          "canonical_path": "/cities/nl/opheusden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9952",
          "name": "Opmeer",
          "country_code": "NL",
          "slug": "opmeer",
          "canonical_path": "/cities/nl/opmeer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q840632",
          "name": "Opsterland",
          "country_code": "NL",
          "slug": "opsterland",
          "canonical_path": "/cities/nl/opsterland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9859",
          "name": "Oss",
          "country_code": "NL",
          "slug": "oss",
          "canonical_path": "/cities/nl/oss/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748956",
          "name": "Oud Gastel",
          "country_code": "NL",
          "slug": "oud-gastel",
          "canonical_path": "/cities/nl/oud-gastel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749182",
          "name": "Oud-Beijerland",
          "country_code": "NL",
          "slug": "oud-beijerland",
          "canonical_path": "/cities/nl/oud-beijerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749164",
          "name": "Ouddorp",
          "country_code": "NL",
          "slug": "ouddorp",
          "canonical_path": "/cities/nl/ouddorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q932031",
          "name": "Oude IJsselstreek",
          "country_code": "NL",
          "slug": "oude-ijsselstreek",
          "canonical_path": "/cities/nl/oude-ijsselstreek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749034",
          "name": "Oude Pekela",
          "country_code": "NL",
          "slug": "oude-pekela",
          "canonical_path": "/cities/nl/oude-pekela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749053",
          "name": "Oudenbosch",
          "country_code": "NL",
          "slug": "oudenbosch",
          "canonical_path": "/cities/nl/oudenbosch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9953",
          "name": "Ouder-Amstel",
          "country_code": "NL",
          "slug": "ouder-amstel",
          "canonical_path": "/cities/nl/ouder-amstel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2749017",
          "name": "Ouderkerk aan de Amstel",
          "country_code": "NL",
          "slug": "ouderkerk-aan-de-amstel",
          "canonical_path": "/cities/nl/ouderkerk-aan-de-amstel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10051",
          "name": "Oudewater",
          "country_code": "NL",
          "slug": "oudewater",
          "canonical_path": "/cities/nl/oudewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q600871",
          "name": "Overbetuwe",
          "country_code": "NL",
          "slug": "overbetuwe",
          "canonical_path": "/cities/nl/overbetuwe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748737",
          "name": "Panningen",
          "country_code": "NL",
          "slug": "panningen",
          "canonical_path": "/cities/nl/panningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q934511",
          "name": "Papendrecht",
          "country_code": "NL",
          "slug": "papendrecht",
          "canonical_path": "/cities/nl/papendrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9785",
          "name": "Peel en Maas",
          "country_code": "NL",
          "slug": "peel-en-maas",
          "canonical_path": "/cities/nl/peel-en-maas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q932077",
          "name": "Pekela",
          "country_code": "NL",
          "slug": "pekela",
          "canonical_path": "/cities/nl/pekela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748591",
          "name": "Pijnacker",
          "country_code": "NL",
          "slug": "pijnacker",
          "canonical_path": "/cities/nl/pijnacker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q281768",
          "name": "Pijnacker-Nootdorp",
          "country_code": "NL",
          "slug": "pijnacker-nootdorp",
          "canonical_path": "/cities/nl/pijnacker-nootdorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748533",
          "name": "Poeldijk",
          "country_code": "NL",
          "slug": "poeldijk",
          "canonical_path": "/cities/nl/poeldijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748448",
          "name": "Prinsenbeek",
          "country_code": "NL",
          "slug": "prinsenbeek",
          "canonical_path": "/cities/nl/prinsenbeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q110423208",
          "name": "Purmerend",
          "country_code": "NL",
          "slug": "purmerend",
          "canonical_path": "/cities/nl/purmerend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q939948",
          "name": "Putten",
          "country_code": "NL",
          "slug": "putten",
          "canonical_path": "/cities/nl/putten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10019",
          "name": "Raalte",
          "country_code": "NL",
          "slug": "raalte",
          "canonical_path": "/cities/nl/raalte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748361",
          "name": "Raamsdonksveer",
          "country_code": "NL",
          "slug": "raamsdonksveer",
          "canonical_path": "/cities/nl/raamsdonksveer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748280",
          "name": "Reeuwijk",
          "country_code": "NL",
          "slug": "reeuwijk",
          "canonical_path": "/cities/nl/reeuwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10078",
          "name": "Reimerswaal",
          "country_code": "NL",
          "slug": "reimerswaal",
          "canonical_path": "/cities/nl/reimerswaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q691725",
          "name": "Renkum",
          "country_code": "NL",
          "slug": "renkum",
          "canonical_path": "/cities/nl/renkum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10039",
          "name": "Renswoude",
          "country_code": "NL",
          "slug": "renswoude",
          "canonical_path": "/cities/nl/renswoude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748217",
          "name": "Reusel",
          "country_code": "NL",
          "slug": "reusel",
          "canonical_path": "/cities/nl/reusel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9860",
          "name": "Reusel-De Mierden",
          "country_code": "NL",
          "slug": "reusel-de-mierden",
          "canonical_path": "/cities/nl/reusel-de-mierden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748208",
          "name": "Reuver",
          "country_code": "NL",
          "slug": "reuver",
          "canonical_path": "/cities/nl/reuver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q843899",
          "name": "Rheden",
          "country_code": "NL",
          "slug": "rheden",
          "canonical_path": "/cities/nl/rheden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10040",
          "name": "Rhenen",
          "country_code": "NL",
          "slug": "rhenen",
          "canonical_path": "/cities/nl/rhenen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748178",
          "name": "Rhoon",
          "country_code": "NL",
          "slug": "rhoon",
          "canonical_path": "/cities/nl/rhoon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q222220",
          "name": "Ridderkerk",
          "country_code": "NL",
          "slug": "ridderkerk",
          "canonical_path": "/cities/nl/ridderkerk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748130",
          "name": "Rijen",
          "country_code": "NL",
          "slug": "rijen",
          "canonical_path": "/cities/nl/rijen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748104",
          "name": "Rijnsburg",
          "country_code": "NL",
          "slug": "rijnsburg",
          "canonical_path": "/cities/nl/rijnsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748083",
          "name": "Rijssen",
          "country_code": "NL",
          "slug": "rijssen",
          "canonical_path": "/cities/nl/rijssen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10020",
          "name": "Rijssen-Holten",
          "country_code": "NL",
          "slug": "rijssen-holten",
          "canonical_path": "/cities/nl/rijssen-holten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748076",
          "name": "Rijswijk",
          "country_code": "NL",
          "slug": "rijswijk",
          "canonical_path": "/cities/nl/rijswijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2748026",
          "name": "Roden",
          "country_code": "NL",
          "slug": "roden",
          "canonical_path": "/cities/nl/roden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9784",
          "name": "Roerdalen",
          "country_code": "NL",
          "slug": "roerdalen",
          "canonical_path": "/cities/nl/roerdalen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q8167972",
          "name": "Roermond",
          "country_code": "NL",
          "slug": "roermond",
          "canonical_path": "/cities/nl/roermond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9861",
          "name": "Roosendaal",
          "country_code": "NL",
          "slug": "roosendaal",
          "canonical_path": "/cities/nl/roosendaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q2680952",
          "name": "Rotterdam",
          "country_code": "NL",
          "slug": "rotterdam",
          "canonical_path": "/cities/nl/rotterdam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747870",
          "name": "Rozenburg",
          "country_code": "NL",
          "slug": "rozenburg",
          "canonical_path": "/cities/nl/rozenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9862",
          "name": "Rucphen",
          "country_code": "NL",
          "slug": "rucphen",
          "canonical_path": "/cities/nl/rucphen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747792",
          "name": "Ruurlo",
          "country_code": "NL",
          "slug": "ruurlo",
          "canonical_path": "/cities/nl/ruurlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747375",
          "name": "s-Gravendeel",
          "country_code": "NL",
          "slug": "s-gravendeel",
          "canonical_path": "/cities/nl/s-gravendeel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747758",
          "name": "Sappemeer",
          "country_code": "NL",
          "slug": "sappemeer",
          "canonical_path": "/cities/nl/sappemeer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747751",
          "name": "Sassenheim",
          "country_code": "NL",
          "slug": "sassenheim",
          "canonical_path": "/cities/nl/sassenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9955",
          "name": "Schagen",
          "country_code": "NL",
          "slug": "schagen",
          "canonical_path": "/cities/nl/schagen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747713",
          "name": "Schaijk",
          "country_code": "NL",
          "slug": "schaijk",
          "canonical_path": "/cities/nl/schaijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q939964",
          "name": "Scherpenzeel",
          "country_code": "NL",
          "slug": "scherpenzeel",
          "canonical_path": "/cities/nl/scherpenzeel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747599",
          "name": "Scheveningen",
          "country_code": "NL",
          "slug": "scheveningen",
          "canonical_path": "/cities/nl/scheveningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q204709",
          "name": "Schiedam",
          "country_code": "NL",
          "slug": "schiedam",
          "canonical_path": "/cities/nl/schiedam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747584",
          "name": "Schijndel",
          "country_code": "NL",
          "slug": "schijndel",
          "canonical_path": "/cities/nl/schijndel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747506",
          "name": "Schoonhoven",
          "country_code": "NL",
          "slug": "schoonhoven",
          "canonical_path": "/cities/nl/schoonhoven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10079",
          "name": "Schouwen-Duiveland",
          "country_code": "NL",
          "slug": "schouwen-duiveland",
          "canonical_path": "/cities/nl/schouwen-duiveland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747382",
          "name": "Sevenum",
          "country_code": "NL",
          "slug": "sevenum",
          "canonical_path": "/cities/nl/sevenum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9769",
          "name": "Simpelveld",
          "country_code": "NL",
          "slug": "simpelveld",
          "canonical_path": "/cities/nl/simpelveld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747225",
          "name": "Sint Pancras",
          "country_code": "NL",
          "slug": "sint-pancras",
          "canonical_path": "/cities/nl/sint-pancras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747210",
          "name": "Sint Willebrord",
          "country_code": "NL",
          "slug": "sint-willebrord",
          "canonical_path": "/cities/nl/sint-willebrord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9866",
          "name": "Sint-Michielsgestel",
          "country_code": "NL",
          "slug": "sint-michielsgestel",
          "canonical_path": "/cities/nl/sint-michielsgestel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747227",
          "name": "Sint-Oedenrode",
          "country_code": "NL",
          "slug": "sint-oedenrode",
          "canonical_path": "/cities/nl/sint-oedenrode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747203",
          "name": "Sittard",
          "country_code": "NL",
          "slug": "sittard",
          "canonical_path": "/cities/nl/sittard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9781",
          "name": "Sittard-Geleen",
          "country_code": "NL",
          "slug": "sittard-geleen",
          "canonical_path": "/cities/nl/sittard-geleen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747178",
          "name": "Sleeuwijk",
          "country_code": "NL",
          "slug": "sleeuwijk",
          "canonical_path": "/cities/nl/sleeuwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q750760",
          "name": "Sliedrecht",
          "country_code": "NL",
          "slug": "sliedrecht",
          "canonical_path": "/cities/nl/sliedrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10080",
          "name": "Sluis",
          "country_code": "NL",
          "slug": "sluis",
          "canonical_path": "/cities/nl/sluis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q507065",
          "name": "Smallingerland",
          "country_code": "NL",
          "slug": "smallingerland",
          "canonical_path": "/cities/nl/smallingerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747063",
          "name": "Sneek",
          "country_code": "NL",
          "slug": "sneek",
          "canonical_path": "/cities/nl/sneek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10041",
          "name": "Soest",
          "country_code": "NL",
          "slug": "soest",
          "canonical_path": "/cities/nl/soest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2747030",
          "name": "Soesterberg",
          "country_code": "NL",
          "slug": "soesterberg",
          "canonical_path": "/cities/nl/soesterberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9868",
          "name": "Someren",
          "country_code": "NL",
          "slug": "someren",
          "canonical_path": "/cities/nl/someren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9869",
          "name": "Son en Breugel",
          "country_code": "NL",
          "slug": "son-en-breugel",
          "canonical_path": "/cities/nl/son-en-breugel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746932",
          "name": "Spijkenisse",
          "country_code": "NL",
          "slug": "spijkenisse",
          "canonical_path": "/cities/nl/spijkenisse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q73074",
          "name": "Stadskanaal",
          "country_code": "NL",
          "slug": "stadskanaal",
          "canonical_path": "/cities/nl/stadskanaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10021",
          "name": "Staphorst",
          "country_code": "NL",
          "slug": "staphorst",
          "canonical_path": "/cities/nl/staphorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9962",
          "name": "Stede Broec",
          "country_code": "NL",
          "slug": "stede-broec",
          "canonical_path": "/cities/nl/stede-broec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9870",
          "name": "Steenbergen",
          "country_code": "NL",
          "slug": "steenbergen",
          "canonical_path": "/cities/nl/steenbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746766",
          "name": "Steenwijk",
          "country_code": "NL",
          "slug": "steenwijk",
          "canonical_path": "/cities/nl/steenwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10022",
          "name": "Steenwijkerland",
          "country_code": "NL",
          "slug": "steenwijkerland",
          "canonical_path": "/cities/nl/steenwijkerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746748",
          "name": "Stein",
          "country_code": "NL",
          "slug": "stein",
          "canonical_path": "/cities/nl/stein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10042",
          "name": "Stichtse Vecht",
          "country_code": "NL",
          "slug": "stichtse-vecht",
          "canonical_path": "/cities/nl/stichtse-vecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746705",
          "name": "Stiens",
          "country_code": "NL",
          "slug": "stiens",
          "canonical_path": "/cities/nl/stiens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746609",
          "name": "Strijen",
          "country_code": "NL",
          "slug": "strijen",
          "canonical_path": "/cities/nl/strijen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1473276",
          "name": "Súdwest-Fryslân",
          "country_code": "NL",
          "slug": "sudwest-fryslan",
          "canonical_path": "/cities/nl/sudwest-fryslan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746558",
          "name": "Surhuisterveen",
          "country_code": "NL",
          "slug": "surhuisterveen",
          "canonical_path": "/cities/nl/surhuisterveen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746540",
          "name": "Swifterbant",
          "country_code": "NL",
          "slug": "swifterbant",
          "canonical_path": "/cities/nl/swifterbant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746371",
          "name": "t Harde",
          "country_code": "NL",
          "slug": "t-harde",
          "canonical_path": "/cities/nl/t-harde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746504",
          "name": "Tegelen",
          "country_code": "NL",
          "slug": "tegelen",
          "canonical_path": "/cities/nl/tegelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746478",
          "name": "Ter Aar",
          "country_code": "NL",
          "slug": "ter-aar",
          "canonical_path": "/cities/nl/ter-aar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746456",
          "name": "Terheijden",
          "country_code": "NL",
          "slug": "terheijden",
          "canonical_path": "/cities/nl/terheijden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10081",
          "name": "Terneuzen",
          "country_code": "NL",
          "slug": "terneuzen",
          "canonical_path": "/cities/nl/terneuzen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746389",
          "name": "Teteringen",
          "country_code": "NL",
          "slug": "teteringen",
          "canonical_path": "/cities/nl/teteringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9966",
          "name": "Texel",
          "country_code": "NL",
          "slug": "texel",
          "canonical_path": "/cities/nl/texel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1368003",
          "name": "Teylingen",
          "country_code": "NL",
          "slug": "teylingen",
          "canonical_path": "/cities/nl/teylingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10082",
          "name": "Tholen",
          "country_code": "NL",
          "slug": "tholen",
          "canonical_path": "/cities/nl/tholen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q73221",
          "name": "Tiel",
          "country_code": "NL",
          "slug": "tiel",
          "canonical_path": "/cities/nl/tiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q26430",
          "name": "Tilburg",
          "country_code": "NL",
          "slug": "tilburg",
          "canonical_path": "/cities/nl/tilburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10023",
          "name": "Tubbergen",
          "country_code": "NL",
          "slug": "tubbergen",
          "canonical_path": "/cities/nl/tubbergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746060",
          "name": "Twello",
          "country_code": "NL",
          "slug": "twello",
          "canonical_path": "/cities/nl/twello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10024",
          "name": "Twenterand",
          "country_code": "NL",
          "slug": "twenterand",
          "canonical_path": "/cities/nl/twenterand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q840457",
          "name": "Tynaarlo",
          "country_code": "NL",
          "slug": "tynaarlo",
          "canonical_path": "/cities/nl/tynaarlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q840636",
          "name": "Tytsjerksteradiel",
          "country_code": "NL",
          "slug": "tytsjerksteradiel",
          "canonical_path": "/cities/nl/tytsjerksteradiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746005",
          "name": "Uden",
          "country_code": "NL",
          "slug": "uden",
          "canonical_path": "/cities/nl/uden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2746003",
          "name": "Udenhout",
          "country_code": "NL",
          "slug": "udenhout",
          "canonical_path": "/cities/nl/udenhout/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9967",
          "name": "Uitgeest",
          "country_code": "NL",
          "slug": "uitgeest",
          "canonical_path": "/cities/nl/uitgeest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9969",
          "name": "Uithoorn",
          "country_code": "NL",
          "slug": "uithoorn",
          "canonical_path": "/cities/nl/uithoorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745953",
          "name": "Ulft",
          "country_code": "NL",
          "slug": "ulft",
          "canonical_path": "/cities/nl/ulft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q273746",
          "name": "Urk",
          "country_code": "NL",
          "slug": "urk",
          "canonical_path": "/cities/nl/urk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q803",
          "name": "Utrecht",
          "country_code": "NL",
          "slug": "utrecht",
          "canonical_path": "/cities/nl/utrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10043",
          "name": "Utrechtse Heuvelrug",
          "country_code": "NL",
          "slug": "utrechtse-heuvelrug",
          "canonical_path": "/cities/nl/utrechtse-heuvelrug/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9768",
          "name": "Vaals",
          "country_code": "NL",
          "slug": "vaals",
          "canonical_path": "/cities/nl/vaals/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745896",
          "name": "Vaartbroek",
          "country_code": "NL",
          "slug": "vaartbroek",
          "canonical_path": "/cities/nl/vaartbroek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745892",
          "name": "Vaassen",
          "country_code": "NL",
          "slug": "vaassen",
          "canonical_path": "/cities/nl/vaassen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9771",
          "name": "Valkenburg aan de Geul",
          "country_code": "NL",
          "slug": "valkenburg-aan-de-geul",
          "canonical_path": "/cities/nl/valkenburg-aan-de-geul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9873",
          "name": "Valkenswaard",
          "country_code": "NL",
          "slug": "valkenswaard",
          "canonical_path": "/cities/nl/valkenswaard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745800",
          "name": "Varsseveld",
          "country_code": "NL",
          "slug": "varsseveld",
          "canonical_path": "/cities/nl/varsseveld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q73065",
          "name": "Veendam",
          "country_code": "NL",
          "slug": "veendam",
          "canonical_path": "/cities/nl/veendam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1840",
          "name": "Veenendaal",
          "country_code": "NL",
          "slug": "veenendaal",
          "canonical_path": "/cities/nl/veenendaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10083",
          "name": "Veere",
          "country_code": "NL",
          "slug": "veere",
          "canonical_path": "/cities/nl/veere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745726",
          "name": "Veghel",
          "country_code": "NL",
          "slug": "veghel",
          "canonical_path": "/cities/nl/veghel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745717",
          "name": "Velden",
          "country_code": "NL",
          "slug": "velden",
          "canonical_path": "/cities/nl/velden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9875",
          "name": "Veldhoven",
          "country_code": "NL",
          "slug": "veldhoven",
          "canonical_path": "/cities/nl/veldhoven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745702",
          "name": "Veldhuizen",
          "country_code": "NL",
          "slug": "veldhuizen",
          "canonical_path": "/cities/nl/veldhuizen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745677",
          "name": "Velp",
          "country_code": "NL",
          "slug": "velp",
          "canonical_path": "/cities/nl/velp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9970",
          "name": "Velsen",
          "country_code": "NL",
          "slug": "velsen",
          "canonical_path": "/cities/nl/velsen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745673",
          "name": "Velsen-Zuid",
          "country_code": "NL",
          "slug": "velsen-zuid",
          "canonical_path": "/cities/nl/velsen-zuid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:7118109",
          "name": "Velserbroek",
          "country_code": "NL",
          "slug": "velserbroek",
          "canonical_path": "/cities/nl/velserbroek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9777",
          "name": "Venlo",
          "country_code": "NL",
          "slug": "venlo",
          "canonical_path": "/cities/nl/venlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9775",
          "name": "Venray",
          "country_code": "NL",
          "slug": "venray",
          "canonical_path": "/cities/nl/venray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745580",
          "name": "Vianen",
          "country_code": "NL",
          "slug": "vianen",
          "canonical_path": "/cities/nl/vianen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q29032345",
          "name": "Vijfheerenlanden",
          "country_code": "NL",
          "slug": "vijfheerenlanden",
          "canonical_path": "/cities/nl/vijfheerenlanden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q210007",
          "name": "Vlaardingen",
          "country_code": "NL",
          "slug": "vlaardingen",
          "canonical_path": "/cities/nl/vlaardingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745431",
          "name": "Vleuten",
          "country_code": "NL",
          "slug": "vleuten",
          "canonical_path": "/cities/nl/vleuten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10084",
          "name": "Vlissingen",
          "country_code": "NL",
          "slug": "vlissingen",
          "canonical_path": "/cities/nl/vlissingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9770",
          "name": "Voerendaal",
          "country_code": "NL",
          "slug": "voerendaal",
          "canonical_path": "/cities/nl/voerendaal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745340",
          "name": "Volendam",
          "country_code": "NL",
          "slug": "volendam",
          "canonical_path": "/cities/nl/volendam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745321",
          "name": "Voorburg",
          "country_code": "NL",
          "slug": "voorburg",
          "canonical_path": "/cities/nl/voorburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q106436626",
          "name": "Voorne aan Zee",
          "country_code": "NL",
          "slug": "voorne-aan-zee",
          "canonical_path": "/cities/nl/voorne-aan-zee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q848324",
          "name": "Voorschoten",
          "country_code": "NL",
          "slug": "voorschoten",
          "canonical_path": "/cities/nl/voorschoten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q384772",
          "name": "Voorst",
          "country_code": "NL",
          "slug": "voorst",
          "canonical_path": "/cities/nl/voorst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745271",
          "name": "Voorthuizen",
          "country_code": "NL",
          "slug": "voorthuizen",
          "canonical_path": "/cities/nl/voorthuizen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745182",
          "name": "Vriezenveen",
          "country_code": "NL",
          "slug": "vriezenveen",
          "canonical_path": "/cities/nl/vriezenveen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745169",
          "name": "Vroomshoop",
          "country_code": "NL",
          "slug": "vroomshoop",
          "canonical_path": "/cities/nl/vroomshoop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9876",
          "name": "Vught",
          "country_code": "NL",
          "slug": "vught",
          "canonical_path": "/cities/nl/vught/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q27526271",
          "name": "Waadhoeke",
          "country_code": "NL",
          "slug": "waadhoeke",
          "canonical_path": "/cities/nl/waadhoeke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9877",
          "name": "Waalre",
          "country_code": "NL",
          "slug": "waalre",
          "canonical_path": "/cities/nl/waalre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q745038",
          "name": "Waalwijk",
          "country_code": "NL",
          "slug": "waalwijk",
          "canonical_path": "/cities/nl/waalwijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q826048",
          "name": "Waddinxveen",
          "country_code": "NL",
          "slug": "waddinxveen",
          "canonical_path": "/cities/nl/waddinxveen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1305",
          "name": "Wageningen",
          "country_code": "NL",
          "slug": "wageningen",
          "canonical_path": "/cities/nl/wageningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745014",
          "name": "Warmenhuizen",
          "country_code": "NL",
          "slug": "warmenhuizen",
          "canonical_path": "/cities/nl/warmenhuizen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2745003",
          "name": "Warnsveld",
          "country_code": "NL",
          "slug": "warnsveld",
          "canonical_path": "/cities/nl/warnsveld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744994",
          "name": "Waspik",
          "country_code": "NL",
          "slug": "waspik",
          "canonical_path": "/cities/nl/waspik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q505601",
          "name": "Wassenaar",
          "country_code": "NL",
          "slug": "wassenaar",
          "canonical_path": "/cities/nl/wassenaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9971",
          "name": "Waterland",
          "country_code": "NL",
          "slug": "waterland",
          "canonical_path": "/cities/nl/waterland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9774",
          "name": "Weert",
          "country_code": "NL",
          "slug": "weert",
          "canonical_path": "/cities/nl/weert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744904",
          "name": "Weesp",
          "country_code": "NL",
          "slug": "weesp",
          "canonical_path": "/cities/nl/weesp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744896",
          "name": "Wehl",
          "country_code": "NL",
          "slug": "wehl",
          "canonical_path": "/cities/nl/wehl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744827",
          "name": "Werkendam",
          "country_code": "NL",
          "slug": "werkendam",
          "canonical_path": "/cities/nl/werkendam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q30142059",
          "name": "West Betuwe",
          "country_code": "NL",
          "slug": "west-betuwe",
          "canonical_path": "/cities/nl/west-betuwe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q658081",
          "name": "West Maas en Waal",
          "country_code": "NL",
          "slug": "west-maas-en-waal",
          "canonical_path": "/cities/nl/west-maas-en-waal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q30011757",
          "name": "Westerkwartier",
          "country_code": "NL",
          "slug": "westerkwartier",
          "canonical_path": "/cities/nl/westerkwartier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q747920",
          "name": "Westerveld",
          "country_code": "NL",
          "slug": "westerveld",
          "canonical_path": "/cities/nl/westerveld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q524808",
          "name": "Westervoort",
          "country_code": "NL",
          "slug": "westervoort",
          "canonical_path": "/cities/nl/westervoort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q27768267",
          "name": "Westerwolde",
          "country_code": "NL",
          "slug": "westerwolde",
          "canonical_path": "/cities/nl/westerwolde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q26556",
          "name": "Westland",
          "country_code": "NL",
          "slug": "westland",
          "canonical_path": "/cities/nl/westland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q753913",
          "name": "Weststellingwerf",
          "country_code": "NL",
          "slug": "weststellingwerf",
          "canonical_path": "/cities/nl/weststellingwerf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744580",
          "name": "Wezep",
          "country_code": "NL",
          "slug": "wezep",
          "canonical_path": "/cities/nl/wezep/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10025",
          "name": "Wierden",
          "country_code": "NL",
          "slug": "wierden",
          "canonical_path": "/cities/nl/wierden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q72981",
          "name": "Wijchen",
          "country_code": "NL",
          "slug": "wijchen",
          "canonical_path": "/cities/nl/wijchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9975",
          "name": "Wijdemeren",
          "country_code": "NL",
          "slug": "wijdemeren",
          "canonical_path": "/cities/nl/wijdemeren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744489",
          "name": "Wijhe",
          "country_code": "NL",
          "slug": "wijhe",
          "canonical_path": "/cities/nl/wijhe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10053",
          "name": "Wijk bij Duurstede",
          "country_code": "NL",
          "slug": "wijk-bij-duurstede",
          "canonical_path": "/cities/nl/wijk-bij-duurstede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744376",
          "name": "Wilnis",
          "country_code": "NL",
          "slug": "wilnis",
          "canonical_path": "/cities/nl/wilnis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744344",
          "name": "Winschoten",
          "country_code": "NL",
          "slug": "winschoten",
          "canonical_path": "/cities/nl/winschoten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q72974",
          "name": "Winterswijk",
          "country_code": "NL",
          "slug": "winterswijk",
          "canonical_path": "/cities/nl/winterswijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744324",
          "name": "Wisch",
          "country_code": "NL",
          "slug": "wisch",
          "canonical_path": "/cities/nl/wisch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9881",
          "name": "Woensdrecht",
          "country_code": "NL",
          "slug": "woensdrecht",
          "canonical_path": "/cities/nl/woensdrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q5128",
          "name": "Woerden",
          "country_code": "NL",
          "slug": "woerden",
          "canonical_path": "/cities/nl/woerden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744194",
          "name": "Wolvega",
          "country_code": "NL",
          "slug": "wolvega",
          "canonical_path": "/cities/nl/wolvega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744174",
          "name": "Wormer",
          "country_code": "NL",
          "slug": "wormer",
          "canonical_path": "/cities/nl/wormer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9976",
          "name": "Wormerland",
          "country_code": "NL",
          "slug": "wormerland",
          "canonical_path": "/cities/nl/wormerland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10055",
          "name": "Woudenberg",
          "country_code": "NL",
          "slug": "woudenberg",
          "canonical_path": "/cities/nl/woudenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744129",
          "name": "Yerseke",
          "country_code": "NL",
          "slug": "yerseke",
          "canonical_path": "/cities/nl/yerseke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:6941548",
          "name": "Ypenburg",
          "country_code": "NL",
          "slug": "ypenburg",
          "canonical_path": "/cities/nl/ypenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744118",
          "name": "Zaandam",
          "country_code": "NL",
          "slug": "zaandam",
          "canonical_path": "/cities/nl/zaandam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2744116",
          "name": "Zaandijk",
          "country_code": "NL",
          "slug": "zaandijk",
          "canonical_path": "/cities/nl/zaandijk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9978",
          "name": "Zaanstad",
          "country_code": "NL",
          "slug": "zaanstad",
          "canonical_path": "/cities/nl/zaanstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q1532373",
          "name": "Zaltbommel",
          "country_code": "NL",
          "slug": "zaltbommel",
          "canonical_path": "/cities/nl/zaltbommel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9980",
          "name": "Zandvoort",
          "country_code": "NL",
          "slug": "zandvoort",
          "canonical_path": "/cities/nl/zandvoort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q184454",
          "name": "Zeewolde",
          "country_code": "NL",
          "slug": "zeewolde",
          "canonical_path": "/cities/nl/zeewolde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10056",
          "name": "Zeist",
          "country_code": "NL",
          "slug": "zeist",
          "canonical_path": "/cities/nl/zeist/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2743963",
          "name": "Zelhem",
          "country_code": "NL",
          "slug": "zelhem",
          "canonical_path": "/cities/nl/zelhem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q197050",
          "name": "Zevenaar",
          "country_code": "NL",
          "slug": "zevenaar",
          "canonical_path": "/cities/nl/zevenaar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2743913",
          "name": "Zierikzee",
          "country_code": "NL",
          "slug": "zierikzee",
          "canonical_path": "/cities/nl/zierikzee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q26432",
          "name": "Zoetermeer",
          "country_code": "NL",
          "slug": "zoetermeer",
          "canonical_path": "/cities/nl/zoetermeer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q218259",
          "name": "Zoeterwoude",
          "country_code": "NL",
          "slug": "zoeterwoude",
          "canonical_path": "/cities/nl/zoeterwoude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2743658",
          "name": "Zuid-Scharwoude",
          "country_code": "NL",
          "slug": "zuid-scharwoude",
          "canonical_path": "/cities/nl/zuid-scharwoude/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2743774",
          "name": "Zuiderburen",
          "country_code": "NL",
          "slug": "zuiderburen",
          "canonical_path": "/cities/nl/zuiderburen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2743694",
          "name": "Zuidhorn",
          "country_code": "NL",
          "slug": "zuidhorn",
          "canonical_path": "/cities/nl/zuidhorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q228673",
          "name": "Zuidplas",
          "country_code": "NL",
          "slug": "zuidplas",
          "canonical_path": "/cities/nl/zuidplas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q9883",
          "name": "Zundert",
          "country_code": "NL",
          "slug": "zundert",
          "canonical_path": "/cities/nl/zundert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q15858232",
          "name": "Zutphen",
          "country_code": "NL",
          "slug": "zutphen",
          "canonical_path": "/cities/nl/zutphen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:geonames:2743574",
          "name": "Zwanenburg",
          "country_code": "NL",
          "slug": "zwanenburg",
          "canonical_path": "/cities/nl/zwanenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q10026",
          "name": "Zwartewaterland",
          "country_code": "NL",
          "slug": "zwartewaterland",
          "canonical_path": "/cities/nl/zwartewaterland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q244692",
          "name": "Zwijndrecht",
          "country_code": "NL",
          "slug": "zwijndrecht",
          "canonical_path": "/cities/nl/zwijndrecht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nl:wikidata:Q793",
          "name": "Zwolle",
          "country_code": "NL",
          "slug": "zwolle",
          "canonical_path": "/cities/nl/zwolle/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "NZ",
      "path": "cities/nz.json",
      "city_count": 93,
      "cities": [
        {
          "entity_id": "city:nz:statsnz_ur2023:2200",
          "name": "Alexandra",
          "country_code": "NZ",
          "slug": "alexandra",
          "canonical_path": "/cities/nz/alexandra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2148",
          "name": "Ashburton",
          "country_code": "NZ",
          "slug": "ashburton",
          "canonical_path": "/cities/nz/ashburton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2193449",
          "name": "Bell Block",
          "country_code": "NZ",
          "slug": "bell-block",
          "canonical_path": "/cities/nz/bell-block/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2193370",
          "name": "Bethlehem",
          "country_code": "NZ",
          "slug": "bethlehem",
          "canonical_path": "/cities/nz/bethlehem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2042",
          "name": "Blenheim",
          "country_code": "NZ",
          "slug": "blenheim",
          "canonical_path": "/cities/nz/blenheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1186",
          "name": "Cambridge",
          "country_code": "NZ",
          "slug": "cambridge",
          "canonical_path": "/cities/nz/cambridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1406",
          "name": "Carterton",
          "country_code": "NZ",
          "slug": "carterton",
          "canonical_path": "/cities/nz/carterton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2106",
          "name": "Christchurch",
          "country_code": "NZ",
          "slug": "christchurch",
          "canonical_path": "/cities/nz/christchurch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2192313",
          "name": "Claudelands",
          "country_code": "NZ",
          "slug": "claudelands",
          "canonical_path": "/cities/nz/claudelands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2195",
          "name": "Cromwell",
          "country_code": "NZ",
          "slug": "cromwell",
          "canonical_path": "/cities/nz/cromwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1369",
          "name": "Dannevirke",
          "country_code": "NZ",
          "slug": "dannevirke",
          "canonical_path": "/cities/nz/dannevirke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1055",
          "name": "Dargaville",
          "country_code": "NZ",
          "slug": "dargaville",
          "canonical_path": "/cities/nz/dargaville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2191562",
          "name": "Dunedin",
          "country_code": "NZ",
          "slug": "dunedin",
          "canonical_path": "/cities/nz/dunedin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2206854",
          "name": "Gisborne",
          "country_code": "NZ",
          "slug": "gisborne",
          "canonical_path": "/cities/nz/gisborne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2275",
          "name": "Gore",
          "country_code": "NZ",
          "slug": "gore",
          "canonical_path": "/cities/nz/gore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2058",
          "name": "Greymouth",
          "country_code": "NZ",
          "slug": "greymouth",
          "canonical_path": "/cities/nz/greymouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2190329",
          "name": "Halswell",
          "country_code": "NZ",
          "slug": "halswell",
          "canonical_path": "/cities/nz/halswell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1180",
          "name": "Hamilton",
          "country_code": "NZ",
          "slug": "hamilton",
          "canonical_path": "/cities/nz/hamilton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1288",
          "name": "Hastings",
          "country_code": "NZ",
          "slug": "hastings",
          "canonical_path": "/cities/nz/hastings/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1292",
          "name": "Havelock North",
          "country_code": "NZ",
          "slug": "havelock-north",
          "canonical_path": "/cities/nz/havelock-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1324",
          "name": "Hawera",
          "country_code": "NZ",
          "slug": "hawera",
          "canonical_path": "/cities/nz/hawera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2189793",
          "name": "Hornby",
          "country_code": "NZ",
          "slug": "hornby",
          "canonical_path": "/cities/nz/hornby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1166",
          "name": "Huntly",
          "country_code": "NZ",
          "slug": "huntly",
          "canonical_path": "/cities/nz/huntly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2278",
          "name": "Invercargill",
          "country_code": "NZ",
          "slug": "invercargill",
          "canonical_path": "/cities/nz/invercargill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2189397",
          "name": "Johnsonville",
          "country_code": "NZ",
          "slug": "johnsonville",
          "canonical_path": "/cities/nz/johnsonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2102",
          "name": "Kaiapoi",
          "country_code": "NZ",
          "slug": "kaiapoi",
          "canonical_path": "/cities/nz/kaiapoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2189028",
          "name": "Karori",
          "country_code": "NZ",
          "slug": "karori",
          "canonical_path": "/cities/nz/karori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1226",
          "name": "Katikati",
          "country_code": "NZ",
          "slug": "katikati",
          "canonical_path": "/cities/nz/katikati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1263",
          "name": "Kawerau",
          "country_code": "NZ",
          "slug": "kawerau",
          "canonical_path": "/cities/nz/kawerau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2188909",
          "name": "Kelvin Grove",
          "country_code": "NZ",
          "slug": "kelvin-grove",
          "canonical_path": "/cities/nz/kelvin-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1025",
          "name": "Kerikeri",
          "country_code": "NZ",
          "slug": "kerikeri",
          "canonical_path": "/cities/nz/kerikeri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2188858",
          "name": "Khandallah",
          "country_code": "NZ",
          "slug": "khandallah",
          "canonical_path": "/cities/nz/khandallah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1381",
          "name": "Levin",
          "country_code": "NZ",
          "slug": "levin",
          "canonical_path": "/cities/nz/levin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2139",
          "name": "Lincoln",
          "country_code": "NZ",
          "slug": "lincoln",
          "canonical_path": "/cities/nz/lincoln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2188164",
          "name": "Lower Hutt",
          "country_code": "NZ",
          "slug": "lower-hutt",
          "canonical_path": "/cities/nz/lower-hutt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1347",
          "name": "Marton",
          "country_code": "NZ",
          "slug": "marton",
          "canonical_path": "/cities/nz/marton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1403",
          "name": "Masterton",
          "country_code": "NZ",
          "slug": "masterton",
          "canonical_path": "/cities/nz/masterton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1179",
          "name": "Matamata",
          "country_code": "NZ",
          "slug": "matamata",
          "canonical_path": "/cities/nz/matamata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1173",
          "name": "Morrinsville",
          "country_code": "NZ",
          "slug": "morrinsville",
          "canonical_path": "/cities/nz/morrinsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2229",
          "name": "Mosgiel",
          "country_code": "NZ",
          "slug": "mosgiel",
          "canonical_path": "/cities/nz/mosgiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2010",
          "name": "Motueka",
          "country_code": "NZ",
          "slug": "motueka",
          "canonical_path": "/cities/nz/motueka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2208041",
          "name": "Mount Maunganui",
          "country_code": "NZ",
          "slug": "mount-maunganui",
          "canonical_path": "/cities/nz/mount-maunganui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1296",
          "name": "Napier",
          "country_code": "NZ",
          "slug": "napier",
          "canonical_path": "/cities/nz/napier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2186280",
          "name": "Nelson",
          "country_code": "NZ",
          "slug": "nelson",
          "canonical_path": "/cities/nz/nelson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2186255",
          "name": "New Brighton",
          "country_code": "NZ",
          "slug": "new-brighton",
          "canonical_path": "/cities/nz/new-brighton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2186239",
          "name": "New Plymouth",
          "country_code": "NZ",
          "slug": "new-plymouth",
          "canonical_path": "/cities/nz/new-plymouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:6244789",
          "name": "Newtown",
          "country_code": "NZ",
          "slug": "newtown",
          "canonical_path": "/cities/nz/newtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2186216",
          "name": "Ngaio",
          "country_code": "NZ",
          "slug": "ngaio",
          "canonical_path": "/cities/nz/ngaio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1169",
          "name": "Ngaruawahia",
          "country_code": "NZ",
          "slug": "ngaruawahia",
          "canonical_path": "/cities/nz/ngaruawahia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1242",
          "name": "Ngongotaha",
          "country_code": "NZ",
          "slug": "ngongotaha",
          "canonical_path": "/cities/nz/ngongotaha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2185994",
          "name": "North East Valley",
          "country_code": "NZ",
          "slug": "north-east-valley",
          "canonical_path": "/cities/nz/north-east-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2187",
          "name": "Oamaru",
          "country_code": "NZ",
          "slug": "oamaru",
          "canonical_path": "/cities/nz/oamaru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1229",
          "name": "Omokoroa",
          "country_code": "NZ",
          "slug": "omokoroa",
          "canonical_path": "/cities/nz/omokoroa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2185587",
          "name": "Onekawa",
          "country_code": "NZ",
          "slug": "onekawa",
          "canonical_path": "/cities/nz/onekawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2185579",
          "name": "Onerahi",
          "country_code": "NZ",
          "slug": "onerahi",
          "canonical_path": "/cities/nz/onerahi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1389",
          "name": "Otaki",
          "country_code": "NZ",
          "slug": "otaki",
          "canonical_path": "/cities/nz/otaki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2185213",
          "name": "Otumoetai",
          "country_code": "NZ",
          "slug": "otumoetai",
          "canonical_path": "/cities/nz/otumoetai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1364",
          "name": "Palmerston North",
          "country_code": "NZ",
          "slug": "palmerston-north",
          "canonical_path": "/cities/nz/palmerston-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1391",
          "name": "Paraparaumu",
          "country_code": "NZ",
          "slug": "paraparaumu",
          "canonical_path": "/cities/nz/paraparaumu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1160",
          "name": "Pokeno",
          "country_code": "NZ",
          "slug": "pokeno",
          "canonical_path": "/cities/nz/pokeno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1394",
          "name": "Porirua",
          "country_code": "NZ",
          "slug": "porirua",
          "canonical_path": "/cities/nz/porirua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2135",
          "name": "Prebbleton",
          "country_code": "NZ",
          "slug": "prebbleton",
          "canonical_path": "/cities/nz/prebbleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2217",
          "name": "Queenstown",
          "country_code": "NZ",
          "slug": "queenstown",
          "canonical_path": "/cities/nz/queenstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2096",
          "name": "Rangiora",
          "country_code": "NZ",
          "slug": "rangiora",
          "canonical_path": "/cities/nz/rangiora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2020",
          "name": "Richmond",
          "country_code": "NZ",
          "slug": "richmond",
          "canonical_path": "/cities/nz/richmond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2134",
          "name": "Rolleston",
          "country_code": "NZ",
          "slug": "rolleston",
          "canonical_path": "/cities/nz/rolleston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1246",
          "name": "Rotorua",
          "country_code": "NZ",
          "slug": "rotorua",
          "canonical_path": "/cities/nz/rotorua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2182444",
          "name": "Spreydon",
          "country_code": "NZ",
          "slug": "spreydon",
          "canonical_path": "/cities/nz/spreydon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2182311",
          "name": "Stoke",
          "country_code": "NZ",
          "slug": "stoke",
          "canonical_path": "/cities/nz/stoke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1316",
          "name": "Stratford",
          "country_code": "NZ",
          "slug": "stratford",
          "canonical_path": "/cities/nz/stratford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1215",
          "name": "Taupo",
          "country_code": "NZ",
          "slug": "taupo",
          "canonical_path": "/cities/nz/taupo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2208032",
          "name": "Tauranga",
          "country_code": "NZ",
          "slug": "tauranga",
          "canonical_path": "/cities/nz/tauranga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1187",
          "name": "Te Awamutu",
          "country_code": "NZ",
          "slug": "te-awamutu",
          "canonical_path": "/cities/nz/te-awamutu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1234",
          "name": "Te Puke",
          "country_code": "NZ",
          "slug": "te-puke",
          "canonical_path": "/cities/nz/te-puke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1142",
          "name": "Thames",
          "country_code": "NZ",
          "slug": "thames",
          "canonical_path": "/cities/nz/thames/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2161",
          "name": "Timaru",
          "country_code": "NZ",
          "slug": "timaru",
          "canonical_path": "/cities/nz/timaru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2181073",
          "name": "Titahi Bay",
          "country_code": "NZ",
          "slug": "titahi-bay",
          "canonical_path": "/cities/nz/titahi-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1199",
          "name": "Tokoroa",
          "country_code": "NZ",
          "slug": "tokoroa",
          "canonical_path": "/cities/nz/tokoroa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1159",
          "name": "Tuakau",
          "country_code": "NZ",
          "slug": "tuakau",
          "canonical_path": "/cities/nz/tuakau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1398",
          "name": "Upper Hutt",
          "country_code": "NZ",
          "slug": "upper-hutt",
          "canonical_path": "/cities/nz/upper-hutt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1390",
          "name": "Waikanae",
          "country_code": "NZ",
          "slug": "waikanae",
          "canonical_path": "/cities/nz/waikanae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2180118",
          "name": "Wainuiomata",
          "country_code": "NZ",
          "slug": "wainuiomata",
          "canonical_path": "/cities/nz/wainuiomata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1308",
          "name": "Waitara",
          "country_code": "NZ",
          "slug": "waitara",
          "canonical_path": "/cities/nz/waitara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1121",
          "name": "Waiuku",
          "country_code": "NZ",
          "slug": "waiuku",
          "canonical_path": "/cities/nz/waiuku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:2212",
          "name": "Wanaka",
          "country_code": "NZ",
          "slug": "wanaka",
          "canonical_path": "/cities/nz/wanaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1071",
          "name": "Warkworth",
          "country_code": "NZ",
          "slug": "warkworth",
          "canonical_path": "/cities/nz/warkworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:wikidata:Q23661",
          "name": "Wellington",
          "country_code": "NZ",
          "slug": "wellington",
          "canonical_path": "/cities/nz/wellington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1257",
          "name": "Whakatane",
          "country_code": "NZ",
          "slug": "whakatane",
          "canonical_path": "/cities/nz/whakatane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1342",
          "name": "Whanganui",
          "country_code": "NZ",
          "slug": "whanganui",
          "canonical_path": "/cities/nz/whanganui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1043",
          "name": "Whangarei",
          "country_code": "NZ",
          "slug": "whangarei",
          "canonical_path": "/cities/nz/whangarei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:statsnz_ur2023:1134",
          "name": "Whitianga",
          "country_code": "NZ",
          "slug": "whitianga",
          "canonical_path": "/cities/nz/whitianga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2179089",
          "name": "Wigram",
          "country_code": "NZ",
          "slug": "wigram",
          "canonical_path": "/cities/nz/wigram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:nz:geonames:2178982",
          "name": "Woodend",
          "country_code": "NZ",
          "slug": "woodend",
          "canonical_path": "/cities/nz/woodend/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "NO",
      "path": "cities/no.json",
      "city_count": 176,
      "cities": [
        {
          "entity_id": "city:no:slug:al",
          "name": "Ål",
          "country_code": "NO",
          "slug": "al",
          "canonical_path": "/cities/no/al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:alesund",
          "name": "Ålesund",
          "country_code": "NO",
          "slug": "alesund",
          "canonical_path": "/cities/no/alesund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:alstahaug",
          "name": "Alstahaug",
          "country_code": "NO",
          "slug": "alstahaug",
          "canonical_path": "/cities/no/alstahaug/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:alta",
          "name": "Alta",
          "country_code": "NO",
          "slug": "alta",
          "canonical_path": "/cities/no/alta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:ardal",
          "name": "Årdal",
          "country_code": "NO",
          "slug": "ardal",
          "canonical_path": "/cities/no/ardal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:arendal",
          "name": "Arendal",
          "country_code": "NO",
          "slug": "arendal",
          "canonical_path": "/cities/no/arendal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:as",
          "name": "Ås",
          "country_code": "NO",
          "slug": "as",
          "canonical_path": "/cities/no/as/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:asker",
          "name": "Asker",
          "country_code": "NO",
          "slug": "asker",
          "canonical_path": "/cities/no/asker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:askoy",
          "name": "Askøy",
          "country_code": "NO",
          "slug": "askoy",
          "canonical_path": "/cities/no/askoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:asnes",
          "name": "Åsnes",
          "country_code": "NO",
          "slug": "asnes",
          "canonical_path": "/cities/no/asnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:aurskog-holand",
          "name": "Aurskog-Høland",
          "country_code": "NO",
          "slug": "aurskog-holand",
          "canonical_path": "/cities/no/aurskog-holand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:austevoll",
          "name": "Austevoll",
          "country_code": "NO",
          "slug": "austevoll",
          "canonical_path": "/cities/no/austevoll/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:averoy",
          "name": "Averøy",
          "country_code": "NO",
          "slug": "averoy",
          "canonical_path": "/cities/no/averoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:baerum",
          "name": "Bærum",
          "country_code": "NO",
          "slug": "baerum",
          "canonical_path": "/cities/no/baerum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:balsfjord",
          "name": "Balsfjord",
          "country_code": "NO",
          "slug": "balsfjord",
          "canonical_path": "/cities/no/balsfjord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:bamble",
          "name": "Bamble",
          "country_code": "NO",
          "slug": "bamble",
          "canonical_path": "/cities/no/bamble/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:birkenes",
          "name": "Birkenes",
          "country_code": "NO",
          "slug": "birkenes",
          "canonical_path": "/cities/no/birkenes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:bjornafjorden",
          "name": "Bjørnafjorden",
          "country_code": "NO",
          "slug": "bjornafjorden",
          "canonical_path": "/cities/no/bjornafjorden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:bodo",
          "name": "Bodø",
          "country_code": "NO",
          "slug": "bodo",
          "canonical_path": "/cities/no/bodo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:bomlo",
          "name": "Bømlo",
          "country_code": "NO",
          "slug": "bomlo",
          "canonical_path": "/cities/no/bomlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:bronnoy",
          "name": "Brønnøy",
          "country_code": "NO",
          "slug": "bronnoy",
          "canonical_path": "/cities/no/bronnoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:drammen",
          "name": "Drammen",
          "country_code": "NO",
          "slug": "drammen",
          "canonical_path": "/cities/no/drammen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:eidskog",
          "name": "Eidskog",
          "country_code": "NO",
          "slug": "eidskog",
          "canonical_path": "/cities/no/eidskog/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:eidsvoll",
          "name": "Eidsvoll",
          "country_code": "NO",
          "slug": "eidsvoll",
          "canonical_path": "/cities/no/eidsvoll/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:eigersund",
          "name": "Eigersund",
          "country_code": "NO",
          "slug": "eigersund",
          "canonical_path": "/cities/no/eigersund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:elverum",
          "name": "Elverum",
          "country_code": "NO",
          "slug": "elverum",
          "canonical_path": "/cities/no/elverum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:enebakk",
          "name": "Enebakk",
          "country_code": "NO",
          "slug": "enebakk",
          "canonical_path": "/cities/no/enebakk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:faerder",
          "name": "Færder",
          "country_code": "NO",
          "slug": "faerder",
          "canonical_path": "/cities/no/faerder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:farsund",
          "name": "Farsund",
          "country_code": "NO",
          "slug": "farsund",
          "canonical_path": "/cities/no/farsund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:fauske",
          "name": "Fauske",
          "country_code": "NO",
          "slug": "fauske",
          "canonical_path": "/cities/no/fauske/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:flekkefjord",
          "name": "Flekkefjord",
          "country_code": "NO",
          "slug": "flekkefjord",
          "canonical_path": "/cities/no/flekkefjord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:fredrikstad",
          "name": "Fredrikstad",
          "country_code": "NO",
          "slug": "fredrikstad",
          "canonical_path": "/cities/no/fredrikstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:frogn",
          "name": "Frogn",
          "country_code": "NO",
          "slug": "frogn",
          "canonical_path": "/cities/no/frogn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:froland",
          "name": "Froland",
          "country_code": "NO",
          "slug": "froland",
          "canonical_path": "/cities/no/froland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:froya",
          "name": "Frøya",
          "country_code": "NO",
          "slug": "froya",
          "canonical_path": "/cities/no/froya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:gausdal",
          "name": "Gausdal",
          "country_code": "NO",
          "slug": "gausdal",
          "canonical_path": "/cities/no/gausdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:giske",
          "name": "Giske",
          "country_code": "NO",
          "slug": "giske",
          "canonical_path": "/cities/no/giske/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:gjerdrum",
          "name": "Gjerdrum",
          "country_code": "NO",
          "slug": "gjerdrum",
          "canonical_path": "/cities/no/gjerdrum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:gjesdal",
          "name": "Gjesdal",
          "country_code": "NO",
          "slug": "gjesdal",
          "canonical_path": "/cities/no/gjesdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:gjovik",
          "name": "Gjøvik",
          "country_code": "NO",
          "slug": "gjovik",
          "canonical_path": "/cities/no/gjovik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:gloppen",
          "name": "Gloppen",
          "country_code": "NO",
          "slug": "gloppen",
          "canonical_path": "/cities/no/gloppen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:gran",
          "name": "Gran",
          "country_code": "NO",
          "slug": "gran",
          "canonical_path": "/cities/no/gran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:grimstad",
          "name": "Grimstad",
          "country_code": "NO",
          "slug": "grimstad",
          "canonical_path": "/cities/no/grimstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:ha",
          "name": "Hå",
          "country_code": "NO",
          "slug": "ha",
          "canonical_path": "/cities/no/ha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:hadsel",
          "name": "Hadsel",
          "country_code": "NO",
          "slug": "hadsel",
          "canonical_path": "/cities/no/hadsel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:halden",
          "name": "Halden",
          "country_code": "NO",
          "slug": "halden",
          "canonical_path": "/cities/no/halden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:hamar",
          "name": "Hamar",
          "country_code": "NO",
          "slug": "hamar",
          "canonical_path": "/cities/no/hamar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:hammerfest",
          "name": "Hammerfest",
          "country_code": "NO",
          "slug": "hammerfest",
          "canonical_path": "/cities/no/hammerfest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:haram",
          "name": "Haram",
          "country_code": "NO",
          "slug": "haram",
          "canonical_path": "/cities/no/haram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:hareid",
          "name": "Hareid",
          "country_code": "NO",
          "slug": "hareid",
          "canonical_path": "/cities/no/hareid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:harstad",
          "name": "Harstad",
          "country_code": "NO",
          "slug": "harstad",
          "canonical_path": "/cities/no/harstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:haugesund",
          "name": "Haugesund",
          "country_code": "NO",
          "slug": "haugesund",
          "canonical_path": "/cities/no/haugesund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:heim",
          "name": "Heim",
          "country_code": "NO",
          "slug": "heim",
          "canonical_path": "/cities/no/heim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:hitra",
          "name": "Hitra",
          "country_code": "NO",
          "slug": "hitra",
          "canonical_path": "/cities/no/hitra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:hole",
          "name": "Hole",
          "country_code": "NO",
          "slug": "hole",
          "canonical_path": "/cities/no/hole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:holmestrand",
          "name": "Holmestrand",
          "country_code": "NO",
          "slug": "holmestrand",
          "canonical_path": "/cities/no/holmestrand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:horten",
          "name": "Horten",
          "country_code": "NO",
          "slug": "horten",
          "canonical_path": "/cities/no/horten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:hustadvika",
          "name": "Hustadvika",
          "country_code": "NO",
          "slug": "hustadvika",
          "canonical_path": "/cities/no/hustadvika/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:indre-fosen",
          "name": "Indre Fosen",
          "country_code": "NO",
          "slug": "indre-fosen",
          "canonical_path": "/cities/no/indre-fosen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:indre-ostfold",
          "name": "Indre Østfold",
          "country_code": "NO",
          "slug": "indre-ostfold",
          "canonical_path": "/cities/no/indre-ostfold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:jevnaker",
          "name": "Jevnaker",
          "country_code": "NO",
          "slug": "jevnaker",
          "canonical_path": "/cities/no/jevnaker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:karmoy",
          "name": "Karmøy",
          "country_code": "NO",
          "slug": "karmoy",
          "canonical_path": "/cities/no/karmoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:kinn",
          "name": "Kinn",
          "country_code": "NO",
          "slug": "kinn",
          "canonical_path": "/cities/no/kinn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:klepp",
          "name": "Klepp",
          "country_code": "NO",
          "slug": "klepp",
          "canonical_path": "/cities/no/klepp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:kongsberg",
          "name": "Kongsberg",
          "country_code": "NO",
          "slug": "kongsberg",
          "canonical_path": "/cities/no/kongsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:kongsvinger",
          "name": "Kongsvinger",
          "country_code": "NO",
          "slug": "kongsvinger",
          "canonical_path": "/cities/no/kongsvinger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:kragero",
          "name": "Kragerø",
          "country_code": "NO",
          "slug": "kragero",
          "canonical_path": "/cities/no/kragero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:kristiansand",
          "name": "Kristiansand",
          "country_code": "NO",
          "slug": "kristiansand",
          "canonical_path": "/cities/no/kristiansand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:kristiansund",
          "name": "Kristiansund",
          "country_code": "NO",
          "slug": "kristiansund",
          "canonical_path": "/cities/no/kristiansund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:kvam",
          "name": "Kvam",
          "country_code": "NO",
          "slug": "kvam",
          "canonical_path": "/cities/no/kvam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:kvinesdal",
          "name": "Kvinesdal",
          "country_code": "NO",
          "slug": "kvinesdal",
          "canonical_path": "/cities/no/kvinesdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:kvinnherad",
          "name": "Kvinnherad",
          "country_code": "NO",
          "slug": "kvinnherad",
          "canonical_path": "/cities/no/kvinnherad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:larvik",
          "name": "Larvik",
          "country_code": "NO",
          "slug": "larvik",
          "canonical_path": "/cities/no/larvik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:levanger",
          "name": "Levanger",
          "country_code": "NO",
          "slug": "levanger",
          "canonical_path": "/cities/no/levanger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:lier",
          "name": "Lier",
          "country_code": "NO",
          "slug": "lier",
          "canonical_path": "/cities/no/lier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:lillehammer",
          "name": "Lillehammer",
          "country_code": "NO",
          "slug": "lillehammer",
          "canonical_path": "/cities/no/lillehammer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:lillesand",
          "name": "Lillesand",
          "country_code": "NO",
          "slug": "lillesand",
          "canonical_path": "/cities/no/lillesand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:lillestrom",
          "name": "Lillestrøm",
          "country_code": "NO",
          "slug": "lillestrom",
          "canonical_path": "/cities/no/lillestrom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:lindesnes",
          "name": "Lindesnes",
          "country_code": "NO",
          "slug": "lindesnes",
          "canonical_path": "/cities/no/lindesnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:lorenskog",
          "name": "Lørenskog",
          "country_code": "NO",
          "slug": "lorenskog",
          "canonical_path": "/cities/no/lorenskog/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:loten",
          "name": "Løten",
          "country_code": "NO",
          "slug": "loten",
          "canonical_path": "/cities/no/loten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:lunner",
          "name": "Lunner",
          "country_code": "NO",
          "slug": "lunner",
          "canonical_path": "/cities/no/lunner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:luster",
          "name": "Luster",
          "country_code": "NO",
          "slug": "luster",
          "canonical_path": "/cities/no/luster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:lyngdal",
          "name": "Lyngdal",
          "country_code": "NO",
          "slug": "lyngdal",
          "canonical_path": "/cities/no/lyngdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:malselv",
          "name": "Målselv",
          "country_code": "NO",
          "slug": "malselv",
          "canonical_path": "/cities/no/malselv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:malvik",
          "name": "Malvik",
          "country_code": "NO",
          "slug": "malvik",
          "canonical_path": "/cities/no/malvik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:melhus",
          "name": "Melhus",
          "country_code": "NO",
          "slug": "melhus",
          "canonical_path": "/cities/no/melhus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:meloy",
          "name": "Meløy",
          "country_code": "NO",
          "slug": "meloy",
          "canonical_path": "/cities/no/meloy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:midt-telemark",
          "name": "Midt-Telemark",
          "country_code": "NO",
          "slug": "midt-telemark",
          "canonical_path": "/cities/no/midt-telemark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:midtre-gauldal",
          "name": "Midtre Gauldal",
          "country_code": "NO",
          "slug": "midtre-gauldal",
          "canonical_path": "/cities/no/midtre-gauldal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:modum",
          "name": "Modum",
          "country_code": "NO",
          "slug": "modum",
          "canonical_path": "/cities/no/modum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:molde",
          "name": "Molde",
          "country_code": "NO",
          "slug": "molde",
          "canonical_path": "/cities/no/molde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:moss",
          "name": "Moss",
          "country_code": "NO",
          "slug": "moss",
          "canonical_path": "/cities/no/moss/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:naeroysund",
          "name": "Nærøysund",
          "country_code": "NO",
          "slug": "naeroysund",
          "canonical_path": "/cities/no/naeroysund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:nannestad",
          "name": "Nannestad",
          "country_code": "NO",
          "slug": "nannestad",
          "canonical_path": "/cities/no/nannestad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:narvik",
          "name": "Narvik",
          "country_code": "NO",
          "slug": "narvik",
          "canonical_path": "/cities/no/narvik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:nes",
          "name": "Nes",
          "country_code": "NO",
          "slug": "nes",
          "canonical_path": "/cities/no/nes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:nesodden",
          "name": "Nesodden",
          "country_code": "NO",
          "slug": "nesodden",
          "canonical_path": "/cities/no/nesodden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:nittedal",
          "name": "Nittedal",
          "country_code": "NO",
          "slug": "nittedal",
          "canonical_path": "/cities/no/nittedal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:nome",
          "name": "Nome",
          "country_code": "NO",
          "slug": "nome",
          "canonical_path": "/cities/no/nome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:nord-aurdal",
          "name": "Nord-Aurdal",
          "country_code": "NO",
          "slug": "nord-aurdal",
          "canonical_path": "/cities/no/nord-aurdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:nord-fron",
          "name": "Nord-Fron",
          "country_code": "NO",
          "slug": "nord-fron",
          "canonical_path": "/cities/no/nord-fron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:nordre-follo",
          "name": "Nordre Follo",
          "country_code": "NO",
          "slug": "nordre-follo",
          "canonical_path": "/cities/no/nordre-follo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:nordre-land",
          "name": "Nordre Land",
          "country_code": "NO",
          "slug": "nordre-land",
          "canonical_path": "/cities/no/nordre-land/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:notodden",
          "name": "Notodden",
          "country_code": "NO",
          "slug": "notodden",
          "canonical_path": "/cities/no/notodden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:oppdal",
          "name": "Oppdal",
          "country_code": "NO",
          "slug": "oppdal",
          "canonical_path": "/cities/no/oppdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:orkland",
          "name": "Orkland",
          "country_code": "NO",
          "slug": "orkland",
          "canonical_path": "/cities/no/orkland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:orland",
          "name": "Ørland",
          "country_code": "NO",
          "slug": "orland",
          "canonical_path": "/cities/no/orland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:orsta",
          "name": "Ørsta",
          "country_code": "NO",
          "slug": "orsta",
          "canonical_path": "/cities/no/orsta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:oslo",
          "name": "Oslo",
          "country_code": "NO",
          "slug": "oslo",
          "canonical_path": "/cities/no/oslo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:osteroy",
          "name": "Osterøy",
          "country_code": "NO",
          "slug": "osteroy",
          "canonical_path": "/cities/no/osteroy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:ostre-toten",
          "name": "Østre Toten",
          "country_code": "NO",
          "slug": "ostre-toten",
          "canonical_path": "/cities/no/ostre-toten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:ovre-eiker",
          "name": "Øvre Eiker",
          "country_code": "NO",
          "slug": "ovre-eiker",
          "canonical_path": "/cities/no/ovre-eiker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:oyer",
          "name": "Øyer",
          "country_code": "NO",
          "slug": "oyer",
          "canonical_path": "/cities/no/oyer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:oygarden",
          "name": "Øygarden",
          "country_code": "NO",
          "slug": "oygarden",
          "canonical_path": "/cities/no/oygarden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:porsgrunn",
          "name": "Porsgrunn",
          "country_code": "NO",
          "slug": "porsgrunn",
          "canonical_path": "/cities/no/porsgrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:rade",
          "name": "Råde",
          "country_code": "NO",
          "slug": "rade",
          "canonical_path": "/cities/no/rade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:raelingen",
          "name": "Rælingen",
          "country_code": "NO",
          "slug": "raelingen",
          "canonical_path": "/cities/no/raelingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:rakkestad",
          "name": "Rakkestad",
          "country_code": "NO",
          "slug": "rakkestad",
          "canonical_path": "/cities/no/rakkestad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:rana",
          "name": "Rana",
          "country_code": "NO",
          "slug": "rana",
          "canonical_path": "/cities/no/rana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:randaberg",
          "name": "Randaberg",
          "country_code": "NO",
          "slug": "randaberg",
          "canonical_path": "/cities/no/randaberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:rauma",
          "name": "Rauma",
          "country_code": "NO",
          "slug": "rauma",
          "canonical_path": "/cities/no/rauma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:ringerike",
          "name": "Ringerike",
          "country_code": "NO",
          "slug": "ringerike",
          "canonical_path": "/cities/no/ringerike/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:ringsaker",
          "name": "Ringsaker",
          "country_code": "NO",
          "slug": "ringsaker",
          "canonical_path": "/cities/no/ringsaker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:risor",
          "name": "Risør",
          "country_code": "NO",
          "slug": "risor",
          "canonical_path": "/cities/no/risor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:roros",
          "name": "Røros",
          "country_code": "NO",
          "slug": "roros",
          "canonical_path": "/cities/no/roros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sandefjord",
          "name": "Sandefjord",
          "country_code": "NO",
          "slug": "sandefjord",
          "canonical_path": "/cities/no/sandefjord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sandnes",
          "name": "Sandnes",
          "country_code": "NO",
          "slug": "sandnes",
          "canonical_path": "/cities/no/sandnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sarpsborg",
          "name": "Sarpsborg",
          "country_code": "NO",
          "slug": "sarpsborg",
          "canonical_path": "/cities/no/sarpsborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sel",
          "name": "Sel",
          "country_code": "NO",
          "slug": "sel",
          "canonical_path": "/cities/no/sel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:senja",
          "name": "Senja",
          "country_code": "NO",
          "slug": "senja",
          "canonical_path": "/cities/no/senja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:skaun",
          "name": "Skaun",
          "country_code": "NO",
          "slug": "skaun",
          "canonical_path": "/cities/no/skaun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:skien",
          "name": "Skien",
          "country_code": "NO",
          "slug": "skien",
          "canonical_path": "/cities/no/skien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sogndal",
          "name": "Sogndal",
          "country_code": "NO",
          "slug": "sogndal",
          "canonical_path": "/cities/no/sogndal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sola",
          "name": "Sola",
          "country_code": "NO",
          "slug": "sola",
          "canonical_path": "/cities/no/sola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sondre-land",
          "name": "Søndre Land",
          "country_code": "NO",
          "slug": "sondre-land",
          "canonical_path": "/cities/no/sondre-land/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sor-odal",
          "name": "Sør-Odal",
          "country_code": "NO",
          "slug": "sor-odal",
          "canonical_path": "/cities/no/sor-odal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sor-varanger",
          "name": "Sør-Varanger",
          "country_code": "NO",
          "slug": "sor-varanger",
          "canonical_path": "/cities/no/sor-varanger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sortland",
          "name": "Sortland",
          "country_code": "NO",
          "slug": "sortland",
          "canonical_path": "/cities/no/sortland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:stad",
          "name": "Stad",
          "country_code": "NO",
          "slug": "stad",
          "canonical_path": "/cities/no/stad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:stange",
          "name": "Stange",
          "country_code": "NO",
          "slug": "stange",
          "canonical_path": "/cities/no/stange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:stavanger",
          "name": "Stavanger",
          "country_code": "NO",
          "slug": "stavanger",
          "canonical_path": "/cities/no/stavanger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:steinkjer",
          "name": "Steinkjer",
          "country_code": "NO",
          "slug": "steinkjer",
          "canonical_path": "/cities/no/steinkjer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:stjordal",
          "name": "Stjørdal",
          "country_code": "NO",
          "slug": "stjordal",
          "canonical_path": "/cities/no/stjordal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:stord",
          "name": "Stord",
          "country_code": "NO",
          "slug": "stord",
          "canonical_path": "/cities/no/stord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:strand",
          "name": "Strand",
          "country_code": "NO",
          "slug": "strand",
          "canonical_path": "/cities/no/strand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:stryn",
          "name": "Stryn",
          "country_code": "NO",
          "slug": "stryn",
          "canonical_path": "/cities/no/stryn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sula",
          "name": "Sula",
          "country_code": "NO",
          "slug": "sula",
          "canonical_path": "/cities/no/sula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sunndal",
          "name": "Sunndal",
          "country_code": "NO",
          "slug": "sunndal",
          "canonical_path": "/cities/no/sunndal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sunnfjord",
          "name": "Sunnfjord",
          "country_code": "NO",
          "slug": "sunnfjord",
          "canonical_path": "/cities/no/sunnfjord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:surnadal",
          "name": "Surnadal",
          "country_code": "NO",
          "slug": "surnadal",
          "canonical_path": "/cities/no/surnadal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sveio",
          "name": "Sveio",
          "country_code": "NO",
          "slug": "sveio",
          "canonical_path": "/cities/no/sveio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:sykkylven",
          "name": "Sykkylven",
          "country_code": "NO",
          "slug": "sykkylven",
          "canonical_path": "/cities/no/sykkylven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:time",
          "name": "Time",
          "country_code": "NO",
          "slug": "time",
          "canonical_path": "/cities/no/time/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:tinn",
          "name": "Tinn",
          "country_code": "NO",
          "slug": "tinn",
          "canonical_path": "/cities/no/tinn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:tonsberg",
          "name": "Tønsberg",
          "country_code": "NO",
          "slug": "tonsberg",
          "canonical_path": "/cities/no/tonsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:trondheim",
          "name": "Trondheim",
          "country_code": "NO",
          "slug": "trondheim",
          "canonical_path": "/cities/no/trondheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:trysil",
          "name": "Trysil",
          "country_code": "NO",
          "slug": "trysil",
          "canonical_path": "/cities/no/trysil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:tvedestrand",
          "name": "Tvedestrand",
          "country_code": "NO",
          "slug": "tvedestrand",
          "canonical_path": "/cities/no/tvedestrand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:tynset",
          "name": "Tynset",
          "country_code": "NO",
          "slug": "tynset",
          "canonical_path": "/cities/no/tynset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:tysvaer",
          "name": "Tysvær",
          "country_code": "NO",
          "slug": "tysvaer",
          "canonical_path": "/cities/no/tysvaer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:ullensaker",
          "name": "Ullensaker",
          "country_code": "NO",
          "slug": "ullensaker",
          "canonical_path": "/cities/no/ullensaker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:ullensvang",
          "name": "Ullensvang",
          "country_code": "NO",
          "slug": "ullensvang",
          "canonical_path": "/cities/no/ullensvang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:ulstein",
          "name": "Ulstein",
          "country_code": "NO",
          "slug": "ulstein",
          "canonical_path": "/cities/no/ulstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:vadso",
          "name": "Vadsø",
          "country_code": "NO",
          "slug": "vadso",
          "canonical_path": "/cities/no/vadso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:vagan",
          "name": "Vågan",
          "country_code": "NO",
          "slug": "vagan",
          "canonical_path": "/cities/no/vagan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:vefsn",
          "name": "Vefsn",
          "country_code": "NO",
          "slug": "vefsn",
          "canonical_path": "/cities/no/vefsn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:vennesla",
          "name": "Vennesla",
          "country_code": "NO",
          "slug": "vennesla",
          "canonical_path": "/cities/no/vennesla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:verdal",
          "name": "Verdal",
          "country_code": "NO",
          "slug": "verdal",
          "canonical_path": "/cities/no/verdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:vestby",
          "name": "Vestby",
          "country_code": "NO",
          "slug": "vestby",
          "canonical_path": "/cities/no/vestby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:vestnes",
          "name": "Vestnes",
          "country_code": "NO",
          "slug": "vestnes",
          "canonical_path": "/cities/no/vestnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:vestre-toten",
          "name": "Vestre Toten",
          "country_code": "NO",
          "slug": "vestre-toten",
          "canonical_path": "/cities/no/vestre-toten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:vestvagoy",
          "name": "Vestvågøy",
          "country_code": "NO",
          "slug": "vestvagoy",
          "canonical_path": "/cities/no/vestvagoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:vindafjord",
          "name": "Vindafjord",
          "country_code": "NO",
          "slug": "vindafjord",
          "canonical_path": "/cities/no/vindafjord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:volda",
          "name": "Volda",
          "country_code": "NO",
          "slug": "volda",
          "canonical_path": "/cities/no/volda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:no:slug:voss",
          "name": "Voss",
          "country_code": "NO",
          "slug": "voss",
          "canonical_path": "/cities/no/voss/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "PL",
      "path": "cities/pl.json",
      "city_count": 634,
      "cities": [
        {
          "entity_id": "city:pl:slug:aleksandrow-kujawski",
          "name": "Aleksandrów Kujawski",
          "country_code": "PL",
          "slug": "aleksandrow-kujawski",
          "canonical_path": "/cities/pl/aleksandrow-kujawski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3104132",
          "name": "Aleksandrów Łódzki",
          "country_code": "PL",
          "slug": "aleksandrow-lodzki",
          "canonical_path": "/cities/pl/aleksandrow-lodzki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3104115",
          "name": "Andrychów",
          "country_code": "PL",
          "slug": "andrychow",
          "canonical_path": "/cities/pl/andrychow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:augustow",
          "name": "Augustów",
          "country_code": "PL",
          "slug": "augustow",
          "canonical_path": "/cities/pl/augustow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3103856",
          "name": "Barcin",
          "country_code": "PL",
          "slug": "barcin",
          "canonical_path": "/cities/pl/barcin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:776384",
          "name": "Barczewo",
          "country_code": "PL",
          "slug": "barczewo",
          "canonical_path": "/cities/pl/barczewo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3103824",
          "name": "Barlinek",
          "country_code": "PL",
          "slug": "barlinek",
          "canonical_path": "/cities/pl/barlinek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bartoszyce",
          "name": "Bartoszyce",
          "country_code": "PL",
          "slug": "bartoszyce",
          "canonical_path": "/cities/pl/bartoszyce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bedzin",
          "name": "Będzin",
          "country_code": "PL",
          "slug": "bedzin",
          "canonical_path": "/cities/pl/bedzin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:belchatow",
          "name": "Bełchatów",
          "country_code": "PL",
          "slug": "belchatow",
          "canonical_path": "/cities/pl/belchatow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:776252",
          "name": "Bełżyce",
          "country_code": "PL",
          "slug": "belzyce",
          "canonical_path": "/cities/pl/belzyce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:biala-podlaska",
          "name": "Biała Podlaska",
          "country_code": "PL",
          "slug": "biala-podlaska",
          "canonical_path": "/cities/pl/biala-podlaska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3103588",
          "name": "Białe Błota",
          "country_code": "PL",
          "slug": "biale-blota",
          "canonical_path": "/cities/pl/biale-blota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:776114",
          "name": "Białobrzegi",
          "country_code": "PL",
          "slug": "bialobrzegi",
          "canonical_path": "/cities/pl/bialobrzegi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3103556",
          "name": "Białogard",
          "country_code": "PL",
          "slug": "bialogard",
          "canonical_path": "/cities/pl/bialogard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bialystok",
          "name": "Białystok",
          "country_code": "PL",
          "slug": "bialystok",
          "canonical_path": "/cities/pl/bialystok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bielawa",
          "name": "Bielawa",
          "country_code": "PL",
          "slug": "bielawa",
          "canonical_path": "/cities/pl/bielawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bielsk-podlaski",
          "name": "Bielsk Podlaski",
          "country_code": "PL",
          "slug": "bielsk-podlaski",
          "canonical_path": "/cities/pl/bielsk-podlaski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bielsko-biala",
          "name": "Bielsko-Biała",
          "country_code": "PL",
          "slug": "bielsko-biala",
          "canonical_path": "/cities/pl/bielsko-biala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bierun",
          "name": "Bieruń",
          "country_code": "PL",
          "slug": "bierun",
          "canonical_path": "/cities/pl/bierun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3103367",
          "name": "Bieruń Nowy",
          "country_code": "PL",
          "slug": "bierun-nowy",
          "canonical_path": "/cities/pl/bierun-nowy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3103364",
          "name": "Bierutów",
          "country_code": "PL",
          "slug": "bierutow",
          "canonical_path": "/cities/pl/bierutow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bilgoraj",
          "name": "Biłgoraj",
          "country_code": "PL",
          "slug": "bilgoraj",
          "canonical_path": "/cities/pl/bilgoraj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:775890",
          "name": "Biskupiec",
          "country_code": "PL",
          "slug": "biskupiec",
          "canonical_path": "/cities/pl/biskupiec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3103274",
          "name": "Blachownia",
          "country_code": "PL",
          "slug": "blachownia",
          "canonical_path": "/cities/pl/blachownia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:775820",
          "name": "Błonie",
          "country_code": "PL",
          "slug": "blonie",
          "canonical_path": "/cities/pl/blonie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bochnia",
          "name": "Bochnia",
          "country_code": "PL",
          "slug": "bochnia",
          "canonical_path": "/cities/pl/bochnia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3103096",
          "name": "Bogatynia",
          "country_code": "PL",
          "slug": "bogatynia",
          "canonical_path": "/cities/pl/bogatynia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:775717",
          "name": "Boguchwała",
          "country_code": "PL",
          "slug": "boguchwala",
          "canonical_path": "/cities/pl/boguchwala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:boguszow-gorce",
          "name": "Boguszów-Gorce",
          "country_code": "PL",
          "slug": "boguszow-gorce",
          "canonical_path": "/cities/pl/boguszow-gorce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3102969",
          "name": "Bolków",
          "country_code": "PL",
          "slug": "bolkow",
          "canonical_path": "/cities/pl/bolkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:braniewo",
          "name": "Braniewo",
          "country_code": "PL",
          "slug": "braniewo",
          "canonical_path": "/cities/pl/braniewo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3102652",
          "name": "Brenna",
          "country_code": "PL",
          "slug": "brenna",
          "canonical_path": "/cities/pl/brenna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:brodnica",
          "name": "Brodnica",
          "country_code": "PL",
          "slug": "brodnica",
          "canonical_path": "/cities/pl/brodnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:775224",
          "name": "Brwinów",
          "country_code": "PL",
          "slug": "brwinow",
          "canonical_path": "/cities/pl/brwinow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:brzeg",
          "name": "Brzeg",
          "country_code": "PL",
          "slug": "brzeg",
          "canonical_path": "/cities/pl/brzeg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3102456",
          "name": "Brzeg Dolny",
          "country_code": "PL",
          "slug": "brzeg-dolny",
          "canonical_path": "/cities/pl/brzeg-dolny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:775183",
          "name": "Brzesko",
          "country_code": "PL",
          "slug": "brzesko",
          "canonical_path": "/cities/pl/brzesko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3102444",
          "name": "Brzeszcze",
          "country_code": "PL",
          "slug": "brzeszcze",
          "canonical_path": "/cities/pl/brzeszcze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:brzeziny",
          "name": "Brzeziny",
          "country_code": "PL",
          "slug": "brzeziny",
          "canonical_path": "/cities/pl/brzeziny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:775086",
          "name": "Brzozów",
          "country_code": "PL",
          "slug": "brzozow",
          "canonical_path": "/cities/pl/brzozow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3102138",
          "name": "Buk",
          "country_code": "PL",
          "slug": "buk",
          "canonical_path": "/cities/pl/buk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3102076",
          "name": "Bukowno",
          "country_code": "PL",
          "slug": "bukowno",
          "canonical_path": "/cities/pl/bukowno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:774747",
          "name": "Busko-Zdrój",
          "country_code": "PL",
          "slug": "busko-zdroj",
          "canonical_path": "/cities/pl/busko-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:774730",
          "name": "Bychawa",
          "country_code": "PL",
          "slug": "bychawa",
          "canonical_path": "/cities/pl/bychawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bydgoszcz",
          "name": "Bydgoszcz",
          "country_code": "PL",
          "slug": "bydgoszcz",
          "canonical_path": "/cities/pl/bydgoszcz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101968",
          "name": "Bystrzyca Kłodzka",
          "country_code": "PL",
          "slug": "bystrzyca-klodzka",
          "canonical_path": "/cities/pl/bystrzyca-klodzka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:bytom",
          "name": "Bytom",
          "country_code": "PL",
          "slug": "bytom",
          "canonical_path": "/cities/pl/bytom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101943",
          "name": "Bytów",
          "country_code": "PL",
          "slug": "bytow",
          "canonical_path": "/cities/pl/bytow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:chelm",
          "name": "Chełm",
          "country_code": "PL",
          "slug": "chelm",
          "canonical_path": "/cities/pl/chelm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101788",
          "name": "Chełm Śląski",
          "country_code": "PL",
          "slug": "chelm-slaski",
          "canonical_path": "/cities/pl/chelm-slaski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101812",
          "name": "Chełmek",
          "country_code": "PL",
          "slug": "chelmek",
          "canonical_path": "/cities/pl/chelmek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:chelmno",
          "name": "Chełmno",
          "country_code": "PL",
          "slug": "chelmno",
          "canonical_path": "/cities/pl/chelmno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:chelmza",
          "name": "Chełmża",
          "country_code": "PL",
          "slug": "chelmza",
          "canonical_path": "/cities/pl/chelmza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101722",
          "name": "Chocianów",
          "country_code": "PL",
          "slug": "chocianow",
          "canonical_path": "/cities/pl/chocianow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101691",
          "name": "Chocznia",
          "country_code": "PL",
          "slug": "chocznia",
          "canonical_path": "/cities/pl/chocznia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101680",
          "name": "Chodzież",
          "country_code": "PL",
          "slug": "chodziez",
          "canonical_path": "/cities/pl/chodziez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101675",
          "name": "Chojna",
          "country_code": "PL",
          "slug": "chojna",
          "canonical_path": "/cities/pl/chojna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:chojnice",
          "name": "Chojnice",
          "country_code": "PL",
          "slug": "chojnice",
          "canonical_path": "/cities/pl/chojnice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:chojnow",
          "name": "Chojnów",
          "country_code": "PL",
          "slug": "chojnow",
          "canonical_path": "/cities/pl/chojnow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:774393",
          "name": "Choroszcz",
          "country_code": "PL",
          "slug": "choroszcz",
          "canonical_path": "/cities/pl/choroszcz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:chorzow",
          "name": "Chorzów",
          "country_code": "PL",
          "slug": "chorzow",
          "canonical_path": "/cities/pl/chorzow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101613",
          "name": "Choszczno",
          "country_code": "PL",
          "slug": "choszczno",
          "canonical_path": "/cities/pl/choszczno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101547",
          "name": "Chrzanów",
          "country_code": "PL",
          "slug": "chrzanow",
          "canonical_path": "/cities/pl/chrzanow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ciechanow",
          "name": "Ciechanów",
          "country_code": "PL",
          "slug": "ciechanow",
          "canonical_path": "/cities/pl/ciechanow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ciechocinek",
          "name": "Ciechocinek",
          "country_code": "PL",
          "slug": "ciechocinek",
          "canonical_path": "/cities/pl/ciechocinek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101367",
          "name": "Cieplice Śląskie Zdrój",
          "country_code": "PL",
          "slug": "cieplice-slaskie-zdroj",
          "canonical_path": "/cities/pl/cieplice-slaskie-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:cieszyn",
          "name": "Cieszyn",
          "country_code": "PL",
          "slug": "cieszyn",
          "canonical_path": "/cities/pl/cieszyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101220",
          "name": "Czaniec",
          "country_code": "PL",
          "slug": "czaniec",
          "canonical_path": "/cities/pl/czaniec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101204",
          "name": "Czaplinek",
          "country_code": "PL",
          "slug": "czaplinek",
          "canonical_path": "/cities/pl/czaplinek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:773941",
          "name": "Czarna Białostocka",
          "country_code": "PL",
          "slug": "czarna-bialostocka",
          "canonical_path": "/cities/pl/czarna-bialostocka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101161",
          "name": "Czarne",
          "country_code": "PL",
          "slug": "czarne",
          "canonical_path": "/cities/pl/czarne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101145",
          "name": "Czarnków",
          "country_code": "PL",
          "slug": "czarnkow",
          "canonical_path": "/cities/pl/czarnkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101076",
          "name": "Czechowice-Dziedzice",
          "country_code": "PL",
          "slug": "czechowice-dziedzice",
          "canonical_path": "/cities/pl/czechowice-dziedzice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:czeladz",
          "name": "Czeladź",
          "country_code": "PL",
          "slug": "czeladz",
          "canonical_path": "/cities/pl/czeladz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3101053",
          "name": "Czempiń",
          "country_code": "PL",
          "slug": "czempin",
          "canonical_path": "/cities/pl/czempin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3100984",
          "name": "Czersk",
          "country_code": "PL",
          "slug": "czersk",
          "canonical_path": "/cities/pl/czersk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3100974",
          "name": "Czerwionka-Leszczyny",
          "country_code": "PL",
          "slug": "czerwionka-leszczyny",
          "canonical_path": "/cities/pl/czerwionka-leszczyny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3100971",
          "name": "Czerwonak",
          "country_code": "PL",
          "slug": "czerwonak",
          "canonical_path": "/cities/pl/czerwonak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:czestochowa",
          "name": "Częstochowa",
          "country_code": "PL",
          "slug": "czestochowa",
          "canonical_path": "/cities/pl/czestochowa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:czluchow",
          "name": "Człuchów",
          "country_code": "PL",
          "slug": "czluchow",
          "canonical_path": "/cities/pl/czluchow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:773593",
          "name": "Dąbrowa Białostocka",
          "country_code": "PL",
          "slug": "dabrowa-bialostocka",
          "canonical_path": "/cities/pl/dabrowa-bialostocka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:dabrowa-gornicza",
          "name": "Dąbrowa Górnicza",
          "country_code": "PL",
          "slug": "dabrowa-gornicza",
          "canonical_path": "/cities/pl/dabrowa-gornicza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:773569",
          "name": "Dąbrowa Tarnowska",
          "country_code": "PL",
          "slug": "dabrowa-tarnowska",
          "canonical_path": "/cities/pl/dabrowa-tarnowska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3100637",
          "name": "Darłowo",
          "country_code": "PL",
          "slug": "darlowo",
          "canonical_path": "/cities/pl/darlowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:debica",
          "name": "Dębica",
          "country_code": "PL",
          "slug": "debica",
          "canonical_path": "/cities/pl/debica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:deblin",
          "name": "Dęblin",
          "country_code": "PL",
          "slug": "deblin",
          "canonical_path": "/cities/pl/deblin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3100545",
          "name": "Dębno",
          "country_code": "PL",
          "slug": "debno",
          "canonical_path": "/cities/pl/debno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3100489",
          "name": "Debrzno",
          "country_code": "PL",
          "slug": "debrzno",
          "canonical_path": "/cities/pl/debrzno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:773176",
          "name": "Dobczyce",
          "country_code": "PL",
          "slug": "dobczyce",
          "canonical_path": "/cities/pl/dobczyce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:773148",
          "name": "Dobre Miasto",
          "country_code": "PL",
          "slug": "dobre-miasto",
          "canonical_path": "/cities/pl/dobre-miasto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3100139",
          "name": "Drawsko Pomorskie",
          "country_code": "PL",
          "slug": "drawsko-pomorskie",
          "canonical_path": "/cities/pl/drawsko-pomorskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3100127",
          "name": "Drezdenko",
          "country_code": "PL",
          "slug": "drezdenko",
          "canonical_path": "/cities/pl/drezdenko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:772772",
          "name": "Dynów",
          "country_code": "PL",
          "slug": "dynow",
          "canonical_path": "/cities/pl/dynow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:dzialdowo",
          "name": "Działdowo",
          "country_code": "PL",
          "slug": "dzialdowo",
          "canonical_path": "/cities/pl/dzialdowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099923",
          "name": "Działoszyn",
          "country_code": "PL",
          "slug": "dzialoszyn",
          "canonical_path": "/cities/pl/dzialoszyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099842",
          "name": "Dzierzgoń",
          "country_code": "PL",
          "slug": "dzierzgon",
          "canonical_path": "/cities/pl/dzierzgon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:dzierzoniow",
          "name": "Dzierżoniów",
          "country_code": "PL",
          "slug": "dzierzoniow",
          "canonical_path": "/cities/pl/dzierzoniow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:elblag",
          "name": "Elbląg",
          "country_code": "PL",
          "slug": "elblag",
          "canonical_path": "/cities/pl/elblag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:elk",
          "name": "Ełk",
          "country_code": "PL",
          "slug": "elk",
          "canonical_path": "/cities/pl/elk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099654",
          "name": "Fordon",
          "country_code": "PL",
          "slug": "fordon",
          "canonical_path": "/cities/pl/fordon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:garwolin",
          "name": "Garwolin",
          "country_code": "PL",
          "slug": "garwolin",
          "canonical_path": "/cities/pl/garwolin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:gdansk",
          "name": "Gdańsk",
          "country_code": "PL",
          "slug": "gdansk",
          "canonical_path": "/cities/pl/gdansk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:gdynia",
          "name": "Gdynia",
          "country_code": "PL",
          "slug": "gdynia",
          "canonical_path": "/cities/pl/gdynia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:772227",
          "name": "Gierłoż",
          "country_code": "PL",
          "slug": "gierloz",
          "canonical_path": "/cities/pl/gierloz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:gizycko",
          "name": "Giżycko",
          "country_code": "PL",
          "slug": "gizycko",
          "canonical_path": "/cities/pl/gizycko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:gliwice",
          "name": "Gliwice",
          "country_code": "PL",
          "slug": "gliwice",
          "canonical_path": "/cities/pl/gliwice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:glogow",
          "name": "Głogów",
          "country_code": "PL",
          "slug": "glogow",
          "canonical_path": "/cities/pl/glogow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:772086",
          "name": "Głogów Małopolski",
          "country_code": "PL",
          "slug": "glogow-malopolski",
          "canonical_path": "/cities/pl/glogow-malopolski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099209",
          "name": "Głogówek",
          "country_code": "PL",
          "slug": "glogowek",
          "canonical_path": "/cities/pl/glogowek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:glowno",
          "name": "Głowno",
          "country_code": "PL",
          "slug": "glowno",
          "canonical_path": "/cities/pl/glowno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099174",
          "name": "Głubczyce",
          "country_code": "PL",
          "slug": "glubczyce",
          "canonical_path": "/cities/pl/glubczyce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099169",
          "name": "Głuchołazy",
          "country_code": "PL",
          "slug": "glucholazy",
          "canonical_path": "/cities/pl/glucholazy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099146",
          "name": "Głuszyca",
          "country_code": "PL",
          "slug": "gluszyca",
          "canonical_path": "/cities/pl/gluszyca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099127",
          "name": "Gniew",
          "country_code": "PL",
          "slug": "gniew",
          "canonical_path": "/cities/pl/gniew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099120",
          "name": "Gniewkowo",
          "country_code": "PL",
          "slug": "gniewkowo",
          "canonical_path": "/cities/pl/gniewkowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:gniezno",
          "name": "Gniezno",
          "country_code": "PL",
          "slug": "gniezno",
          "canonical_path": "/cities/pl/gniezno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099095",
          "name": "Goczałkowice Zdrój",
          "country_code": "PL",
          "slug": "goczalkowice-zdroj",
          "canonical_path": "/cities/pl/goczalkowice-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3099048",
          "name": "Gogolin",
          "country_code": "PL",
          "slug": "gogolin",
          "canonical_path": "/cities/pl/gogolin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:771953",
          "name": "Gołdap",
          "country_code": "PL",
          "slug": "goldap",
          "canonical_path": "/cities/pl/goldap/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3098966",
          "name": "Goleniów",
          "country_code": "PL",
          "slug": "goleniow",
          "canonical_path": "/cities/pl/goleniow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:golub-dobrzyn",
          "name": "Golub-Dobrzyń",
          "country_code": "PL",
          "slug": "golub-dobrzyn",
          "canonical_path": "/cities/pl/golub-dobrzyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3098898",
          "name": "Góra",
          "country_code": "PL",
          "slug": "gora",
          "canonical_path": "/cities/pl/gora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:771870",
          "name": "Góra Kalwaria",
          "country_code": "PL",
          "slug": "gora-kalwaria",
          "canonical_path": "/cities/pl/gora-kalwaria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:gorlice",
          "name": "Gorlice",
          "country_code": "PL",
          "slug": "gorlice",
          "canonical_path": "/cities/pl/gorlice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:gorzow-wielkopolski",
          "name": "Gorzów Wielkopolski",
          "country_code": "PL",
          "slug": "gorzow-wielkopolski",
          "canonical_path": "/cities/pl/gorzow-wielkopolski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:771729",
          "name": "Gorzyce",
          "country_code": "PL",
          "slug": "gorzyce",
          "canonical_path": "/cities/pl/gorzyce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3098625",
          "name": "Gostyń",
          "country_code": "PL",
          "slug": "gostyn",
          "canonical_path": "/cities/pl/gostyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:gostynin",
          "name": "Gostynin",
          "country_code": "PL",
          "slug": "gostynin",
          "canonical_path": "/cities/pl/gostynin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:grajewo",
          "name": "Grajewo",
          "country_code": "PL",
          "slug": "grajewo",
          "canonical_path": "/cities/pl/grajewo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3098333",
          "name": "Grodków",
          "country_code": "PL",
          "slug": "grodkow",
          "canonical_path": "/cities/pl/grodkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:771401",
          "name": "Grodzisk Mazowiecki",
          "country_code": "PL",
          "slug": "grodzisk-mazowiecki",
          "canonical_path": "/cities/pl/grodzisk-mazowiecki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3098288",
          "name": "Grodzisk Wielkopolski",
          "country_code": "PL",
          "slug": "grodzisk-wielkopolski",
          "canonical_path": "/cities/pl/grodzisk-wielkopolski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:771384",
          "name": "Grójec",
          "country_code": "PL",
          "slug": "grojec",
          "canonical_path": "/cities/pl/grojec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:771348",
          "name": "Grudki",
          "country_code": "PL",
          "slug": "grudki",
          "canonical_path": "/cities/pl/grudki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:grudziadz",
          "name": "Grudziądz",
          "country_code": "PL",
          "slug": "grudziadz",
          "canonical_path": "/cities/pl/grudziadz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:771313",
          "name": "Grybów",
          "country_code": "PL",
          "slug": "grybow",
          "canonical_path": "/cities/pl/grybow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3098201",
          "name": "Gryfice",
          "country_code": "PL",
          "slug": "gryfice",
          "canonical_path": "/cities/pl/gryfice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3098200",
          "name": "Gryfino",
          "country_code": "PL",
          "slug": "gryfino",
          "canonical_path": "/cities/pl/gryfino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3098199",
          "name": "Gryfów Śląski",
          "country_code": "PL",
          "slug": "gryfow-slaski",
          "canonical_path": "/cities/pl/gryfow-slaski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:gubin",
          "name": "Gubin",
          "country_code": "PL",
          "slug": "gubin",
          "canonical_path": "/cities/pl/gubin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:hajnowka",
          "name": "Hajnówka",
          "country_code": "PL",
          "slug": "hajnowka",
          "canonical_path": "/cities/pl/hajnowka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:hrubieszow",
          "name": "Hrubieszów",
          "country_code": "PL",
          "slug": "hrubieszow",
          "canonical_path": "/cities/pl/hrubieszow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ilawa",
          "name": "Iława",
          "country_code": "PL",
          "slug": "ilawa",
          "canonical_path": "/cities/pl/ilawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:770792",
          "name": "Iłża",
          "country_code": "PL",
          "slug": "ilza",
          "canonical_path": "/cities/pl/ilza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3097886",
          "name": "Imielin",
          "country_code": "PL",
          "slug": "imielin",
          "canonical_path": "/cities/pl/imielin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:inowroclaw",
          "name": "Inowrocław",
          "country_code": "PL",
          "slug": "inowroclaw",
          "canonical_path": "/cities/pl/inowroclaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:770706",
          "name": "Jabłonna",
          "country_code": "PL",
          "slug": "jablonna",
          "canonical_path": "/cities/pl/jablonna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3097688",
          "name": "Janikowo",
          "country_code": "PL",
          "slug": "janikowo",
          "canonical_path": "/cities/pl/janikowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:770425",
          "name": "Janów Lubelski",
          "country_code": "PL",
          "slug": "janow-lubelski",
          "canonical_path": "/cities/pl/janow-lubelski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3097594",
          "name": "Janowiec Wielkopolski",
          "country_code": "PL",
          "slug": "janowiec-wielkopolski",
          "canonical_path": "/cities/pl/janowiec-wielkopolski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3097528",
          "name": "Jarocin",
          "country_code": "PL",
          "slug": "jarocin",
          "canonical_path": "/cities/pl/jarocin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:jaroslaw",
          "name": "Jarosław",
          "country_code": "PL",
          "slug": "jaroslaw",
          "canonical_path": "/cities/pl/jaroslaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:jaslo",
          "name": "Jasło",
          "country_code": "PL",
          "slug": "jaslo",
          "canonical_path": "/cities/pl/jaslo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3097420",
          "name": "Jastrowie",
          "country_code": "PL",
          "slug": "jastrowie",
          "canonical_path": "/cities/pl/jastrowie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:jastrzebie-zdroj",
          "name": "Jastrzębie-Zdrój",
          "country_code": "PL",
          "slug": "jastrzebie-zdroj",
          "canonical_path": "/cities/pl/jastrzebie-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:jawor",
          "name": "Jawor",
          "country_code": "PL",
          "slug": "jawor",
          "canonical_path": "/cities/pl/jawor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3097339",
          "name": "Jaworze",
          "country_code": "PL",
          "slug": "jaworze",
          "canonical_path": "/cities/pl/jaworze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:jaworzno",
          "name": "Jaworzno",
          "country_code": "PL",
          "slug": "jaworzno",
          "canonical_path": "/cities/pl/jaworzno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3097328",
          "name": "Jaworzyna Śląska",
          "country_code": "PL",
          "slug": "jaworzyna-slaska",
          "canonical_path": "/cities/pl/jaworzyna-slaska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:770169",
          "name": "Jedlicze",
          "country_code": "PL",
          "slug": "jedlicze",
          "canonical_path": "/cities/pl/jedlicze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3097301",
          "name": "Jedlina-Zdrój",
          "country_code": "PL",
          "slug": "jedlina-zdroj",
          "canonical_path": "/cities/pl/jedlina-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:770157",
          "name": "Jędrzejów",
          "country_code": "PL",
          "slug": "jedrzejow",
          "canonical_path": "/cities/pl/jedrzejow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:7303641",
          "name": "Jelcz Laskowice",
          "country_code": "PL",
          "slug": "jelcz-laskowice",
          "canonical_path": "/cities/pl/jelcz-laskowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:jelenia-gora",
          "name": "Jelenia Góra",
          "country_code": "PL",
          "slug": "jelenia-gora",
          "canonical_path": "/cities/pl/jelenia-gora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:770045",
          "name": "Jeżowe",
          "country_code": "PL",
          "slug": "jezowe",
          "canonical_path": "/cities/pl/jezowe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3097107",
          "name": "Jordanów",
          "country_code": "PL",
          "slug": "jordanow",
          "canonical_path": "/cities/pl/jordanow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096911",
          "name": "Kalety",
          "country_code": "PL",
          "slug": "kalety",
          "canonical_path": "/cities/pl/kalety/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:kalisz",
          "name": "Kalisz",
          "country_code": "PL",
          "slug": "kalisz",
          "canonical_path": "/cities/pl/kalisz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096765",
          "name": "Kamień Pomorski",
          "country_code": "PL",
          "slug": "kamien-pomorski",
          "canonical_path": "/cities/pl/kamien-pomorski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:kamienna-gora",
          "name": "Kamienna Góra",
          "country_code": "PL",
          "slug": "kamienna-gora",
          "canonical_path": "/cities/pl/kamienna-gora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:769539",
          "name": "Karczew",
          "country_code": "PL",
          "slug": "karczew",
          "canonical_path": "/cities/pl/karczew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096630",
          "name": "Karlino",
          "country_code": "PL",
          "slug": "karlino",
          "canonical_path": "/cities/pl/karlino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096525",
          "name": "Kartuzy",
          "country_code": "PL",
          "slug": "kartuzy",
          "canonical_path": "/cities/pl/kartuzy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:katowice",
          "name": "Katowice",
          "country_code": "PL",
          "slug": "katowice",
          "canonical_path": "/cities/pl/katowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096444",
          "name": "Kąty Wrocławskie",
          "country_code": "PL",
          "slug": "katy-wroclawskie",
          "canonical_path": "/cities/pl/katy-wroclawskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:769346",
          "name": "Kazimierza Wielka",
          "country_code": "PL",
          "slug": "kazimierza-wielka",
          "canonical_path": "/cities/pl/kazimierza-wielka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:kedzierzyn-kozle",
          "name": "Kędzierzyn-Koźle",
          "country_code": "PL",
          "slug": "kedzierzyn-kozle",
          "canonical_path": "/cities/pl/kedzierzyn-kozle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096338",
          "name": "Kępno",
          "country_code": "PL",
          "slug": "kepno",
          "canonical_path": "/cities/pl/kepno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ketrzyn",
          "name": "Kętrzyn",
          "country_code": "PL",
          "slug": "ketrzyn",
          "canonical_path": "/cities/pl/ketrzyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096328",
          "name": "Kęty",
          "country_code": "PL",
          "slug": "kety",
          "canonical_path": "/cities/pl/kety/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:kielce",
          "name": "Kielce",
          "country_code": "PL",
          "slug": "kielce",
          "canonical_path": "/cities/pl/kielce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096240",
          "name": "Kietrz",
          "country_code": "PL",
          "slug": "kietrz",
          "canonical_path": "/cities/pl/kietrz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096090",
          "name": "Kłobuck",
          "country_code": "PL",
          "slug": "klobuck",
          "canonical_path": "/cities/pl/klobuck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096079",
          "name": "Kłodawa",
          "country_code": "PL",
          "slug": "klodawa",
          "canonical_path": "/cities/pl/klodawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:klodzko",
          "name": "Kłodzko",
          "country_code": "PL",
          "slug": "klodzko",
          "canonical_path": "/cities/pl/klodzko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096003",
          "name": "Kluczbork",
          "country_code": "PL",
          "slug": "kluczbork",
          "canonical_path": "/cities/pl/kluczbork/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096002",
          "name": "Klucze",
          "country_code": "PL",
          "slug": "klucze",
          "canonical_path": "/cities/pl/klucze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:knurow",
          "name": "Knurów",
          "country_code": "PL",
          "slug": "knurow",
          "canonical_path": "/cities/pl/knurow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:kobylka",
          "name": "Kobyłka",
          "country_code": "PL",
          "slug": "kobylka",
          "canonical_path": "/cities/pl/kobylka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:768805",
          "name": "Kolbuszowa",
          "country_code": "PL",
          "slug": "kolbuszowa",
          "canonical_path": "/cities/pl/kolbuszowa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:768785",
          "name": "Kolno",
          "country_code": "PL",
          "slug": "kolno",
          "canonical_path": "/cities/pl/kolno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:kolo",
          "name": "Koło",
          "country_code": "PL",
          "slug": "kolo",
          "canonical_path": "/cities/pl/kolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3095795",
          "name": "Kołobrzeg",
          "country_code": "PL",
          "slug": "kolobrzeg",
          "canonical_path": "/cities/pl/kolobrzeg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3095413",
          "name": "Koluszki",
          "country_code": "PL",
          "slug": "koluszki",
          "canonical_path": "/cities/pl/koluszki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3095396",
          "name": "Komorniki",
          "country_code": "PL",
          "slug": "komorniki",
          "canonical_path": "/cities/pl/komorniki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:768315",
          "name": "Komorów",
          "country_code": "PL",
          "slug": "komorow",
          "canonical_path": "/cities/pl/komorow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3095330",
          "name": "Koniecpol",
          "country_code": "PL",
          "slug": "koniecpol",
          "canonical_path": "/cities/pl/koniecpol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:konin",
          "name": "Konin",
          "country_code": "PL",
          "slug": "konin",
          "canonical_path": "/cities/pl/konin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:768218",
          "name": "Końskie",
          "country_code": "PL",
          "slug": "konskie",
          "canonical_path": "/cities/pl/konskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:768216",
          "name": "Konstancin-Jeziorna",
          "country_code": "PL",
          "slug": "konstancin-jeziorna",
          "canonical_path": "/cities/pl/konstancin-jeziorna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:konstantynow-lodzki",
          "name": "Konstantynów Łódzki",
          "country_code": "PL",
          "slug": "konstantynow-lodzki",
          "canonical_path": "/cities/pl/konstantynow-lodzki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:768136",
          "name": "Korczyna",
          "country_code": "PL",
          "slug": "korczyna",
          "canonical_path": "/cities/pl/korczyna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3095194",
          "name": "Kórnik",
          "country_code": "PL",
          "slug": "kornik",
          "canonical_path": "/cities/pl/kornik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3095192",
          "name": "Koronowo",
          "country_code": "PL",
          "slug": "koronowo",
          "canonical_path": "/cities/pl/koronowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:koscian",
          "name": "Kościan",
          "country_code": "PL",
          "slug": "koscian",
          "canonical_path": "/cities/pl/koscian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:koscierzyna",
          "name": "Kościerzyna",
          "country_code": "PL",
          "slug": "koscierzyna",
          "canonical_path": "/cities/pl/koscierzyna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3095058",
          "name": "Kostrzyn",
          "country_code": "PL",
          "slug": "kostrzyn",
          "canonical_path": "/cities/pl/kostrzyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:kostrzyn-nad-odra",
          "name": "Kostrzyn Nad Odrą",
          "country_code": "PL",
          "slug": "kostrzyn-nad-odra",
          "canonical_path": "/cities/pl/kostrzyn-nad-odra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3095049",
          "name": "Koszalin",
          "country_code": "PL",
          "slug": "koszalin",
          "canonical_path": "/cities/pl/koszalin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094934",
          "name": "Kowary",
          "country_code": "PL",
          "slug": "kowary",
          "canonical_path": "/cities/pl/kowary/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:767814",
          "name": "Kozienice",
          "country_code": "PL",
          "slug": "kozienice",
          "canonical_path": "/cities/pl/kozienice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094852",
          "name": "Koźmin Wielkopolski",
          "country_code": "PL",
          "slug": "kozmin-wielkopolski",
          "canonical_path": "/cities/pl/kozmin-wielkopolski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094832",
          "name": "Kożuchów",
          "country_code": "PL",
          "slug": "kozuchow",
          "canonical_path": "/cities/pl/kozuchow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094831",
          "name": "Kozy",
          "country_code": "PL",
          "slug": "kozy",
          "canonical_path": "/cities/pl/kozy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:krakow",
          "name": "Kraków",
          "country_code": "PL",
          "slug": "krakow",
          "canonical_path": "/cities/pl/krakow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094788",
          "name": "Krapkowice",
          "country_code": "PL",
          "slug": "krapkowice",
          "canonical_path": "/cities/pl/krapkowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:krasnik",
          "name": "Kraśnik",
          "country_code": "PL",
          "slug": "krasnik",
          "canonical_path": "/cities/pl/krasnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:krasnystaw",
          "name": "Krasnystaw",
          "country_code": "PL",
          "slug": "krasnystaw",
          "canonical_path": "/cities/pl/krasnystaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:krosno",
          "name": "Krosno",
          "country_code": "PL",
          "slug": "krosno",
          "canonical_path": "/cities/pl/krosno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094633",
          "name": "Krosno Odrzańskie",
          "country_code": "PL",
          "slug": "krosno-odrzanskie",
          "canonical_path": "/cities/pl/krosno-odrzanskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094625",
          "name": "Krotoszyn",
          "country_code": "PL",
          "slug": "krotoszyn",
          "canonical_path": "/cities/pl/krotoszyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094585",
          "name": "Kruszwica",
          "country_code": "PL",
          "slug": "kruszwica",
          "canonical_path": "/cities/pl/kruszwica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:767374",
          "name": "Krynica-Zdrój",
          "country_code": "PL",
          "slug": "krynica-zdroj",
          "canonical_path": "/cities/pl/krynica-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094490",
          "name": "Krzeszowice",
          "country_code": "PL",
          "slug": "krzeszowice",
          "canonical_path": "/cities/pl/krzeszowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094408",
          "name": "Krzyż Wielkopolski",
          "country_code": "PL",
          "slug": "krzyz-wielkopolski",
          "canonical_path": "/cities/pl/krzyz-wielkopolski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094370",
          "name": "Ksawerów",
          "country_code": "PL",
          "slug": "ksawerow",
          "canonical_path": "/cities/pl/ksawerow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094303",
          "name": "Kudowa-Zdrój",
          "country_code": "PL",
          "slug": "kudowa-zdroj",
          "canonical_path": "/cities/pl/kudowa-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:kutno",
          "name": "Kutno",
          "country_code": "PL",
          "slug": "kutno",
          "canonical_path": "/cities/pl/kutno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094164",
          "name": "Kuźnia Raciborska",
          "country_code": "PL",
          "slug": "kuznia-raciborska",
          "canonical_path": "/cities/pl/kuznia-raciborska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:kwidzyn",
          "name": "Kwidzyn",
          "country_code": "PL",
          "slug": "kwidzyn",
          "canonical_path": "/cities/pl/kwidzyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3094016",
          "name": "Lądek-Zdrój",
          "country_code": "PL",
          "slug": "ladek-zdroj",
          "canonical_path": "/cities/pl/ladek-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lancut",
          "name": "Łańcut",
          "country_code": "PL",
          "slug": "lancut",
          "canonical_path": "/cities/pl/lancut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:766783",
          "name": "Łapy",
          "country_code": "PL",
          "slug": "lapy",
          "canonical_path": "/cities/pl/lapy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3093902",
          "name": "Łask",
          "country_code": "PL",
          "slug": "lask",
          "canonical_path": "/cities/pl/lask/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:laziska-gorne",
          "name": "Łaziska Górne",
          "country_code": "PL",
          "slug": "laziska-gorne",
          "canonical_path": "/cities/pl/laziska-gorne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3093768",
          "name": "Łazy",
          "country_code": "PL",
          "slug": "lazy",
          "canonical_path": "/cities/pl/lazy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lebork",
          "name": "Lębork",
          "country_code": "PL",
          "slug": "lebork",
          "canonical_path": "/cities/pl/lebork/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:766583",
          "name": "Łęczna",
          "country_code": "PL",
          "slug": "leczna",
          "canonical_path": "/cities/pl/leczna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:leczyca",
          "name": "Łęczyca",
          "country_code": "PL",
          "slug": "leczyca",
          "canonical_path": "/cities/pl/leczyca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ledziny",
          "name": "Lędziny",
          "country_code": "PL",
          "slug": "ledziny",
          "canonical_path": "/cities/pl/ledziny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:legionowo",
          "name": "Legionowo",
          "country_code": "PL",
          "slug": "legionowo",
          "canonical_path": "/cities/pl/legionowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:legnica",
          "name": "Legnica",
          "country_code": "PL",
          "slug": "legnica",
          "canonical_path": "/cities/pl/legnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:766452",
          "name": "Lesko",
          "country_code": "PL",
          "slug": "lesko",
          "canonical_path": "/cities/pl/lesko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3093524",
          "name": "Leszno",
          "country_code": "PL",
          "slug": "leszno",
          "canonical_path": "/cities/pl/leszno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:766369",
          "name": "Lesznowola",
          "country_code": "PL",
          "slug": "lesznowola",
          "canonical_path": "/cities/pl/lesznowola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3093501",
          "name": "Lewin Brzeski",
          "country_code": "PL",
          "slug": "lewin-brzeski",
          "canonical_path": "/cities/pl/lewin-brzeski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lezajsk",
          "name": "Leżajsk",
          "country_code": "PL",
          "slug": "lezajsk",
          "canonical_path": "/cities/pl/lezajsk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3093457",
          "name": "Libiąż",
          "country_code": "PL",
          "slug": "libiaz",
          "canonical_path": "/cities/pl/libiaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3093439",
          "name": "Lidzbark",
          "country_code": "PL",
          "slug": "lidzbark",
          "canonical_path": "/cities/pl/lidzbark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lidzbark-warminski",
          "name": "Lidzbark Warmiński",
          "country_code": "PL",
          "slug": "lidzbark-warminski",
          "canonical_path": "/cities/pl/lidzbark-warminski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:limanowa",
          "name": "Limanowa",
          "country_code": "PL",
          "slug": "limanowa",
          "canonical_path": "/cities/pl/limanowa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lipno",
          "name": "Lipno",
          "country_code": "PL",
          "slug": "lipno",
          "canonical_path": "/cities/pl/lipno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:766137",
          "name": "Lipsko",
          "country_code": "PL",
          "slug": "lipsko",
          "canonical_path": "/cities/pl/lipsko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3093158",
          "name": "Łobez",
          "country_code": "PL",
          "slug": "lobez",
          "canonical_path": "/cities/pl/lobez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:766073",
          "name": "Łochów",
          "country_code": "PL",
          "slug": "lochow",
          "canonical_path": "/cities/pl/lochow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3093136",
          "name": "Łodygowice",
          "country_code": "PL",
          "slug": "lodygowice",
          "canonical_path": "/cities/pl/lodygowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lodz",
          "name": "Łódź",
          "country_code": "PL",
          "slug": "lodz",
          "canonical_path": "/cities/pl/lodz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:766042",
          "name": "Łomianki",
          "country_code": "PL",
          "slug": "lomianki",
          "canonical_path": "/cities/pl/lomianki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lomza",
          "name": "Łomża",
          "country_code": "PL",
          "slug": "lomza",
          "canonical_path": "/cities/pl/lomza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:765976",
          "name": "Łosice",
          "country_code": "PL",
          "slug": "losice",
          "canonical_path": "/cities/pl/losice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lowicz",
          "name": "Łowicz",
          "country_code": "PL",
          "slug": "lowicz",
          "canonical_path": "/cities/pl/lowicz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lubaczow",
          "name": "Lubaczów",
          "country_code": "PL",
          "slug": "lubaczow",
          "canonical_path": "/cities/pl/lubaczow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:luban",
          "name": "Lubań",
          "country_code": "PL",
          "slug": "luban",
          "canonical_path": "/cities/pl/luban/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lubartow",
          "name": "Lubartów",
          "country_code": "PL",
          "slug": "lubartow",
          "canonical_path": "/cities/pl/lubartow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lubawa",
          "name": "Lubawa",
          "country_code": "PL",
          "slug": "lubawa",
          "canonical_path": "/cities/pl/lubawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3093027",
          "name": "Lubawka",
          "country_code": "PL",
          "slug": "lubawka",
          "canonical_path": "/cities/pl/lubawka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lubin",
          "name": "Lubin",
          "country_code": "PL",
          "slug": "lubin",
          "canonical_path": "/cities/pl/lubin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lublin",
          "name": "Lublin",
          "country_code": "PL",
          "slug": "lublin",
          "canonical_path": "/cities/pl/lublin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lubliniec",
          "name": "Lubliniec",
          "country_code": "PL",
          "slug": "lubliniec",
          "canonical_path": "/cities/pl/lubliniec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3092856",
          "name": "Luboń",
          "country_code": "PL",
          "slug": "lubon",
          "canonical_path": "/cities/pl/lubon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3092813",
          "name": "Lubsko",
          "country_code": "PL",
          "slug": "lubsko",
          "canonical_path": "/cities/pl/lubsko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:765804",
          "name": "Ludwin",
          "country_code": "PL",
          "slug": "ludwin",
          "canonical_path": "/cities/pl/ludwin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:lukow",
          "name": "Łuków",
          "country_code": "PL",
          "slug": "lukow",
          "canonical_path": "/cities/pl/lukow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3092643",
          "name": "Luzino",
          "country_code": "PL",
          "slug": "luzino",
          "canonical_path": "/cities/pl/luzino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3092638",
          "name": "Lwówek Śląski",
          "country_code": "PL",
          "slug": "lwowek-slaski",
          "canonical_path": "/cities/pl/lwowek-slaski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:765430",
          "name": "Maków Mazowiecki",
          "country_code": "PL",
          "slug": "makow-mazowiecki",
          "canonical_path": "/cities/pl/makow-mazowiecki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3092517",
          "name": "Maków Podhalański",
          "country_code": "PL",
          "slug": "makow-podhalanski",
          "canonical_path": "/cities/pl/makow-podhalanski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:malbork",
          "name": "Malbork",
          "country_code": "PL",
          "slug": "malbork",
          "canonical_path": "/cities/pl/malbork/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:765328",
          "name": "Małkinia Górna",
          "country_code": "PL",
          "slug": "malkinia-gorna",
          "canonical_path": "/cities/pl/malkinia-gorna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:marki",
          "name": "Marki",
          "country_code": "PL",
          "slug": "marki",
          "canonical_path": "/cities/pl/marki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3092276",
          "name": "Markłowice",
          "country_code": "PL",
          "slug": "marklowice",
          "canonical_path": "/cities/pl/marklowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3092080",
          "name": "Miastko",
          "country_code": "PL",
          "slug": "miastko",
          "canonical_path": "/cities/pl/miastko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:764917",
          "name": "Miechów",
          "country_code": "PL",
          "slug": "miechow",
          "canonical_path": "/cities/pl/miechow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091983",
          "name": "Międzychód",
          "country_code": "PL",
          "slug": "miedzychod",
          "canonical_path": "/cities/pl/miedzychod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:miedzyrzec-podlaski",
          "name": "Międzyrzec Podlaski",
          "country_code": "PL",
          "slug": "miedzyrzec-podlaski",
          "canonical_path": "/cities/pl/miedzyrzec-podlaski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091969",
          "name": "Międzyrzecz",
          "country_code": "PL",
          "slug": "miedzyrzecz",
          "canonical_path": "/cities/pl/miedzyrzecz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091961",
          "name": "Międzyzdroje",
          "country_code": "PL",
          "slug": "miedzyzdroje",
          "canonical_path": "/cities/pl/miedzyzdroje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:mielec",
          "name": "Mielec",
          "country_code": "PL",
          "slug": "mielec",
          "canonical_path": "/cities/pl/mielec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:8168336",
          "name": "Mierzyn",
          "country_code": "PL",
          "slug": "mierzyn",
          "canonical_path": "/cities/pl/mierzyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:mikolow",
          "name": "Mikołów",
          "country_code": "PL",
          "slug": "mikolow",
          "canonical_path": "/cities/pl/mikolow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:milanowek",
          "name": "Milanówek",
          "country_code": "PL",
          "slug": "milanowek",
          "canonical_path": "/cities/pl/milanowek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091788",
          "name": "Milicz",
          "country_code": "PL",
          "slug": "milicz",
          "canonical_path": "/cities/pl/milicz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:minsk-mazowiecki",
          "name": "Mińsk Mazowiecki",
          "country_code": "PL",
          "slug": "minsk-mazowiecki",
          "canonical_path": "/cities/pl/minsk-mazowiecki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:mlawa",
          "name": "Mława",
          "country_code": "PL",
          "slug": "mlawa",
          "canonical_path": "/cities/pl/mlawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091523",
          "name": "Mogilno",
          "country_code": "PL",
          "slug": "mogilno",
          "canonical_path": "/cities/pl/mogilno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:764421",
          "name": "Mońki",
          "country_code": "PL",
          "slug": "monki",
          "canonical_path": "/cities/pl/monki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091462",
          "name": "Morąg",
          "country_code": "PL",
          "slug": "morag",
          "canonical_path": "/cities/pl/morag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091407",
          "name": "Mosina",
          "country_code": "PL",
          "slug": "mosina",
          "canonical_path": "/cities/pl/mosina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:mragowo",
          "name": "Mrągowo",
          "country_code": "PL",
          "slug": "mragowo",
          "canonical_path": "/cities/pl/mragowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:764276",
          "name": "Mszana Dolna",
          "country_code": "PL",
          "slug": "mszana-dolna",
          "canonical_path": "/cities/pl/mszana-dolna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:764269",
          "name": "Mszczonów",
          "country_code": "PL",
          "slug": "mszczonow",
          "canonical_path": "/cities/pl/mszczonow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091293",
          "name": "Murowana Goślina",
          "country_code": "PL",
          "slug": "murowana-goslina",
          "canonical_path": "/cities/pl/murowana-goslina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:764241",
          "name": "Muszyna",
          "country_code": "PL",
          "slug": "muszyna",
          "canonical_path": "/cities/pl/muszyna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091263",
          "name": "Mysłakowice",
          "country_code": "PL",
          "slug": "myslakowice",
          "canonical_path": "/cities/pl/myslakowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091256",
          "name": "Myślenice",
          "country_code": "PL",
          "slug": "myslenice",
          "canonical_path": "/cities/pl/myslenice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091253",
          "name": "Myślibórz",
          "country_code": "PL",
          "slug": "mysliborz",
          "canonical_path": "/cities/pl/mysliborz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:myslowice",
          "name": "Mysłowice",
          "country_code": "PL",
          "slug": "myslowice",
          "canonical_path": "/cities/pl/myslowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:myszkow",
          "name": "Myszków",
          "country_code": "PL",
          "slug": "myszkow",
          "canonical_path": "/cities/pl/myszkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:764194",
          "name": "Nadarzyn",
          "country_code": "PL",
          "slug": "nadarzyn",
          "canonical_path": "/cities/pl/nadarzyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091150",
          "name": "Nakło nad Notecią",
          "country_code": "PL",
          "slug": "naklo-nad-notecia",
          "canonical_path": "/cities/pl/naklo-nad-notecia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3091141",
          "name": "Namysłów",
          "country_code": "PL",
          "slug": "namyslow",
          "canonical_path": "/cities/pl/namyslow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:764100",
          "name": "Nasielsk",
          "country_code": "PL",
          "slug": "nasielsk",
          "canonical_path": "/cities/pl/nasielsk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:764039",
          "name": "Nidzica",
          "country_code": "PL",
          "slug": "nidzica",
          "canonical_path": "/cities/pl/nidzica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090951",
          "name": "Niemodlin",
          "country_code": "PL",
          "slug": "niemodlin",
          "canonical_path": "/cities/pl/niemodlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763903",
          "name": "Niepołomice",
          "country_code": "PL",
          "slug": "niepolomice",
          "canonical_path": "/cities/pl/niepolomice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763829",
          "name": "Nisko",
          "country_code": "PL",
          "slug": "nisko",
          "canonical_path": "/cities/pl/nisko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763783",
          "name": "Nowa Dęba",
          "country_code": "PL",
          "slug": "nowa-deba",
          "canonical_path": "/cities/pl/nowa-deba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:nowa-ruda",
          "name": "Nowa Ruda",
          "country_code": "PL",
          "slug": "nowa-ruda",
          "canonical_path": "/cities/pl/nowa-ruda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763765",
          "name": "Nowa Sarzyna",
          "country_code": "PL",
          "slug": "nowa-sarzyna",
          "canonical_path": "/cities/pl/nowa-sarzyna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:nowa-sol",
          "name": "Nowa Sól",
          "country_code": "PL",
          "slug": "nowa-sol",
          "canonical_path": "/cities/pl/nowa-sol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090660",
          "name": "Nowe",
          "country_code": "PL",
          "slug": "nowe",
          "canonical_path": "/cities/pl/nowe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:nowe-miasto-lubawskie",
          "name": "Nowe Miasto Lubawskie",
          "country_code": "PL",
          "slug": "nowe-miasto-lubawskie",
          "canonical_path": "/cities/pl/nowe-miasto-lubawskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090558",
          "name": "Nowogard",
          "country_code": "PL",
          "slug": "nowogard",
          "canonical_path": "/cities/pl/nowogard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090553",
          "name": "Nowogród Bobrzański",
          "country_code": "PL",
          "slug": "nowogrod-bobrzanski",
          "canonical_path": "/cities/pl/nowogrod-bobrzanski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090502",
          "name": "Nowy Dwór Gdański",
          "country_code": "PL",
          "slug": "nowy-dwor-gdanski",
          "canonical_path": "/cities/pl/nowy-dwor-gdanski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:nowy-dwor-mazowiecki",
          "name": "Nowy Dwór Mazowiecki",
          "country_code": "PL",
          "slug": "nowy-dwor-mazowiecki",
          "canonical_path": "/cities/pl/nowy-dwor-mazowiecki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:nowy-sacz",
          "name": "Nowy Sącz",
          "country_code": "PL",
          "slug": "nowy-sacz",
          "canonical_path": "/cities/pl/nowy-sacz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:nowy-targ",
          "name": "Nowy Targ",
          "country_code": "PL",
          "slug": "nowy-targ",
          "canonical_path": "/cities/pl/nowy-targ/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090452",
          "name": "Nowy Tomyśl",
          "country_code": "PL",
          "slug": "nowy-tomysl",
          "canonical_path": "/cities/pl/nowy-tomysl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090436",
          "name": "Nysa",
          "country_code": "PL",
          "slug": "nysa",
          "canonical_path": "/cities/pl/nysa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090403",
          "name": "Oborniki",
          "country_code": "PL",
          "slug": "oborniki",
          "canonical_path": "/cities/pl/oborniki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090401",
          "name": "Oborniki Śląskie",
          "country_code": "PL",
          "slug": "oborniki-slaskie",
          "canonical_path": "/cities/pl/oborniki-slaskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:olawa",
          "name": "Oława",
          "country_code": "PL",
          "slug": "olawa",
          "canonical_path": "/cities/pl/olawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763291",
          "name": "Olecko",
          "country_code": "PL",
          "slug": "olecko",
          "canonical_path": "/cities/pl/olecko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090158",
          "name": "Olesno",
          "country_code": "PL",
          "slug": "olesno",
          "canonical_path": "/cities/pl/olesno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763260",
          "name": "Oleszyce",
          "country_code": "PL",
          "slug": "oleszyce",
          "canonical_path": "/cities/pl/oleszyce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090146",
          "name": "Olkusz",
          "country_code": "PL",
          "slug": "olkusz",
          "canonical_path": "/cities/pl/olkusz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763165",
          "name": "Olsztynek",
          "country_code": "PL",
          "slug": "olsztynek",
          "canonical_path": "/cities/pl/olsztynek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3090076",
          "name": "Opalenica",
          "country_code": "PL",
          "slug": "opalenica",
          "canonical_path": "/cities/pl/opalenica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763121",
          "name": "Opatów",
          "country_code": "PL",
          "slug": "opatow",
          "canonical_path": "/cities/pl/opatow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763111",
          "name": "Opoczno",
          "country_code": "PL",
          "slug": "opoczno",
          "canonical_path": "/cities/pl/opoczno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:opole",
          "name": "Opole",
          "country_code": "PL",
          "slug": "opole",
          "canonical_path": "/cities/pl/opole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763107",
          "name": "Opole Lubelskie",
          "country_code": "PL",
          "slug": "opole-lubelskie",
          "canonical_path": "/cities/pl/opole-lubelskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763066",
          "name": "Orneta",
          "country_code": "PL",
          "slug": "orneta",
          "canonical_path": "/cities/pl/orneta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089987",
          "name": "Ornontowice",
          "country_code": "PL",
          "slug": "ornontowice",
          "canonical_path": "/cities/pl/ornontowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:orzesze",
          "name": "Orzesze",
          "country_code": "PL",
          "slug": "orzesze",
          "canonical_path": "/cities/pl/orzesze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:763028",
          "name": "Orzysz",
          "country_code": "PL",
          "slug": "orzysz",
          "canonical_path": "/cities/pl/orzysz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089924",
          "name": "Osiek",
          "country_code": "PL",
          "slug": "osiek",
          "canonical_path": "/cities/pl/osiek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ostroda",
          "name": "Ostróda",
          "country_code": "PL",
          "slug": "ostroda",
          "canonical_path": "/cities/pl/ostroda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ostroleka",
          "name": "Ostrołęka",
          "country_code": "PL",
          "slug": "ostroleka",
          "canonical_path": "/cities/pl/ostroleka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ostrow-mazowiecka",
          "name": "Ostrów Mazowiecka",
          "country_code": "PL",
          "slug": "ostrow-mazowiecka",
          "canonical_path": "/cities/pl/ostrow-mazowiecka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ostrow-wielkopolski",
          "name": "Ostrów Wielkopolski",
          "country_code": "PL",
          "slug": "ostrow-wielkopolski",
          "canonical_path": "/cities/pl/ostrow-wielkopolski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ostrowiec-swietokrzyski",
          "name": "Ostrowiec Świętokrzyski",
          "country_code": "PL",
          "slug": "ostrowiec-swietokrzyski",
          "canonical_path": "/cities/pl/ostrowiec-swietokrzyski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089670",
          "name": "Ostrzeszów",
          "country_code": "PL",
          "slug": "ostrzeszow",
          "canonical_path": "/cities/pl/ostrzeszow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:oswiecim",
          "name": "Oświęcim",
          "country_code": "PL",
          "slug": "oswiecim",
          "canonical_path": "/cities/pl/oswiecim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089642",
          "name": "Otmuchów",
          "country_code": "PL",
          "slug": "otmuchow",
          "canonical_path": "/cities/pl/otmuchow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:otwock",
          "name": "Otwock",
          "country_code": "PL",
          "slug": "otwock",
          "canonical_path": "/cities/pl/otwock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:762769",
          "name": "Ożarów Mazowiecki",
          "country_code": "PL",
          "slug": "ozarow-mazowiecki",
          "canonical_path": "/cities/pl/ozarow-mazowiecki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089583",
          "name": "Ozimek",
          "country_code": "PL",
          "slug": "ozimek",
          "canonical_path": "/cities/pl/ozimek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ozorkow",
          "name": "Ozorków",
          "country_code": "PL",
          "slug": "ozorkow",
          "canonical_path": "/cities/pl/ozorkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:pabianice",
          "name": "Pabianice",
          "country_code": "PL",
          "slug": "pabianice",
          "canonical_path": "/cities/pl/pabianice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089566",
          "name": "Paczków",
          "country_code": "PL",
          "slug": "paczkow",
          "canonical_path": "/cities/pl/paczkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089553",
          "name": "Pajęczno",
          "country_code": "PL",
          "slug": "pajeczno",
          "canonical_path": "/cities/pl/pajeczno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089547",
          "name": "Pakość",
          "country_code": "PL",
          "slug": "pakosc",
          "canonical_path": "/cities/pl/pakosc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:762643",
          "name": "Parczew",
          "country_code": "PL",
          "slug": "parczew",
          "canonical_path": "/cities/pl/parczew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089392",
          "name": "Pasłęk",
          "country_code": "PL",
          "slug": "paslek",
          "canonical_path": "/cities/pl/paslek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089340",
          "name": "Pawłowice",
          "country_code": "PL",
          "slug": "pawlowice",
          "canonical_path": "/cities/pl/pawlowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089282",
          "name": "Pelplin",
          "country_code": "PL",
          "slug": "pelplin",
          "canonical_path": "/cities/pl/pelplin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:762423",
          "name": "Piaseczno",
          "country_code": "PL",
          "slug": "piaseczno",
          "canonical_path": "/cities/pl/piaseczno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:piastow",
          "name": "Piastów",
          "country_code": "PL",
          "slug": "piastow",
          "canonical_path": "/cities/pl/piastow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089152",
          "name": "Piechowice",
          "country_code": "PL",
          "slug": "piechowice",
          "canonical_path": "/cities/pl/piechowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:piekary-slaskie",
          "name": "Piekary Śląskie",
          "country_code": "PL",
          "slug": "piekary-slaskie",
          "canonical_path": "/cities/pl/piekary-slaskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089098",
          "name": "Pieńsk",
          "country_code": "PL",
          "slug": "piensk",
          "canonical_path": "/cities/pl/piensk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089065",
          "name": "Pieszyce",
          "country_code": "PL",
          "slug": "pieszyce",
          "canonical_path": "/cities/pl/pieszyce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089033",
          "name": "Piła",
          "country_code": "PL",
          "slug": "pila",
          "canonical_path": "/cities/pl/pila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3089025",
          "name": "Piława Górna",
          "country_code": "PL",
          "slug": "pilawa-gorna",
          "canonical_path": "/cities/pl/pilawa-gorna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:762201",
          "name": "Pińczów",
          "country_code": "PL",
          "slug": "pinczow",
          "canonical_path": "/cities/pl/pinczow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:pionki",
          "name": "Pionki",
          "country_code": "PL",
          "slug": "pionki",
          "canonical_path": "/cities/pl/pionki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088977",
          "name": "Piotrków Kujawski",
          "country_code": "PL",
          "slug": "piotrkow-kujawski",
          "canonical_path": "/cities/pl/piotrkow-kujawski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:piotrkow-trybunalski",
          "name": "Piotrków Trybunalski",
          "country_code": "PL",
          "slug": "piotrkow-trybunalski",
          "canonical_path": "/cities/pl/piotrkow-trybunalski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:762120",
          "name": "Pisz",
          "country_code": "PL",
          "slug": "pisz",
          "canonical_path": "/cities/pl/pisz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:762106",
          "name": "Piwniczna-Zdrój",
          "country_code": "PL",
          "slug": "piwniczna-zdroj",
          "canonical_path": "/cities/pl/piwniczna-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088848",
          "name": "Pleszew",
          "country_code": "PL",
          "slug": "pleszew",
          "canonical_path": "/cities/pl/pleszew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088846",
          "name": "Plewiska",
          "country_code": "PL",
          "slug": "plewiska",
          "canonical_path": "/cities/pl/plewiska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:plock",
          "name": "Płock",
          "country_code": "PL",
          "slug": "plock",
          "canonical_path": "/cities/pl/plock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:plonsk",
          "name": "Płońsk",
          "country_code": "PL",
          "slug": "plonsk",
          "canonical_path": "/cities/pl/plonsk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088759",
          "name": "Pniewy",
          "country_code": "PL",
          "slug": "pniewy",
          "canonical_path": "/cities/pl/pniewy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088749",
          "name": "Pobiedziska",
          "country_code": "PL",
          "slug": "pobiedziska",
          "canonical_path": "/cities/pl/pobiedziska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088710",
          "name": "Poddębice",
          "country_code": "PL",
          "slug": "poddebice",
          "canonical_path": "/cities/pl/poddebice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088496",
          "name": "Polanica-Zdrój",
          "country_code": "PL",
          "slug": "polanica-zdroj",
          "canonical_path": "/cities/pl/polanica-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:761652",
          "name": "Połaniec",
          "country_code": "PL",
          "slug": "polaniec",
          "canonical_path": "/cities/pl/polaniec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088477",
          "name": "Połczyn-Zdrój",
          "country_code": "PL",
          "slug": "polczyn-zdroj",
          "canonical_path": "/cities/pl/polczyn-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088461",
          "name": "Police",
          "country_code": "PL",
          "slug": "police",
          "canonical_path": "/cities/pl/police/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088435",
          "name": "Polkowice",
          "country_code": "PL",
          "slug": "polkowice",
          "canonical_path": "/cities/pl/polkowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:761546",
          "name": "Poniatowa",
          "country_code": "PL",
          "slug": "poniatowa",
          "canonical_path": "/cities/pl/poniatowa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088273",
          "name": "Poręba",
          "country_code": "PL",
          "slug": "poreba",
          "canonical_path": "/cities/pl/poreba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:poznan",
          "name": "Poznań",
          "country_code": "PL",
          "slug": "poznan",
          "canonical_path": "/cities/pl/poznan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088161",
          "name": "Prabuty",
          "country_code": "PL",
          "slug": "prabuty",
          "canonical_path": "/cities/pl/prabuty/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088135",
          "name": "Praszka",
          "country_code": "PL",
          "slug": "praszka",
          "canonical_path": "/cities/pl/praszka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:761258",
          "name": "Proszowice",
          "country_code": "PL",
          "slug": "proszowice",
          "canonical_path": "/cities/pl/proszowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3088065",
          "name": "Prudnik",
          "country_code": "PL",
          "slug": "prudnik",
          "canonical_path": "/cities/pl/prudnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:pruszcz-gdanski",
          "name": "Pruszcz Gdański",
          "country_code": "PL",
          "slug": "pruszcz-gdanski",
          "canonical_path": "/cities/pl/pruszcz-gdanski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:pruszkow",
          "name": "Pruszków",
          "country_code": "PL",
          "slug": "pruszkow",
          "canonical_path": "/cities/pl/pruszkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:przasnysz",
          "name": "Przasnysz",
          "country_code": "PL",
          "slug": "przasnysz",
          "canonical_path": "/cities/pl/przasnysz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3087954",
          "name": "Przemków",
          "country_code": "PL",
          "slug": "przemkow",
          "canonical_path": "/cities/pl/przemkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:przemysl",
          "name": "Przemyśl",
          "country_code": "PL",
          "slug": "przemysl",
          "canonical_path": "/cities/pl/przemysl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:przeworsk",
          "name": "Przeworsk",
          "country_code": "PL",
          "slug": "przeworsk",
          "canonical_path": "/cities/pl/przeworsk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:761008",
          "name": "Przysucha",
          "country_code": "PL",
          "slug": "przysucha",
          "canonical_path": "/cities/pl/przysucha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3087705",
          "name": "Pszczyna",
          "country_code": "PL",
          "slug": "pszczyna",
          "canonical_path": "/cities/pl/pszczyna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:pszow",
          "name": "Pszów",
          "country_code": "PL",
          "slug": "pszow",
          "canonical_path": "/cities/pl/pszow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:puck",
          "name": "Puck",
          "country_code": "PL",
          "slug": "puck",
          "canonical_path": "/cities/pl/puck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:pulawy",
          "name": "Puławy",
          "country_code": "PL",
          "slug": "pulawy",
          "canonical_path": "/cities/pl/pulawy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:760917",
          "name": "Pułtusk",
          "country_code": "PL",
          "slug": "pultusk",
          "canonical_path": "/cities/pl/pultusk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3087640",
          "name": "Puszczykowo",
          "country_code": "PL",
          "slug": "puszczykowo",
          "canonical_path": "/cities/pl/puszczykowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3087630",
          "name": "Pyrzyce",
          "country_code": "PL",
          "slug": "pyrzyce",
          "canonical_path": "/cities/pl/pyrzyce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:pyskowice",
          "name": "Pyskowice",
          "country_code": "PL",
          "slug": "pyskowice",
          "canonical_path": "/cities/pl/pyskowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3087601",
          "name": "Rabka-Zdrój",
          "country_code": "PL",
          "slug": "rabka-zdroj",
          "canonical_path": "/cities/pl/rabka-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:raciborz",
          "name": "Racibórz",
          "country_code": "PL",
          "slug": "raciborz",
          "canonical_path": "/cities/pl/raciborz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:radlin",
          "name": "Radlin",
          "country_code": "PL",
          "slug": "radlin",
          "canonical_path": "/cities/pl/radlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:radom",
          "name": "Radom",
          "country_code": "PL",
          "slug": "radom",
          "canonical_path": "/cities/pl/radom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:radomsko",
          "name": "Radomsko",
          "country_code": "PL",
          "slug": "radomsko",
          "canonical_path": "/cities/pl/radomsko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:760727",
          "name": "Radymno",
          "country_code": "PL",
          "slug": "radymno",
          "canonical_path": "/cities/pl/radymno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3087427",
          "name": "Radziejów",
          "country_code": "PL",
          "slug": "radziejow",
          "canonical_path": "/cities/pl/radziejow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:radzionkow",
          "name": "Radzionków",
          "country_code": "PL",
          "slug": "radzionkow",
          "canonical_path": "/cities/pl/radzionkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:760684",
          "name": "Radzymin",
          "country_code": "PL",
          "slug": "radzymin",
          "canonical_path": "/cities/pl/radzymin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:radzyn-podlaski",
          "name": "Radzyń Podlaski",
          "country_code": "PL",
          "slug": "radzyn-podlaski",
          "canonical_path": "/cities/pl/radzyn-podlaski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:760632",
          "name": "Rakszawa",
          "country_code": "PL",
          "slug": "rakszawa",
          "canonical_path": "/cities/pl/rakszawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:760607",
          "name": "Raszyn",
          "country_code": "PL",
          "slug": "raszyn",
          "canonical_path": "/cities/pl/raszyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:rawa-mazowiecka",
          "name": "Rawa Mazowiecka",
          "country_code": "PL",
          "slug": "rawa-mazowiecka",
          "canonical_path": "/cities/pl/rawa-mazowiecka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3087307",
          "name": "Rawicz",
          "country_code": "PL",
          "slug": "rawicz",
          "canonical_path": "/cities/pl/rawicz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:reda",
          "name": "Reda",
          "country_code": "PL",
          "slug": "reda",
          "canonical_path": "/cities/pl/reda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:760488",
          "name": "Reszel",
          "country_code": "PL",
          "slug": "reszel",
          "canonical_path": "/cities/pl/reszel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3087072",
          "name": "Rogoźno",
          "country_code": "PL",
          "slug": "rogozno",
          "canonical_path": "/cities/pl/rogozno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:760343",
          "name": "Ropczyce",
          "country_code": "PL",
          "slug": "ropczyce",
          "canonical_path": "/cities/pl/ropczyce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ruda-slaska",
          "name": "Ruda Śląska",
          "country_code": "PL",
          "slug": "ruda-slaska",
          "canonical_path": "/cities/pl/ruda-slaska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:760055",
          "name": "Rudnik nad Sanem",
          "country_code": "PL",
          "slug": "rudnik-nad-sanem",
          "canonical_path": "/cities/pl/rudnik-nad-sanem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:rumia",
          "name": "Rumia",
          "country_code": "PL",
          "slug": "rumia",
          "canonical_path": "/cities/pl/rumia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:rybnik",
          "name": "Rybnik",
          "country_code": "PL",
          "slug": "rybnik",
          "canonical_path": "/cities/pl/rybnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:rydultowy",
          "name": "Rydułtowy",
          "country_code": "PL",
          "slug": "rydultowy",
          "canonical_path": "/cities/pl/rydultowy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:759852",
          "name": "Ryki",
          "country_code": "PL",
          "slug": "ryki",
          "canonical_path": "/cities/pl/ryki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:rypin",
          "name": "Rypin",
          "country_code": "PL",
          "slug": "rypin",
          "canonical_path": "/cities/pl/rypin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3086435",
          "name": "Rzepin",
          "country_code": "PL",
          "slug": "rzepin",
          "canonical_path": "/cities/pl/rzepin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:rzeszow",
          "name": "Rzeszów",
          "country_code": "PL",
          "slug": "rzeszow",
          "canonical_path": "/cities/pl/rzeszow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:sandomierz",
          "name": "Sandomierz",
          "country_code": "PL",
          "slug": "sandomierz",
          "canonical_path": "/cities/pl/sandomierz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:sanok",
          "name": "Sanok",
          "country_code": "PL",
          "slug": "sanok",
          "canonical_path": "/cities/pl/sanok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3086206",
          "name": "Ścinawa",
          "country_code": "PL",
          "slug": "scinawa",
          "canonical_path": "/cities/pl/scinawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:759507",
          "name": "Sędziszów",
          "country_code": "PL",
          "slug": "sedziszow",
          "canonical_path": "/cities/pl/sedziszow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:759504",
          "name": "Sędziszów Małopolski",
          "country_code": "PL",
          "slug": "sedziszow-malopolski",
          "canonical_path": "/cities/pl/sedziszow-malopolski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:759503",
          "name": "Sejny",
          "country_code": "PL",
          "slug": "sejny",
          "canonical_path": "/cities/pl/sejny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3086153",
          "name": "Sępólno Krajeńskie",
          "country_code": "PL",
          "slug": "sepolno-krajenskie",
          "canonical_path": "/cities/pl/sepolno-krajenskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3086134",
          "name": "Sianów",
          "country_code": "PL",
          "slug": "sianow",
          "canonical_path": "/cities/pl/sianow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:siedlce",
          "name": "Siedlce",
          "country_code": "PL",
          "slug": "siedlce",
          "canonical_path": "/cities/pl/siedlce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:siemianowice-slaskie",
          "name": "Siemianowice Śląskie",
          "country_code": "PL",
          "slug": "siemianowice-slaskie",
          "canonical_path": "/cities/pl/siemianowice-slaskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:siemiatycze",
          "name": "Siemiatycze",
          "country_code": "PL",
          "slug": "siemiatycze",
          "canonical_path": "/cities/pl/siemiatycze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:sieradz",
          "name": "Sieradz",
          "country_code": "PL",
          "slug": "sieradz",
          "canonical_path": "/cities/pl/sieradz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085974",
          "name": "Sieraków",
          "country_code": "PL",
          "slug": "sierakow",
          "canonical_path": "/cities/pl/sierakow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085970",
          "name": "Sierakowice",
          "country_code": "PL",
          "slug": "sierakowice",
          "canonical_path": "/cities/pl/sierakowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:sierpc",
          "name": "Sierpc",
          "country_code": "PL",
          "slug": "sierpc",
          "canonical_path": "/cities/pl/sierpc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085925",
          "name": "Siewierz",
          "country_code": "PL",
          "slug": "siewierz",
          "canonical_path": "/cities/pl/siewierz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085826",
          "name": "Skarszewy",
          "country_code": "PL",
          "slug": "skarszewy",
          "canonical_path": "/cities/pl/skarszewy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:skarzysko-kamienna",
          "name": "Skarżysko-Kamienna",
          "country_code": "PL",
          "slug": "skarzysko-kamienna",
          "canonical_path": "/cities/pl/skarzysko-kamienna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085807",
          "name": "Skawina",
          "country_code": "PL",
          "slug": "skawina",
          "canonical_path": "/cities/pl/skawina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:skierniewice",
          "name": "Skierniewice",
          "country_code": "PL",
          "slug": "skierniewice",
          "canonical_path": "/cities/pl/skierniewice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085786",
          "name": "Skoczów",
          "country_code": "PL",
          "slug": "skoczow",
          "canonical_path": "/cities/pl/skoczow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085656",
          "name": "Skwierzyna",
          "country_code": "PL",
          "slug": "skwierzyna",
          "canonical_path": "/cities/pl/skwierzyna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085616",
          "name": "Sławków",
          "country_code": "PL",
          "slug": "slawkow",
          "canonical_path": "/cities/pl/slawkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085610",
          "name": "Sławno",
          "country_code": "PL",
          "slug": "slawno",
          "canonical_path": "/cities/pl/slawno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085495",
          "name": "Słubice",
          "country_code": "PL",
          "slug": "slubice",
          "canonical_path": "/cities/pl/slubice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:slupca",
          "name": "Słupca",
          "country_code": "PL",
          "slug": "slupca",
          "canonical_path": "/cities/pl/slupca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:slupsk",
          "name": "Słupsk",
          "country_code": "PL",
          "slug": "slupsk",
          "canonical_path": "/cities/pl/slupsk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085391",
          "name": "Śmigiel",
          "country_code": "PL",
          "slug": "smigiel",
          "canonical_path": "/cities/pl/smigiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085252",
          "name": "Sobótka",
          "country_code": "PL",
          "slug": "sobotka",
          "canonical_path": "/cities/pl/sobotka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:sochaczew",
          "name": "Sochaczew",
          "country_code": "PL",
          "slug": "sochaczew",
          "canonical_path": "/cities/pl/sochaczew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:758651",
          "name": "Sokółka",
          "country_code": "PL",
          "slug": "sokolka",
          "canonical_path": "/cities/pl/sokolka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:sokolow-podlaski",
          "name": "Sokołów Podlaski",
          "country_code": "PL",
          "slug": "sokolow-podlaski",
          "canonical_path": "/cities/pl/sokolow-podlaski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085172",
          "name": "Solec Kujawski",
          "country_code": "PL",
          "slug": "solec-kujawski",
          "canonical_path": "/cities/pl/solec-kujawski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:sopot",
          "name": "Sopot",
          "country_code": "PL",
          "slug": "sopot",
          "canonical_path": "/cities/pl/sopot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:sosnowiec",
          "name": "Sosnowiec",
          "country_code": "PL",
          "slug": "sosnowiec",
          "canonical_path": "/cities/pl/sosnowiec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085056",
          "name": "Śrem",
          "country_code": "PL",
          "slug": "srem",
          "canonical_path": "/cities/pl/srem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085047",
          "name": "Środa Śląska",
          "country_code": "PL",
          "slug": "sroda-slaska",
          "canonical_path": "/cities/pl/sroda-slaska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3085045",
          "name": "Środa Wielkopolska",
          "country_code": "PL",
          "slug": "sroda-wielkopolska",
          "canonical_path": "/cities/pl/sroda-wielkopolska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:stalowa-wola",
          "name": "Stalowa Wola",
          "country_code": "PL",
          "slug": "stalowa-wola",
          "canonical_path": "/cities/pl/stalowa-wola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:758393",
          "name": "Stąporków",
          "country_code": "PL",
          "slug": "staporkow",
          "canonical_path": "/cities/pl/staporkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:starachowice",
          "name": "Starachowice",
          "country_code": "PL",
          "slug": "starachowice",
          "canonical_path": "/cities/pl/starachowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084840",
          "name": "Stargard",
          "country_code": "PL",
          "slug": "stargard",
          "canonical_path": "/cities/pl/stargard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:starogard-gdanski",
          "name": "Starogard Gdański",
          "country_code": "PL",
          "slug": "starogard-gdanski",
          "canonical_path": "/cities/pl/starogard-gdanski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:758282",
          "name": "Stary Sącz",
          "country_code": "PL",
          "slug": "stary-sacz",
          "canonical_path": "/cities/pl/stary-sacz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:758252",
          "name": "Staszów",
          "country_code": "PL",
          "slug": "staszow",
          "canonical_path": "/cities/pl/staszow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084647",
          "name": "Stęszew",
          "country_code": "PL",
          "slug": "steszew",
          "canonical_path": "/cities/pl/steszew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084515",
          "name": "Stronie Śląskie",
          "country_code": "PL",
          "slug": "stronie-slaskie",
          "canonical_path": "/cities/pl/stronie-slaskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084460",
          "name": "Stryszawa",
          "country_code": "PL",
          "slug": "stryszawa",
          "canonical_path": "/cities/pl/stryszawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084449",
          "name": "Strzałkowo",
          "country_code": "PL",
          "slug": "strzalkowo",
          "canonical_path": "/cities/pl/strzalkowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084440",
          "name": "Strzegom",
          "country_code": "PL",
          "slug": "strzegom",
          "canonical_path": "/cities/pl/strzegom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084421",
          "name": "Strzelce Krajeńskie",
          "country_code": "PL",
          "slug": "strzelce-krajenskie",
          "canonical_path": "/cities/pl/strzelce-krajenskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084415",
          "name": "Strzelce Opolskie",
          "country_code": "PL",
          "slug": "strzelce-opolskie",
          "canonical_path": "/cities/pl/strzelce-opolskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084404",
          "name": "Strzelin",
          "country_code": "PL",
          "slug": "strzelin",
          "canonical_path": "/cities/pl/strzelin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084396",
          "name": "Strzelno",
          "country_code": "PL",
          "slug": "strzelno",
          "canonical_path": "/cities/pl/strzelno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:757957",
          "name": "Strzyżów",
          "country_code": "PL",
          "slug": "strzyzow",
          "canonical_path": "/cities/pl/strzyzow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084300",
          "name": "Sucha Beskidzka",
          "country_code": "PL",
          "slug": "sucha-beskidzka",
          "canonical_path": "/cities/pl/sucha-beskidzka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:757886",
          "name": "Suchedniów",
          "country_code": "PL",
          "slug": "suchedniow",
          "canonical_path": "/cities/pl/suchedniow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084241",
          "name": "Sulechów",
          "country_code": "PL",
          "slug": "sulechow",
          "canonical_path": "/cities/pl/sulechow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084237",
          "name": "Sulęcin",
          "country_code": "PL",
          "slug": "sulecin",
          "canonical_path": "/cities/pl/sulecin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:sulejowek",
          "name": "Sulejówek",
          "country_code": "PL",
          "slug": "sulejowek",
          "canonical_path": "/cities/pl/sulejowek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084194",
          "name": "Sułkowice",
          "country_code": "PL",
          "slug": "sulkowice",
          "canonical_path": "/cities/pl/sulkowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084143",
          "name": "Susz",
          "country_code": "PL",
          "slug": "susz",
          "canonical_path": "/cities/pl/susz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:suwalki",
          "name": "Suwałki",
          "country_code": "PL",
          "slug": "suwalki",
          "canonical_path": "/cities/pl/suwalki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084130",
          "name": "Swarzędz",
          "country_code": "PL",
          "slug": "swarzedz",
          "canonical_path": "/cities/pl/swarzedz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:swidnica",
          "name": "Świdnica",
          "country_code": "PL",
          "slug": "swidnica",
          "canonical_path": "/cities/pl/swidnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:swidnik",
          "name": "Świdnik",
          "country_code": "PL",
          "slug": "swidnik",
          "canonical_path": "/cities/pl/swidnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084085",
          "name": "Świdwin",
          "country_code": "PL",
          "slug": "swidwin",
          "canonical_path": "/cities/pl/swidwin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:swiebodzice",
          "name": "Świebodzice",
          "country_code": "PL",
          "slug": "swiebodzice",
          "canonical_path": "/cities/pl/swiebodzice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084062",
          "name": "Świebodzin",
          "country_code": "PL",
          "slug": "swiebodzin",
          "canonical_path": "/cities/pl/swiebodzin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3084074",
          "name": "Świecie",
          "country_code": "PL",
          "slug": "swiecie",
          "canonical_path": "/cities/pl/swiecie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:swietochlowice",
          "name": "Świętochłowice",
          "country_code": "PL",
          "slug": "swietochlowice",
          "canonical_path": "/cities/pl/swietochlowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083955",
          "name": "Świnoujście",
          "country_code": "PL",
          "slug": "swinoujscie",
          "canonical_path": "/cities/pl/swinoujscie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083921",
          "name": "Syców",
          "country_code": "PL",
          "slug": "sycow",
          "canonical_path": "/cities/pl/sycow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083878",
          "name": "Szamotuły",
          "country_code": "PL",
          "slug": "szamotuly",
          "canonical_path": "/cities/pl/szamotuly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:757461",
          "name": "Szczawnica",
          "country_code": "PL",
          "slug": "szczawnica",
          "canonical_path": "/cities/pl/szczawnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083835",
          "name": "Szczawno-Zdrój",
          "country_code": "PL",
          "slug": "szczawno-zdroj",
          "canonical_path": "/cities/pl/szczawno-zdroj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:757452",
          "name": "Szczebrzeszyn",
          "country_code": "PL",
          "slug": "szczebrzeszyn",
          "canonical_path": "/cities/pl/szczebrzeszyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:szczecin",
          "name": "Szczecin",
          "country_code": "PL",
          "slug": "szczecin",
          "canonical_path": "/cities/pl/szczecin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083826",
          "name": "Szczecinek",
          "country_code": "PL",
          "slug": "szczecinek",
          "canonical_path": "/cities/pl/szczecinek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083752",
          "name": "Szczyrk",
          "country_code": "PL",
          "slug": "szczyrk",
          "canonical_path": "/cities/pl/szczyrk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083749",
          "name": "Szczytna",
          "country_code": "PL",
          "slug": "szczytna",
          "canonical_path": "/cities/pl/szczytna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:szczytno",
          "name": "Szczytno",
          "country_code": "PL",
          "slug": "szczytno",
          "canonical_path": "/cities/pl/szczytno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:757323",
          "name": "Szerszenie",
          "country_code": "PL",
          "slug": "szerszenie",
          "canonical_path": "/cities/pl/szerszenie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083677",
          "name": "Szklarska Poręba",
          "country_code": "PL",
          "slug": "szklarska-poreba",
          "canonical_path": "/cities/pl/szklarska-poreba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083632",
          "name": "Szprotawa",
          "country_code": "PL",
          "slug": "szprotawa",
          "canonical_path": "/cities/pl/szprotawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083616",
          "name": "Sztum",
          "country_code": "PL",
          "slug": "sztum",
          "canonical_path": "/cities/pl/sztum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083611",
          "name": "Szubin",
          "country_code": "PL",
          "slug": "szubin",
          "canonical_path": "/cities/pl/szubin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:757178",
          "name": "Szydłowiec",
          "country_code": "PL",
          "slug": "szydlowiec",
          "canonical_path": "/cities/pl/szydlowiec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:tarnobrzeg",
          "name": "Tarnobrzeg",
          "country_code": "PL",
          "slug": "tarnobrzeg",
          "canonical_path": "/cities/pl/tarnobrzeg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:tarnow",
          "name": "Tarnów",
          "country_code": "PL",
          "slug": "tarnow",
          "canonical_path": "/cities/pl/tarnow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:tarnowskie-gory",
          "name": "Tarnowskie Góry",
          "country_code": "PL",
          "slug": "tarnowskie-gory",
          "canonical_path": "/cities/pl/tarnowskie-gory/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:tczew",
          "name": "Tczew",
          "country_code": "PL",
          "slug": "tczew",
          "canonical_path": "/cities/pl/tczew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:756938",
          "name": "Terespol",
          "country_code": "PL",
          "slug": "terespol",
          "canonical_path": "/cities/pl/terespol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:756919",
          "name": "Tłuszcz",
          "country_code": "PL",
          "slug": "tluszcz",
          "canonical_path": "/cities/pl/tluszcz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:tomaszow-lubelski",
          "name": "Tomaszów Lubelski",
          "country_code": "PL",
          "slug": "tomaszow-lubelski",
          "canonical_path": "/cities/pl/tomaszow-lubelski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:tomaszow-mazowiecki",
          "name": "Tomaszów Mazowiecki",
          "country_code": "PL",
          "slug": "tomaszow-mazowiecki",
          "canonical_path": "/cities/pl/tomaszow-mazowiecki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:torun",
          "name": "Toruń",
          "country_code": "PL",
          "slug": "torun",
          "canonical_path": "/cities/pl/torun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083185",
          "name": "Trzcianka",
          "country_code": "PL",
          "slug": "trzcianka",
          "canonical_path": "/cities/pl/trzcianka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083145",
          "name": "Trzebiatów",
          "country_code": "PL",
          "slug": "trzebiatow",
          "canonical_path": "/cities/pl/trzebiatow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083111",
          "name": "Trzebinia",
          "country_code": "PL",
          "slug": "trzebinia",
          "canonical_path": "/cities/pl/trzebinia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083103",
          "name": "Trzebnica",
          "country_code": "PL",
          "slug": "trzebnica",
          "canonical_path": "/cities/pl/trzebnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083077",
          "name": "Trzemeszno",
          "country_code": "PL",
          "slug": "trzemeszno",
          "canonical_path": "/cities/pl/trzemeszno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3083043",
          "name": "Tuchola",
          "country_code": "PL",
          "slug": "tuchola",
          "canonical_path": "/cities/pl/tuchola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:756634",
          "name": "Tuchów",
          "country_code": "PL",
          "slug": "tuchow",
          "canonical_path": "/cities/pl/tuchow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:turek",
          "name": "Turek",
          "country_code": "PL",
          "slug": "turek",
          "canonical_path": "/cities/pl/turek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082945",
          "name": "Tuszyn",
          "country_code": "PL",
          "slug": "tuszyn",
          "canonical_path": "/cities/pl/tuszyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082938",
          "name": "Twardogóra",
          "country_code": "PL",
          "slug": "twardogora",
          "canonical_path": "/cities/pl/twardogora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:tychy",
          "name": "Tychy",
          "country_code": "PL",
          "slug": "tychy",
          "canonical_path": "/cities/pl/tychy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ustka",
          "name": "Ustka",
          "country_code": "PL",
          "slug": "ustka",
          "canonical_path": "/cities/pl/ustka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:ustron",
          "name": "Ustroń",
          "country_code": "PL",
          "slug": "ustron",
          "canonical_path": "/cities/pl/ustron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:756280",
          "name": "Ustrzyki Dolne",
          "country_code": "PL",
          "slug": "ustrzyki-dolne",
          "canonical_path": "/cities/pl/ustrzyki-dolne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:wabrzezno",
          "name": "Wąbrzeźno",
          "country_code": "PL",
          "slug": "wabrzezno",
          "canonical_path": "/cities/pl/wabrzezno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082722",
          "name": "Wadowice",
          "country_code": "PL",
          "slug": "wadowice",
          "canonical_path": "/cities/pl/wadowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082712",
          "name": "Wągrowiec",
          "country_code": "PL",
          "slug": "wagrowiec",
          "canonical_path": "/cities/pl/wagrowiec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082707",
          "name": "Wałbrzych",
          "country_code": "PL",
          "slug": "walbrzych",
          "canonical_path": "/cities/pl/walbrzych/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082704",
          "name": "Wałcz",
          "country_code": "PL",
          "slug": "walcz",
          "canonical_path": "/cities/pl/walcz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:756151",
          "name": "Warka",
          "country_code": "PL",
          "slug": "warka",
          "canonical_path": "/cities/pl/warka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:warszawa",
          "name": "Warszawa",
          "country_code": "PL",
          "slug": "warszawa",
          "canonical_path": "/cities/pl/warszawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:756120",
          "name": "Wasilków",
          "country_code": "PL",
          "slug": "wasilkow",
          "canonical_path": "/cities/pl/wasilkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:756048",
          "name": "Węgorzewo",
          "country_code": "PL",
          "slug": "wegorzewo",
          "canonical_path": "/cities/pl/wegorzewo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:wegrow",
          "name": "Węgrów",
          "country_code": "PL",
          "slug": "wegrow",
          "canonical_path": "/cities/pl/wegrow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:wejherowo",
          "name": "Wejherowo",
          "country_code": "PL",
          "slug": "wejherowo",
          "canonical_path": "/cities/pl/wejherowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082364",
          "name": "Więcbork",
          "country_code": "PL",
          "slug": "wiecbork",
          "canonical_path": "/cities/pl/wiecbork/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082319",
          "name": "Wieleń",
          "country_code": "PL",
          "slug": "wielen",
          "canonical_path": "/cities/pl/wielen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:755889",
          "name": "Wieliczka",
          "country_code": "PL",
          "slug": "wieliczka",
          "canonical_path": "/cities/pl/wieliczka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3096986",
          "name": "Wielki Kack",
          "country_code": "PL",
          "slug": "wielki-kack",
          "canonical_path": "/cities/pl/wielki-kack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082197",
          "name": "Wieluń",
          "country_code": "PL",
          "slug": "wielun",
          "canonical_path": "/cities/pl/wielun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082192",
          "name": "Wieprz",
          "country_code": "PL",
          "slug": "wieprz",
          "canonical_path": "/cities/pl/wieprz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3082176",
          "name": "Wieruszów",
          "country_code": "PL",
          "slug": "wieruszow",
          "canonical_path": "/cities/pl/wieruszow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081942",
          "name": "Wilkowice",
          "country_code": "PL",
          "slug": "wilkowice",
          "canonical_path": "/cities/pl/wilkowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:wisla",
          "name": "Wisła",
          "country_code": "PL",
          "slug": "wisla",
          "canonical_path": "/cities/pl/wisla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081826",
          "name": "Witkowo",
          "country_code": "PL",
          "slug": "witkowo",
          "canonical_path": "/cities/pl/witkowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081818",
          "name": "Witnica",
          "country_code": "PL",
          "slug": "witnica",
          "canonical_path": "/cities/pl/witnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081752",
          "name": "Władysławowo",
          "country_code": "PL",
          "slug": "wladyslawowo",
          "canonical_path": "/cities/pl/wladyslawowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:wloclawek",
          "name": "Włocławek",
          "country_code": "PL",
          "slug": "wloclawek",
          "canonical_path": "/cities/pl/wloclawek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:wlodawa",
          "name": "Włodawa",
          "country_code": "PL",
          "slug": "wlodawa",
          "canonical_path": "/cities/pl/wlodawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081699",
          "name": "Włoszczowa",
          "country_code": "PL",
          "slug": "wloszczowa",
          "canonical_path": "/cities/pl/wloszczowa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:wodzislaw-slaski",
          "name": "Wodzisław Śląski",
          "country_code": "PL",
          "slug": "wodzislaw-slaski",
          "canonical_path": "/cities/pl/wodzislaw-slaski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081636",
          "name": "Wojkowice",
          "country_code": "PL",
          "slug": "wojkowice",
          "canonical_path": "/cities/pl/wojkowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081604",
          "name": "Wola",
          "country_code": "PL",
          "slug": "wola-83-2410",
          "canonical_path": "/cities/pl/wola-83-2410/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081495",
          "name": "Wolbrom",
          "country_code": "PL",
          "slug": "wolbrom",
          "canonical_path": "/cities/pl/wolbrom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081488",
          "name": "Wołczyn",
          "country_code": "PL",
          "slug": "wolczyn",
          "canonical_path": "/cities/pl/wolczyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081471",
          "name": "Wolin",
          "country_code": "PL",
          "slug": "wolin",
          "canonical_path": "/cities/pl/wolin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:754800",
          "name": "Wołomin",
          "country_code": "PL",
          "slug": "wolomin",
          "canonical_path": "/cities/pl/wolomin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081430",
          "name": "Wołów",
          "country_code": "PL",
          "slug": "wolow",
          "canonical_path": "/cities/pl/wolow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081419",
          "name": "Wolsztyn",
          "country_code": "PL",
          "slug": "wolsztyn",
          "canonical_path": "/cities/pl/wolsztyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:wroclaw",
          "name": "Wrocław",
          "country_code": "PL",
          "slug": "wroclaw",
          "canonical_path": "/cities/pl/wroclaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081350",
          "name": "Wronki",
          "country_code": "PL",
          "slug": "wronki",
          "canonical_path": "/cities/pl/wronki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081324",
          "name": "Września",
          "country_code": "PL",
          "slug": "wrzesnia",
          "canonical_path": "/cities/pl/wrzesnia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081300",
          "name": "Wschowa",
          "country_code": "PL",
          "slug": "wschowa",
          "canonical_path": "/cities/pl/wschowa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081158",
          "name": "Wyrzysk",
          "country_code": "PL",
          "slug": "wyrzysk",
          "canonical_path": "/cities/pl/wyrzysk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:754479",
          "name": "Wysokie Mazowieckie",
          "country_code": "PL",
          "slug": "wysokie-mazowieckie",
          "canonical_path": "/cities/pl/wysokie-mazowieckie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:754454",
          "name": "Wyszków",
          "country_code": "PL",
          "slug": "wyszkow",
          "canonical_path": "/cities/pl/wyszkow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zabki",
          "name": "Ząbki",
          "country_code": "PL",
          "slug": "zabki",
          "canonical_path": "/cities/pl/zabki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3081046",
          "name": "Ząbkowice Śląskie",
          "country_code": "PL",
          "slug": "zabkowice-slaskie",
          "canonical_path": "/cities/pl/zabkowice-slaskie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zabrze",
          "name": "Zabrze",
          "country_code": "PL",
          "slug": "zabrze",
          "canonical_path": "/cities/pl/zabrze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zagan",
          "name": "Żagań",
          "country_code": "PL",
          "slug": "zagan",
          "canonical_path": "/cities/pl/zagan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:754195",
          "name": "Zagórz",
          "country_code": "PL",
          "slug": "zagorz",
          "canonical_path": "/cities/pl/zagorz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zakopane",
          "name": "Zakopane",
          "country_code": "PL",
          "slug": "zakopane",
          "canonical_path": "/cities/pl/zakopane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zambrow",
          "name": "Zambrów",
          "country_code": "PL",
          "slug": "zambrow",
          "canonical_path": "/cities/pl/zambrow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zamosc",
          "name": "Zamość",
          "country_code": "PL",
          "slug": "zamosc",
          "canonical_path": "/cities/pl/zamosc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080652",
          "name": "Żarów",
          "country_code": "PL",
          "slug": "zarow",
          "canonical_path": "/cities/pl/zarow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zary",
          "name": "Żary",
          "country_code": "PL",
          "slug": "zary",
          "canonical_path": "/cities/pl/zary/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080538",
          "name": "Zawadzkie",
          "country_code": "PL",
          "slug": "zawadzkie",
          "canonical_path": "/cities/pl/zawadzkie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zawiercie",
          "name": "Zawiercie",
          "country_code": "PL",
          "slug": "zawiercie",
          "canonical_path": "/cities/pl/zawiercie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080508",
          "name": "Zawoja",
          "country_code": "PL",
          "slug": "zawoja",
          "canonical_path": "/cities/pl/zawoja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080495",
          "name": "Zbąszyń",
          "country_code": "PL",
          "slug": "zbaszyn",
          "canonical_path": "/cities/pl/zbaszyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080494",
          "name": "Zbąszynek",
          "country_code": "PL",
          "slug": "zbaszynek",
          "canonical_path": "/cities/pl/zbaszynek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zdunska-wola",
          "name": "Zduńska Wola",
          "country_code": "PL",
          "slug": "zdunska-wola",
          "canonical_path": "/cities/pl/zdunska-wola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080389",
          "name": "Zdzieszowice",
          "country_code": "PL",
          "slug": "zdzieszowice",
          "canonical_path": "/cities/pl/zdzieszowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080369",
          "name": "Zebrzydowice",
          "country_code": "PL",
          "slug": "zebrzydowice",
          "canonical_path": "/cities/pl/zebrzydowice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080295",
          "name": "Zelów",
          "country_code": "PL",
          "slug": "zelow",
          "canonical_path": "/cities/pl/zelow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zgierz",
          "name": "Zgierz",
          "country_code": "PL",
          "slug": "zgierz",
          "canonical_path": "/cities/pl/zgierz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zgorzelec",
          "name": "Zgorzelec",
          "country_code": "PL",
          "slug": "zgorzelec",
          "canonical_path": "/cities/pl/zgorzelec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080226",
          "name": "Ziębice",
          "country_code": "PL",
          "slug": "ziebice",
          "canonical_path": "/cities/pl/ziebice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zielona-gora",
          "name": "Zielona Góra",
          "country_code": "PL",
          "slug": "zielona-gora",
          "canonical_path": "/cities/pl/zielona-gora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zielonka",
          "name": "Zielonka",
          "country_code": "PL",
          "slug": "zielonka",
          "canonical_path": "/cities/pl/zielonka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080102",
          "name": "Złocieniec",
          "country_code": "PL",
          "slug": "zlocieniec",
          "canonical_path": "/cities/pl/zlocieniec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zlotoryja",
          "name": "Złotoryja",
          "country_code": "PL",
          "slug": "zlotoryja",
          "canonical_path": "/cities/pl/zlotoryja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080071",
          "name": "Złotów",
          "country_code": "PL",
          "slug": "zlotow",
          "canonical_path": "/cities/pl/zlotow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080058",
          "name": "Żmigród",
          "country_code": "PL",
          "slug": "zmigrod",
          "canonical_path": "/cities/pl/zmigrod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3080047",
          "name": "Żnin",
          "country_code": "PL",
          "slug": "znin",
          "canonical_path": "/cities/pl/znin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:753130",
          "name": "Żołynia",
          "country_code": "PL",
          "slug": "zolynia",
          "canonical_path": "/cities/pl/zolynia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zory",
          "name": "Żory",
          "country_code": "PL",
          "slug": "zory",
          "canonical_path": "/cities/pl/zory/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3079969",
          "name": "Żukowo",
          "country_code": "PL",
          "slug": "zukowo",
          "canonical_path": "/cities/pl/zukowo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3079942",
          "name": "Żuromin",
          "country_code": "PL",
          "slug": "zuromin",
          "canonical_path": "/cities/pl/zuromin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:753004",
          "name": "Zwoleń",
          "country_code": "PL",
          "slug": "zwolen",
          "canonical_path": "/cities/pl/zwolen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:geonames:3079897",
          "name": "Żychlin",
          "country_code": "PL",
          "slug": "zychlin",
          "canonical_path": "/cities/pl/zychlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zyrardow",
          "name": "Żyrardów",
          "country_code": "PL",
          "slug": "zyrardow",
          "canonical_path": "/cities/pl/zyrardow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pl:slug:zywiec",
          "name": "Żywiec",
          "country_code": "PL",
          "slug": "zywiec",
          "canonical_path": "/cities/pl/zywiec/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "PT",
      "path": "cities/pt.json",
      "city_count": 564,
      "cities": [
        {
          "entity_id": "city:pt:geonames:2272379",
          "name": "A dos Cunhados",
          "country_code": "PT",
          "slug": "a-dos-cunhados",
          "canonical_path": "/cities/pt/a-dos-cunhados/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q331191",
          "name": "Abrantes",
          "country_code": "PT",
          "slug": "abrantes",
          "canonical_path": "/cities/pt/abrantes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2743428",
          "name": "Abraveses",
          "country_code": "PT",
          "slug": "abraveses",
          "canonical_path": "/cities/pt/abraveses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2743373",
          "name": "Afurada de Baixo",
          "country_code": "PT",
          "slug": "afurada-de-baixo",
          "canonical_path": "/cities/pt/afurada-de-baixo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2743304",
          "name": "Águas Santas",
          "country_code": "PT",
          "slug": "aguas-santas",
          "canonical_path": "/cities/pt/aguas-santas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q249906",
          "name": "Águeda",
          "country_code": "PT",
          "slug": "agueda",
          "canonical_path": "/cities/pt/agueda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q175373",
          "name": "Aguiar da Beira",
          "country_code": "PT",
          "slug": "aguiar-da-beira",
          "canonical_path": "/cities/pt/aguiar-da-beira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q726910",
          "name": "Alandroal",
          "country_code": "PT",
          "slug": "alandroal",
          "canonical_path": "/cities/pt/alandroal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1870321",
          "name": "Albergaria-a-Velha",
          "country_code": "PT",
          "slug": "albergaria-a-velha",
          "canonical_path": "/cities/pt/albergaria-a-velha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q373813",
          "name": "Albufeira",
          "country_code": "PT",
          "slug": "albufeira",
          "canonical_path": "/cities/pt/albufeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2272215",
          "name": "Alcabideche",
          "country_code": "PT",
          "slug": "alcabideche",
          "canonical_path": "/cities/pt/alcabideche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q850697",
          "name": "Alcácer do Sal",
          "country_code": "PT",
          "slug": "alcacer-do-sal",
          "canonical_path": "/cities/pt/alcacer-do-sal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2272190",
          "name": "Alcanede",
          "country_code": "PT",
          "slug": "alcanede",
          "canonical_path": "/cities/pt/alcanede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q986107",
          "name": "Alcanena",
          "country_code": "PT",
          "slug": "alcanena",
          "canonical_path": "/cities/pt/alcanena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q651997",
          "name": "Alcobaça",
          "country_code": "PT",
          "slug": "alcobaca",
          "canonical_path": "/cities/pt/alcobaca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q605319",
          "name": "Alcochete",
          "country_code": "PT",
          "slug": "alcochete",
          "canonical_path": "/cities/pt/alcochete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2272091",
          "name": "Aldeia de Paio Pires",
          "country_code": "PT",
          "slug": "aldeia-de-paio-pires",
          "canonical_path": "/cities/pt/aldeia-de-paio-pires/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2743131",
          "name": "Aldoar",
          "country_code": "PT",
          "slug": "aldoar",
          "canonical_path": "/cities/pt/aldoar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q988830",
          "name": "Alenquer",
          "country_code": "PT",
          "slug": "alenquer",
          "canonical_path": "/cities/pt/alenquer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551059",
          "name": "Alfândega da Fé",
          "country_code": "PT",
          "slug": "alfandega-da-fe",
          "canonical_path": "/cities/pt/alfandega-da-fe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2743095",
          "name": "Alfena",
          "country_code": "PT",
          "slug": "alfena",
          "canonical_path": "/cities/pt/alfena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2272005",
          "name": "Alfornelos",
          "country_code": "PT",
          "slug": "alfornelos",
          "canonical_path": "/cities/pt/alfornelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:6930153",
          "name": "Alfragide",
          "country_code": "PT",
          "slug": "alfragide",
          "canonical_path": "/cities/pt/alfragide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271985",
          "name": "Algés",
          "country_code": "PT",
          "slug": "alges",
          "canonical_path": "/cities/pt/alges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271977",
          "name": "Algueirão",
          "country_code": "PT",
          "slug": "algueirao",
          "canonical_path": "/cities/pt/algueirao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271975",
          "name": "Alhandra",
          "country_code": "PT",
          "slug": "alhandra",
          "canonical_path": "/cities/pt/alhandra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271970",
          "name": "Alhos Vedros",
          "country_code": "PT",
          "slug": "alhos-vedros",
          "canonical_path": "/cities/pt/alhos-vedros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q712064",
          "name": "Alijó",
          "country_code": "PT",
          "slug": "alijo",
          "canonical_path": "/cities/pt/alijo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q986095",
          "name": "Aljezur",
          "country_code": "PT",
          "slug": "aljezur",
          "canonical_path": "/cities/pt/aljezur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271966",
          "name": "Aljubarrota",
          "country_code": "PT",
          "slug": "aljubarrota",
          "canonical_path": "/cities/pt/aljubarrota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q939511",
          "name": "Aljustrel",
          "country_code": "PT",
          "slug": "aljustrel",
          "canonical_path": "/cities/pt/aljustrel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q328015",
          "name": "Almada",
          "country_code": "PT",
          "slug": "almada",
          "canonical_path": "/cities/pt/almada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271947",
          "name": "Almancil",
          "country_code": "PT",
          "slug": "almancil",
          "canonical_path": "/cities/pt/almancil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271945",
          "name": "Almargem",
          "country_code": "PT",
          "slug": "almargem",
          "canonical_path": "/cities/pt/almargem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q617889",
          "name": "Almeida",
          "country_code": "PT",
          "slug": "almeida",
          "canonical_path": "/cities/pt/almeida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q841235",
          "name": "Almeirim",
          "country_code": "PT",
          "slug": "almeirim",
          "canonical_path": "/cities/pt/almeirim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q936943",
          "name": "Almodôvar",
          "country_code": "PT",
          "slug": "almodovar",
          "canonical_path": "/cities/pt/almodovar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2743038",
          "name": "Alpendurada",
          "country_code": "PT",
          "slug": "alpendurada",
          "canonical_path": "/cities/pt/alpendurada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q999923",
          "name": "Alpiarça",
          "country_code": "PT",
          "slug": "alpiarca",
          "canonical_path": "/cities/pt/alpiarca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q448229",
          "name": "Alvaiázere",
          "country_code": "PT",
          "slug": "alvaiazere",
          "canonical_path": "/cities/pt/alvaiazere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271782",
          "name": "Alvor",
          "country_code": "PT",
          "slug": "alvor",
          "canonical_path": "/cities/pt/alvor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q189166",
          "name": "Amadora",
          "country_code": "PT",
          "slug": "amadora",
          "canonical_path": "/cities/pt/amadora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q454875",
          "name": "Amarante",
          "country_code": "PT",
          "slug": "amarante",
          "canonical_path": "/cities/pt/amarante/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q455012",
          "name": "Amares",
          "country_code": "PT",
          "slug": "amares",
          "canonical_path": "/cities/pt/amares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742951",
          "name": "Ameal",
          "country_code": "PT",
          "slug": "ameal",
          "canonical_path": "/cities/pt/ameal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271680",
          "name": "Amora",
          "country_code": "PT",
          "slug": "amora",
          "canonical_path": "/cities/pt/amora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q395919",
          "name": "Anadia",
          "country_code": "PT",
          "slug": "anadia",
          "canonical_path": "/cities/pt/anadia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742885",
          "name": "Angeiras",
          "country_code": "PT",
          "slug": "angeiras",
          "canonical_path": "/cities/pt/angeiras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q193677",
          "name": "Angra do Heroísmo",
          "country_code": "PT",
          "slug": "angra-do-heroismo",
          "canonical_path": "/cities/pt/angra-do-heroismo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q569929",
          "name": "Ansião",
          "country_code": "PT",
          "slug": "ansiao",
          "canonical_path": "/cities/pt/ansiao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742868",
          "name": "Anta",
          "country_code": "PT",
          "slug": "anta",
          "canonical_path": "/cities/pt/anta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742864",
          "name": "Antanhol",
          "country_code": "PT",
          "slug": "antanhol",
          "canonical_path": "/cities/pt/antanhol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271623",
          "name": "Apelação",
          "country_code": "PT",
          "slug": "apelacao",
          "canonical_path": "/cities/pt/apelacao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742833",
          "name": "Aradas",
          "country_code": "PT",
          "slug": "aradas",
          "canonical_path": "/cities/pt/aradas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742827",
          "name": "Arazede",
          "country_code": "PT",
          "slug": "arazede",
          "canonical_path": "/cities/pt/arazede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742808",
          "name": "Arcos",
          "country_code": "PT",
          "slug": "arcos",
          "canonical_path": "/cities/pt/arcos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742811",
          "name": "Arcos",
          "country_code": "PT",
          "slug": "arcos-02-0103",
          "canonical_path": "/cities/pt/arcos-02-0103/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q490302",
          "name": "Arcos de Valdevez",
          "country_code": "PT",
          "slug": "arcos-de-valdevez",
          "canonical_path": "/cities/pt/arcos-de-valdevez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742796",
          "name": "Arcozelo",
          "country_code": "PT",
          "slug": "arcozelo",
          "canonical_path": "/cities/pt/arcozelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742768",
          "name": "Areosa",
          "country_code": "PT",
          "slug": "areosa",
          "canonical_path": "/cities/pt/areosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q426953",
          "name": "Arganil",
          "country_code": "PT",
          "slug": "arganil",
          "canonical_path": "/cities/pt/arganil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271542",
          "name": "Armação de Pêra",
          "country_code": "PT",
          "slug": "armacao-de-pera",
          "canonical_path": "/cities/pt/armacao-de-pera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q558610",
          "name": "Armamar",
          "country_code": "PT",
          "slug": "armamar",
          "canonical_path": "/cities/pt/armamar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q565302",
          "name": "Arouca",
          "country_code": "PT",
          "slug": "arouca",
          "canonical_path": "/cities/pt/arouca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q699141",
          "name": "Arraiolos",
          "country_code": "PT",
          "slug": "arraiolos",
          "canonical_path": "/cities/pt/arraiolos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271473",
          "name": "Arrentela",
          "country_code": "PT",
          "slug": "arrentela",
          "canonical_path": "/cities/pt/arrentela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:3373329",
          "name": "Arrifes",
          "country_code": "PT",
          "slug": "arrifes",
          "canonical_path": "/cities/pt/arrifes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q703854",
          "name": "Arruda dos Vinhos",
          "country_code": "PT",
          "slug": "arruda-dos-vinhos",
          "canonical_path": "/cities/pt/arruda-dos-vinhos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742661",
          "name": "Árvore",
          "country_code": "PT",
          "slug": "arvore",
          "canonical_path": "/cities/pt/arvore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742649",
          "name": "Assafarge",
          "country_code": "PT",
          "slug": "assafarge",
          "canonical_path": "/cities/pt/assafarge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271354",
          "name": "Atouguia da Baleia",
          "country_code": "PT",
          "slug": "atouguia-da-baleia",
          "canonical_path": "/cities/pt/atouguia-da-baleia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742617",
          "name": "Avanca",
          "country_code": "PT",
          "slug": "avanca",
          "canonical_path": "/cities/pt/avanca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q485581",
          "name": "Aveiro",
          "country_code": "PT",
          "slug": "aveiro",
          "canonical_path": "/cities/pt/aveiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742595",
          "name": "Aveleda",
          "country_code": "PT",
          "slug": "aveleda",
          "canonical_path": "/cities/pt/aveleda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742578",
          "name": "Aver-o-Mar",
          "country_code": "PT",
          "slug": "aver-o-mar",
          "canonical_path": "/cities/pt/aver-o-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742577",
          "name": "Aves",
          "country_code": "PT",
          "slug": "aves",
          "canonical_path": "/cities/pt/aves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742565",
          "name": "Avintes",
          "country_code": "PT",
          "slug": "avintes",
          "canonical_path": "/cities/pt/avintes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q791134",
          "name": "Avis",
          "country_code": "PT",
          "slug": "avis",
          "canonical_path": "/cities/pt/avis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q634164",
          "name": "Azambuja",
          "country_code": "PT",
          "slug": "azambuja",
          "canonical_path": "/cities/pt/azambuja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:11808241",
          "name": "Azeitão",
          "country_code": "PT",
          "slug": "azeitao",
          "canonical_path": "/cities/pt/azeitao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742557",
          "name": "Azenha",
          "country_code": "PT",
          "slug": "azenha",
          "canonical_path": "/cities/pt/azenha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742545",
          "name": "Azevedo",
          "country_code": "PT",
          "slug": "azevedo",
          "canonical_path": "/cities/pt/azevedo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271297",
          "name": "Azinhaga",
          "country_code": "PT",
          "slug": "azinhaga",
          "canonical_path": "/cities/pt/azinhaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742506",
          "name": "Baguim do Monte",
          "country_code": "PT",
          "slug": "baguim-do-monte",
          "canonical_path": "/cities/pt/baguim-do-monte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q804064",
          "name": "Baião",
          "country_code": "PT",
          "slug": "baiao",
          "canonical_path": "/cities/pt/baiao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742494",
          "name": "Bairro do Loreto",
          "country_code": "PT",
          "slug": "bairro-do-loreto",
          "canonical_path": "/cities/pt/bairro-do-loreto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742493",
          "name": "Bairro Novo",
          "country_code": "PT",
          "slug": "bairro-novo",
          "canonical_path": "/cities/pt/bairro-novo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742488",
          "name": "Bairro Silva Braga",
          "country_code": "PT",
          "slug": "bairro-silva-braga",
          "canonical_path": "/cities/pt/bairro-silva-braga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2271140",
          "name": "Barcarena",
          "country_code": "PT",
          "slug": "barcarena",
          "canonical_path": "/cities/pt/barcarena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q213242",
          "name": "Barcelos",
          "country_code": "PT",
          "slug": "barcelos",
          "canonical_path": "/cities/pt/barcelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q217394",
          "name": "Barreiro",
          "country_code": "PT",
          "slug": "barreiro",
          "canonical_path": "/cities/pt/barreiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742354",
          "name": "Barro",
          "country_code": "PT",
          "slug": "barro",
          "canonical_path": "/cities/pt/barro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742330",
          "name": "Barrosas",
          "country_code": "PT",
          "slug": "barrosas",
          "canonical_path": "/cities/pt/barrosas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q810715",
          "name": "Batalha",
          "country_code": "PT",
          "slug": "batalha",
          "canonical_path": "/cities/pt/batalha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742309",
          "name": "Beduido",
          "country_code": "PT",
          "slug": "beduido",
          "canonical_path": "/cities/pt/beduido/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q213251",
          "name": "Beja",
          "country_code": "PT",
          "slug": "beja",
          "canonical_path": "/cities/pt/beja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742294",
          "name": "Bela Vista",
          "country_code": "PT",
          "slug": "bela-vista",
          "canonical_path": "/cities/pt/bela-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270981",
          "name": "Belas",
          "country_code": "PT",
          "slug": "belas",
          "canonical_path": "/cities/pt/belas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q816115",
          "name": "Belmonte",
          "country_code": "PT",
          "slug": "belmonte",
          "canonical_path": "/cities/pt/belmonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q571140",
          "name": "Benavente",
          "country_code": "PT",
          "slug": "benavente",
          "canonical_path": "/cities/pt/benavente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270935",
          "name": "Benedita",
          "country_code": "PT",
          "slug": "benedita",
          "canonical_path": "/cities/pt/benedita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270813",
          "name": "Bobadela",
          "country_code": "PT",
          "slug": "bobadela",
          "canonical_path": "/cities/pt/bobadela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q891820",
          "name": "Bombarral",
          "country_code": "PT",
          "slug": "bombarral",
          "canonical_path": "/cities/pt/bombarral/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742131",
          "name": "Bonjoia",
          "country_code": "PT",
          "slug": "bonjoia",
          "canonical_path": "/cities/pt/bonjoia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q893339",
          "name": "Borba",
          "country_code": "PT",
          "slug": "borba",
          "canonical_path": "/cities/pt/borba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q894746",
          "name": "Boticas",
          "country_code": "PT",
          "slug": "boticas",
          "canonical_path": "/cities/pt/boticas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742051",
          "name": "Bougado",
          "country_code": "PT",
          "slug": "bougado",
          "canonical_path": "/cities/pt/bougado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q83247",
          "name": "Braga",
          "country_code": "PT",
          "slug": "braga",
          "canonical_path": "/cities/pt/braga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q768261",
          "name": "Bragança",
          "country_code": "PT",
          "slug": "braganca",
          "canonical_path": "/cities/pt/braganca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2742024",
          "name": "Branca",
          "country_code": "PT",
          "slug": "branca",
          "canonical_path": "/cities/pt/branca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741985",
          "name": "Brito",
          "country_code": "PT",
          "slug": "brito",
          "canonical_path": "/cities/pt/brito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741961",
          "name": "Buarcos",
          "country_code": "PT",
          "slug": "buarcos",
          "canonical_path": "/cities/pt/buarcos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551048",
          "name": "Cabeceiras de Basto",
          "country_code": "PT",
          "slug": "cabeceiras-de-basto",
          "canonical_path": "/cities/pt/cabeceiras-de-basto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270503",
          "name": "Cacém",
          "country_code": "PT",
          "slug": "cacem",
          "canonical_path": "/cities/pt/cacem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741789",
          "name": "Cacia",
          "country_code": "PT",
          "slug": "cacia",
          "canonical_path": "/cities/pt/cacia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270486",
          "name": "Cacilhas",
          "country_code": "PT",
          "slug": "cacilhas",
          "canonical_path": "/cities/pt/cacilhas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q33661928",
          "name": "Cadaval",
          "country_code": "PT",
          "slug": "cadaval",
          "canonical_path": "/cities/pt/cadaval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q275689",
          "name": "Caldas da Rainha",
          "country_code": "PT",
          "slug": "caldas-da-rainha",
          "canonical_path": "/cities/pt/caldas-da-rainha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741738",
          "name": "Caldas de Vizela",
          "country_code": "PT",
          "slug": "caldas-de-vizela",
          "canonical_path": "/cities/pt/caldas-de-vizela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741728",
          "name": "Caldelas",
          "country_code": "PT",
          "slug": "caldelas",
          "canonical_path": "/cities/pt/caldelas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741724",
          "name": "Calendário",
          "country_code": "PT",
          "slug": "calendario",
          "canonical_path": "/cities/pt/calendario/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q757078",
          "name": "Calheta",
          "country_code": "PT",
          "slug": "calheta",
          "canonical_path": "/cities/pt/calheta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q623736",
          "name": "Câmara de Lobos",
          "country_code": "PT",
          "slug": "camara-de-lobos",
          "canonical_path": "/cities/pt/camara-de-lobos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270377",
          "name": "Camarate",
          "country_code": "PT",
          "slug": "camarate",
          "canonical_path": "/cities/pt/camarate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1029544",
          "name": "Caminha",
          "country_code": "PT",
          "slug": "caminha",
          "canonical_path": "/cities/pt/caminha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741667",
          "name": "Campanhã",
          "country_code": "PT",
          "slug": "campanha",
          "canonical_path": "/cities/pt/campanha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741648",
          "name": "Campo",
          "country_code": "PT",
          "slug": "campo",
          "canonical_path": "/cities/pt/campo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q995297",
          "name": "Campo Maior",
          "country_code": "PT",
          "slug": "campo-maior",
          "canonical_path": "/cities/pt/campo-maior/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270290",
          "name": "Caneças",
          "country_code": "PT",
          "slug": "canecas",
          "canonical_path": "/cities/pt/canecas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741566",
          "name": "Canelas",
          "country_code": "PT",
          "slug": "canelas",
          "canonical_path": "/cities/pt/canelas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741551",
          "name": "Canidelo",
          "country_code": "PT",
          "slug": "canidelo",
          "canonical_path": "/cities/pt/canidelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q426945",
          "name": "Cantanhede",
          "country_code": "PT",
          "slug": "cantanhede",
          "canonical_path": "/cities/pt/cantanhede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270229",
          "name": "Caparica",
          "country_code": "PT",
          "slug": "caparica",
          "canonical_path": "/cities/pt/caparica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270211",
          "name": "Caranguejeira",
          "country_code": "PT",
          "slug": "caranguejeira",
          "canonical_path": "/cities/pt/caranguejeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270184",
          "name": "Carcavelos",
          "country_code": "PT",
          "slug": "carcavelos",
          "canonical_path": "/cities/pt/carcavelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270157",
          "name": "Carnaxide",
          "country_code": "PT",
          "slug": "carnaxide",
          "canonical_path": "/cities/pt/carnaxide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741431",
          "name": "Carrazeda de Anciães",
          "country_code": "PT",
          "slug": "carrazeda-de-anciaes",
          "canonical_path": "/cities/pt/carrazeda-de-anciaes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551666",
          "name": "Carrazeda de Ansiães",
          "country_code": "PT",
          "slug": "carrazeda-de-ansiaes",
          "canonical_path": "/cities/pt/carrazeda-de-ansiaes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2270084",
          "name": "Carregado",
          "country_code": "PT",
          "slug": "carregado",
          "canonical_path": "/cities/pt/carregado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q796938",
          "name": "Carregal do Sal",
          "country_code": "PT",
          "slug": "carregal-do-sal",
          "canonical_path": "/cities/pt/carregal-do-sal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q841304",
          "name": "Cartaxo",
          "country_code": "PT",
          "slug": "cartaxo",
          "canonical_path": "/cities/pt/cartaxo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q273059",
          "name": "Cascais",
          "country_code": "PT",
          "slug": "cascais",
          "canonical_path": "/cities/pt/cascais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2269556",
          "name": "Castanheira do Ribatejo",
          "country_code": "PT",
          "slug": "castanheira-do-ribatejo",
          "canonical_path": "/cities/pt/castanheira-do-ribatejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q373720",
          "name": "Castelo Branco",
          "country_code": "PT",
          "slug": "castelo-branco",
          "canonical_path": "/cities/pt/castelo-branco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q397379",
          "name": "Castelo de Paiva",
          "country_code": "PT",
          "slug": "castelo-de-paiva",
          "canonical_path": "/cities/pt/castelo-de-paiva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740984",
          "name": "Castelo Viegas",
          "country_code": "PT",
          "slug": "castelo-viegas",
          "canonical_path": "/cities/pt/castelo-viegas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740992",
          "name": "Castelões de Cepeda",
          "country_code": "PT",
          "slug": "casteloes-de-cepeda",
          "canonical_path": "/cities/pt/casteloes-de-cepeda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q861199",
          "name": "Castro Daire",
          "country_code": "PT",
          "slug": "castro-daire",
          "canonical_path": "/cities/pt/castro-daire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q986079",
          "name": "Castro Marim",
          "country_code": "PT",
          "slug": "castro-marim",
          "canonical_path": "/cities/pt/castro-marim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551696",
          "name": "Castro Verde",
          "country_code": "PT",
          "slug": "castro-verde",
          "canonical_path": "/cities/pt/castro-verde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2269449",
          "name": "Caxias",
          "country_code": "PT",
          "slug": "caxias",
          "canonical_path": "/cities/pt/caxias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q523596",
          "name": "Celorico da Beira",
          "country_code": "PT",
          "slug": "celorico-da-beira",
          "canonical_path": "/cities/pt/celorico-da-beira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551653",
          "name": "Celorico de Basto",
          "country_code": "PT",
          "slug": "celorico-de-basto",
          "canonical_path": "/cities/pt/celorico-de-basto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1000093",
          "name": "Chamusca",
          "country_code": "PT",
          "slug": "chamusca",
          "canonical_path": "/cities/pt/chamusca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2269282",
          "name": "Charneca de Caparica",
          "country_code": "PT",
          "slug": "charneca-de-caparica",
          "canonical_path": "/cities/pt/charneca-de-caparica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q504580",
          "name": "Chaves",
          "country_code": "PT",
          "slug": "chaves",
          "canonical_path": "/cities/pt/chaves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q861464",
          "name": "Cinfães",
          "country_code": "PT",
          "slug": "cinfaes",
          "canonical_path": "/cities/pt/cinfaes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q45412",
          "name": "Coimbra",
          "country_code": "PT",
          "slug": "coimbra",
          "canonical_path": "/cities/pt/coimbra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2269142",
          "name": "Colares",
          "country_code": "PT",
          "slug": "colares",
          "canonical_path": "/cities/pt/colares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q138830",
          "name": "Condeixa-a-Nova",
          "country_code": "PT",
          "slug": "condeixa-a-nova",
          "canonical_path": "/cities/pt/condeixa-a-nova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1003157",
          "name": "Constância",
          "country_code": "PT",
          "slug": "constancia",
          "canonical_path": "/cities/pt/constancia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740568",
          "name": "Contumil",
          "country_code": "PT",
          "slug": "contumil",
          "canonical_path": "/cities/pt/contumil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734339",
          "name": "Coronado",
          "country_code": "PT",
          "slug": "coronado",
          "canonical_path": "/cities/pt/coronado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2269041",
          "name": "Corroios",
          "country_code": "PT",
          "slug": "corroios",
          "canonical_path": "/cities/pt/corroios/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1000052",
          "name": "Coruche",
          "country_code": "PT",
          "slug": "coruche",
          "canonical_path": "/cities/pt/coruche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268937",
          "name": "Corujeira de Dentro",
          "country_code": "PT",
          "slug": "corujeira-de-dentro",
          "canonical_path": "/cities/pt/corujeira-de-dentro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:7116497",
          "name": "Costa da Caparica",
          "country_code": "PT",
          "slug": "costa-da-caparica",
          "canonical_path": "/cities/pt/costa-da-caparica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268916",
          "name": "Costa de Caparica",
          "country_code": "PT",
          "slug": "costa-de-caparica",
          "canonical_path": "/cities/pt/costa-de-caparica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268874",
          "name": "Cova da Moura",
          "country_code": "PT",
          "slug": "cova-da-moura",
          "canonical_path": "/cities/pt/cova-da-moura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q849026",
          "name": "Covilhã",
          "country_code": "PT",
          "slug": "covilha",
          "canonical_path": "/cities/pt/covilha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740261",
          "name": "Cruz",
          "country_code": "PT",
          "slug": "cruz",
          "canonical_path": "/cities/pt/cruz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740221",
          "name": "Cucujães",
          "country_code": "PT",
          "slug": "cucujaes",
          "canonical_path": "/cities/pt/cucujaes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740174",
          "name": "Custoias",
          "country_code": "PT",
          "slug": "custoias",
          "canonical_path": "/cities/pt/custoias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268728",
          "name": "Damaia",
          "country_code": "PT",
          "slug": "damaia",
          "canonical_path": "/cities/pt/damaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740159",
          "name": "Darque",
          "country_code": "PT",
          "slug": "darque",
          "canonical_path": "/cities/pt/darque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740057",
          "name": "Eiras",
          "country_code": "PT",
          "slug": "eiras",
          "canonical_path": "/cities/pt/eiras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740034",
          "name": "Eirol",
          "country_code": "PT",
          "slug": "eirol",
          "canonical_path": "/cities/pt/eirol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2740031",
          "name": "Eixo",
          "country_code": "PT",
          "slug": "eixo",
          "canonical_path": "/cities/pt/eixo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q243849",
          "name": "Elvas",
          "country_code": "PT",
          "slug": "elvas",
          "canonical_path": "/cities/pt/elvas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990422",
          "name": "Entroncamento",
          "country_code": "PT",
          "slug": "entroncamento",
          "canonical_path": "/cities/pt/entroncamento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268563",
          "name": "Ericeira",
          "country_code": "PT",
          "slug": "ericeira",
          "canonical_path": "/cities/pt/ericeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739997",
          "name": "Ermesinde",
          "country_code": "PT",
          "slug": "ermesinde",
          "canonical_path": "/cities/pt/ermesinde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739920",
          "name": "Esgueira",
          "country_code": "PT",
          "slug": "esgueira",
          "canonical_path": "/cities/pt/esgueira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739915",
          "name": "Esmoriz",
          "country_code": "PT",
          "slug": "esmoriz",
          "canonical_path": "/cities/pt/esmoriz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q13225053",
          "name": "Espinho",
          "country_code": "PT",
          "slug": "espinho",
          "canonical_path": "/cities/pt/espinho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q552011",
          "name": "Esposende",
          "country_code": "PT",
          "slug": "esposende",
          "canonical_path": "/cities/pt/esposende/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q381337",
          "name": "Estarreja",
          "country_code": "PT",
          "slug": "estarreja",
          "canonical_path": "/cities/pt/estarreja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268438",
          "name": "Estói",
          "country_code": "PT",
          "slug": "estoi",
          "canonical_path": "/cities/pt/estoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268436",
          "name": "Estoril",
          "country_code": "PT",
          "slug": "estoril",
          "canonical_path": "/cities/pt/estoril/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q625157",
          "name": "Estremoz",
          "country_code": "PT",
          "slug": "estremoz",
          "canonical_path": "/cities/pt/estremoz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q179948",
          "name": "Évora",
          "country_code": "PT",
          "slug": "evora",
          "canonical_path": "/cities/pt/evora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551080",
          "name": "Fafe",
          "country_code": "PT",
          "slug": "fafe",
          "canonical_path": "/cities/pt/fafe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268373",
          "name": "Falagueira",
          "country_code": "PT",
          "slug": "falagueira",
          "canonical_path": "/cities/pt/falagueira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268358",
          "name": "Famões",
          "country_code": "PT",
          "slug": "famoes",
          "canonical_path": "/cities/pt/famoes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739756",
          "name": "Fânzeres",
          "country_code": "PT",
          "slug": "fanzeres",
          "canonical_path": "/cities/pt/fanzeres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q159457",
          "name": "Faro",
          "country_code": "PT",
          "slug": "faro",
          "canonical_path": "/cities/pt/faro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268326",
          "name": "Fátima",
          "country_code": "PT",
          "slug": "fatima",
          "canonical_path": "/cities/pt/fatima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268313",
          "name": "Fazendas de Almeirim",
          "country_code": "PT",
          "slug": "fazendas-de-almeirim",
          "canonical_path": "/cities/pt/fazendas-de-almeirim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q936904",
          "name": "Felgueiras",
          "country_code": "PT",
          "slug": "felgueiras",
          "canonical_path": "/cities/pt/felgueiras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q552015",
          "name": "Ferreira do Alentejo",
          "country_code": "PT",
          "slug": "ferreira-do-alentejo",
          "canonical_path": "/cities/pt/ferreira-do-alentejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q995202",
          "name": "Ferreira do Zêzere",
          "country_code": "PT",
          "slug": "ferreira-do-zezere",
          "canonical_path": "/cities/pt/ferreira-do-zezere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268250",
          "name": "Ferreiras",
          "country_code": "PT",
          "slug": "ferreiras",
          "canonical_path": "/cities/pt/ferreiras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739636",
          "name": "Ferreiros",
          "country_code": "PT",
          "slug": "ferreiros",
          "canonical_path": "/cities/pt/ferreiros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q428459",
          "name": "Figueira da Foz",
          "country_code": "PT",
          "slug": "figueira-da-foz",
          "canonical_path": "/cities/pt/figueira-da-foz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q644782",
          "name": "Figueira de Castelo Rodrigo",
          "country_code": "PT",
          "slug": "figueira-de-castelo-rodrigo",
          "canonical_path": "/cities/pt/figueira-de-castelo-rodrigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q679642",
          "name": "Figueiró dos Vinhos",
          "country_code": "PT",
          "slug": "figueiro-dos-vinhos",
          "canonical_path": "/cities/pt/figueiro-dos-vinhos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2268126",
          "name": "Fontanelas",
          "country_code": "PT",
          "slug": "fontanelas",
          "canonical_path": "/cities/pt/fontanelas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739333",
          "name": "Foz do Sousa",
          "country_code": "PT",
          "slug": "foz-do-sousa",
          "canonical_path": "/cities/pt/foz-do-sousa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739290",
          "name": "Francos",
          "country_code": "PT",
          "slug": "francos",
          "canonical_path": "/cities/pt/francos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739285",
          "name": "Freamunde",
          "country_code": "PT",
          "slug": "freamunde",
          "canonical_path": "/cities/pt/freamunde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q25444",
          "name": "Funchal",
          "country_code": "PT",
          "slug": "funchal",
          "canonical_path": "/cities/pt/funchal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1024927",
          "name": "Fundão",
          "country_code": "PT",
          "slug": "fundao",
          "canonical_path": "/cities/pt/fundao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2267792",
          "name": "Fuzeta",
          "country_code": "PT",
          "slug": "fuzeta",
          "canonical_path": "/cities/pt/fuzeta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739152",
          "name": "Gafanha",
          "country_code": "PT",
          "slug": "gafanha",
          "canonical_path": "/cities/pt/gafanha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739118",
          "name": "Galegos",
          "country_code": "PT",
          "slug": "galegos",
          "canonical_path": "/cities/pt/galegos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739080",
          "name": "Gandra",
          "country_code": "PT",
          "slug": "gandra",
          "canonical_path": "/cities/pt/gandra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2739034",
          "name": "Gemunde",
          "country_code": "PT",
          "slug": "gemunde",
          "canonical_path": "/cities/pt/gemunde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1012522",
          "name": "Golegã",
          "country_code": "PT",
          "slug": "golega",
          "canonical_path": "/cities/pt/golega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738928",
          "name": "Gondizalves",
          "country_code": "PT",
          "slug": "gondizalves",
          "canonical_path": "/cities/pt/gondizalves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q983483",
          "name": "Gondomar",
          "country_code": "PT",
          "slug": "gondomar",
          "canonical_path": "/cities/pt/gondomar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q599317",
          "name": "Gouveia",
          "country_code": "PT",
          "slug": "gouveia",
          "canonical_path": "/cities/pt/gouveia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q986019",
          "name": "Grândola",
          "country_code": "PT",
          "slug": "grandola",
          "canonical_path": "/cities/pt/grandola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738803",
          "name": "Grijó",
          "country_code": "PT",
          "slug": "grijo",
          "canonical_path": "/cities/pt/grijo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738786",
          "name": "Gualtar",
          "country_code": "PT",
          "slug": "gualtar",
          "canonical_path": "/cities/pt/gualtar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q750594",
          "name": "Guarda",
          "country_code": "PT",
          "slug": "guarda",
          "canonical_path": "/cities/pt/guarda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738744",
          "name": "Gueifães",
          "country_code": "PT",
          "slug": "gueifaes",
          "canonical_path": "/cities/pt/gueifaes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738766",
          "name": "Guifões",
          "country_code": "PT",
          "slug": "guifoes",
          "canonical_path": "/cities/pt/guifoes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q170903",
          "name": "Guimarães",
          "country_code": "PT",
          "slug": "guimaraes",
          "canonical_path": "/cities/pt/guimaraes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738737",
          "name": "Gulpilhares",
          "country_code": "PT",
          "slug": "gulpilhares",
          "canonical_path": "/cities/pt/gulpilhares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990385",
          "name": "Horta",
          "country_code": "PT",
          "slug": "horta",
          "canonical_path": "/cities/pt/horta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q999446",
          "name": "Idanha-a-Nova",
          "country_code": "PT",
          "slug": "idanha-a-nova",
          "canonical_path": "/cities/pt/idanha-a-nova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q291745",
          "name": "Ílhavo",
          "country_code": "PT",
          "slug": "ilhavo",
          "canonical_path": "/cities/pt/ilhavo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738658",
          "name": "Joane",
          "country_code": "PT",
          "slug": "joane",
          "canonical_path": "/cities/pt/joane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738643",
          "name": "Jovim",
          "country_code": "PT",
          "slug": "jovim",
          "canonical_path": "/cities/pt/jovim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q732548",
          "name": "Lagos",
          "country_code": "PT",
          "slug": "lagos",
          "canonical_path": "/cities/pt/lagos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q117591",
          "name": "Lamego",
          "country_code": "PT",
          "slug": "lamego",
          "canonical_path": "/cities/pt/lamego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2267131",
          "name": "Laranjeiro",
          "country_code": "PT",
          "slug": "laranjeiro",
          "canonical_path": "/cities/pt/laranjeiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2267141",
          "name": "Laranjeiro",
          "country_code": "PT",
          "slug": "laranjeiro-19-1503",
          "canonical_path": "/cities/pt/laranjeiro-19-1503/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738360",
          "name": "Lavra",
          "country_code": "PT",
          "slug": "lavra",
          "canonical_path": "/cities/pt/lavra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2267112",
          "name": "Lavradio",
          "country_code": "PT",
          "slug": "lavradio",
          "canonical_path": "/cities/pt/lavradio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738348",
          "name": "Leça da Palmeira",
          "country_code": "PT",
          "slug": "leca-da-palmeira",
          "canonical_path": "/cities/pt/leca-da-palmeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738347",
          "name": "Leça do Bailio",
          "country_code": "PT",
          "slug": "leca-do-bailio",
          "canonical_path": "/cities/pt/leca-do-bailio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q206933",
          "name": "Leiria",
          "country_code": "PT",
          "slug": "leiria",
          "canonical_path": "/cities/pt/leiria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2267067",
          "name": "Linda-a-Velha",
          "country_code": "PT",
          "slug": "linda-a-velha",
          "canonical_path": "/cities/pt/linda-a-velha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738224",
          "name": "Lordelo",
          "country_code": "PT",
          "slug": "lordelo",
          "canonical_path": "/cities/pt/lordelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738214",
          "name": "Lordelo do Ouro",
          "country_code": "PT",
          "slug": "lordelo-do-ouro",
          "canonical_path": "/cities/pt/lordelo-do-ouro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q586722",
          "name": "Loulé",
          "country_code": "PT",
          "slug": "loule",
          "canonical_path": "/cities/pt/loule/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q917535",
          "name": "Loures",
          "country_code": "PT",
          "slug": "loures",
          "canonical_path": "/cities/pt/loures/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2266974",
          "name": "Louriçal",
          "country_code": "PT",
          "slug": "lourical",
          "canonical_path": "/cities/pt/lourical/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q986017",
          "name": "Lourinhã",
          "country_code": "PT",
          "slug": "lourinha",
          "canonical_path": "/cities/pt/lourinha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1006413",
          "name": "Lousã",
          "country_code": "PT",
          "slug": "lousa",
          "canonical_path": "/cities/pt/lousa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q986741",
          "name": "Lousada",
          "country_code": "PT",
          "slug": "lousada",
          "canonical_path": "/cities/pt/lousada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1012723",
          "name": "Mação",
          "country_code": "PT",
          "slug": "macao",
          "canonical_path": "/cities/pt/macao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551693",
          "name": "Macedo de Cavaleiros",
          "country_code": "PT",
          "slug": "macedo-de-cavaleiros",
          "canonical_path": "/cities/pt/macedo-de-cavaleiros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2266914",
          "name": "Maceira",
          "country_code": "PT",
          "slug": "maceira",
          "canonical_path": "/cities/pt/maceira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q693243",
          "name": "Machico",
          "country_code": "PT",
          "slug": "machico",
          "canonical_path": "/cities/pt/machico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2738052",
          "name": "Macieira de Cambra",
          "country_code": "PT",
          "slug": "macieira-de-cambra",
          "canonical_path": "/cities/pt/macieira-de-cambra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1002565",
          "name": "Madalena",
          "country_code": "PT",
          "slug": "madalena",
          "canonical_path": "/cities/pt/madalena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q986419",
          "name": "Mafra",
          "country_code": "PT",
          "slug": "mafra",
          "canonical_path": "/cities/pt/mafra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990403",
          "name": "Maia",
          "country_code": "PT",
          "slug": "maia",
          "canonical_path": "/cities/pt/maia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2266777",
          "name": "Malveira",
          "country_code": "PT",
          "slug": "malveira",
          "canonical_path": "/cities/pt/malveira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q597789",
          "name": "Mangualde",
          "country_code": "PT",
          "slug": "mangualde",
          "canonical_path": "/cities/pt/mangualde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737922",
          "name": "Marco da Oliveirinha",
          "country_code": "PT",
          "slug": "marco-da-oliveirinha",
          "canonical_path": "/cities/pt/marco-da-oliveirinha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q188050",
          "name": "Marco de Canaveses",
          "country_code": "PT",
          "slug": "marco-de-canaveses",
          "canonical_path": "/cities/pt/marco-de-canaveses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737921",
          "name": "Marco de Canavezes",
          "country_code": "PT",
          "slug": "marco-de-canavezes",
          "canonical_path": "/cities/pt/marco-de-canavezes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737914",
          "name": "Margaride",
          "country_code": "PT",
          "slug": "margaride",
          "canonical_path": "/cities/pt/margaride/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q289852",
          "name": "Marinha Grande",
          "country_code": "PT",
          "slug": "marinha-grande",
          "canonical_path": "/cities/pt/marinha-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2266702",
          "name": "Marinhais",
          "country_code": "PT",
          "slug": "marinhais",
          "canonical_path": "/cities/pt/marinhais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737904",
          "name": "Marinhas",
          "country_code": "PT",
          "slug": "marinhas",
          "canonical_path": "/cities/pt/marinhas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2266621",
          "name": "Massamá",
          "country_code": "PT",
          "slug": "massama",
          "canonical_path": "/cities/pt/massama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737861",
          "name": "Massarelos",
          "country_code": "PT",
          "slug": "massarelos",
          "canonical_path": "/cities/pt/massarelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q841299",
          "name": "Matosinhos",
          "country_code": "PT",
          "slug": "matosinhos",
          "canonical_path": "/cities/pt/matosinhos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737810",
          "name": "Meadela",
          "country_code": "PT",
          "slug": "meadela",
          "canonical_path": "/cities/pt/meadela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q381340",
          "name": "Mealhada",
          "country_code": "PT",
          "slug": "mealhada",
          "canonical_path": "/cities/pt/mealhada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990335",
          "name": "Mêda",
          "country_code": "PT",
          "slug": "meda",
          "canonical_path": "/cities/pt/meda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q491888",
          "name": "Melgaço",
          "country_code": "PT",
          "slug": "melgaco",
          "canonical_path": "/cities/pt/melgaco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737737",
          "name": "Melres",
          "country_code": "PT",
          "slug": "melres",
          "canonical_path": "/cities/pt/melres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2266464",
          "name": "Mem Martins",
          "country_code": "PT",
          "slug": "mem-martins",
          "canonical_path": "/cities/pt/mem-martins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737723",
          "name": "Merelim",
          "country_code": "PT",
          "slug": "merelim",
          "canonical_path": "/cities/pt/merelim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551056",
          "name": "Mértola",
          "country_code": "PT",
          "slug": "mertola",
          "canonical_path": "/cities/pt/mertola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2266411",
          "name": "Milharado",
          "country_code": "PT",
          "slug": "milharado",
          "canonical_path": "/cities/pt/milharado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1006418",
          "name": "Mira",
          "country_code": "PT",
          "slug": "mira",
          "canonical_path": "/cities/pt/mira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737643",
          "name": "Miramar",
          "country_code": "PT",
          "slug": "miramar",
          "canonical_path": "/cities/pt/miramar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q370187",
          "name": "Miranda do Corvo",
          "country_code": "PT",
          "slug": "miranda-do-corvo",
          "canonical_path": "/cities/pt/miranda-do-corvo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q373475",
          "name": "Miranda do Douro",
          "country_code": "PT",
          "slug": "miranda-do-douro",
          "canonical_path": "/cities/pt/miranda-do-douro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551502",
          "name": "Mirandela",
          "country_code": "PT",
          "slug": "mirandela",
          "canonical_path": "/cities/pt/mirandela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551680",
          "name": "Mogadouro",
          "country_code": "PT",
          "slug": "mogadouro",
          "canonical_path": "/cities/pt/mogadouro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q862822",
          "name": "Moimenta da Beira",
          "country_code": "PT",
          "slug": "moimenta-da-beira",
          "canonical_path": "/cities/pt/moimenta-da-beira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q933912",
          "name": "Moita",
          "country_code": "PT",
          "slug": "moita",
          "canonical_path": "/cities/pt/moita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q425738",
          "name": "Monção",
          "country_code": "PT",
          "slug": "moncao",
          "canonical_path": "/cities/pt/moncao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2266272",
          "name": "Moncarapacho",
          "country_code": "PT",
          "slug": "moncarapacho",
          "canonical_path": "/cities/pt/moncarapacho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q957663",
          "name": "Monchique",
          "country_code": "PT",
          "slug": "monchique",
          "canonical_path": "/cities/pt/monchique/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q932771",
          "name": "Mondim de Basto",
          "country_code": "PT",
          "slug": "mondim-de-basto",
          "canonical_path": "/cities/pt/mondim-de-basto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q757860",
          "name": "Montalegre",
          "country_code": "PT",
          "slug": "montalegre",
          "canonical_path": "/cities/pt/montalegre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265927",
          "name": "Monte Estoril",
          "country_code": "PT",
          "slug": "monte-estoril",
          "canonical_path": "/cities/pt/monte-estoril/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265844",
          "name": "Monte Real",
          "country_code": "PT",
          "slug": "monte-real",
          "canonical_path": "/cities/pt/monte-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q538407",
          "name": "Montemor-o-Novo",
          "country_code": "PT",
          "slug": "montemor-o-novo",
          "canonical_path": "/cities/pt/montemor-o-novo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q45815",
          "name": "Montemor-o-Velho",
          "country_code": "PT",
          "slug": "montemor-o-velho",
          "canonical_path": "/cities/pt/montemor-o-velho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q826511",
          "name": "Montijo",
          "country_code": "PT",
          "slug": "montijo",
          "canonical_path": "/cities/pt/montijo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737398",
          "name": "Moreira",
          "country_code": "PT",
          "slug": "moreira",
          "canonical_path": "/cities/pt/moreira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737399",
          "name": "Moreira",
          "country_code": "PT",
          "slug": "moreira-17-1304",
          "canonical_path": "/cities/pt/moreira-17-1304/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737393",
          "name": "Moreira de Conegos",
          "country_code": "PT",
          "slug": "moreira-de-conegos",
          "canonical_path": "/cities/pt/moreira-de-conegos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q861592",
          "name": "Mortágua",
          "country_code": "PT",
          "slug": "mortagua",
          "canonical_path": "/cities/pt/mortagua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265726",
          "name": "Moscavide e Portela",
          "country_code": "PT",
          "slug": "moscavide-e-portela",
          "canonical_path": "/cities/pt/moscavide-e-portela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551662",
          "name": "Moura",
          "country_code": "PT",
          "slug": "moura",
          "canonical_path": "/cities/pt/moura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737268",
          "name": "Mozelos",
          "country_code": "PT",
          "slug": "mozelos",
          "canonical_path": "/cities/pt/mozelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q513049",
          "name": "Murça",
          "country_code": "PT",
          "slug": "murca",
          "canonical_path": "/cities/pt/murca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q2142313",
          "name": "Murtosa",
          "country_code": "PT",
          "slug": "murtosa",
          "canonical_path": "/cities/pt/murtosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q497179",
          "name": "Nazaré",
          "country_code": "PT",
          "slug": "nazare",
          "canonical_path": "/cities/pt/nazare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737194",
          "name": "Negrelos",
          "country_code": "PT",
          "slug": "negrelos",
          "canonical_path": "/cities/pt/negrelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q687790",
          "name": "Nelas",
          "country_code": "PT",
          "slug": "nelas",
          "canonical_path": "/cities/pt/nelas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737169",
          "name": "Nevogilde",
          "country_code": "PT",
          "slug": "nevogilde",
          "canonical_path": "/cities/pt/nevogilde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737165",
          "name": "Nine",
          "country_code": "PT",
          "slug": "nine",
          "canonical_path": "/cities/pt/nine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1013628",
          "name": "Nisa",
          "country_code": "PT",
          "slug": "nisa",
          "canonical_path": "/cities/pt/nisa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737162",
          "name": "Noeda",
          "country_code": "PT",
          "slug": "noeda",
          "canonical_path": "/cities/pt/noeda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737150",
          "name": "Nogueira",
          "country_code": "PT",
          "slug": "nogueira",
          "canonical_path": "/cities/pt/nogueira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265494",
          "name": "Nossa Senhora do Monte",
          "country_code": "PT",
          "slug": "nossa-senhora-do-monte",
          "canonical_path": "/cities/pt/nossa-senhora-do-monte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q275862",
          "name": "Óbidos",
          "country_code": "PT",
          "slug": "obidos",
          "canonical_path": "/cities/pt/obidos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551669",
          "name": "Odemira",
          "country_code": "PT",
          "slug": "odemira",
          "canonical_path": "/cities/pt/odemira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q850837",
          "name": "Odivelas",
          "country_code": "PT",
          "slug": "odivelas",
          "canonical_path": "/cities/pt/odivelas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q926700",
          "name": "Oeiras",
          "country_code": "PT",
          "slug": "oeiras",
          "canonical_path": "/cities/pt/oeiras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737088",
          "name": "Oiã",
          "country_code": "PT",
          "slug": "oia",
          "canonical_path": "/cities/pt/oia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1012719",
          "name": "Oleiros",
          "country_code": "PT",
          "slug": "oleiros",
          "canonical_path": "/cities/pt/oleiros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q740845",
          "name": "Olhão",
          "country_code": "PT",
          "slug": "olhao",
          "canonical_path": "/cities/pt/olhao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265434",
          "name": "Olhos de Água",
          "country_code": "PT",
          "slug": "olhos-de-agua",
          "canonical_path": "/cities/pt/olhos-de-agua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265428",
          "name": "Olival",
          "country_code": "PT",
          "slug": "olival",
          "canonical_path": "/cities/pt/olival/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737064",
          "name": "Olival",
          "country_code": "PT",
          "slug": "olival-17-1317",
          "canonical_path": "/cities/pt/olival-17-1317/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265422",
          "name": "Olival Basto",
          "country_code": "PT",
          "slug": "olival-basto",
          "canonical_path": "/cities/pt/olival-basto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737053",
          "name": "Oliveira",
          "country_code": "PT",
          "slug": "oliveira",
          "canonical_path": "/cities/pt/oliveira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q405252",
          "name": "Oliveira de Azeméis",
          "country_code": "PT",
          "slug": "oliveira-de-azemeis",
          "canonical_path": "/cities/pt/oliveira-de-azemeis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q861584",
          "name": "Oliveira de Frades",
          "country_code": "PT",
          "slug": "oliveira-de-frades",
          "canonical_path": "/cities/pt/oliveira-de-frades/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q405241",
          "name": "Oliveira do Bairro",
          "country_code": "PT",
          "slug": "oliveira-do-bairro",
          "canonical_path": "/cities/pt/oliveira-do-bairro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2737039",
          "name": "Oliveira do Douro",
          "country_code": "PT",
          "slug": "oliveira-do-douro",
          "canonical_path": "/cities/pt/oliveira-do-douro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990381",
          "name": "Oliveira do Hospital",
          "country_code": "PT",
          "slug": "oliveira-do-hospital",
          "canonical_path": "/cities/pt/oliveira-do-hospital/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q771546",
          "name": "Ourém",
          "country_code": "PT",
          "slug": "ourem",
          "canonical_path": "/cities/pt/ourem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q519052",
          "name": "Ourique",
          "country_code": "PT",
          "slug": "ourique",
          "canonical_path": "/cities/pt/ourique/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q404261",
          "name": "Ovar",
          "country_code": "PT",
          "slug": "ovar",
          "canonical_path": "/cities/pt/ovar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265326",
          "name": "Paço de Arcos",
          "country_code": "PT",
          "slug": "paco-de-arcos",
          "canonical_path": "/cities/pt/paco-de-arcos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736891",
          "name": "Paços",
          "country_code": "PT",
          "slug": "pacos",
          "canonical_path": "/cities/pt/pacos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q946398",
          "name": "Paços de Ferreira",
          "country_code": "PT",
          "slug": "pacos-de-ferreira",
          "canonical_path": "/cities/pt/pacos-de-ferreira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736799",
          "name": "Palmeira",
          "country_code": "PT",
          "slug": "palmeira",
          "canonical_path": "/cities/pt/palmeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q850855",
          "name": "Palmela",
          "country_code": "PT",
          "slug": "palmela",
          "canonical_path": "/cities/pt/palmela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1000099",
          "name": "Pampilhosa da Serra",
          "country_code": "PT",
          "slug": "pampilhosa-da-serra",
          "canonical_path": "/cities/pt/pampilhosa-da-serra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736680",
          "name": "Paranhos",
          "country_code": "PT",
          "slug": "paranhos",
          "canonical_path": "/cities/pt/paranhos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265169",
          "name": "Parede",
          "country_code": "PT",
          "slug": "parede",
          "canonical_path": "/cities/pt/parede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q631788",
          "name": "Paredes",
          "country_code": "PT",
          "slug": "paredes",
          "canonical_path": "/cities/pt/paredes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q489105",
          "name": "Paredes de Coura",
          "country_code": "PT",
          "slug": "paredes-de-coura",
          "canonical_path": "/cities/pt/paredes-de-coura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2265120",
          "name": "Pataias",
          "country_code": "PT",
          "slug": "pataias",
          "canonical_path": "/cities/pt/pataias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736559",
          "name": "Pedras Rubras",
          "country_code": "PT",
          "slug": "pedras-rubras",
          "canonical_path": "/cities/pt/pedras-rubras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736521",
          "name": "Pedroso",
          "country_code": "PT",
          "slug": "pedroso",
          "canonical_path": "/cities/pt/pedroso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736520",
          "name": "Pedrouços",
          "country_code": "PT",
          "slug": "pedroucos",
          "canonical_path": "/cities/pt/pedroucos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1005038",
          "name": "Penacova",
          "country_code": "PT",
          "slug": "penacova",
          "canonical_path": "/cities/pt/penacova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q984656",
          "name": "Penafiel",
          "country_code": "PT",
          "slug": "penafiel",
          "canonical_path": "/cities/pt/penafiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q780374",
          "name": "Penalva do Castelo",
          "country_code": "PT",
          "slug": "penalva-do-castelo",
          "canonical_path": "/cities/pt/penalva-do-castelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q995183",
          "name": "Penamacor",
          "country_code": "PT",
          "slug": "penamacor",
          "canonical_path": "/cities/pt/penamacor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q576924",
          "name": "Penela",
          "country_code": "PT",
          "slug": "penela",
          "canonical_path": "/cities/pt/penela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q941967",
          "name": "Peniche",
          "country_code": "PT",
          "slug": "peniche",
          "canonical_path": "/cities/pt/peniche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736391",
          "name": "Perafita",
          "country_code": "PT",
          "slug": "perafita",
          "canonical_path": "/cities/pt/perafita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736353",
          "name": "Pereiro",
          "country_code": "PT",
          "slug": "pereiro",
          "canonical_path": "/cities/pt/pereiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736327",
          "name": "Perozinho",
          "country_code": "PT",
          "slug": "perozinho",
          "canonical_path": "/cities/pt/perozinho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q757858",
          "name": "Peso da Régua",
          "country_code": "PT",
          "slug": "peso-da-regua",
          "canonical_path": "/cities/pt/peso-da-regua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264736",
          "name": "Piedade",
          "country_code": "PT",
          "slug": "piedade",
          "canonical_path": "/cities/pt/piedade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264718",
          "name": "Pinhal Novo",
          "country_code": "PT",
          "slug": "pinhal-novo",
          "canonical_path": "/cities/pt/pinhal-novo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736189",
          "name": "Pinheiro Manso",
          "country_code": "PT",
          "slug": "pinheiro-manso",
          "canonical_path": "/cities/pt/pinheiro-manso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q917335",
          "name": "Pinhel",
          "country_code": "PT",
          "slug": "pinhel",
          "canonical_path": "/cities/pt/pinhel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736124",
          "name": "Poiares",
          "country_code": "PT",
          "slug": "poiares",
          "canonical_path": "/cities/pt/poiares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q966825",
          "name": "Pombal",
          "country_code": "PT",
          "slug": "pombal",
          "canonical_path": "/cities/pt/pombal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q208149",
          "name": "Ponta Delgada",
          "country_code": "PT",
          "slug": "ponta-delgada",
          "canonical_path": "/cities/pt/ponta-delgada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q943911",
          "name": "Ponta do Sol",
          "country_code": "PT",
          "slug": "ponta-do-sol",
          "canonical_path": "/cities/pt/ponta-do-sol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2736067",
          "name": "Ponte",
          "country_code": "PT",
          "slug": "ponte",
          "canonical_path": "/cities/pt/ponte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q491484",
          "name": "Ponte da Barca",
          "country_code": "PT",
          "slug": "ponte-da-barca",
          "canonical_path": "/cities/pt/ponte-da-barca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q490180",
          "name": "Ponte de Lima",
          "country_code": "PT",
          "slug": "ponte-de-lima",
          "canonical_path": "/cities/pt/ponte-de-lima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990365",
          "name": "Ponte de Sor",
          "country_code": "PT",
          "slug": "ponte-de-sor",
          "canonical_path": "/cities/pt/ponte-de-sor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264526",
          "name": "Pontinha",
          "country_code": "PT",
          "slug": "pontinha",
          "canonical_path": "/cities/pt/pontinha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q622819",
          "name": "Portalegre",
          "country_code": "PT",
          "slug": "portalegre",
          "canonical_path": "/cities/pt/portalegre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q591694",
          "name": "Portel",
          "country_code": "PT",
          "slug": "portel",
          "canonical_path": "/cities/pt/portel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q543542",
          "name": "Portimão",
          "country_code": "PT",
          "slug": "portimao",
          "canonical_path": "/cities/pt/portimao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:slug:porto",
          "name": "Porto",
          "country_code": "PT",
          "slug": "porto",
          "canonical_path": "/cities/pt/porto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1012710",
          "name": "Porto de Mós",
          "country_code": "PT",
          "slug": "porto-de-mos",
          "canonical_path": "/cities/pt/porto-de-mos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264403",
          "name": "Porto Salvo",
          "country_code": "PT",
          "slug": "porto-salvo",
          "canonical_path": "/cities/pt/porto-salvo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q27320",
          "name": "Porto Santo",
          "country_code": "PT",
          "slug": "porto-santo",
          "canonical_path": "/cities/pt/porto-santo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551689",
          "name": "Póvoa de Lanhoso",
          "country_code": "PT",
          "slug": "povoa-de-lanhoso",
          "canonical_path": "/cities/pt/povoa-de-lanhoso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264359",
          "name": "Póvoa de Santa Iria",
          "country_code": "PT",
          "slug": "povoa-de-santa-iria",
          "canonical_path": "/cities/pt/povoa-de-santa-iria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264357",
          "name": "Póvoa de Santo Adrião",
          "country_code": "PT",
          "slug": "povoa-de-santo-adriao",
          "canonical_path": "/cities/pt/povoa-de-santo-adriao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q200459",
          "name": "Póvoa de Varzim",
          "country_code": "PT",
          "slug": "povoa-de-varzim",
          "canonical_path": "/cities/pt/povoa-de-varzim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q565726",
          "name": "Povoação",
          "country_code": "PT",
          "slug": "povoacao",
          "canonical_path": "/cities/pt/povoacao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264341",
          "name": "Pragal",
          "country_code": "PT",
          "slug": "pragal",
          "canonical_path": "/cities/pt/pragal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q73046",
          "name": "Praia da Vitória",
          "country_code": "PT",
          "slug": "praia-da-vitoria",
          "canonical_path": "/cities/pt/praia-da-vitoria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:6620294",
          "name": "Prior Velho",
          "country_code": "PT",
          "slug": "prior-velho",
          "canonical_path": "/cities/pt/prior-velho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1003172",
          "name": "Proença-a-Nova",
          "country_code": "PT",
          "slug": "proenca-a-nova",
          "canonical_path": "/cities/pt/proenca-a-nova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264299",
          "name": "Quarteira",
          "country_code": "PT",
          "slug": "quarteira",
          "canonical_path": "/cities/pt/quarteira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264270",
          "name": "Queijas",
          "country_code": "PT",
          "slug": "queijas",
          "canonical_path": "/cities/pt/queijas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264269",
          "name": "Quelfes",
          "country_code": "PT",
          "slug": "quelfes",
          "canonical_path": "/cities/pt/quelfes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264268",
          "name": "Queluz",
          "country_code": "PT",
          "slug": "queluz",
          "canonical_path": "/cities/pt/queluz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264181",
          "name": "Quinta de Santo António",
          "country_code": "PT",
          "slug": "quinta-de-santo-antonio",
          "canonical_path": "/cities/pt/quinta-de-santo-antonio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264169",
          "name": "Quinta do Anjo",
          "country_code": "PT",
          "slug": "quinta-do-anjo",
          "canonical_path": "/cities/pt/quinta-do-anjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:6559488",
          "name": "Quinta Do Conde",
          "country_code": "PT",
          "slug": "quinta-do-conde",
          "canonical_path": "/cities/pt/quinta-do-conde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735577",
          "name": "Quinta do Gato",
          "country_code": "PT",
          "slug": "quinta-do-gato",
          "canonical_path": "/cities/pt/quinta-do-gato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2264087",
          "name": "Ramada",
          "country_code": "PT",
          "slug": "ramada",
          "canonical_path": "/cities/pt/ramada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735475",
          "name": "Ramalde do Meio",
          "country_code": "PT",
          "slug": "ramalde-do-meio",
          "canonical_path": "/cities/pt/ramalde-do-meio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735418",
          "name": "Real",
          "country_code": "PT",
          "slug": "real",
          "canonical_path": "/cities/pt/real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735377",
          "name": "Rebordosa",
          "country_code": "PT",
          "slug": "rebordosa",
          "canonical_path": "/cities/pt/rebordosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q997608",
          "name": "Redondo",
          "country_code": "PT",
          "slug": "redondo",
          "canonical_path": "/cities/pt/redondo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735340",
          "name": "Refojos de Basto",
          "country_code": "PT",
          "slug": "refojos-de-basto",
          "canonical_path": "/cities/pt/refojos-de-basto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990439",
          "name": "Reguengos de Monsaraz",
          "country_code": "PT",
          "slug": "reguengos-de-monsaraz",
          "canonical_path": "/cities/pt/reguengos-de-monsaraz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q863692",
          "name": "Resende",
          "country_code": "PT",
          "slug": "resende",
          "canonical_path": "/cities/pt/resende/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263923",
          "name": "Riachos",
          "country_code": "PT",
          "slug": "riachos",
          "canonical_path": "/cities/pt/riachos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q250139",
          "name": "Ribeira Brava",
          "country_code": "PT",
          "slug": "ribeira-brava",
          "canonical_path": "/cities/pt/ribeira-brava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735175",
          "name": "Ribeira de Frades",
          "country_code": "PT",
          "slug": "ribeira-de-frades",
          "canonical_path": "/cities/pt/ribeira-de-frades/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1006378",
          "name": "Ribeira de Pena",
          "country_code": "PT",
          "slug": "ribeira-de-pena",
          "canonical_path": "/cities/pt/ribeira-de-pena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q565312",
          "name": "Ribeira Grande",
          "country_code": "PT",
          "slug": "ribeira-grande",
          "canonical_path": "/cities/pt/ribeira-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735167",
          "name": "Ribeirão",
          "country_code": "PT",
          "slug": "ribeirao",
          "canonical_path": "/cities/pt/ribeirao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735116",
          "name": "Rio de Loba",
          "country_code": "PT",
          "slug": "rio-de-loba",
          "canonical_path": "/cities/pt/rio-de-loba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263827",
          "name": "Rio de Mouro",
          "country_code": "PT",
          "slug": "rio-de-mouro",
          "canonical_path": "/cities/pt/rio-de-mouro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q941958",
          "name": "Rio Maior",
          "country_code": "PT",
          "slug": "rio-maior",
          "canonical_path": "/cities/pt/rio-maior/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735083",
          "name": "Rio Tinto",
          "country_code": "PT",
          "slug": "rio-tinto",
          "canonical_path": "/cities/pt/rio-tinto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:3372677",
          "name": "Rosto de Cão",
          "country_code": "PT",
          "slug": "rosto-de-cao",
          "canonical_path": "/cities/pt/rosto-de-cao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1006389",
          "name": "Sabrosa",
          "country_code": "PT",
          "slug": "sabrosa",
          "canonical_path": "/cities/pt/sabrosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q992645",
          "name": "Sabugal",
          "country_code": "PT",
          "slug": "sabugal",
          "canonical_path": "/cities/pt/sabugal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263667",
          "name": "Sacavém",
          "country_code": "PT",
          "slug": "sacavem",
          "canonical_path": "/cities/pt/sacavem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1027809",
          "name": "Salvaterra de Magos",
          "country_code": "PT",
          "slug": "salvaterra-de-magos",
          "canonical_path": "/cities/pt/salvaterra-de-magos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263586",
          "name": "Samora Correia",
          "country_code": "PT",
          "slug": "samora-correia",
          "canonical_path": "/cities/pt/samora-correia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734809",
          "name": "Sande",
          "country_code": "PT",
          "slug": "sande",
          "canonical_path": "/cities/pt/sande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734803",
          "name": "Sandim",
          "country_code": "PT",
          "slug": "sandim",
          "canonical_path": "/cities/pt/sandim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734759",
          "name": "Santa Clara",
          "country_code": "PT",
          "slug": "santa-clara",
          "canonical_path": "/cities/pt/santa-clara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q861208",
          "name": "Santa Comba Dão",
          "country_code": "PT",
          "slug": "santa-comba-dao",
          "canonical_path": "/cities/pt/santa-comba-dao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q658823",
          "name": "Santa Cruz",
          "country_code": "PT",
          "slug": "santa-cruz",
          "canonical_path": "/cities/pt/santa-cruz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734729",
          "name": "Santa Cruz do Bispo",
          "country_code": "PT",
          "slug": "santa-cruz-do-bispo",
          "canonical_path": "/cities/pt/santa-cruz-do-bispo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263523",
          "name": "Santa Iria da Azóia",
          "country_code": "PT",
          "slug": "santa-iria-da-azoia",
          "canonical_path": "/cities/pt/santa-iria-da-azoia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263519",
          "name": "Santa Luzia",
          "country_code": "PT",
          "slug": "santa-luzia",
          "canonical_path": "/cities/pt/santa-luzia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q564813",
          "name": "Santa Maria da Feira",
          "country_code": "PT",
          "slug": "santa-maria-da-feira",
          "canonical_path": "/cities/pt/santa-maria-da-feira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734688",
          "name": "Santa Maria de Avioso",
          "country_code": "PT",
          "slug": "santa-maria-de-avioso",
          "canonical_path": "/cities/pt/santa-maria-de-avioso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263496",
          "name": "Santa Maria Maior",
          "country_code": "PT",
          "slug": "santa-maria-maior",
          "canonical_path": "/cities/pt/santa-maria-maior/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1006372",
          "name": "Santa Marta de Penaguião",
          "country_code": "PT",
          "slug": "santa-marta-de-penaguiao",
          "canonical_path": "/cities/pt/santa-marta-de-penaguiao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q752123",
          "name": "Santana",
          "country_code": "PT",
          "slug": "santana",
          "canonical_path": "/cities/pt/santana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q273877",
          "name": "Santarém",
          "country_code": "PT",
          "slug": "santarem",
          "canonical_path": "/cities/pt/santarem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990433",
          "name": "Santiago do Cacém",
          "country_code": "PT",
          "slug": "santiago-do-cacem",
          "canonical_path": "/cities/pt/santiago-do-cacem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263438",
          "name": "Santo André",
          "country_code": "PT",
          "slug": "santo-andre",
          "canonical_path": "/cities/pt/santo-andre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263439",
          "name": "Santo André",
          "country_code": "PT",
          "slug": "santo-andre-19-1509",
          "canonical_path": "/cities/pt/santo-andre-19-1509/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263432",
          "name": "Santo António",
          "country_code": "PT",
          "slug": "santo-antonio",
          "canonical_path": "/cities/pt/santo-antonio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263426",
          "name": "Santo António da Charneca",
          "country_code": "PT",
          "slug": "santo-antonio-da-charneca",
          "canonical_path": "/cities/pt/santo-antonio-da-charneca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734585",
          "name": "Santo António dos Olivais",
          "country_code": "PT",
          "slug": "santo-antonio-dos-olivais",
          "canonical_path": "/cities/pt/santo-antonio-dos-olivais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734576",
          "name": "Santo Ovídio",
          "country_code": "PT",
          "slug": "santo-ovidio",
          "canonical_path": "/cities/pt/santo-ovidio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q917330",
          "name": "Santo Tirso",
          "country_code": "PT",
          "slug": "santo-tirso",
          "canonical_path": "/cities/pt/santo-tirso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263393",
          "name": "São Bartolomeu de Messines",
          "country_code": "PT",
          "slug": "sao-bartolomeu-de-messines",
          "canonical_path": "/cities/pt/sao-bartolomeu-de-messines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q988667",
          "name": "São Brás de Alportel",
          "country_code": "PT",
          "slug": "sao-bras-de-alportel",
          "canonical_path": "/cities/pt/sao-bras-de-alportel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263352",
          "name": "São Domingos de Rana",
          "country_code": "PT",
          "slug": "sao-domingos-de-rana",
          "canonical_path": "/cities/pt/sao-domingos-de-rana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734523",
          "name": "São Félix da Marinha",
          "country_code": "PT",
          "slug": "sao-felix-da-marinha",
          "canonical_path": "/cities/pt/sao-felix-da-marinha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263341",
          "name": "São Gonçalo",
          "country_code": "PT",
          "slug": "sao-goncalo",
          "canonical_path": "/cities/pt/sao-goncalo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734493",
          "name": "São João",
          "country_code": "PT",
          "slug": "sao-joao",
          "canonical_path": "/cities/pt/sao-joao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q565287",
          "name": "São João da Madeira",
          "country_code": "PT",
          "slug": "sao-joao-da-madeira",
          "canonical_path": "/cities/pt/sao-joao-da-madeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1010466",
          "name": "São João da Pesqueira",
          "country_code": "PT",
          "slug": "sao-joao-da-pesqueira",
          "canonical_path": "/cities/pt/sao-joao-da-pesqueira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263326",
          "name": "São João da Talha",
          "country_code": "PT",
          "slug": "sao-joao-da-talha",
          "canonical_path": "/cities/pt/sao-joao-da-talha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263327",
          "name": "São João das Lampas",
          "country_code": "PT",
          "slug": "sao-joao-das-lampas",
          "canonical_path": "/cities/pt/sao-joao-das-lampas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734434",
          "name": "São Mamede de Infesta",
          "country_code": "PT",
          "slug": "sao-mamede-de-infesta",
          "canonical_path": "/cities/pt/sao-mamede-de-infesta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263284",
          "name": "São Martinho",
          "country_code": "PT",
          "slug": "sao-martinho",
          "canonical_path": "/cities/pt/sao-martinho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734410",
          "name": "São Martinho do Bispo",
          "country_code": "PT",
          "slug": "sao-martinho-do-bispo",
          "canonical_path": "/cities/pt/sao-martinho-do-bispo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734395",
          "name": "São Miguel do Couto",
          "country_code": "PT",
          "slug": "sao-miguel-do-couto",
          "canonical_path": "/cities/pt/sao-miguel-do-couto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734379",
          "name": "São Paulo de Frades",
          "country_code": "PT",
          "slug": "sao-paulo-de-frades",
          "canonical_path": "/cities/pt/sao-paulo-de-frades/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734363",
          "name": "São Pedro da Cova",
          "country_code": "PT",
          "slug": "sao-pedro-da-cova",
          "canonical_path": "/cities/pt/sao-pedro-da-cova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1484005",
          "name": "São Pedro do Sul",
          "country_code": "PT",
          "slug": "sao-pedro-do-sul",
          "canonical_path": "/cities/pt/sao-pedro-do-sul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734346",
          "name": "São Romão",
          "country_code": "PT",
          "slug": "sao-romao",
          "canonical_path": "/cities/pt/sao-romao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2263228",
          "name": "São Roque",
          "country_code": "PT",
          "slug": "sao-roque",
          "canonical_path": "/cities/pt/sao-roque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734338",
          "name": "São Roque",
          "country_code": "PT",
          "slug": "sao-roque-02-0113",
          "canonical_path": "/cities/pt/sao-roque-02-0113/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734306",
          "name": "São Tiago de Custoias",
          "country_code": "PT",
          "slug": "sao-tiago-de-custoias",
          "canonical_path": "/cities/pt/sao-tiago-de-custoias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2735565",
          "name": "Sardão",
          "country_code": "PT",
          "slug": "sardao",
          "canonical_path": "/cities/pt/sardao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q923784",
          "name": "Sátão",
          "country_code": "PT",
          "slug": "satao",
          "canonical_path": "/cities/pt/satao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q76017",
          "name": "Seia",
          "country_code": "PT",
          "slug": "seia",
          "canonical_path": "/cities/pt/seia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990448",
          "name": "Seixal",
          "country_code": "PT",
          "slug": "seixal",
          "canonical_path": "/cities/pt/seixal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734170",
          "name": "Selho",
          "country_code": "PT",
          "slug": "selho",
          "canonical_path": "/cities/pt/selho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734164",
          "name": "Semelhe",
          "country_code": "PT",
          "slug": "semelhe",
          "canonical_path": "/cities/pt/semelhe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734140",
          "name": "Senhora da Hora",
          "country_code": "PT",
          "slug": "senhora-da-hora",
          "canonical_path": "/cities/pt/senhora-da-hora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734123",
          "name": "Senhora do Porto",
          "country_code": "PT",
          "slug": "senhora-do-porto",
          "canonical_path": "/cities/pt/senhora-do-porto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734106",
          "name": "Sequeira",
          "country_code": "PT",
          "slug": "sequeira",
          "canonical_path": "/cities/pt/sequeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1003140",
          "name": "Sernancelhe",
          "country_code": "PT",
          "slug": "sernancelhe",
          "canonical_path": "/cities/pt/sernancelhe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q550963",
          "name": "Serpa",
          "country_code": "PT",
          "slug": "serpa",
          "canonical_path": "/cities/pt/serpa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q193402",
          "name": "Sertã",
          "country_code": "PT",
          "slug": "serta",
          "canonical_path": "/cities/pt/serta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734028",
          "name": "Serzedo",
          "country_code": "PT",
          "slug": "serzedo",
          "canonical_path": "/cities/pt/serzedo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2734029",
          "name": "Serzedo",
          "country_code": "PT",
          "slug": "serzedo-17-1317",
          "canonical_path": "/cities/pt/serzedo-17-1317/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1006408",
          "name": "Sesimbra",
          "country_code": "PT",
          "slug": "sesimbra",
          "canonical_path": "/cities/pt/sesimbra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q173699",
          "name": "Setúbal",
          "country_code": "PT",
          "slug": "setubal",
          "canonical_path": "/cities/pt/setubal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q337431",
          "name": "Sever do Vouga",
          "country_code": "PT",
          "slug": "sever-do-vouga",
          "canonical_path": "/cities/pt/sever-do-vouga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733994",
          "name": "Silva Escura",
          "country_code": "PT",
          "slug": "silva-escura",
          "canonical_path": "/cities/pt/silva-escura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733992",
          "name": "Silvalde",
          "country_code": "PT",
          "slug": "silvalde",
          "canonical_path": "/cities/pt/silvalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2262944",
          "name": "Silveira",
          "country_code": "PT",
          "slug": "silveira",
          "canonical_path": "/cities/pt/silveira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q749180",
          "name": "Silves",
          "country_code": "PT",
          "slug": "silves",
          "canonical_path": "/cities/pt/silves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q372922",
          "name": "Sines",
          "country_code": "PT",
          "slug": "sines",
          "canonical_path": "/cities/pt/sines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q190187",
          "name": "Sintra",
          "country_code": "PT",
          "slug": "sintra",
          "canonical_path": "/cities/pt/sintra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733941",
          "name": "Sobrado",
          "country_code": "PT",
          "slug": "sobrado",
          "canonical_path": "/cities/pt/sobrado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1005105",
          "name": "Sobral de Monte Agraço",
          "country_code": "PT",
          "slug": "sobral-de-monte-agraco",
          "canonical_path": "/cities/pt/sobral-de-monte-agraco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2262865",
          "name": "Sobreda",
          "country_code": "PT",
          "slug": "sobreda",
          "canonical_path": "/cities/pt/sobreda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733867",
          "name": "Sol Posto",
          "country_code": "PT",
          "slug": "sol-posto",
          "canonical_path": "/cities/pt/sol-posto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q543993",
          "name": "Soure",
          "country_code": "PT",
          "slug": "soure",
          "canonical_path": "/cities/pt/soure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q7565244",
          "name": "Sousel",
          "country_code": "PT",
          "slug": "sousel",
          "canonical_path": "/cities/pt/sousel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q988846",
          "name": "Tábua",
          "country_code": "PT",
          "slug": "tabua",
          "canonical_path": "/cities/pt/tabua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1010659",
          "name": "Tabuaço",
          "country_code": "PT",
          "slug": "tabuaco",
          "canonical_path": "/cities/pt/tabuaco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2741742",
          "name": "Taipas",
          "country_code": "PT",
          "slug": "taipas",
          "canonical_path": "/cities/pt/taipas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990460",
          "name": "Tarouca",
          "country_code": "PT",
          "slug": "tarouca",
          "canonical_path": "/cities/pt/tarouca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733660",
          "name": "Tavarede",
          "country_code": "PT",
          "slug": "tavarede",
          "canonical_path": "/cities/pt/tavarede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q372840",
          "name": "Tavira",
          "country_code": "PT",
          "slug": "tavira",
          "canonical_path": "/cities/pt/tavira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551639",
          "name": "Terras de Bouro",
          "country_code": "PT",
          "slug": "terras-de-bouro",
          "canonical_path": "/cities/pt/terras-de-bouro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q622817",
          "name": "Tomar",
          "country_code": "PT",
          "slug": "tomar",
          "canonical_path": "/cities/pt/tomar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q796656",
          "name": "Tondela",
          "country_code": "PT",
          "slug": "tondela",
          "canonical_path": "/cities/pt/tondela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551507",
          "name": "Torre de Moncorvo",
          "country_code": "PT",
          "slug": "torre-de-moncorvo",
          "canonical_path": "/cities/pt/torre-de-moncorvo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q81139",
          "name": "Torres Novas",
          "country_code": "PT",
          "slug": "torres-novas",
          "canonical_path": "/cities/pt/torres-novas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q917319",
          "name": "Torres Vedras",
          "country_code": "PT",
          "slug": "torres-vedras",
          "canonical_path": "/cities/pt/torres-vedras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2262544",
          "name": "Trafaria",
          "country_code": "PT",
          "slug": "trafaria",
          "canonical_path": "/cities/pt/trafaria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q686868",
          "name": "Trancoso",
          "country_code": "PT",
          "slug": "trancoso",
          "canonical_path": "/cities/pt/trancoso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q987964",
          "name": "Trofa",
          "country_code": "PT",
          "slug": "trofa",
          "canonical_path": "/cities/pt/trofa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2262481",
          "name": "Tunes",
          "country_code": "PT",
          "slug": "tunes",
          "canonical_path": "/cities/pt/tunes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2262465",
          "name": "Unhos",
          "country_code": "PT",
          "slug": "unhos",
          "canonical_path": "/cities/pt/unhos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733304",
          "name": "Urgeses",
          "country_code": "PT",
          "slug": "urgeses",
          "canonical_path": "/cities/pt/urgeses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q404220",
          "name": "Vagos",
          "country_code": "PT",
          "slug": "vagos",
          "canonical_path": "/cities/pt/vagos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733262",
          "name": "Valadares",
          "country_code": "PT",
          "slug": "valadares",
          "canonical_path": "/cities/pt/valadares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733263",
          "name": "Valadares",
          "country_code": "PT",
          "slug": "valadares-17-1317",
          "canonical_path": "/cities/pt/valadares-17-1317/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733249",
          "name": "Valbom",
          "country_code": "PT",
          "slug": "valbom",
          "canonical_path": "/cities/pt/valbom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2262373",
          "name": "Vale da Amoreira",
          "country_code": "PT",
          "slug": "vale-da-amoreira",
          "canonical_path": "/cities/pt/vale-da-amoreira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q395953",
          "name": "Vale de Cambra",
          "country_code": "PT",
          "slug": "vale-de-cambra",
          "canonical_path": "/cities/pt/vale-de-cambra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2733038",
          "name": "Válega",
          "country_code": "PT",
          "slug": "valega",
          "canonical_path": "/cities/pt/valega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:6697257",
          "name": "Valenza",
          "country_code": "PT",
          "slug": "valenza",
          "canonical_path": "/cities/pt/valenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q604262",
          "name": "Valongo",
          "country_code": "PT",
          "slug": "valongo",
          "canonical_path": "/cities/pt/valongo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q757856",
          "name": "Valpaços",
          "country_code": "PT",
          "slug": "valpacos",
          "canonical_path": "/cities/pt/valpacos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1010468",
          "name": "Velas",
          "country_code": "PT",
          "slug": "velas",
          "canonical_path": "/cities/pt/velas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2261760",
          "name": "Venda do Pinheiro",
          "country_code": "PT",
          "slug": "venda-do-pinheiro",
          "canonical_path": "/cities/pt/venda-do-pinheiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q990418",
          "name": "Vendas Novas",
          "country_code": "PT",
          "slug": "vendas-novas",
          "canonical_path": "/cities/pt/vendas-novas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2261732",
          "name": "Ventosa",
          "country_code": "PT",
          "slug": "ventosa",
          "canonical_path": "/cities/pt/ventosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732785",
          "name": "Vermoim",
          "country_code": "PT",
          "slug": "vermoim",
          "canonical_path": "/cities/pt/vermoim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2261697",
          "name": "Vialonga",
          "country_code": "PT",
          "slug": "vialonga",
          "canonical_path": "/cities/pt/vialonga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1022265",
          "name": "Viana do Alentejo",
          "country_code": "PT",
          "slug": "viana-do-alentejo",
          "canonical_path": "/cities/pt/viana-do-alentejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q208158",
          "name": "Viana do Castelo",
          "country_code": "PT",
          "slug": "viana-do-castelo",
          "canonical_path": "/cities/pt/viana-do-castelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732768",
          "name": "Vidago",
          "country_code": "PT",
          "slug": "vidago",
          "canonical_path": "/cities/pt/vidago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551672",
          "name": "Vidigueira",
          "country_code": "PT",
          "slug": "vidigueira",
          "canonical_path": "/cities/pt/vidigueira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2261673",
          "name": "Vieira de Leiria",
          "country_code": "PT",
          "slug": "vieira-de-leiria",
          "canonical_path": "/cities/pt/vieira-de-leiria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551109",
          "name": "Vieira do Minho",
          "country_code": "PT",
          "slug": "vieira-do-minho",
          "canonical_path": "/cities/pt/vieira-do-minho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732671",
          "name": "Vila Cova",
          "country_code": "PT",
          "slug": "vila-cova",
          "canonical_path": "/cities/pt/vila-cova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732659",
          "name": "Vila da Lixa",
          "country_code": "PT",
          "slug": "vila-da-lixa",
          "canonical_path": "/cities/pt/vila-da-lixa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q206320",
          "name": "Vila do Bispo",
          "country_code": "PT",
          "slug": "vila-do-bispo",
          "canonical_path": "/cities/pt/vila-do-bispo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q917313",
          "name": "Vila do Conde",
          "country_code": "PT",
          "slug": "vila-do-conde",
          "canonical_path": "/cities/pt/vila-do-conde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1003164",
          "name": "Vila do Porto",
          "country_code": "PT",
          "slug": "vila-do-porto",
          "canonical_path": "/cities/pt/vila-do-porto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q552556",
          "name": "Vila Flor",
          "country_code": "PT",
          "slug": "vila-flor",
          "canonical_path": "/cities/pt/vila-flor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q917326",
          "name": "Vila Franca de Xira",
          "country_code": "PT",
          "slug": "vila-franca-de-xira",
          "canonical_path": "/cities/pt/vila-franca-de-xira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q565290",
          "name": "Vila Franca do Campo",
          "country_code": "PT",
          "slug": "vila-franca-do-campo",
          "canonical_path": "/cities/pt/vila-franca-do-campo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q995176",
          "name": "Vila Nova da Barquinha",
          "country_code": "PT",
          "slug": "vila-nova-da-barquinha",
          "canonical_path": "/cities/pt/vila-nova-da-barquinha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732536",
          "name": "Vila Nova da Telha",
          "country_code": "PT",
          "slug": "vila-nova-da-telha",
          "canonical_path": "/cities/pt/vila-nova-da-telha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732551",
          "name": "Vila Nova da Telha",
          "country_code": "PT",
          "slug": "vila-nova-da-telha-17-1317",
          "canonical_path": "/cities/pt/vila-nova-da-telha-17-1317/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q164434",
          "name": "Vila Nova de Cerveira",
          "country_code": "PT",
          "slug": "vila-nova-de-cerveira",
          "canonical_path": "/cities/pt/vila-nova-de-cerveira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551658",
          "name": "Vila Nova de Famalicão",
          "country_code": "PT",
          "slug": "vila-nova-de-famalicao",
          "canonical_path": "/cities/pt/vila-nova-de-famalicao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q537471",
          "name": "Vila Nova de Foz Côa",
          "country_code": "PT",
          "slug": "vila-nova-de-foz-coa",
          "canonical_path": "/cities/pt/vila-nova-de-foz-coa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q191135",
          "name": "Vila Nova de Gaia",
          "country_code": "PT",
          "slug": "vila-nova-de-gaia",
          "canonical_path": "/cities/pt/vila-nova-de-gaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1003146",
          "name": "Vila Nova de Paiva",
          "country_code": "PT",
          "slug": "vila-nova-de-paiva",
          "canonical_path": "/cities/pt/vila-nova-de-paiva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q425817",
          "name": "Vila Nova de Poiares",
          "country_code": "PT",
          "slug": "vila-nova-de-poiares",
          "canonical_path": "/cities/pt/vila-nova-de-poiares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1006397",
          "name": "Vila Pouca de Aguiar",
          "country_code": "PT",
          "slug": "vila-pouca-de-aguiar",
          "canonical_path": "/cities/pt/vila-pouca-de-aguiar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q503856",
          "name": "Vila Real",
          "country_code": "PT",
          "slug": "vila-real",
          "canonical_path": "/cities/pt/vila-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q750578",
          "name": "Vila Real de Santo António",
          "country_code": "PT",
          "slug": "vila-real-de-santo-antonio",
          "canonical_path": "/cities/pt/vila-real-de-santo-antonio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551676",
          "name": "Vila Verde",
          "country_code": "PT",
          "slug": "vila-verde",
          "canonical_path": "/cities/pt/vila-verde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1013623",
          "name": "Vila Viçosa",
          "country_code": "PT",
          "slug": "vila-vicosa",
          "canonical_path": "/cities/pt/vila-vicosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732513",
          "name": "Vilar",
          "country_code": "PT",
          "slug": "vilar",
          "canonical_path": "/cities/pt/vilar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732475",
          "name": "Vilar de Andorinho",
          "country_code": "PT",
          "slug": "vilar-de-andorinho",
          "canonical_path": "/cities/pt/vilar-de-andorinho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732444",
          "name": "Vilar do Paraíso",
          "country_code": "PT",
          "slug": "vilar-do-paraiso",
          "canonical_path": "/cities/pt/vilar-do-paraiso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:geonames:2732312",
          "name": "Vilela",
          "country_code": "PT",
          "slug": "vilela",
          "canonical_path": "/cities/pt/vilela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551103",
          "name": "Vinhais",
          "country_code": "PT",
          "slug": "vinhais",
          "canonical_path": "/cities/pt/vinhais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q117676",
          "name": "Viseu",
          "country_code": "PT",
          "slug": "viseu",
          "canonical_path": "/cities/pt/viseu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q551955",
          "name": "Vizela",
          "country_code": "PT",
          "slug": "vizela",
          "canonical_path": "/cities/pt/vizela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:pt:wikidata:Q1012714",
          "name": "Vouzela",
          "country_code": "PT",
          "slug": "vouzela",
          "canonical_path": "/cities/pt/vouzela/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "RO",
      "path": "cities/ro.json",
      "city_count": 723,
      "cities": [
        {
          "entity_id": "city:ro:geonames:856315",
          "name": "1 Decembrie",
          "country_code": "RO",
          "slug": "1-decembrie",
          "canonical_path": "/cities/ro/1-decembrie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686712",
          "name": "Abrud",
          "country_code": "RO",
          "slug": "abrud",
          "canonical_path": "/cities/ro/abrud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686684",
          "name": "Adămuş",
          "country_code": "RO",
          "slug": "adamus",
          "canonical_path": "/cities/ro/adamus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686673",
          "name": "Adâncata",
          "country_code": "RO",
          "slug": "adancata",
          "canonical_path": "/cities/ro/adancata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686669",
          "name": "Adjud",
          "country_code": "RO",
          "slug": "adjud",
          "canonical_path": "/cities/ro/adjud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686648",
          "name": "Afumaţi",
          "country_code": "RO",
          "slug": "afumati",
          "canonical_path": "/cities/ro/afumati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686636",
          "name": "Agăş",
          "country_code": "RO",
          "slug": "agas",
          "canonical_path": "/cities/ro/agas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686626",
          "name": "Agigea",
          "country_code": "RO",
          "slug": "agigea",
          "canonical_path": "/cities/ro/agigea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686616",
          "name": "Agnita",
          "country_code": "RO",
          "slug": "agnita",
          "canonical_path": "/cities/ro/agnita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686590",
          "name": "Aiud",
          "country_code": "RO",
          "slug": "aiud",
          "canonical_path": "/cities/ro/aiud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686556",
          "name": "Albeşti",
          "country_code": "RO",
          "slug": "albesti",
          "canonical_path": "/cities/ro/albesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686561",
          "name": "Albeşti",
          "country_code": "RO",
          "slug": "albesti-27-114603",
          "canonical_path": "/cities/ro/albesti-27-114603/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686542",
          "name": "Albeşti-Paleologu",
          "country_code": "RO",
          "slug": "albesti-paleologu",
          "canonical_path": "/cities/ro/albesti-paleologu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686544",
          "name": "Albeştii Pământeni",
          "country_code": "RO",
          "slug": "albestii-pamanteni",
          "canonical_path": "/cities/ro/albestii-pamanteni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686507",
          "name": "Aleşd",
          "country_code": "RO",
          "slug": "alesd",
          "canonical_path": "/cities/ro/alesd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686502",
          "name": "Alexandria",
          "country_code": "RO",
          "slug": "alexandria",
          "canonical_path": "/cities/ro/alexandria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686399",
          "name": "Amara",
          "country_code": "RO",
          "slug": "amara",
          "canonical_path": "/cities/ro/amara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686386",
          "name": "Amărăştii de Jos",
          "country_code": "RO",
          "slug": "amarastii-de-jos",
          "canonical_path": "/cities/ro/amarastii-de-jos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686324",
          "name": "Anina",
          "country_code": "RO",
          "slug": "anina",
          "canonical_path": "/cities/ro/anina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686317",
          "name": "Aninoasa",
          "country_code": "RO",
          "slug": "aninoasa",
          "canonical_path": "/cities/ro/aninoasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686288",
          "name": "Apahida",
          "country_code": "RO",
          "slug": "apahida",
          "canonical_path": "/cities/ro/apahida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686239",
          "name": "Arbore",
          "country_code": "RO",
          "slug": "arbore",
          "canonical_path": "/cities/ro/arbore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686206",
          "name": "Ardud",
          "country_code": "RO",
          "slug": "ardud",
          "canonical_path": "/cities/ro/ardud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686175",
          "name": "Ariceştii-Rahtivani",
          "country_code": "RO",
          "slug": "aricestii-rahtivani",
          "canonical_path": "/cities/ro/aricestii-rahtivani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686145",
          "name": "Armăşeşti",
          "country_code": "RO",
          "slug": "armasesti",
          "canonical_path": "/cities/ro/armasesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686090",
          "name": "Asău",
          "country_code": "RO",
          "slug": "asau",
          "canonical_path": "/cities/ro/asau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686028",
          "name": "Avrămeni",
          "country_code": "RO",
          "slug": "avrameni",
          "canonical_path": "/cities/ro/avrameni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:686011",
          "name": "Avrig",
          "country_code": "RO",
          "slug": "avrig",
          "canonical_path": "/cities/ro/avrig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685997",
          "name": "Babadag",
          "country_code": "RO",
          "slug": "babadag",
          "canonical_path": "/cities/ro/babadag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685994",
          "name": "Băbăiţa",
          "country_code": "RO",
          "slug": "babaita",
          "canonical_path": "/cities/ro/babaita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685981",
          "name": "Băbeni",
          "country_code": "RO",
          "slug": "babeni",
          "canonical_path": "/cities/ro/babeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685927",
          "name": "Baciu",
          "country_code": "RO",
          "slug": "baciu",
          "canonical_path": "/cities/ro/baciu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685841",
          "name": "Baia",
          "country_code": "RO",
          "slug": "baia",
          "canonical_path": "/cities/ro/baia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685823",
          "name": "Baia Sprie",
          "country_code": "RO",
          "slug": "baia-sprie",
          "canonical_path": "/cities/ro/baia-sprie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685811",
          "name": "Băicoi",
          "country_code": "RO",
          "slug": "baicoi",
          "canonical_path": "/cities/ro/baicoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685810",
          "name": "Băiculeşti",
          "country_code": "RO",
          "slug": "baiculesti",
          "canonical_path": "/cities/ro/baiculesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685796",
          "name": "Băile Herculane",
          "country_code": "RO",
          "slug": "baile-herculane",
          "canonical_path": "/cities/ro/baile-herculane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685785",
          "name": "Băileşti",
          "country_code": "RO",
          "slug": "bailesti",
          "canonical_path": "/cities/ro/bailesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685707",
          "name": "Bălan",
          "country_code": "RO",
          "slug": "balan",
          "canonical_path": "/cities/ro/balan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685662",
          "name": "Balcani",
          "country_code": "RO",
          "slug": "balcani",
          "canonical_path": "/cities/ro/balcani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685657",
          "name": "Bălceşti",
          "country_code": "RO",
          "slug": "balcesti",
          "canonical_path": "/cities/ro/balcesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685630",
          "name": "Băleni Sârbi",
          "country_code": "RO",
          "slug": "baleni-sarbi",
          "canonical_path": "/cities/ro/baleni-sarbi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685628",
          "name": "Băleşti",
          "country_code": "RO",
          "slug": "balesti",
          "canonical_path": "/cities/ro/balesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685590",
          "name": "Baloteşti",
          "country_code": "RO",
          "slug": "balotesti",
          "canonical_path": "/cities/ro/balotesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685586",
          "name": "Balş",
          "country_code": "RO",
          "slug": "bals",
          "canonical_path": "/cities/ro/bals/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685551",
          "name": "Bălţăteşti",
          "country_code": "RO",
          "slug": "baltatesti",
          "canonical_path": "/cities/ro/baltatesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685547",
          "name": "Bălţaţi",
          "country_code": "RO",
          "slug": "baltati",
          "canonical_path": "/cities/ro/baltati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685506",
          "name": "Băluşeni",
          "country_code": "RO",
          "slug": "baluseni",
          "canonical_path": "/cities/ro/baluseni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685490",
          "name": "Banca",
          "country_code": "RO",
          "slug": "banca",
          "canonical_path": "/cities/ro/banca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685481",
          "name": "Band",
          "country_code": "RO",
          "slug": "band",
          "canonical_path": "/cities/ro/band/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685476",
          "name": "Băneasa",
          "country_code": "RO",
          "slug": "baneasa",
          "canonical_path": "/cities/ro/baneasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685477",
          "name": "Băneasa",
          "country_code": "RO",
          "slug": "baneasa-42-101001",
          "canonical_path": "/cities/ro/baneasa-42-101001/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685462",
          "name": "Băneşti",
          "country_code": "RO",
          "slug": "banesti",
          "canonical_path": "/cities/ro/banesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685419",
          "name": "Baraolt",
          "country_code": "RO",
          "slug": "baraolt",
          "canonical_path": "/cities/ro/baraolt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685366",
          "name": "Bărbuleţu",
          "country_code": "RO",
          "slug": "barbuletu",
          "canonical_path": "/cities/ro/barbuletu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685354",
          "name": "Bărcăneşti",
          "country_code": "RO",
          "slug": "barcanesti",
          "canonical_path": "/cities/ro/barcanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685346",
          "name": "Barcea",
          "country_code": "RO",
          "slug": "barcea",
          "canonical_path": "/cities/ro/barcea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684805",
          "name": "Bârla",
          "country_code": "RO",
          "slug": "barla",
          "canonical_path": "/cities/ro/barla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684770",
          "name": "Bârsana",
          "country_code": "RO",
          "slug": "barsana",
          "canonical_path": "/cities/ro/barsana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685305",
          "name": "Bascov",
          "country_code": "RO",
          "slug": "bascov",
          "canonical_path": "/cities/ro/bascov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685279",
          "name": "Batăr",
          "country_code": "RO",
          "slug": "batar",
          "canonical_path": "/cities/ro/batar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685204",
          "name": "Beclean",
          "country_code": "RO",
          "slug": "beclean",
          "canonical_path": "/cities/ro/beclean/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685174",
          "name": "Beiuş",
          "country_code": "RO",
          "slug": "beius",
          "canonical_path": "/cities/ro/beius/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685163",
          "name": "Belceşti",
          "country_code": "RO",
          "slug": "belcesti",
          "canonical_path": "/cities/ro/belcesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685088",
          "name": "Berbeşti",
          "country_code": "RO",
          "slug": "berbesti",
          "canonical_path": "/cities/ro/berbesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685081",
          "name": "Berca",
          "country_code": "RO",
          "slug": "berca",
          "canonical_path": "/cities/ro/berca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685076",
          "name": "Berceni",
          "country_code": "RO",
          "slug": "berceni",
          "canonical_path": "/cities/ro/berceni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685025",
          "name": "Bereşti-Tazlău",
          "country_code": "RO",
          "slug": "beresti-tazlau",
          "canonical_path": "/cities/ro/beresti-tazlau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:685018",
          "name": "Berezeni",
          "country_code": "RO",
          "slug": "berezeni",
          "canonical_path": "/cities/ro/berezeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684970",
          "name": "Berzunţi",
          "country_code": "RO",
          "slug": "berzunti",
          "canonical_path": "/cities/ro/berzunti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684948",
          "name": "Bezdead",
          "country_code": "RO",
          "slug": "bezdead",
          "canonical_path": "/cities/ro/bezdead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684924",
          "name": "Bicaz",
          "country_code": "RO",
          "slug": "bicaz",
          "canonical_path": "/cities/ro/bicaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684855",
          "name": "Biled",
          "country_code": "RO",
          "slug": "biled",
          "canonical_path": "/cities/ro/biled/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684630",
          "name": "Bixad",
          "country_code": "RO",
          "slug": "bixad",
          "canonical_path": "/cities/ro/bixad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684619",
          "name": "Blăgeşti",
          "country_code": "RO",
          "slug": "blagesti",
          "canonical_path": "/cities/ro/blagesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684612",
          "name": "Blaj",
          "country_code": "RO",
          "slug": "blaj",
          "canonical_path": "/cities/ro/blaj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684583",
          "name": "Blejoi",
          "country_code": "RO",
          "slug": "blejoi",
          "canonical_path": "/cities/ro/blejoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684490",
          "name": "Bocşa",
          "country_code": "RO",
          "slug": "bocsa",
          "canonical_path": "/cities/ro/bocsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684461",
          "name": "Bodeşti",
          "country_code": "RO",
          "slug": "bodesti",
          "canonical_path": "/cities/ro/bodesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684280",
          "name": "Boldeşti-Scăeni",
          "country_code": "RO",
          "slug": "boldesti-scaeni",
          "canonical_path": "/cities/ro/boldesti-scaeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684269",
          "name": "Bolintin Deal",
          "country_code": "RO",
          "slug": "bolintin-deal",
          "canonical_path": "/cities/ro/bolintin-deal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684266",
          "name": "Bolintin Vale",
          "country_code": "RO",
          "slug": "bolintin-vale",
          "canonical_path": "/cities/ro/bolintin-vale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684230",
          "name": "Borca",
          "country_code": "RO",
          "slug": "borca",
          "canonical_path": "/cities/ro/borca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684226",
          "name": "Borcea",
          "country_code": "RO",
          "slug": "borcea",
          "canonical_path": "/cities/ro/borcea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684203",
          "name": "Borduşani",
          "country_code": "RO",
          "slug": "bordusani",
          "canonical_path": "/cities/ro/bordusani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684190",
          "name": "Borleşti",
          "country_code": "RO",
          "slug": "borlesti",
          "canonical_path": "/cities/ro/borlesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684156",
          "name": "Borşa",
          "country_code": "RO",
          "slug": "borsa",
          "canonical_path": "/cities/ro/borsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684116",
          "name": "Bosanci",
          "country_code": "RO",
          "slug": "bosanci",
          "canonical_path": "/cities/ro/bosanci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:684045",
          "name": "Botoroaga",
          "country_code": "RO",
          "slug": "botoroaga",
          "canonical_path": "/cities/ro/botoroaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683974",
          "name": "Brad",
          "country_code": "RO",
          "slug": "brad",
          "canonical_path": "/cities/ro/brad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683933",
          "name": "Bradu",
          "country_code": "RO",
          "slug": "bradu",
          "canonical_path": "/cities/ro/bradu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683914",
          "name": "Bragadiru",
          "country_code": "RO",
          "slug": "bragadiru",
          "canonical_path": "/cities/ro/bragadiru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683907",
          "name": "Brăhăşeştii de Sus",
          "country_code": "RO",
          "slug": "brahasestii-de-sus",
          "canonical_path": "/cities/ro/brahasestii-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683890",
          "name": "Bran",
          "country_code": "RO",
          "slug": "bran",
          "canonical_path": "/cities/ro/bran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683884",
          "name": "Brăneşti",
          "country_code": "RO",
          "slug": "branesti",
          "canonical_path": "/cities/ro/branesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683886",
          "name": "Brăneşti",
          "country_code": "RO",
          "slug": "branesti-43-101298",
          "canonical_path": "/cities/ro/branesti-43-101298/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683837",
          "name": "Bratca",
          "country_code": "RO",
          "slug": "bratca",
          "canonical_path": "/cities/ro/bratca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683765",
          "name": "Brazii de Sus",
          "country_code": "RO",
          "slug": "brazii-de-sus",
          "canonical_path": "/cities/ro/brazii-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683760",
          "name": "Breaza",
          "country_code": "RO",
          "slug": "breaza",
          "canonical_path": "/cities/ro/breaza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683725",
          "name": "Brebu Mânăstirei",
          "country_code": "RO",
          "slug": "brebu-manastirei",
          "canonical_path": "/cities/ro/brebu-manastirei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683695",
          "name": "Brezoi",
          "country_code": "RO",
          "slug": "brezoi",
          "canonical_path": "/cities/ro/brezoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683637",
          "name": "Broşteni",
          "country_code": "RO",
          "slug": "brosteni",
          "canonical_path": "/cities/ro/brosteni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683612",
          "name": "Brusturi",
          "country_code": "RO",
          "slug": "brusturi",
          "canonical_path": "/cities/ro/brusturi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683602",
          "name": "Bucecea",
          "country_code": "RO",
          "slug": "bucecea",
          "canonical_path": "/cities/ro/bucecea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683547",
          "name": "Bucov",
          "country_code": "RO",
          "slug": "bucov",
          "canonical_path": "/cities/ro/bucov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683528",
          "name": "Bucşani",
          "country_code": "RO",
          "slug": "bucsani",
          "canonical_path": "/cities/ro/bucsani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683517",
          "name": "Bucu",
          "country_code": "RO",
          "slug": "bucu",
          "canonical_path": "/cities/ro/bucu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683445",
          "name": "Budeşti",
          "country_code": "RO",
          "slug": "budesti-39-168791",
          "canonical_path": "/cities/ro/budesti-39-168791/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683447",
          "name": "Budeşti",
          "country_code": "RO",
          "slug": "budesti",
          "canonical_path": "/cities/ro/budesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683394",
          "name": "Buftea",
          "country_code": "RO",
          "slug": "buftea",
          "canonical_path": "/cities/ro/buftea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683365",
          "name": "Buhuşi",
          "country_code": "RO",
          "slug": "buhusi",
          "canonical_path": "/cities/ro/buhusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683294",
          "name": "Bumbeşti-Jiu",
          "country_code": "RO",
          "slug": "bumbesti-jiu",
          "canonical_path": "/cities/ro/bumbesti-jiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683179",
          "name": "Buşteni",
          "country_code": "RO",
          "slug": "busteni",
          "canonical_path": "/cities/ro/busteni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683105",
          "name": "Buziaş",
          "country_code": "RO",
          "slug": "buzias",
          "canonical_path": "/cities/ro/buzias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683100",
          "name": "Buzoeşti",
          "country_code": "RO",
          "slug": "buzoesti",
          "canonical_path": "/cities/ro/buzoesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683050",
          "name": "Căianu Mic",
          "country_code": "RO",
          "slug": "caianu-mic",
          "canonical_path": "/cities/ro/caianu-mic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683041",
          "name": "Cajvana",
          "country_code": "RO",
          "slug": "cajvana",
          "canonical_path": "/cities/ro/cajvana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683034",
          "name": "Calafat",
          "country_code": "RO",
          "slug": "calafat",
          "canonical_path": "/cities/ro/calafat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683033",
          "name": "Calafindeşti",
          "country_code": "RO",
          "slug": "calafindesti",
          "canonical_path": "/cities/ro/calafindesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:683030",
          "name": "Călan",
          "country_code": "RO",
          "slug": "calan",
          "canonical_path": "/cities/ro/calan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682972",
          "name": "Călimăneşti",
          "country_code": "RO",
          "slug": "calimanesti",
          "canonical_path": "/cities/ro/calimanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682958",
          "name": "Călineşti",
          "country_code": "RO",
          "slug": "calinesti",
          "canonical_path": "/cities/ro/calinesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682912",
          "name": "Călugăreni",
          "country_code": "RO",
          "slug": "calugareni",
          "canonical_path": "/cities/ro/calugareni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681876",
          "name": "Câmpeni",
          "country_code": "RO",
          "slug": "campeni",
          "canonical_path": "/cities/ro/campeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681865",
          "name": "Câmpia Turzii",
          "country_code": "RO",
          "slug": "campia-turzii",
          "canonical_path": "/cities/ro/campia-turzii/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681862",
          "name": "Câmpina",
          "country_code": "RO",
          "slug": "campina",
          "canonical_path": "/cities/ro/campina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681845",
          "name": "Câmpulung Moldovenesc",
          "country_code": "RO",
          "slug": "campulung-moldovenesc",
          "canonical_path": "/cities/ro/campulung-moldovenesc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682747",
          "name": "Caracal",
          "country_code": "RO",
          "slug": "caracal",
          "canonical_path": "/cities/ro/caracal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682729",
          "name": "Caransebeş",
          "country_code": "RO",
          "slug": "caransebes",
          "canonical_path": "/cities/ro/caransebes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682685",
          "name": "Carei",
          "country_code": "RO",
          "slug": "carei",
          "canonical_path": "/cities/ro/carei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682660",
          "name": "Cărpiniş",
          "country_code": "RO",
          "slug": "carpinis",
          "canonical_path": "/cities/ro/carpinis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681523",
          "name": "Cârţa",
          "country_code": "RO",
          "slug": "carta",
          "canonical_path": "/cities/ro/carta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682589",
          "name": "Castelu",
          "country_code": "RO",
          "slug": "castelu",
          "canonical_path": "/cities/ro/castelu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682508",
          "name": "Cavnic",
          "country_code": "RO",
          "slug": "cavnic",
          "canonical_path": "/cities/ro/cavnic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682452",
          "name": "Cefa",
          "country_code": "RO",
          "slug": "cefa",
          "canonical_path": "/cities/ro/cefa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682436",
          "name": "Celaru",
          "country_code": "RO",
          "slug": "celaru",
          "canonical_path": "/cities/ro/celaru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682403",
          "name": "Ceptura de Sus",
          "country_code": "RO",
          "slug": "ceptura-de-sus",
          "canonical_path": "/cities/ro/ceptura-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682399",
          "name": "Ceraşu",
          "country_code": "RO",
          "slug": "cerasu",
          "canonical_path": "/cities/ro/cerasu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682321",
          "name": "Cernavodă",
          "country_code": "RO",
          "slug": "cernavoda",
          "canonical_path": "/cities/ro/cernavoda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682301",
          "name": "Cernica",
          "country_code": "RO",
          "slug": "cernica",
          "canonical_path": "/cities/ro/cernica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682282",
          "name": "Certeze",
          "country_code": "RO",
          "slug": "certeze",
          "canonical_path": "/cities/ro/certeze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682268",
          "name": "Cetate",
          "country_code": "RO",
          "slug": "cetate",
          "canonical_path": "/cities/ro/cetate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682159",
          "name": "Chiajna",
          "country_code": "RO",
          "slug": "chiajna",
          "canonical_path": "/cities/ro/chiajna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682036",
          "name": "Chirnogi",
          "country_code": "RO",
          "slug": "chirnogi",
          "canonical_path": "/cities/ro/chirnogi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682020",
          "name": "Chiscani",
          "country_code": "RO",
          "slug": "chiscani",
          "canonical_path": "/cities/ro/chiscani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:682009",
          "name": "Chişineu-Criş",
          "country_code": "RO",
          "slug": "chisineu-cris",
          "canonical_path": "/cities/ro/chisineu-cris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681990",
          "name": "Chitila",
          "country_code": "RO",
          "slug": "chitila",
          "canonical_path": "/cities/ro/chitila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681971",
          "name": "Ciacova",
          "country_code": "RO",
          "slug": "ciacova",
          "canonical_path": "/cities/ro/ciacova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681747",
          "name": "Ciocăneşti",
          "country_code": "RO",
          "slug": "ciocanesti",
          "canonical_path": "/cities/ro/ciocanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681669",
          "name": "Cioranii de Jos",
          "country_code": "RO",
          "slug": "cioranii-de-jos",
          "canonical_path": "/cities/ro/cioranii-de-jos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681624",
          "name": "Ciprian Porumbescu",
          "country_code": "RO",
          "slug": "ciprian-porumbescu",
          "canonical_path": "/cities/ro/ciprian-porumbescu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681502",
          "name": "Cisnădie",
          "country_code": "RO",
          "slug": "cisnadie",
          "canonical_path": "/cities/ro/cisnadie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681397",
          "name": "Ciupercenii Noi",
          "country_code": "RO",
          "slug": "ciupercenii-noi",
          "canonical_path": "/cities/ro/ciupercenii-noi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681384",
          "name": "Ciurea",
          "country_code": "RO",
          "slug": "ciurea",
          "canonical_path": "/cities/ro/ciurea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681340",
          "name": "Cleja",
          "country_code": "RO",
          "slug": "cleja",
          "canonical_path": "/cities/ro/cleja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681257",
          "name": "Cobadin",
          "country_code": "RO",
          "slug": "cobadin",
          "canonical_path": "/cities/ro/cobadin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681228",
          "name": "Cochirleanca",
          "country_code": "RO",
          "slug": "cochirleanca",
          "canonical_path": "/cities/ro/cochirleanca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681179",
          "name": "Codlea",
          "country_code": "RO",
          "slug": "codlea",
          "canonical_path": "/cities/ro/codlea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681160",
          "name": "Cogealac",
          "country_code": "RO",
          "slug": "cogealac",
          "canonical_path": "/cities/ro/cogealac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681151",
          "name": "Cojasca",
          "country_code": "RO",
          "slug": "cojasca",
          "canonical_path": "/cities/ro/cojasca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681125",
          "name": "Colceag",
          "country_code": "RO",
          "slug": "colceag",
          "canonical_path": "/cities/ro/colceag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681036",
          "name": "Comana",
          "country_code": "RO",
          "slug": "comana",
          "canonical_path": "/cities/ro/comana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681017",
          "name": "Comăneşti",
          "country_code": "RO",
          "slug": "comanesti",
          "canonical_path": "/cities/ro/comanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:681005",
          "name": "Comarnic",
          "country_code": "RO",
          "slug": "comarnic",
          "canonical_path": "/cities/ro/comarnic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680998",
          "name": "Comişani",
          "country_code": "RO",
          "slug": "comisani",
          "canonical_path": "/cities/ro/comisani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680911",
          "name": "Copălău",
          "country_code": "RO",
          "slug": "copalau",
          "canonical_path": "/cities/ro/copalau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680907",
          "name": "Copalnic Mănăştur",
          "country_code": "RO",
          "slug": "copalnic-manastur",
          "canonical_path": "/cities/ro/copalnic-manastur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680901",
          "name": "Copşa Mică",
          "country_code": "RO",
          "slug": "copsa-mica",
          "canonical_path": "/cities/ro/copsa-mica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680897",
          "name": "Corabia",
          "country_code": "RO",
          "slug": "corabia",
          "canonical_path": "/cities/ro/corabia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680894",
          "name": "Corbasca",
          "country_code": "RO",
          "slug": "corbasca",
          "canonical_path": "/cities/ro/corbasca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680888",
          "name": "Corbeni",
          "country_code": "RO",
          "slug": "corbeni",
          "canonical_path": "/cities/ro/corbeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680876",
          "name": "Corbii Mari",
          "country_code": "RO",
          "slug": "corbii-mari",
          "canonical_path": "/cities/ro/corbii-mari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680870",
          "name": "Corbu",
          "country_code": "RO",
          "slug": "corbu",
          "canonical_path": "/cities/ro/corbu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680841",
          "name": "Corcova",
          "country_code": "RO",
          "slug": "corcova",
          "canonical_path": "/cities/ro/corcova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680831",
          "name": "Cordun",
          "country_code": "RO",
          "slug": "cordun",
          "canonical_path": "/cities/ro/cordun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680783",
          "name": "Corneşti",
          "country_code": "RO",
          "slug": "cornesti",
          "canonical_path": "/cities/ro/cornesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680754",
          "name": "Cornetu",
          "country_code": "RO",
          "slug": "cornetu",
          "canonical_path": "/cities/ro/cornetu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680742",
          "name": "Corni",
          "country_code": "RO",
          "slug": "corni",
          "canonical_path": "/cities/ro/corni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680720",
          "name": "Cornu Luncii",
          "country_code": "RO",
          "slug": "cornu-luncii",
          "canonical_path": "/cities/ro/cornu-luncii/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680708",
          "name": "Corod",
          "country_code": "RO",
          "slug": "corod",
          "canonical_path": "/cities/ro/corod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680674",
          "name": "Corund",
          "country_code": "RO",
          "slug": "corund",
          "canonical_path": "/cities/ro/corund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680649",
          "name": "Coşereni",
          "country_code": "RO",
          "slug": "cosereni",
          "canonical_path": "/cities/ro/cosereni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680645",
          "name": "Coşeşti",
          "country_code": "RO",
          "slug": "cosesti",
          "canonical_path": "/cities/ro/cosesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680623",
          "name": "Cosmeşti",
          "country_code": "RO",
          "slug": "cosmesti",
          "canonical_path": "/cities/ro/cosmesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680601",
          "name": "Coşoveni",
          "country_code": "RO",
          "slug": "cosoveni",
          "canonical_path": "/cities/ro/cosoveni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680581",
          "name": "Costeşti",
          "country_code": "RO",
          "slug": "costesti",
          "canonical_path": "/cities/ro/costesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680491",
          "name": "Cotnari",
          "country_code": "RO",
          "slug": "cotnari",
          "canonical_path": "/cities/ro/cotnari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680440",
          "name": "Coţuşca",
          "country_code": "RO",
          "slug": "cotusca",
          "canonical_path": "/cities/ro/cotusca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680430",
          "name": "Covasna",
          "country_code": "RO",
          "slug": "covasna",
          "canonical_path": "/cities/ro/covasna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680316",
          "name": "Crasna",
          "country_code": "RO",
          "slug": "crasna-31-140627",
          "canonical_path": "/cities/ro/crasna-31-140627/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680319",
          "name": "Crasna",
          "country_code": "RO",
          "slug": "crasna",
          "canonical_path": "/cities/ro/crasna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680262",
          "name": "Crevedia",
          "country_code": "RO",
          "slug": "crevedia",
          "canonical_path": "/cities/ro/crevedia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680180",
          "name": "Cristeşti",
          "country_code": "RO",
          "slug": "cristesti",
          "canonical_path": "/cities/ro/cristesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680148",
          "name": "Cristuru Secuiesc",
          "country_code": "RO",
          "slug": "cristuru-secuiesc",
          "canonical_path": "/cities/ro/cristuru-secuiesc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:680003",
          "name": "Cudalbi",
          "country_code": "RO",
          "slug": "cudalbi",
          "canonical_path": "/cities/ro/cudalbi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679995",
          "name": "Cugir",
          "country_code": "RO",
          "slug": "cugir",
          "canonical_path": "/cities/ro/cugir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679968",
          "name": "Cumpăna",
          "country_code": "RO",
          "slug": "cumpana",
          "canonical_path": "/cities/ro/cumpana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679936",
          "name": "Curcani",
          "country_code": "RO",
          "slug": "curcani",
          "canonical_path": "/cities/ro/curcani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679907",
          "name": "Curtea de Argeş",
          "country_code": "RO",
          "slug": "curtea-de-arges",
          "canonical_path": "/cities/ro/curtea-de-arges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679901",
          "name": "Curtici",
          "country_code": "RO",
          "slug": "curtici",
          "canonical_path": "/cities/ro/curtici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679841",
          "name": "Dăbuleni",
          "country_code": "RO",
          "slug": "dabuleni",
          "canonical_path": "/cities/ro/dabuleni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679767",
          "name": "Dancu",
          "country_code": "RO",
          "slug": "dancu",
          "canonical_path": "/cities/ro/dancu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679749",
          "name": "Dăneţi",
          "country_code": "RO",
          "slug": "daneti",
          "canonical_path": "/cities/ro/daneti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679736",
          "name": "Darabani",
          "country_code": "RO",
          "slug": "darabani",
          "canonical_path": "/cities/ro/darabani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679723",
          "name": "Dărmăneşti",
          "country_code": "RO",
          "slug": "darmanesti-34-147937",
          "canonical_path": "/cities/ro/darmanesti-34-147937/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679724",
          "name": "Dărmăneşti",
          "country_code": "RO",
          "slug": "darmanesti",
          "canonical_path": "/cities/ro/darmanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679726",
          "name": "Dărmăneşti",
          "country_code": "RO",
          "slug": "darmanesti-16-67256",
          "canonical_path": "/cities/ro/darmanesti-16-67256/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679550",
          "name": "Dej",
          "country_code": "RO",
          "slug": "dej",
          "canonical_path": "/cities/ro/dej/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679518",
          "name": "Deleni",
          "country_code": "RO",
          "slug": "deleni",
          "canonical_path": "/cities/ro/deleni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679499",
          "name": "Deleşti",
          "country_code": "RO",
          "slug": "delesti",
          "canonical_path": "/cities/ro/delesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679467",
          "name": "Dersca",
          "country_code": "RO",
          "slug": "dersca",
          "canonical_path": "/cities/ro/dersca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679456",
          "name": "Deta",
          "country_code": "RO",
          "slug": "deta",
          "canonical_path": "/cities/ro/deta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679340",
          "name": "Diosig",
          "country_code": "RO",
          "slug": "diosig",
          "canonical_path": "/cities/ro/diosig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679310",
          "name": "Ditrău",
          "country_code": "RO",
          "slug": "ditrau",
          "canonical_path": "/cities/ro/ditrau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679248",
          "name": "Dobreşti",
          "country_code": "RO",
          "slug": "dobresti",
          "canonical_path": "/cities/ro/dobresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679220",
          "name": "Dobroeşti",
          "country_code": "RO",
          "slug": "dobroesti",
          "canonical_path": "/cities/ro/dobroesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679202",
          "name": "Dobroteşti",
          "country_code": "RO",
          "slug": "dobrotesti",
          "canonical_path": "/cities/ro/dobrotesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679171",
          "name": "Doftana",
          "country_code": "RO",
          "slug": "doftana",
          "canonical_path": "/cities/ro/doftana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679167",
          "name": "Dofteana",
          "country_code": "RO",
          "slug": "dofteana",
          "canonical_path": "/cities/ro/dofteana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679146",
          "name": "Dolhasca",
          "country_code": "RO",
          "slug": "dolhasca",
          "canonical_path": "/cities/ro/dolhasca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679133",
          "name": "Doljeşti",
          "country_code": "RO",
          "slug": "doljesti",
          "canonical_path": "/cities/ro/doljesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679119",
          "name": "Domnești",
          "country_code": "RO",
          "slug": "domnesti",
          "canonical_path": "/cities/ro/domnesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679095",
          "name": "Dor Mărunt",
          "country_code": "RO",
          "slug": "dor-marunt",
          "canonical_path": "/cities/ro/dor-marunt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679065",
          "name": "Dorohoi",
          "country_code": "RO",
          "slug": "dorohoi",
          "canonical_path": "/cities/ro/dorohoi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679011",
          "name": "Dragalina",
          "country_code": "RO",
          "slug": "dragalina",
          "canonical_path": "/cities/ro/dragalina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678999",
          "name": "Drăgăneşti",
          "country_code": "RO",
          "slug": "draganesti",
          "canonical_path": "/cities/ro/draganesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679002",
          "name": "Drăgăneşti",
          "country_code": "RO",
          "slug": "draganesti-30-133018",
          "canonical_path": "/cities/ro/draganesti-30-133018/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678987",
          "name": "Drăgăneşti-Olt",
          "country_code": "RO",
          "slug": "draganesti-olt",
          "canonical_path": "/cities/ro/draganesti-olt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678978",
          "name": "Drăgăşani",
          "country_code": "RO",
          "slug": "dragasani",
          "canonical_path": "/cities/ro/dragasani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678954",
          "name": "Dragodana",
          "country_code": "RO",
          "slug": "dragodana",
          "canonical_path": "/cities/ro/dragodana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678926",
          "name": "Dragomireşti",
          "country_code": "RO",
          "slug": "dragomiresti",
          "canonical_path": "/cities/ro/dragomiresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678886",
          "name": "Drăguşeni",
          "country_code": "RO",
          "slug": "draguseni",
          "canonical_path": "/cities/ro/draguseni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678871",
          "name": "Drăguţeşti",
          "country_code": "RO",
          "slug": "dragutesti",
          "canonical_path": "/cities/ro/dragutesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678868",
          "name": "Drajna de Jos",
          "country_code": "RO",
          "slug": "drajna-de-jos",
          "canonical_path": "/cities/ro/drajna-de-jos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678831",
          "name": "Dridu",
          "country_code": "RO",
          "slug": "dridu",
          "canonical_path": "/cities/ro/dridu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678792",
          "name": "Duda",
          "country_code": "RO",
          "slug": "duda",
          "canonical_path": "/cities/ro/duda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678782",
          "name": "Dudeştii Vechi",
          "country_code": "RO",
          "slug": "dudestii-vechi",
          "canonical_path": "/cities/ro/dudestii-vechi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678715",
          "name": "Dumbrava Roşie",
          "country_code": "RO",
          "slug": "dumbrava-rosie",
          "canonical_path": "/cities/ro/dumbrava-rosie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678700",
          "name": "Dumbrăveni",
          "country_code": "RO",
          "slug": "dumbraveni-34-148426",
          "canonical_path": "/cities/ro/dumbraveni-34-148426/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678704",
          "name": "Dumbrăveni",
          "country_code": "RO",
          "slug": "dumbraveni",
          "canonical_path": "/cities/ro/dumbraveni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678588",
          "name": "Eforie Sud",
          "country_code": "RO",
          "slug": "eforie-sud",
          "canonical_path": "/cities/ro/eforie-sud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678552",
          "name": "Erbiceni",
          "country_code": "RO",
          "slug": "erbiceni",
          "canonical_path": "/cities/ro/erbiceni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678535",
          "name": "Ernei",
          "country_code": "RO",
          "slug": "ernei",
          "canonical_path": "/cities/ro/ernei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678513",
          "name": "Făcăeni",
          "country_code": "RO",
          "slug": "facaeni",
          "canonical_path": "/cities/ro/facaeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678499",
          "name": "Făgăraș",
          "country_code": "RO",
          "slug": "fagaras",
          "canonical_path": "/cities/ro/fagaras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678490",
          "name": "Făget",
          "country_code": "RO",
          "slug": "faget",
          "canonical_path": "/cities/ro/faget/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678465",
          "name": "Fălciu",
          "country_code": "RO",
          "slug": "falciu",
          "canonical_path": "/cities/ro/falciu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678459",
          "name": "Fălticeni",
          "country_code": "RO",
          "slug": "falticeni",
          "canonical_path": "/cities/ro/falticeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678162",
          "name": "Fântânele",
          "country_code": "RO",
          "slug": "fantanele",
          "canonical_path": "/cities/ro/fantanele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678451",
          "name": "Faraoaní",
          "country_code": "RO",
          "slug": "faraoani",
          "canonical_path": "/cities/ro/faraoani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678430",
          "name": "Fărcaşele",
          "country_code": "RO",
          "slug": "farcasele",
          "canonical_path": "/cities/ro/farcasele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678361",
          "name": "Feldioara",
          "country_code": "RO",
          "slug": "feldioara",
          "canonical_path": "/cities/ro/feldioara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678358",
          "name": "Feldru",
          "country_code": "RO",
          "slug": "feldru",
          "canonical_path": "/cities/ro/feldru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678348",
          "name": "Felnac",
          "country_code": "RO",
          "slug": "felnac",
          "canonical_path": "/cities/ro/felnac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678306",
          "name": "Feteşti",
          "country_code": "RO",
          "slug": "fetesti",
          "canonical_path": "/cities/ro/fetesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678290",
          "name": "Fieni",
          "country_code": "RO",
          "slug": "fieni",
          "canonical_path": "/cities/ro/fieni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678261",
          "name": "Filiaşi",
          "country_code": "RO",
          "slug": "filiasi",
          "canonical_path": "/cities/ro/filiasi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678245",
          "name": "Filipeştii de Pădure",
          "country_code": "RO",
          "slug": "filipestii-de-padure",
          "canonical_path": "/cities/ro/filipestii-de-padure/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678243",
          "name": "Filipeştii de Târg",
          "country_code": "RO",
          "slug": "filipestii-de-targ",
          "canonical_path": "/cities/ro/filipestii-de-targ/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678050",
          "name": "Floreşti",
          "country_code": "RO",
          "slug": "floresti",
          "canonical_path": "/cities/ro/floresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678063",
          "name": "Floreşti",
          "country_code": "RO",
          "slug": "floresti-30-133330",
          "canonical_path": "/cities/ro/floresti-30-133330/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:678013",
          "name": "Focuri",
          "country_code": "RO",
          "slug": "focuri",
          "canonical_path": "/cities/ro/focuri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677964",
          "name": "Frasin",
          "country_code": "RO",
          "slug": "frasin",
          "canonical_path": "/cities/ro/frasin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677923",
          "name": "Frătăuţii Noi",
          "country_code": "RO",
          "slug": "fratautii-noi",
          "canonical_path": "/cities/ro/fratautii-noi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677918",
          "name": "Frăteşti",
          "country_code": "RO",
          "slug": "fratesti",
          "canonical_path": "/cities/ro/fratesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677880",
          "name": "Frumuşani",
          "country_code": "RO",
          "slug": "frumusani",
          "canonical_path": "/cities/ro/frumusani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677872",
          "name": "Frumuşica",
          "country_code": "RO",
          "slug": "frumusica",
          "canonical_path": "/cities/ro/frumusica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677870",
          "name": "Frumuşiţa",
          "country_code": "RO",
          "slug": "frumusita",
          "canonical_path": "/cities/ro/frumusita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677812",
          "name": "Fundeni",
          "country_code": "RO",
          "slug": "fundeni",
          "canonical_path": "/cities/ro/fundeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677790",
          "name": "Fundulea",
          "country_code": "RO",
          "slug": "fundulea",
          "canonical_path": "/cities/ro/fundulea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677742",
          "name": "Găeşti",
          "country_code": "RO",
          "slug": "gaesti",
          "canonical_path": "/cities/ro/gaesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677712",
          "name": "Găiseni",
          "country_code": "RO",
          "slug": "gaiseni",
          "canonical_path": "/cities/ro/gaiseni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677709",
          "name": "Gălăneşti",
          "country_code": "RO",
          "slug": "galanesti",
          "canonical_path": "/cities/ro/galanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677186",
          "name": "Gârla-Mare",
          "country_code": "RO",
          "slug": "garla-mare",
          "canonical_path": "/cities/ro/garla-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677581",
          "name": "Gătaia",
          "country_code": "RO",
          "slug": "gataia",
          "canonical_path": "/cities/ro/gataia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677520",
          "name": "Geoagiu",
          "country_code": "RO",
          "slug": "geoagiu",
          "canonical_path": "/cities/ro/geoagiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677458",
          "name": "Gheorgheni",
          "country_code": "RO",
          "slug": "gheorgheni",
          "canonical_path": "/cities/ro/gheorgheni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677454",
          "name": "Gherăeşti",
          "country_code": "RO",
          "slug": "gheraesti",
          "canonical_path": "/cities/ro/gheraesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677429",
          "name": "Gherla",
          "country_code": "RO",
          "slug": "gherla",
          "canonical_path": "/cities/ro/gherla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677407",
          "name": "Ghidigeni",
          "country_code": "RO",
          "slug": "ghidigeni",
          "canonical_path": "/cities/ro/ghidigeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677377",
          "name": "Ghimeş-Făget",
          "country_code": "RO",
          "slug": "ghimes-faget",
          "canonical_path": "/cities/ro/ghimes-faget/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677294",
          "name": "Giarmata",
          "country_code": "RO",
          "slug": "giarmata",
          "canonical_path": "/cities/ro/giarmata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677283",
          "name": "Gilău",
          "country_code": "RO",
          "slug": "gilau",
          "canonical_path": "/cities/ro/gilau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677158",
          "name": "Girov",
          "country_code": "RO",
          "slug": "girov",
          "canonical_path": "/cities/ro/girov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:677060",
          "name": "Glina",
          "country_code": "RO",
          "slug": "glina",
          "canonical_path": "/cities/ro/glina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676976",
          "name": "Gogoşu",
          "country_code": "RO",
          "slug": "gogosu",
          "canonical_path": "/cities/ro/gogosu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676907",
          "name": "Gorgota",
          "country_code": "RO",
          "slug": "gorgota",
          "canonical_path": "/cities/ro/gorgota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676892",
          "name": "Gorneşti",
          "country_code": "RO",
          "slug": "gornesti",
          "canonical_path": "/cities/ro/gornesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676819",
          "name": "Grădiştea",
          "country_code": "RO",
          "slug": "gradistea",
          "canonical_path": "/cities/ro/gradistea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676755",
          "name": "Greci",
          "country_code": "RO",
          "slug": "greci",
          "canonical_path": "/cities/ro/greci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676706",
          "name": "Griviţa",
          "country_code": "RO",
          "slug": "grivita-38-164133",
          "canonical_path": "/cities/ro/grivita-38-164133/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676708",
          "name": "Griviţa",
          "country_code": "RO",
          "slug": "grivita",
          "canonical_path": "/cities/ro/grivita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676617",
          "name": "Gruiu",
          "country_code": "RO",
          "slug": "gruiu",
          "canonical_path": "/cities/ro/gruiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676604",
          "name": "Grumăzeşti",
          "country_code": "RO",
          "slug": "grumazesti",
          "canonical_path": "/cities/ro/grumazesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676588",
          "name": "Gugeşti",
          "country_code": "RO",
          "slug": "gugesti",
          "canonical_path": "/cities/ro/gugesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676527",
          "name": "Gura Humorului",
          "country_code": "RO",
          "slug": "gura-humorului",
          "canonical_path": "/cities/ro/gura-humorului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676481",
          "name": "Gura Şuţii",
          "country_code": "RO",
          "slug": "gura-sutii",
          "canonical_path": "/cities/ro/gura-sutii/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676462",
          "name": "Gura Văii",
          "country_code": "RO",
          "slug": "gura-vaii",
          "canonical_path": "/cities/ro/gura-vaii/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676455",
          "name": "Gura Viţioarei",
          "country_code": "RO",
          "slug": "gura-vitioarei",
          "canonical_path": "/cities/ro/gura-vitioarei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676438",
          "name": "Gurghiu",
          "country_code": "RO",
          "slug": "gurghiu",
          "canonical_path": "/cities/ro/gurghiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676371",
          "name": "Hălăuceşti",
          "country_code": "RO",
          "slug": "halaucesti",
          "canonical_path": "/cities/ro/halaucesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676368",
          "name": "Hălchiu",
          "country_code": "RO",
          "slug": "halchiu",
          "canonical_path": "/cities/ro/halchiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676351",
          "name": "Halmeu",
          "country_code": "RO",
          "slug": "halmeu",
          "canonical_path": "/cities/ro/halmeu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676176",
          "name": "Hârlău",
          "country_code": "RO",
          "slug": "harlau",
          "canonical_path": "/cities/ro/harlau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676163",
          "name": "Hârşova",
          "country_code": "RO",
          "slug": "harsova",
          "canonical_path": "/cities/ro/harsova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676277",
          "name": "Haţeg",
          "country_code": "RO",
          "slug": "hateg",
          "canonical_path": "/cities/ro/hateg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676268",
          "name": "Havârna",
          "country_code": "RO",
          "slug": "havarna",
          "canonical_path": "/cities/ro/havarna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676262",
          "name": "Helegiu",
          "country_code": "RO",
          "slug": "helegiu",
          "canonical_path": "/cities/ro/helegiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676078",
          "name": "Holboca",
          "country_code": "RO",
          "slug": "holboca",
          "canonical_path": "/cities/ro/holboca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676063",
          "name": "Homocea",
          "country_code": "RO",
          "slug": "homocea",
          "canonical_path": "/cities/ro/homocea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:676026",
          "name": "Horezu",
          "country_code": "RO",
          "slug": "horezu",
          "canonical_path": "/cities/ro/horezu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675983",
          "name": "Horodnic de Sus",
          "country_code": "RO",
          "slug": "horodnic-de-sus",
          "canonical_path": "/cities/ro/horodnic-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675968",
          "name": "Hotarele",
          "country_code": "RO",
          "slug": "hotarele",
          "canonical_path": "/cities/ro/hotarele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675941",
          "name": "Hudeşti",
          "country_code": "RO",
          "slug": "hudesti",
          "canonical_path": "/cities/ro/hudesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675937",
          "name": "Huedin",
          "country_code": "RO",
          "slug": "huedin",
          "canonical_path": "/cities/ro/huedin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675892",
          "name": "Huşi",
          "country_code": "RO",
          "slug": "husi",
          "canonical_path": "/cities/ro/husi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675840",
          "name": "Ianca",
          "country_code": "RO",
          "slug": "ianca",
          "canonical_path": "/cities/ro/ianca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675727",
          "name": "Iernut",
          "country_code": "RO",
          "slug": "iernut",
          "canonical_path": "/cities/ro/iernut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675703",
          "name": "Ighiu",
          "country_code": "RO",
          "slug": "ighiu",
          "canonical_path": "/cities/ro/ighiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675606",
          "name": "Ineu",
          "country_code": "RO",
          "slug": "ineu",
          "canonical_path": "/cities/ro/ineu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675590",
          "name": "Însurăţei",
          "country_code": "RO",
          "slug": "insuratei",
          "canonical_path": "/cities/ro/insuratei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675585",
          "name": "Întorsura Buzăului",
          "country_code": "RO",
          "slug": "intorsura-buzaului",
          "canonical_path": "/cities/ro/intorsura-buzaului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675495",
          "name": "Isaccea",
          "country_code": "RO",
          "slug": "isaccea",
          "canonical_path": "/cities/ro/isaccea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675480",
          "name": "Islaz",
          "country_code": "RO",
          "slug": "islaz",
          "canonical_path": "/cities/ro/islaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675418",
          "name": "Iveşti",
          "country_code": "RO",
          "slug": "ivesti",
          "canonical_path": "/cities/ro/ivesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675407",
          "name": "Izbiceni",
          "country_code": "RO",
          "slug": "izbiceni",
          "canonical_path": "/cities/ro/izbiceni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675385",
          "name": "Izvoarele",
          "country_code": "RO",
          "slug": "izvoarele",
          "canonical_path": "/cities/ro/izvoarele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675290",
          "name": "Jebel",
          "country_code": "RO",
          "slug": "jebel",
          "canonical_path": "/cities/ro/jebel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675261",
          "name": "Jibou",
          "country_code": "RO",
          "slug": "jibou",
          "canonical_path": "/cities/ro/jibou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675235",
          "name": "Jijila",
          "country_code": "RO",
          "slug": "jijila",
          "canonical_path": "/cities/ro/jijila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675231",
          "name": "Jilava",
          "country_code": "RO",
          "slug": "jilava",
          "canonical_path": "/cities/ro/jilava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675223",
          "name": "Jimbolia",
          "country_code": "RO",
          "slug": "jimbolia",
          "canonical_path": "/cities/ro/jimbolia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675193",
          "name": "Joiţa",
          "country_code": "RO",
          "slug": "joita",
          "canonical_path": "/cities/ro/joita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675171",
          "name": "Joseni",
          "country_code": "RO",
          "slug": "joseni",
          "canonical_path": "/cities/ro/joseni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675168",
          "name": "Josenii Bârgăului",
          "country_code": "RO",
          "slug": "josenii-bargaului",
          "canonical_path": "/cities/ro/josenii-bargaului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:675130",
          "name": "Jurilovca",
          "country_code": "RO",
          "slug": "jurilovca",
          "canonical_path": "/cities/ro/jurilovca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674977",
          "name": "Laza",
          "country_code": "RO",
          "slug": "laza",
          "canonical_path": "/cities/ro/laza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674947",
          "name": "Lazuri",
          "country_code": "RO",
          "slug": "lazuri",
          "canonical_path": "/cities/ro/lazuri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674933",
          "name": "Lechinţa",
          "country_code": "RO",
          "slug": "lechinta",
          "canonical_path": "/cities/ro/lechinta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674916",
          "name": "Lehliu-Gară",
          "country_code": "RO",
          "slug": "lehliu-gara",
          "canonical_path": "/cities/ro/lehliu-gara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674895",
          "name": "Lenauheim",
          "country_code": "RO",
          "slug": "lenauheim",
          "canonical_path": "/cities/ro/lenauheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674885",
          "name": "Leordeni",
          "country_code": "RO",
          "slug": "leordeni",
          "canonical_path": "/cities/ro/leordeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674844",
          "name": "Lespezi",
          "country_code": "RO",
          "slug": "lespezi",
          "canonical_path": "/cities/ro/lespezi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674834",
          "name": "Leţcani",
          "country_code": "RO",
          "slug": "letcani",
          "canonical_path": "/cities/ro/letcani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674823",
          "name": "Leu",
          "country_code": "RO",
          "slug": "leu",
          "canonical_path": "/cities/ro/leu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674796",
          "name": "Lieşti",
          "country_code": "RO",
          "slug": "liesti",
          "canonical_path": "/cities/ro/liesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674733",
          "name": "Lipova",
          "country_code": "RO",
          "slug": "lipova",
          "canonical_path": "/cities/ro/lipova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674696",
          "name": "Liteni",
          "country_code": "RO",
          "slug": "liteni",
          "canonical_path": "/cities/ro/liteni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674679",
          "name": "Livada",
          "country_code": "RO",
          "slug": "livada",
          "canonical_path": "/cities/ro/livada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674586",
          "name": "Lovrin",
          "country_code": "RO",
          "slug": "lovrin",
          "canonical_path": "/cities/ro/lovrin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674560",
          "name": "Lucieni",
          "country_code": "RO",
          "slug": "lucieni",
          "canonical_path": "/cities/ro/lucieni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674550",
          "name": "Ludeşti",
          "country_code": "RO",
          "slug": "ludesti",
          "canonical_path": "/cities/ro/ludesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674541",
          "name": "Luduş",
          "country_code": "RO",
          "slug": "ludus",
          "canonical_path": "/cities/ro/ludus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674517",
          "name": "Lumina",
          "country_code": "RO",
          "slug": "lumina",
          "canonical_path": "/cities/ro/lumina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674497",
          "name": "Lunca",
          "country_code": "RO",
          "slug": "lunca",
          "canonical_path": "/cities/ro/lunca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674419",
          "name": "Lunca de Jos",
          "country_code": "RO",
          "slug": "lunca-de-jos",
          "canonical_path": "/cities/ro/lunca-de-jos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674349",
          "name": "Luncaviţa",
          "country_code": "RO",
          "slug": "luncavita",
          "canonical_path": "/cities/ro/luncavita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674323",
          "name": "Lungani",
          "country_code": "RO",
          "slug": "lungani",
          "canonical_path": "/cities/ro/lungani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674307",
          "name": "Lunguleţu",
          "country_code": "RO",
          "slug": "lunguletu",
          "canonical_path": "/cities/ro/lunguletu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674295",
          "name": "Lupeni",
          "country_code": "RO",
          "slug": "lupeni",
          "canonical_path": "/cities/ro/lupeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674244",
          "name": "Macea",
          "country_code": "RO",
          "slug": "macea",
          "canonical_path": "/cities/ro/macea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674230",
          "name": "Măcin",
          "country_code": "RO",
          "slug": "macin",
          "canonical_path": "/cities/ro/macin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674170",
          "name": "Maglavit",
          "country_code": "RO",
          "slug": "maglavit",
          "canonical_path": "/cities/ro/maglavit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674117",
          "name": "Măgurele",
          "country_code": "RO",
          "slug": "magurele",
          "canonical_path": "/cities/ro/magurele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674105",
          "name": "Măgureni",
          "country_code": "RO",
          "slug": "magureni",
          "canonical_path": "/cities/ro/magureni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674066",
          "name": "Măicăneşti",
          "country_code": "RO",
          "slug": "maicanesti",
          "canonical_path": "/cities/ro/maicanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674061",
          "name": "Măieru",
          "country_code": "RO",
          "slug": "maieru",
          "canonical_path": "/cities/ro/maieru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:674011",
          "name": "Mălini",
          "country_code": "RO",
          "slug": "malini",
          "canonical_path": "/cities/ro/malini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673275",
          "name": "Mânăstirea",
          "country_code": "RO",
          "slug": "manastirea",
          "canonical_path": "/cities/ro/manastirea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673932",
          "name": "Măneşti",
          "country_code": "RO",
          "slug": "manesti",
          "canonical_path": "/cities/ro/manesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673921",
          "name": "Mangalia",
          "country_code": "RO",
          "slug": "mangalia",
          "canonical_path": "/cities/ro/mangalia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673893",
          "name": "Mărăcineni",
          "country_code": "RO",
          "slug": "maracineni",
          "canonical_path": "/cities/ro/maracineni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673881",
          "name": "Mărășești",
          "country_code": "RO",
          "slug": "marasesti",
          "canonical_path": "/cities/ro/marasesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673816",
          "name": "Marghita",
          "country_code": "RO",
          "slug": "marghita",
          "canonical_path": "/cities/ro/marghita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673807",
          "name": "Marginea",
          "country_code": "RO",
          "slug": "marginea",
          "canonical_path": "/cities/ro/marginea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673783",
          "name": "Mărgineni-Munteni",
          "country_code": "RO",
          "slug": "margineni-munteni",
          "canonical_path": "/cities/ro/margineni-munteni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673702",
          "name": "Măstăcani",
          "country_code": "RO",
          "slug": "mastacani",
          "canonical_path": "/cities/ro/mastacani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673695",
          "name": "Mătăsari",
          "country_code": "RO",
          "slug": "matasari",
          "canonical_path": "/cities/ro/matasari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673691",
          "name": "Mătăsaru",
          "country_code": "RO",
          "slug": "matasaru",
          "canonical_path": "/cities/ro/matasaru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673685",
          "name": "Matca",
          "country_code": "RO",
          "slug": "matca",
          "canonical_path": "/cities/ro/matca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673658",
          "name": "Mavrodin",
          "country_code": "RO",
          "slug": "mavrodin",
          "canonical_path": "/cities/ro/mavrodin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673636",
          "name": "Medgidia",
          "country_code": "RO",
          "slug": "medgidia",
          "canonical_path": "/cities/ro/medgidia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673632",
          "name": "Medieşu Aurit",
          "country_code": "RO",
          "slug": "mediesu-aurit",
          "canonical_path": "/cities/ro/mediesu-aurit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673586",
          "name": "Merei",
          "country_code": "RO",
          "slug": "merei",
          "canonical_path": "/cities/ro/merei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673440",
          "name": "Miercurea Nirajului",
          "country_code": "RO",
          "slug": "miercurea-nirajului",
          "canonical_path": "/cities/ro/miercurea-nirajului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673441",
          "name": "Miercurea-Ciuc",
          "country_code": "RO",
          "slug": "miercurea-ciuc",
          "canonical_path": "/cities/ro/miercurea-ciuc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673416",
          "name": "Mihăeşti",
          "country_code": "RO",
          "slug": "mihaesti",
          "canonical_path": "/cities/ro/mihaesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673417",
          "name": "Mihăeşti",
          "country_code": "RO",
          "slug": "mihaesti-39-171325",
          "canonical_path": "/cities/ro/mihaesti-39-171325/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673365",
          "name": "Mihai Viteazu",
          "country_code": "RO",
          "slug": "mihai-viteazu",
          "canonical_path": "/cities/ro/mihai-viteazu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673381",
          "name": "Mihail Kogălniceanu",
          "country_code": "RO",
          "slug": "mihail-kogalniceanu-22-93995",
          "canonical_path": "/cities/ro/mihail-kogalniceanu-22-93995/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673382",
          "name": "Mihail Kogălniceanu",
          "country_code": "RO",
          "slug": "mihail-kogalniceanu",
          "canonical_path": "/cities/ro/mihail-kogalniceanu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673392",
          "name": "Mihăileni",
          "country_code": "RO",
          "slug": "mihaileni",
          "canonical_path": "/cities/ro/mihaileni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673316",
          "name": "Milcovul",
          "country_code": "RO",
          "slug": "milcovul",
          "canonical_path": "/cities/ro/milcovul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673305",
          "name": "Milişăuţi",
          "country_code": "RO",
          "slug": "milisauti",
          "canonical_path": "/cities/ro/milisauti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:7733099",
          "name": "Mioveni",
          "country_code": "RO",
          "slug": "mioveni",
          "canonical_path": "/cities/ro/mioveni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673154",
          "name": "Mircea Vodă",
          "country_code": "RO",
          "slug": "mircea-voda",
          "canonical_path": "/cities/ro/mircea-voda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673140",
          "name": "Mirceşti",
          "country_code": "RO",
          "slug": "mircesti",
          "canonical_path": "/cities/ro/mircesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673123",
          "name": "Mireşu Mare",
          "country_code": "RO",
          "slug": "miresu-mare",
          "canonical_path": "/cities/ro/miresu-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673098",
          "name": "Miroslava",
          "country_code": "RO",
          "slug": "miroslava",
          "canonical_path": "/cities/ro/miroslava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:673033",
          "name": "Mizil",
          "country_code": "RO",
          "slug": "mizil",
          "canonical_path": "/cities/ro/mizil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672987",
          "name": "Moceşti",
          "country_code": "RO",
          "slug": "mocesti",
          "canonical_path": "/cities/ro/mocesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672977",
          "name": "Modelu",
          "country_code": "RO",
          "slug": "modelu",
          "canonical_path": "/cities/ro/modelu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672937",
          "name": "Mogoşoaia",
          "country_code": "RO",
          "slug": "mogosoaia",
          "canonical_path": "/cities/ro/mogosoaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672926",
          "name": "Moineşti",
          "country_code": "RO",
          "slug": "moinesti",
          "canonical_path": "/cities/ro/moinesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672922",
          "name": "Moisei",
          "country_code": "RO",
          "slug": "moisei",
          "canonical_path": "/cities/ro/moisei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672912",
          "name": "Moldova Nouă",
          "country_code": "RO",
          "slug": "moldova-noua",
          "canonical_path": "/cities/ro/moldova-noua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672862",
          "name": "Moreni",
          "country_code": "RO",
          "slug": "moreni",
          "canonical_path": "/cities/ro/moreni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672847",
          "name": "Moroeni",
          "country_code": "RO",
          "slug": "moroeni",
          "canonical_path": "/cities/ro/moroeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672784",
          "name": "Moţăţei",
          "country_code": "RO",
          "slug": "motatei",
          "canonical_path": "/cities/ro/motatei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672781",
          "name": "Moţca",
          "country_code": "RO",
          "slug": "motca",
          "canonical_path": "/cities/ro/motca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672757",
          "name": "Motru",
          "country_code": "RO",
          "slug": "motru",
          "canonical_path": "/cities/ro/motru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672700",
          "name": "Mugeni",
          "country_code": "RO",
          "slug": "mugeni",
          "canonical_path": "/cities/ro/mugeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672660",
          "name": "Munteni",
          "country_code": "RO",
          "slug": "munteni",
          "canonical_path": "/cities/ro/munteni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672620",
          "name": "Murfatlar",
          "country_code": "RO",
          "slug": "murfatlar",
          "canonical_path": "/cities/ro/murfatlar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672615",
          "name": "Murgeni",
          "country_code": "RO",
          "slug": "murgeni",
          "canonical_path": "/cities/ro/murgeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672546",
          "name": "Nădlac",
          "country_code": "RO",
          "slug": "nadlac",
          "canonical_path": "/cities/ro/nadlac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672497",
          "name": "Năsăud",
          "country_code": "RO",
          "slug": "nasaud",
          "canonical_path": "/cities/ro/nasaud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672486",
          "name": "Năvodari",
          "country_code": "RO",
          "slug": "navodari",
          "canonical_path": "/cities/ro/navodari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672375",
          "name": "Negreşti",
          "country_code": "RO",
          "slug": "negresti",
          "canonical_path": "/cities/ro/negresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672365",
          "name": "Negreşti-Oaş",
          "country_code": "RO",
          "slug": "negresti-oas",
          "canonical_path": "/cities/ro/negresti-oas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672343",
          "name": "Negru Vodă",
          "country_code": "RO",
          "slug": "negru-voda",
          "canonical_path": "/cities/ro/negru-voda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672331",
          "name": "Nehoiu",
          "country_code": "RO",
          "slug": "nehoiu",
          "canonical_path": "/cities/ro/nehoiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672275",
          "name": "Nicolae Bălcescu",
          "country_code": "RO",
          "slug": "nicolae-balcescu",
          "canonical_path": "/cities/ro/nicolae-balcescu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672246",
          "name": "Nicoreşti",
          "country_code": "RO",
          "slug": "nicoresti",
          "canonical_path": "/cities/ro/nicoresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672216",
          "name": "Nimigea de Sus",
          "country_code": "RO",
          "slug": "nimigea-de-sus",
          "canonical_path": "/cities/ro/nimigea-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672156",
          "name": "Novaci",
          "country_code": "RO",
          "slug": "novaci",
          "canonical_path": "/cities/ro/novaci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672123",
          "name": "Nuşfalău",
          "country_code": "RO",
          "slug": "nusfalau",
          "canonical_path": "/cities/ro/nusfalau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:672024",
          "name": "Ocna Mureş",
          "country_code": "RO",
          "slug": "ocna-mures",
          "canonical_path": "/cities/ro/ocna-mures/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671974",
          "name": "Odobeşti",
          "country_code": "RO",
          "slug": "odobesti-40-175019",
          "canonical_path": "/cities/ro/odobesti-40-175019/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671975",
          "name": "Odobeşti",
          "country_code": "RO",
          "slug": "odobesti",
          "canonical_path": "/cities/ro/odobesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671964",
          "name": "Odorheiu Secuiesc",
          "country_code": "RO",
          "slug": "odorheiu-secuiesc",
          "canonical_path": "/cities/ro/odorheiu-secuiesc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671896",
          "name": "Oituz",
          "country_code": "RO",
          "slug": "oituz",
          "canonical_path": "/cities/ro/oituz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671832",
          "name": "Olteniţa",
          "country_code": "RO",
          "slug": "oltenita",
          "canonical_path": "/cities/ro/oltenita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671757",
          "name": "Orăştie",
          "country_code": "RO",
          "slug": "orastie",
          "canonical_path": "/cities/ro/orastie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671751",
          "name": "Oraşu Nou",
          "country_code": "RO",
          "slug": "orasu-nou",
          "canonical_path": "/cities/ro/orasu-nou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671746",
          "name": "Oraviţa",
          "country_code": "RO",
          "slug": "oravita",
          "canonical_path": "/cities/ro/oravita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671738",
          "name": "Orbeasca de Sus",
          "country_code": "RO",
          "slug": "orbeasca-de-sus",
          "canonical_path": "/cities/ro/orbeasca-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671681",
          "name": "Orşova",
          "country_code": "RO",
          "slug": "orsova",
          "canonical_path": "/cities/ro/orsova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671657",
          "name": "Osica de Sus",
          "country_code": "RO",
          "slug": "osica-de-sus",
          "canonical_path": "/cities/ro/osica-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671636",
          "name": "Ostrov",
          "country_code": "RO",
          "slug": "ostrov",
          "canonical_path": "/cities/ro/ostrov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671626",
          "name": "Ostroveni",
          "country_code": "RO",
          "slug": "ostroveni",
          "canonical_path": "/cities/ro/ostroveni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671603",
          "name": "Oţelu Roşu",
          "country_code": "RO",
          "slug": "otelu-rosu",
          "canonical_path": "/cities/ro/otelu-rosu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671590",
          "name": "Otopeni",
          "country_code": "RO",
          "slug": "otopeni",
          "canonical_path": "/cities/ro/otopeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671584",
          "name": "Ovidiu",
          "country_code": "RO",
          "slug": "ovidiu",
          "canonical_path": "/cities/ro/ovidiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671559",
          "name": "Padeş",
          "country_code": "RO",
          "slug": "pades",
          "canonical_path": "/cities/ro/pades/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671418",
          "name": "Păltinoasa",
          "country_code": "RO",
          "slug": "paltinoasa",
          "canonical_path": "/cities/ro/paltinoasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671398",
          "name": "Panciu",
          "country_code": "RO",
          "slug": "panciu",
          "canonical_path": "/cities/ro/panciu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670794",
          "name": "Pâncota",
          "country_code": "RO",
          "slug": "pancota",
          "canonical_path": "/cities/ro/pancota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671390",
          "name": "Pănet",
          "country_code": "RO",
          "slug": "panet",
          "canonical_path": "/cities/ro/panet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671382",
          "name": "Pantelimon",
          "country_code": "RO",
          "slug": "pantelimon",
          "canonical_path": "/cities/ro/pantelimon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670706",
          "name": "Pârjol",
          "country_code": "RO",
          "slug": "parjol",
          "canonical_path": "/cities/ro/parjol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670686",
          "name": "Pârscov",
          "country_code": "RO",
          "slug": "parscov",
          "canonical_path": "/cities/ro/parscov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:6945426",
          "name": "Paşcani",
          "country_code": "RO",
          "slug": "pascani",
          "canonical_path": "/cities/ro/pascani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671228",
          "name": "Păuleşti",
          "country_code": "RO",
          "slug": "paulesti",
          "canonical_path": "/cities/ro/paulesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671209",
          "name": "Păuneşti",
          "country_code": "RO",
          "slug": "paunesti",
          "canonical_path": "/cities/ro/paunesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671187",
          "name": "Pechea",
          "country_code": "RO",
          "slug": "pechea",
          "canonical_path": "/cities/ro/pechea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668552",
          "name": "Pecica",
          "country_code": "RO",
          "slug": "pecica",
          "canonical_path": "/cities/ro/pecica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671145",
          "name": "Peretu",
          "country_code": "RO",
          "slug": "peretu",
          "canonical_path": "/cities/ro/peretu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671138",
          "name": "Periam",
          "country_code": "RO",
          "slug": "periam",
          "canonical_path": "/cities/ro/periam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671132",
          "name": "Perieni",
          "country_code": "RO",
          "slug": "perieni",
          "canonical_path": "/cities/ro/perieni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671118",
          "name": "Periş",
          "country_code": "RO",
          "slug": "peris",
          "canonical_path": "/cities/ro/peris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671110",
          "name": "Perişoru",
          "country_code": "RO",
          "slug": "perisoru",
          "canonical_path": "/cities/ro/perisoru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:671003",
          "name": "Petreşti",
          "country_code": "RO",
          "slug": "petresti",
          "canonical_path": "/cities/ro/petresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670981",
          "name": "Petricani",
          "country_code": "RO",
          "slug": "petricani",
          "canonical_path": "/cities/ro/petricani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670969",
          "name": "Petrila",
          "country_code": "RO",
          "slug": "petrila",
          "canonical_path": "/cities/ro/petrila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670938",
          "name": "Petroşani",
          "country_code": "RO",
          "slug": "petrosani",
          "canonical_path": "/cities/ro/petrosani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670888",
          "name": "Piatra Olt",
          "country_code": "RO",
          "slug": "piatra-olt",
          "canonical_path": "/cities/ro/piatra-olt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670884",
          "name": "Piatra Şoimului",
          "country_code": "RO",
          "slug": "piatra-soimului",
          "canonical_path": "/cities/ro/piatra-soimului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670819",
          "name": "Pietroşani",
          "country_code": "RO",
          "slug": "pietrosani",
          "canonical_path": "/cities/ro/pietrosani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670777",
          "name": "Pipirig",
          "country_code": "RO",
          "slug": "pipirig",
          "canonical_path": "/cities/ro/pipirig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670649",
          "name": "Piscu",
          "country_code": "RO",
          "slug": "piscu",
          "canonical_path": "/cities/ro/piscu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670623",
          "name": "Piscu Vechi",
          "country_code": "RO",
          "slug": "piscu-vechi",
          "canonical_path": "/cities/ro/piscu-vechi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670528",
          "name": "Pleniţa",
          "country_code": "RO",
          "slug": "plenita",
          "canonical_path": "/cities/ro/plenita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670467",
          "name": "Plopeni",
          "country_code": "RO",
          "slug": "plopeni",
          "canonical_path": "/cities/ro/plopeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670432",
          "name": "Plopşoru",
          "country_code": "RO",
          "slug": "plopsoru",
          "canonical_path": "/cities/ro/plopsoru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670409",
          "name": "Plosca",
          "country_code": "RO",
          "slug": "plosca",
          "canonical_path": "/cities/ro/plosca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670353",
          "name": "Podari",
          "country_code": "RO",
          "slug": "podari",
          "canonical_path": "/cities/ro/podari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670319",
          "name": "Podoleni",
          "country_code": "RO",
          "slug": "podoleni",
          "canonical_path": "/cities/ro/podoleni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670297",
          "name": "Podu Iloaiei",
          "country_code": "RO",
          "slug": "podu-iloaiei",
          "canonical_path": "/cities/ro/podu-iloaiei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670257",
          "name": "Podu Turcului",
          "country_code": "RO",
          "slug": "podu-turcului",
          "canonical_path": "/cities/ro/podu-turcului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670274",
          "name": "Poduri",
          "country_code": "RO",
          "slug": "poduri",
          "canonical_path": "/cities/ro/poduri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670167",
          "name": "Pogoanele",
          "country_code": "RO",
          "slug": "pogoanele",
          "canonical_path": "/cities/ro/pogoanele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670098",
          "name": "Poiana Câmpina",
          "country_code": "RO",
          "slug": "poiana-campina",
          "canonical_path": "/cities/ro/poiana-campina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670075",
          "name": "Poiana Lacului",
          "country_code": "RO",
          "slug": "poiana-lacului",
          "canonical_path": "/cities/ro/poiana-lacului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670064",
          "name": "Poiana Mare",
          "country_code": "RO",
          "slug": "poiana-mare",
          "canonical_path": "/cities/ro/poiana-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:670021",
          "name": "Poiana Teiului",
          "country_code": "RO",
          "slug": "poiana-teiului",
          "canonical_path": "/cities/ro/poiana-teiului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669995",
          "name": "Poienile de sub Munte",
          "country_code": "RO",
          "slug": "poienile-de-sub-munte",
          "canonical_path": "/cities/ro/poienile-de-sub-munte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669882",
          "name": "Popeşti",
          "country_code": "RO",
          "slug": "popesti",
          "canonical_path": "/cities/ro/popesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669870",
          "name": "Popeşti-Leordeni",
          "country_code": "RO",
          "slug": "popesti-leordeni",
          "canonical_path": "/cities/ro/popesti-leordeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669847",
          "name": "Popricani",
          "country_code": "RO",
          "slug": "popricani",
          "canonical_path": "/cities/ro/popricani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669783",
          "name": "Poşta Câlnău",
          "country_code": "RO",
          "slug": "posta-calnau",
          "canonical_path": "/cities/ro/posta-calnau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669772",
          "name": "Potcoava",
          "country_code": "RO",
          "slug": "potcoava",
          "canonical_path": "/cities/ro/potcoava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669753",
          "name": "Potlogi",
          "country_code": "RO",
          "slug": "potlogi",
          "canonical_path": "/cities/ro/potlogi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669735",
          "name": "Praid",
          "country_code": "RO",
          "slug": "praid",
          "canonical_path": "/cities/ro/praid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669704",
          "name": "Predeal",
          "country_code": "RO",
          "slug": "predeal",
          "canonical_path": "/cities/ro/predeal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669691",
          "name": "Prejmer",
          "country_code": "RO",
          "slug": "prejmer",
          "canonical_path": "/cities/ro/prejmer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669665",
          "name": "Preuteşti",
          "country_code": "RO",
          "slug": "preutesti",
          "canonical_path": "/cities/ro/preutesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669522",
          "name": "Puchenii Mari",
          "country_code": "RO",
          "slug": "puchenii-mari",
          "canonical_path": "/cities/ro/puchenii-mari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669517",
          "name": "Pucioasa",
          "country_code": "RO",
          "slug": "pucioasa",
          "canonical_path": "/cities/ro/pucioasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669499",
          "name": "Puieşti",
          "country_code": "RO",
          "slug": "puiesti",
          "canonical_path": "/cities/ro/puiesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669408",
          "name": "Răcăciuni",
          "country_code": "RO",
          "slug": "racaciuni",
          "canonical_path": "/cities/ro/racaciuni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669405",
          "name": "Răcari",
          "country_code": "RO",
          "slug": "racari",
          "canonical_path": "/cities/ro/racari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669364",
          "name": "Răchitoasa",
          "country_code": "RO",
          "slug": "rachitoasa",
          "canonical_path": "/cities/ro/rachitoasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669289",
          "name": "Rădăuți",
          "country_code": "RO",
          "slug": "radauti",
          "canonical_path": "/cities/ro/radauti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669244",
          "name": "Radovanu",
          "country_code": "RO",
          "slug": "radovanu",
          "canonical_path": "/cities/ro/radovanu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669241",
          "name": "Răducăneni",
          "country_code": "RO",
          "slug": "raducaneni",
          "canonical_path": "/cities/ro/raducaneni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668911",
          "name": "Râfov",
          "country_code": "RO",
          "slug": "rafov",
          "canonical_path": "/cities/ro/rafov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668873",
          "name": "Râmnicu Sărat",
          "country_code": "RO",
          "slug": "ramnicu-sarat",
          "canonical_path": "/cities/ro/ramnicu-sarat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669156",
          "name": "Răşinari",
          "country_code": "RO",
          "slug": "rasinari",
          "canonical_path": "/cities/ro/rasinari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668828",
          "name": "Râşnov",
          "country_code": "RO",
          "slug": "rasnov",
          "canonical_path": "/cities/ro/rasnov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669102",
          "name": "Răuceşti",
          "country_code": "RO",
          "slug": "raucesti",
          "canonical_path": "/cities/ro/raucesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669072",
          "name": "Răzvad",
          "country_code": "RO",
          "slug": "razvad",
          "canonical_path": "/cities/ro/razvad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669058",
          "name": "Recaş",
          "country_code": "RO",
          "slug": "recas",
          "canonical_path": "/cities/ro/recas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669043",
          "name": "Recea",
          "country_code": "RO",
          "slug": "recea",
          "canonical_path": "/cities/ro/recea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669013",
          "name": "Rediu",
          "country_code": "RO",
          "slug": "rediu",
          "canonical_path": "/cities/ro/rediu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:669018",
          "name": "Rediu",
          "country_code": "RO",
          "slug": "rediu-28-124028",
          "canonical_path": "/cities/ro/rediu-28-124028/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668986",
          "name": "Remetea",
          "country_code": "RO",
          "slug": "remetea",
          "canonical_path": "/cities/ro/remetea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668799",
          "name": "Roata de Jos",
          "country_code": "RO",
          "slug": "roata-de-jos",
          "canonical_path": "/cities/ro/roata-de-jos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668772",
          "name": "Rodna",
          "country_code": "RO",
          "slug": "rodna",
          "canonical_path": "/cities/ro/rodna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668660",
          "name": "Roseţi",
          "country_code": "RO",
          "slug": "roseti",
          "canonical_path": "/cities/ro/roseti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668605",
          "name": "Roșiorii de Vede",
          "country_code": "RO",
          "slug": "rosiorii-de-vede",
          "canonical_path": "/cities/ro/rosiorii-de-vede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668555",
          "name": "Rovinari",
          "country_code": "RO",
          "slug": "rovinari",
          "canonical_path": "/cities/ro/rovinari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668548",
          "name": "Rozavlea",
          "country_code": "RO",
          "slug": "rozavlea",
          "canonical_path": "/cities/ro/rozavlea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668546",
          "name": "Roznov",
          "country_code": "RO",
          "slug": "roznov",
          "canonical_path": "/cities/ro/roznov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668542",
          "name": "Rucăr",
          "country_code": "RO",
          "slug": "rucar",
          "canonical_path": "/cities/ro/rucar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668488",
          "name": "Ruginoasa",
          "country_code": "RO",
          "slug": "ruginoasa",
          "canonical_path": "/cities/ro/ruginoasa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668467",
          "name": "Runcu",
          "country_code": "RO",
          "slug": "runcu",
          "canonical_path": "/cities/ro/runcu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668442",
          "name": "Rupea",
          "country_code": "RO",
          "slug": "rupea",
          "canonical_path": "/cities/ro/rupea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668411",
          "name": "Ruscova",
          "country_code": "RO",
          "slug": "ruscova",
          "canonical_path": "/cities/ro/ruscova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668365",
          "name": "Săbăoani",
          "country_code": "RO",
          "slug": "sabaoani",
          "canonical_path": "/cities/ro/sabaoani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668342",
          "name": "Săcălaz",
          "country_code": "RO",
          "slug": "sacalaz",
          "canonical_path": "/cities/ro/sacalaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668314",
          "name": "Săcele",
          "country_code": "RO",
          "slug": "sacele",
          "canonical_path": "/cities/ro/sacele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668297",
          "name": "Săcueni",
          "country_code": "RO",
          "slug": "sacueni",
          "canonical_path": "/cities/ro/sacueni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668287",
          "name": "Sadova",
          "country_code": "RO",
          "slug": "sadova",
          "canonical_path": "/cities/ro/sadova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668266",
          "name": "Săgeata",
          "country_code": "RO",
          "slug": "sageata",
          "canonical_path": "/cities/ro/sageata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668263",
          "name": "Sagna",
          "country_code": "RO",
          "slug": "sagna",
          "canonical_path": "/cities/ro/sagna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668219",
          "name": "Salcea",
          "country_code": "RO",
          "slug": "salcea",
          "canonical_path": "/cities/ro/salcea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668153",
          "name": "Sălişte",
          "country_code": "RO",
          "slug": "saliste",
          "canonical_path": "/cities/ro/saliste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668142",
          "name": "Săliştea de Sus",
          "country_code": "RO",
          "slug": "salistea-de-sus",
          "canonical_path": "/cities/ro/salistea-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668129",
          "name": "Salonta",
          "country_code": "RO",
          "slug": "salonta",
          "canonical_path": "/cities/ro/salonta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667089",
          "name": "Sânandrei",
          "country_code": "RO",
          "slug": "sanandrei",
          "canonical_path": "/cities/ro/sanandrei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667069",
          "name": "Sâncrăieni",
          "country_code": "RO",
          "slug": "sancraieni",
          "canonical_path": "/cities/ro/sancraieni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667059",
          "name": "Sâncraiu de Mureş",
          "country_code": "RO",
          "slug": "sancraiu-de-mures",
          "canonical_path": "/cities/ro/sancraiu-de-mures/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667055",
          "name": "Sândominic",
          "country_code": "RO",
          "slug": "sandominic",
          "canonical_path": "/cities/ro/sandominic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667034",
          "name": "Sângeorgiu de Mureş",
          "country_code": "RO",
          "slug": "sangeorgiu-de-mures",
          "canonical_path": "/cities/ro/sangeorgiu-de-mures/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667023",
          "name": "Sângeru",
          "country_code": "RO",
          "slug": "sangeru",
          "canonical_path": "/cities/ro/sangeru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:668096",
          "name": "Sanislău",
          "country_code": "RO",
          "slug": "sanislau",
          "canonical_path": "/cities/ro/sanislau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666973",
          "name": "Sânnicolau Mare",
          "country_code": "RO",
          "slug": "sannicolau-mare",
          "canonical_path": "/cities/ro/sannicolau-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666958",
          "name": "Sânpetru",
          "country_code": "RO",
          "slug": "sanpetru",
          "canonical_path": "/cities/ro/sanpetru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666950",
          "name": "Sânpetru Mare",
          "country_code": "RO",
          "slug": "sanpetru-mare",
          "canonical_path": "/cities/ro/sanpetru-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666936",
          "name": "Sântana",
          "country_code": "RO",
          "slug": "santana",
          "canonical_path": "/cities/ro/santana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667991",
          "name": "Sarichioi",
          "country_code": "RO",
          "slug": "sarichioi",
          "canonical_path": "/cities/ro/sarichioi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667970",
          "name": "Şărmăşag",
          "country_code": "RO",
          "slug": "sarmasag",
          "canonical_path": "/cities/ro/sarmasag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667966",
          "name": "Sărmaşu",
          "country_code": "RO",
          "slug": "sarmasu",
          "canonical_path": "/cities/ro/sarmasu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667919",
          "name": "Săsciori",
          "country_code": "RO",
          "slug": "sasciori",
          "canonical_path": "/cities/ro/sasciori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667917",
          "name": "Sascut",
          "country_code": "RO",
          "slug": "sascut",
          "canonical_path": "/cities/ro/sascut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667882",
          "name": "Satulung",
          "country_code": "RO",
          "slug": "satulung",
          "canonical_path": "/cities/ro/satulung/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667757",
          "name": "Săveni",
          "country_code": "RO",
          "slug": "saveni",
          "canonical_path": "/cities/ro/saveni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667759",
          "name": "Săveni",
          "country_code": "RO",
          "slug": "saveni-22-94376",
          "canonical_path": "/cities/ro/saveni-22-94376/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667751",
          "name": "Săvineşti",
          "country_code": "RO",
          "slug": "savinesti",
          "canonical_path": "/cities/ro/savinesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667706",
          "name": "Scheia",
          "country_code": "RO",
          "slug": "scheia",
          "canonical_path": "/cities/ro/scheia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667606",
          "name": "Scobinţi",
          "country_code": "RO",
          "slug": "scobinti",
          "canonical_path": "/cities/ro/scobinti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667593",
          "name": "Scorniceşti",
          "country_code": "RO",
          "slug": "scornicesti",
          "canonical_path": "/cities/ro/scornicesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667586",
          "name": "Scorţeni",
          "country_code": "RO",
          "slug": "scorteni",
          "canonical_path": "/cities/ro/scorteni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667526",
          "name": "Sebeş",
          "country_code": "RO",
          "slug": "sebes",
          "canonical_path": "/cities/ro/sebes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667515",
          "name": "Sebiş",
          "country_code": "RO",
          "slug": "sebis",
          "canonical_path": "/cities/ro/sebis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667458",
          "name": "Secusigiu",
          "country_code": "RO",
          "slug": "secusigiu",
          "canonical_path": "/cities/ro/secusigiu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667453",
          "name": "Segarcea",
          "country_code": "RO",
          "slug": "segarcea",
          "canonical_path": "/cities/ro/segarcea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667437",
          "name": "Seini",
          "country_code": "RO",
          "slug": "seini",
          "canonical_path": "/cities/ro/seini/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667243",
          "name": "Siculeni",
          "country_code": "RO",
          "slug": "siculeni",
          "canonical_path": "/cities/ro/siculeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667227",
          "name": "Sighetu Marmaţiei",
          "country_code": "RO",
          "slug": "sighetu-marmatiei",
          "canonical_path": "/cities/ro/sighetu-marmatiei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:8436351",
          "name": "Sighișoara",
          "country_code": "RO",
          "slug": "sighisoara",
          "canonical_path": "/cities/ro/sighisoara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667216",
          "name": "Sihlea",
          "country_code": "RO",
          "slug": "sihlea",
          "canonical_path": "/cities/ro/sihlea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667121",
          "name": "Simeria",
          "country_code": "RO",
          "slug": "simeria",
          "canonical_path": "/cities/ro/simeria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667119",
          "name": "Şimian",
          "country_code": "RO",
          "slug": "simian",
          "canonical_path": "/cities/ro/simian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667101",
          "name": "Şimleu Silvaniei",
          "country_code": "RO",
          "slug": "simleu-silvaniei",
          "canonical_path": "/cities/ro/simleu-silvaniei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667091",
          "name": "Sinaia",
          "country_code": "RO",
          "slug": "sinaia",
          "canonical_path": "/cities/ro/sinaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666877",
          "name": "Şipote",
          "country_code": "RO",
          "slug": "sipote",
          "canonical_path": "/cities/ro/sipote/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666830",
          "name": "Siret",
          "country_code": "RO",
          "slug": "siret",
          "canonical_path": "/cities/ro/siret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666821",
          "name": "Şiria",
          "country_code": "RO",
          "slug": "siria",
          "canonical_path": "/cities/ro/siria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666809",
          "name": "Şirna",
          "country_code": "RO",
          "slug": "sirna",
          "canonical_path": "/cities/ro/sirna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666775",
          "name": "Slănic",
          "country_code": "RO",
          "slug": "slanic",
          "canonical_path": "/cities/ro/slanic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666676",
          "name": "Slobozia Bradului",
          "country_code": "RO",
          "slug": "slobozia-bradului",
          "canonical_path": "/cities/ro/slobozia-bradului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666641",
          "name": "Smeeni",
          "country_code": "RO",
          "slug": "smeeni",
          "canonical_path": "/cities/ro/smeeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666611",
          "name": "Snagov",
          "country_code": "RO",
          "slug": "snagov",
          "canonical_path": "/cities/ro/snagov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666475",
          "name": "Şomcuta Mare",
          "country_code": "RO",
          "slug": "somcuta-mare",
          "canonical_path": "/cities/ro/somcuta-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666395",
          "name": "Sovata",
          "country_code": "RO",
          "slug": "sovata",
          "canonical_path": "/cities/ro/sovata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666149",
          "name": "Stâlpeni",
          "country_code": "RO",
          "slug": "stalpeni",
          "canonical_path": "/cities/ro/stalpeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666287",
          "name": "Stănileşti",
          "country_code": "RO",
          "slug": "stanilesti",
          "canonical_path": "/cities/ro/stanilesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666271",
          "name": "Starchiojd",
          "country_code": "RO",
          "slug": "starchiojd",
          "canonical_path": "/cities/ro/starchiojd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666235",
          "name": "Ştefăneşti",
          "country_code": "RO",
          "slug": "stefanesti",
          "canonical_path": "/cities/ro/stefanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666217",
          "name": "Ştefăneşti-Sat",
          "country_code": "RO",
          "slug": "stefanesti-sat",
          "canonical_path": "/cities/ro/stefanesti-sat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:679177",
          "name": "Ștei",
          "country_code": "RO",
          "slug": "stei",
          "canonical_path": "/cities/ro/stei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666037",
          "name": "Stolniceni-Prăjescu",
          "country_code": "RO",
          "slug": "stolniceni-prajescu",
          "canonical_path": "/cities/ro/stolniceni-prajescu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666031",
          "name": "Storeşti",
          "country_code": "RO",
          "slug": "storesti",
          "canonical_path": "/cities/ro/storesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:666012",
          "name": "Straja",
          "country_code": "RO",
          "slug": "straja",
          "canonical_path": "/cities/ro/straja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665997",
          "name": "Strehaia",
          "country_code": "RO",
          "slug": "strehaia",
          "canonical_path": "/cities/ro/strehaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665899",
          "name": "Stulpicani",
          "country_code": "RO",
          "slug": "stulpicani",
          "canonical_path": "/cities/ro/stulpicani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665839",
          "name": "Suciu de Sus",
          "country_code": "RO",
          "slug": "suciu-de-sus",
          "canonical_path": "/cities/ro/suciu-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665809",
          "name": "Suharău",
          "country_code": "RO",
          "slug": "suharau",
          "canonical_path": "/cities/ro/suharau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665754",
          "name": "Suraia",
          "country_code": "RO",
          "slug": "suraia",
          "canonical_path": "/cities/ro/suraia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665691",
          "name": "Suseni",
          "country_code": "RO",
          "slug": "suseni",
          "canonical_path": "/cities/ro/suseni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665606",
          "name": "Tălmaciu",
          "country_code": "RO",
          "slug": "talmaciu",
          "canonical_path": "/cities/ro/talmaciu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665568",
          "name": "Tămăşeni",
          "country_code": "RO",
          "slug": "tamaseni",
          "canonical_path": "/cities/ro/tamaseni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665556",
          "name": "Tamaşi",
          "country_code": "RO",
          "slug": "tamasi",
          "canonical_path": "/cities/ro/tamasi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665550",
          "name": "Tanacu",
          "country_code": "RO",
          "slug": "tanacu",
          "canonical_path": "/cities/ro/tanacu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665540",
          "name": "Ţăndărei",
          "country_code": "RO",
          "slug": "tandarei",
          "canonical_path": "/cities/ro/tandarei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665019",
          "name": "Târgşoru Vechi",
          "country_code": "RO",
          "slug": "targsoru-vechi",
          "canonical_path": "/cities/ro/targsoru-vechi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665017",
          "name": "Târgu Cărbuneşti",
          "country_code": "RO",
          "slug": "targu-carbunesti",
          "canonical_path": "/cities/ro/targu-carbunesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665013",
          "name": "Târgu Frumos",
          "country_code": "RO",
          "slug": "targu-frumos",
          "canonical_path": "/cities/ro/targu-frumos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665003",
          "name": "Târgu Neamţ",
          "country_code": "RO",
          "slug": "targu-neamt",
          "canonical_path": "/cities/ro/targu-neamt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665002",
          "name": "Târgu Ocna",
          "country_code": "RO",
          "slug": "targu-ocna",
          "canonical_path": "/cities/ro/targu-ocna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665000",
          "name": "Târgu Secuiesc",
          "country_code": "RO",
          "slug": "targu-secuiesc",
          "canonical_path": "/cities/ro/targu-secuiesc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664991",
          "name": "Târgu Trotuş",
          "country_code": "RO",
          "slug": "targu-trotus",
          "canonical_path": "/cities/ro/targu-trotus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665497",
          "name": "Tărlungeni",
          "country_code": "RO",
          "slug": "tarlungeni",
          "canonical_path": "/cities/ro/tarlungeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664963",
          "name": "Târnăveni",
          "country_code": "RO",
          "slug": "tarnaveni",
          "canonical_path": "/cities/ro/tarnaveni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664957",
          "name": "Târnova",
          "country_code": "RO",
          "slug": "tarnova",
          "canonical_path": "/cities/ro/tarnova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665479",
          "name": "Tărtăşeşti",
          "country_code": "RO",
          "slug": "tartasesti",
          "canonical_path": "/cities/ro/tartasesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665469",
          "name": "Tăşnad",
          "country_code": "RO",
          "slug": "tasnad",
          "canonical_path": "/cities/ro/tasnad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665459",
          "name": "Tătărani",
          "country_code": "RO",
          "slug": "tatarani",
          "canonical_path": "/cities/ro/tatarani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665425",
          "name": "Tătăruşi",
          "country_code": "RO",
          "slug": "tatarusi",
          "canonical_path": "/cities/ro/tatarusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665371",
          "name": "Teaca",
          "country_code": "RO",
          "slug": "teaca",
          "canonical_path": "/cities/ro/teaca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665359",
          "name": "Techirghiol",
          "country_code": "RO",
          "slug": "techirghiol",
          "canonical_path": "/cities/ro/techirghiol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665355",
          "name": "Tecuci",
          "country_code": "RO",
          "slug": "tecuci",
          "canonical_path": "/cities/ro/tecuci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665318",
          "name": "Teiuş",
          "country_code": "RO",
          "slug": "teius",
          "canonical_path": "/cities/ro/teius/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665304",
          "name": "Telciu",
          "country_code": "RO",
          "slug": "telciu",
          "canonical_path": "/cities/ro/telciu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665290",
          "name": "Telega",
          "country_code": "RO",
          "slug": "telega",
          "canonical_path": "/cities/ro/telega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665196",
          "name": "Ţibana",
          "country_code": "RO",
          "slug": "tibana",
          "canonical_path": "/cities/ro/tibana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665193",
          "name": "Ţibăneşti",
          "country_code": "RO",
          "slug": "tibanesti",
          "canonical_path": "/cities/ro/tibanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665168",
          "name": "Ţicleni",
          "country_code": "RO",
          "slug": "ticleni",
          "canonical_path": "/cities/ro/ticleni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665151",
          "name": "Ţifeşti",
          "country_code": "RO",
          "slug": "tifesti",
          "canonical_path": "/cities/ro/tifesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665140",
          "name": "Ţigăneşti",
          "country_code": "RO",
          "slug": "tiganesti",
          "canonical_path": "/cities/ro/tiganesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:665104",
          "name": "Tileagd",
          "country_code": "RO",
          "slug": "tileagd",
          "canonical_path": "/cities/ro/tileagd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664910",
          "name": "Tismana",
          "country_code": "RO",
          "slug": "tismana",
          "canonical_path": "/cities/ro/tismana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664891",
          "name": "Titu",
          "country_code": "RO",
          "slug": "titu",
          "canonical_path": "/cities/ro/titu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664858",
          "name": "Todireşti",
          "country_code": "RO",
          "slug": "todiresti-34-150524",
          "canonical_path": "/cities/ro/todiresti-34-150524/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664859",
          "name": "Todireşti",
          "country_code": "RO",
          "slug": "todiresti",
          "canonical_path": "/cities/ro/todiresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664860",
          "name": "Todireşti",
          "country_code": "RO",
          "slug": "todiresti-38-166413",
          "canonical_path": "/cities/ro/todiresti-38-166413/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664819",
          "name": "Tomeşti",
          "country_code": "RO",
          "slug": "tomesti",
          "canonical_path": "/cities/ro/tomesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664750",
          "name": "Topliţa",
          "country_code": "RO",
          "slug": "toplita",
          "canonical_path": "/cities/ro/toplita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664729",
          "name": "Topoloveni",
          "country_code": "RO",
          "slug": "topoloveni",
          "canonical_path": "/cities/ro/topoloveni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664722",
          "name": "Topraisar",
          "country_code": "RO",
          "slug": "topraisar",
          "canonical_path": "/cities/ro/topraisar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664609",
          "name": "Trifeşti",
          "country_code": "RO",
          "slug": "trifesti",
          "canonical_path": "/cities/ro/trifesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664610",
          "name": "Trifeşti",
          "country_code": "RO",
          "slug": "trifesti-28-124723",
          "canonical_path": "/cities/ro/trifesti-28-124723/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664602",
          "name": "Tritenii de Jos",
          "country_code": "RO",
          "slug": "tritenii-de-jos",
          "canonical_path": "/cities/ro/tritenii-de-jos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664578",
          "name": "Truşeşti",
          "country_code": "RO",
          "slug": "trusesti",
          "canonical_path": "/cities/ro/trusesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664565",
          "name": "Tudor Vladimirescu",
          "country_code": "RO",
          "slug": "tudor-vladimirescu-18-77313",
          "canonical_path": "/cities/ro/tudor-vladimirescu-18-77313/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664566",
          "name": "Tudor Vladimirescu",
          "country_code": "RO",
          "slug": "tudor-vladimirescu",
          "canonical_path": "/cities/ro/tudor-vladimirescu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664575",
          "name": "Tudora",
          "country_code": "RO",
          "slug": "tudora",
          "canonical_path": "/cities/ro/tudora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664539",
          "name": "Tufeşti",
          "country_code": "RO",
          "slug": "tufesti",
          "canonical_path": "/cities/ro/tufesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664507",
          "name": "Tulnici",
          "country_code": "RO",
          "slug": "tulnici",
          "canonical_path": "/cities/ro/tulnici/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664505",
          "name": "Tuluceşti",
          "country_code": "RO",
          "slug": "tulucesti",
          "canonical_path": "/cities/ro/tulucesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664475",
          "name": "Turceni",
          "country_code": "RO",
          "slug": "turceni",
          "canonical_path": "/cities/ro/turceni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664460",
          "name": "Turda",
          "country_code": "RO",
          "slug": "turda",
          "canonical_path": "/cities/ro/turda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664437",
          "name": "Turnu Măgurele",
          "country_code": "RO",
          "slug": "turnu-magurele",
          "canonical_path": "/cities/ro/turnu-magurele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664432",
          "name": "Turţ",
          "country_code": "RO",
          "slug": "turt",
          "canonical_path": "/cities/ro/turt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664404",
          "name": "Tutova",
          "country_code": "RO",
          "slug": "tutova",
          "canonical_path": "/cities/ro/tutova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664397",
          "name": "Tuzla",
          "country_code": "RO",
          "slug": "tuzla",
          "canonical_path": "/cities/ro/tuzla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664372",
          "name": "Udeşti",
          "country_code": "RO",
          "slug": "udesti",
          "canonical_path": "/cities/ro/udesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664311",
          "name": "Ulmeni",
          "country_code": "RO",
          "slug": "ulmeni-25-109265",
          "canonical_path": "/cities/ro/ulmeni-25-109265/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664314",
          "name": "Ulmeni",
          "country_code": "RO",
          "slug": "ulmeni",
          "canonical_path": "/cities/ro/ulmeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664295",
          "name": "Ulmi",
          "country_code": "RO",
          "slug": "ulmi",
          "canonical_path": "/cities/ro/ulmi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664281",
          "name": "Umbrăreşti",
          "country_code": "RO",
          "slug": "umbraresti",
          "canonical_path": "/cities/ro/umbraresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664271",
          "name": "Ungheni",
          "country_code": "RO",
          "slug": "ungheni",
          "canonical_path": "/cities/ro/ungheni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664170",
          "name": "Urecheşti",
          "country_code": "RO",
          "slug": "urechesti",
          "canonical_path": "/cities/ro/urechesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664163",
          "name": "Uricani",
          "country_code": "RO",
          "slug": "uricani",
          "canonical_path": "/cities/ro/uricani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664150",
          "name": "Urlaţi",
          "country_code": "RO",
          "slug": "urlati",
          "canonical_path": "/cities/ro/urlati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664074",
          "name": "Urziceni",
          "country_code": "RO",
          "slug": "urziceni",
          "canonical_path": "/cities/ro/urziceni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664041",
          "name": "Văcăreşti",
          "country_code": "RO",
          "slug": "vacaresti",
          "canonical_path": "/cities/ro/vacaresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:664003",
          "name": "Vadu Moldovei",
          "country_code": "RO",
          "slug": "vadu-moldovei",
          "canonical_path": "/cities/ro/vadu-moldovei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663996",
          "name": "Vadu Paşii",
          "country_code": "RO",
          "slug": "vadu-pasii",
          "canonical_path": "/cities/ro/vadu-pasii/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663863",
          "name": "Valea Călugărească",
          "country_code": "RO",
          "slug": "valea-calugareasca",
          "canonical_path": "/cities/ro/valea-calugareasca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663692",
          "name": "Valea lui Mihai",
          "country_code": "RO",
          "slug": "valea-lui-mihai",
          "canonical_path": "/cities/ro/valea-lui-mihai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663575",
          "name": "Valea Moldovei",
          "country_code": "RO",
          "slug": "valea-moldovei",
          "canonical_path": "/cities/ro/valea-moldovei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663386",
          "name": "Valea Stanciului",
          "country_code": "RO",
          "slug": "valea-stanciului",
          "canonical_path": "/cities/ro/valea-stanciului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:667676",
          "name": "Văleni",
          "country_code": "RO",
          "slug": "valeni",
          "canonical_path": "/cities/ro/valeni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663256",
          "name": "Vălenii de Munte",
          "country_code": "RO",
          "slug": "valenii-de-munte",
          "canonical_path": "/cities/ro/valenii-de-munte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663234",
          "name": "Valu lui Traian",
          "country_code": "RO",
          "slug": "valu-lui-traian",
          "canonical_path": "/cities/ro/valu-lui-traian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663227",
          "name": "Vama",
          "country_code": "RO",
          "slug": "vama",
          "canonical_path": "/cities/ro/vama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662841",
          "name": "Vânători",
          "country_code": "RO",
          "slug": "vanatori",
          "canonical_path": "/cities/ro/vanatori/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662822",
          "name": "Vânători-Neamţ",
          "country_code": "RO",
          "slug": "vanatori-neamt",
          "canonical_path": "/cities/ro/vanatori-neamt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662805",
          "name": "Vânju-Mare",
          "country_code": "RO",
          "slug": "vanju-mare",
          "canonical_path": "/cities/ro/vanju-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663197",
          "name": "Vărăşti",
          "country_code": "RO",
          "slug": "varasti",
          "canonical_path": "/cities/ro/varasti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663178",
          "name": "Vărbilău",
          "country_code": "RO",
          "slug": "varbilau",
          "canonical_path": "/cities/ro/varbilau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663171",
          "name": "Variaş",
          "country_code": "RO",
          "slug": "varias",
          "canonical_path": "/cities/ro/varias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663128",
          "name": "Vasilaţi",
          "country_code": "RO",
          "slug": "vasilati",
          "canonical_path": "/cities/ro/vasilati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663100",
          "name": "Vatra Dornei",
          "country_code": "RO",
          "slug": "vatra-dornei",
          "canonical_path": "/cities/ro/vatra-dornei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663088",
          "name": "Vedea",
          "country_code": "RO",
          "slug": "vedea",
          "canonical_path": "/cities/ro/vedea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663045",
          "name": "Vereşti",
          "country_code": "RO",
          "slug": "veresti",
          "canonical_path": "/cities/ro/veresti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:663035",
          "name": "Verneşti",
          "country_code": "RO",
          "slug": "vernesti",
          "canonical_path": "/cities/ro/vernesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662994",
          "name": "Vicovu de Jos",
          "country_code": "RO",
          "slug": "vicovu-de-jos",
          "canonical_path": "/cities/ro/vicovu-de-jos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662992",
          "name": "Vicovu de Sus",
          "country_code": "RO",
          "slug": "vicovu-de-sus",
          "canonical_path": "/cities/ro/vicovu-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662986",
          "name": "Victoria",
          "country_code": "RO",
          "slug": "victoria",
          "canonical_path": "/cities/ro/victoria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662976",
          "name": "Videle",
          "country_code": "RO",
          "slug": "videle",
          "canonical_path": "/cities/ro/videle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662970",
          "name": "Vidra",
          "country_code": "RO",
          "slug": "vidra-40-178377",
          "canonical_path": "/cities/ro/vidra-40-178377/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662971",
          "name": "Vidra",
          "country_code": "RO",
          "slug": "vidra",
          "canonical_path": "/cities/ro/vidra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662918",
          "name": "Viişoara",
          "country_code": "RO",
          "slug": "viisoara-28-123601",
          "canonical_path": "/cities/ro/viisoara-28-123601/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662920",
          "name": "Viişoara",
          "country_code": "RO",
          "slug": "viisoara",
          "canonical_path": "/cities/ro/viisoara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662811",
          "name": "Vinga",
          "country_code": "RO",
          "slug": "vinga",
          "canonical_path": "/cities/ro/vinga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662702",
          "name": "Vişeu de Jos",
          "country_code": "RO",
          "slug": "viseu-de-jos",
          "canonical_path": "/cities/ro/viseu-de-jos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662699",
          "name": "Vişeu de Sus",
          "country_code": "RO",
          "slug": "viseu-de-sus",
          "canonical_path": "/cities/ro/viseu-de-sus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662695",
          "name": "Vişina",
          "country_code": "RO",
          "slug": "visina",
          "canonical_path": "/cities/ro/visina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662651",
          "name": "Viziru",
          "country_code": "RO",
          "slug": "viziru",
          "canonical_path": "/cities/ro/viziru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662600",
          "name": "Vladimirescu",
          "country_code": "RO",
          "slug": "vladimirescu",
          "canonical_path": "/cities/ro/vladimirescu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662570",
          "name": "Vlăhiţa",
          "country_code": "RO",
          "slug": "vlahita",
          "canonical_path": "/cities/ro/vlahita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662516",
          "name": "Voineşti",
          "country_code": "RO",
          "slug": "voinesti-23-100219",
          "canonical_path": "/cities/ro/voinesti-23-100219/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662521",
          "name": "Voineşti",
          "country_code": "RO",
          "slug": "voinesti",
          "canonical_path": "/cities/ro/voinesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662478",
          "name": "Volovăţ",
          "country_code": "RO",
          "slug": "volovat",
          "canonical_path": "/cities/ro/volovat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662476",
          "name": "Voluntari",
          "country_code": "RO",
          "slug": "voluntari",
          "canonical_path": "/cities/ro/voluntari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662463",
          "name": "Vorona Teodoru",
          "country_code": "RO",
          "slug": "vorona-teodoru",
          "canonical_path": "/cities/ro/vorona-teodoru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662431",
          "name": "Vulcan",
          "country_code": "RO",
          "slug": "vulcan",
          "canonical_path": "/cities/ro/vulcan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662432",
          "name": "Vulcan",
          "country_code": "RO",
          "slug": "vulcan-21-87175",
          "canonical_path": "/cities/ro/vulcan-21-87175/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662379",
          "name": "Vurpăr",
          "country_code": "RO",
          "slug": "vurpar",
          "canonical_path": "/cities/ro/vurpar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662352",
          "name": "Zagon",
          "country_code": "RO",
          "slug": "zagon",
          "canonical_path": "/cities/ro/zagon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662315",
          "name": "Zăneşti",
          "country_code": "RO",
          "slug": "zanesti",
          "canonical_path": "/cities/ro/zanesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662285",
          "name": "Zărneşti",
          "country_code": "RO",
          "slug": "zarnesti-11-50415",
          "canonical_path": "/cities/ro/zarnesti-11-50415/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662284",
          "name": "Zărnești",
          "country_code": "RO",
          "slug": "zarnesti",
          "canonical_path": "/cities/ro/zarnesti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662225",
          "name": "Zemeş",
          "country_code": "RO",
          "slug": "zemes",
          "canonical_path": "/cities/ro/zemes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662217",
          "name": "Zetea",
          "country_code": "RO",
          "slug": "zetea",
          "canonical_path": "/cities/ro/zetea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662187",
          "name": "Zimnicea",
          "country_code": "RO",
          "slug": "zimnicea",
          "canonical_path": "/cities/ro/zimnicea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662161",
          "name": "Zlatna",
          "country_code": "RO",
          "slug": "zlatna",
          "canonical_path": "/cities/ro/zlatna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662130",
          "name": "Zorleni",
          "country_code": "RO",
          "slug": "zorleni",
          "canonical_path": "/cities/ro/zorleni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ro:geonames:662118",
          "name": "Zvoriştea",
          "country_code": "RO",
          "slug": "zvoristea",
          "canonical_path": "/cities/ro/zvoristea/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "SK",
      "path": "cities/sk.json",
      "city_count": 144,
      "cities": [
        {
          "entity_id": "city:sk:geonames:3061188",
          "name": "Bánovce nad Bebravou",
          "country_code": "SK",
          "slug": "banovce-nad-bebravou",
          "canonical_path": "/cities/sk/banovce-nad-bebravou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3061186",
          "name": "Banská Bystrica",
          "country_code": "SK",
          "slug": "banska-bystrica",
          "canonical_path": "/cities/sk/banska-bystrica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3061184",
          "name": "Banská Štiavnica",
          "country_code": "SK",
          "slug": "banska-stiavnica",
          "canonical_path": "/cities/sk/banska-stiavnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:725168",
          "name": "Bardejov",
          "country_code": "SK",
          "slug": "bardejov",
          "canonical_path": "/cities/sk/bardejov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3061130",
          "name": "Beluša",
          "country_code": "SK",
          "slug": "belusa",
          "canonical_path": "/cities/sk/belusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3061107",
          "name": "Bernolákovo",
          "country_code": "SK",
          "slug": "bernolakovo",
          "canonical_path": "/cities/sk/bernolakovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3061015",
          "name": "Bojnice",
          "country_code": "SK",
          "slug": "bojnice",
          "canonical_path": "/cities/sk/bojnice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:wikidata:Q1780",
          "name": "Bratislava",
          "country_code": "SK",
          "slug": "bratislava",
          "canonical_path": "/cities/sk/bratislava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060950",
          "name": "Brezno",
          "country_code": "SK",
          "slug": "brezno",
          "canonical_path": "/cities/sk/brezno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060852",
          "name": "Bytča",
          "country_code": "SK",
          "slug": "bytca",
          "canonical_path": "/cities/sk/bytca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060835",
          "name": "Čadca",
          "country_code": "SK",
          "slug": "cadca",
          "canonical_path": "/cities/sk/cadca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:725017",
          "name": "Čaňa",
          "country_code": "SK",
          "slug": "cana",
          "canonical_path": "/cities/sk/cana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060715",
          "name": "Chorvátsky Grob",
          "country_code": "SK",
          "slug": "chorvatsky-grob",
          "canonical_path": "/cities/sk/chorvatsky-grob/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060291",
          "name": "Chorvátsky Grob - Čierna Voda",
          "country_code": "SK",
          "slug": "chorvatsky-grob-cierna-voda",
          "canonical_path": "/cities/sk/chorvatsky-grob-cierna-voda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060589",
          "name": "Detva",
          "country_code": "SK",
          "slug": "detva",
          "canonical_path": "/cities/sk/detva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3077170",
          "name": "Devínska Nová Ves",
          "country_code": "SK",
          "slug": "devinska-nova-ves",
          "canonical_path": "/cities/sk/devinska-nova-ves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724893",
          "name": "Dobšiná",
          "country_code": "SK",
          "slug": "dobsina",
          "canonical_path": "/cities/sk/dobsina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060405",
          "name": "Dolný Kubín",
          "country_code": "SK",
          "slug": "dolny-kubin",
          "canonical_path": "/cities/sk/dolny-kubin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060346",
          "name": "Dubnica nad Váhom",
          "country_code": "SK",
          "slug": "dubnica-nad-vahom",
          "canonical_path": "/cities/sk/dubnica-nad-vahom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060322",
          "name": "Dúbravka",
          "country_code": "SK",
          "slug": "dubravka",
          "canonical_path": "/cities/sk/dubravka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:8436244",
          "name": "Dunajská Lužná",
          "country_code": "SK",
          "slug": "dunajska-luzna",
          "canonical_path": "/cities/sk/dunajska-luzna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060308",
          "name": "Dunajská Streda",
          "country_code": "SK",
          "slug": "dunajska-streda",
          "canonical_path": "/cities/sk/dunajska-streda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060267",
          "name": "Dvory nad Žitavou",
          "country_code": "SK",
          "slug": "dvory-nad-zitavou",
          "canonical_path": "/cities/sk/dvory-nad-zitavou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060242",
          "name": "Fiľakovo",
          "country_code": "SK",
          "slug": "filakovo",
          "canonical_path": "/cities/sk/filakovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060224",
          "name": "Gabčíkovo",
          "country_code": "SK",
          "slug": "gabcikovo",
          "canonical_path": "/cities/sk/gabcikovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060219",
          "name": "Galanta",
          "country_code": "SK",
          "slug": "galanta",
          "canonical_path": "/cities/sk/galanta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724800",
          "name": "Gelnica",
          "country_code": "SK",
          "slug": "gelnica",
          "canonical_path": "/cities/sk/gelnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060139",
          "name": "Handlová",
          "country_code": "SK",
          "slug": "handlova",
          "canonical_path": "/cities/sk/handlova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060095",
          "name": "Hlohovec",
          "country_code": "SK",
          "slug": "hlohovec",
          "canonical_path": "/cities/sk/hlohovec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060089",
          "name": "Hnúšťa",
          "country_code": "SK",
          "slug": "hnusta",
          "canonical_path": "/cities/sk/hnusta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3060077",
          "name": "Holíč",
          "country_code": "SK",
          "slug": "holic",
          "canonical_path": "/cities/sk/holic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059870",
          "name": "Hriňová",
          "country_code": "SK",
          "slug": "hrinova",
          "canonical_path": "/cities/sk/hrinova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724627",
          "name": "Humenné",
          "country_code": "SK",
          "slug": "humenne",
          "canonical_path": "/cities/sk/humenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059821",
          "name": "Hurbanovo",
          "country_code": "SK",
          "slug": "hurbanovo",
          "canonical_path": "/cities/sk/hurbanovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059796",
          "name": "Ilava",
          "country_code": "SK",
          "slug": "ilava",
          "canonical_path": "/cities/sk/ilava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059767",
          "name": "Ivanka pri Dunaji",
          "country_code": "SK",
          "slug": "ivanka-pri-dunaji",
          "canonical_path": "/cities/sk/ivanka-pri-dunaji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724579",
          "name": "Jarovnice",
          "country_code": "SK",
          "slug": "jarovnice",
          "canonical_path": "/cities/sk/jarovnice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059564",
          "name": "Karlova Ves",
          "country_code": "SK",
          "slug": "karlova-ves",
          "canonical_path": "/cities/sk/karlova-ves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724503",
          "name": "Kežmarok",
          "country_code": "SK",
          "slug": "kezmarok",
          "canonical_path": "/cities/sk/kezmarok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059448",
          "name": "Kolárovo",
          "country_code": "SK",
          "slug": "kolarovo",
          "canonical_path": "/cities/sk/kolarovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059435",
          "name": "Komárno",
          "country_code": "SK",
          "slug": "komarno",
          "canonical_path": "/cities/sk/komarno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059436",
          "name": "Komárno",
          "country_code": "SK",
          "slug": "komarno-04-401",
          "canonical_path": "/cities/sk/komarno-04-401/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:municipality:599981",
          "name": "Košice",
          "country_code": "SK",
          "slug": "kosice",
          "canonical_path": "/cities/sk/kosice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724411",
          "name": "Kráľovský Chlmec",
          "country_code": "SK",
          "slug": "kralovsky-chlmec",
          "canonical_path": "/cities/sk/kralovsky-chlmec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059289",
          "name": "Krásno nad Kysucou",
          "country_code": "SK",
          "slug": "krasno-nad-kysucou",
          "canonical_path": "/cities/sk/krasno-nad-kysucou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724377",
          "name": "Krompachy",
          "country_code": "SK",
          "slug": "krompachy",
          "canonical_path": "/cities/sk/krompachy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059244",
          "name": "Krupina",
          "country_code": "SK",
          "slug": "krupina",
          "canonical_path": "/cities/sk/krupina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059179",
          "name": "Kysucké Nové Mesto",
          "country_code": "SK",
          "slug": "kysucke-nove-mesto",
          "canonical_path": "/cities/sk/kysucke-nove-mesto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059163",
          "name": "Lamač",
          "country_code": "SK",
          "slug": "lamac",
          "canonical_path": "/cities/sk/lamac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724301",
          "name": "Lendak",
          "country_code": "SK",
          "slug": "lendak",
          "canonical_path": "/cities/sk/lendak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059101",
          "name": "Levice",
          "country_code": "SK",
          "slug": "levice",
          "canonical_path": "/cities/sk/levice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724294",
          "name": "Levoča",
          "country_code": "SK",
          "slug": "levoca",
          "canonical_path": "/cities/sk/levoca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724286",
          "name": "Lipany",
          "country_code": "SK",
          "slug": "lipany",
          "canonical_path": "/cities/sk/lipany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059053",
          "name": "Liptovský Hrádok",
          "country_code": "SK",
          "slug": "liptovsky-hradok",
          "canonical_path": "/cities/sk/liptovsky-hradok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3059050",
          "name": "Liptovský Mikuláš",
          "country_code": "SK",
          "slug": "liptovsky-mikulas",
          "canonical_path": "/cities/sk/liptovsky-mikulas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058986",
          "name": "Lučenec",
          "country_code": "SK",
          "slug": "lucenec",
          "canonical_path": "/cities/sk/lucenec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058897",
          "name": "Malacky",
          "country_code": "SK",
          "slug": "malacky",
          "canonical_path": "/cities/sk/malacky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058780",
          "name": "Martin",
          "country_code": "SK",
          "slug": "martin",
          "canonical_path": "/cities/sk/martin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724156",
          "name": "Medzilaborce",
          "country_code": "SK",
          "slug": "medzilaborce",
          "canonical_path": "/cities/sk/medzilaborce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724144",
          "name": "Michalovce",
          "country_code": "SK",
          "slug": "michalovce",
          "canonical_path": "/cities/sk/michalovce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058663",
          "name": "Modra",
          "country_code": "SK",
          "slug": "modra",
          "canonical_path": "/cities/sk/modra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:724111",
          "name": "Moldava nad Bodvou",
          "country_code": "SK",
          "slug": "moldava-nad-bodvou",
          "canonical_path": "/cities/sk/moldava-nad-bodvou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058611",
          "name": "Myjava",
          "country_code": "SK",
          "slug": "myjava",
          "canonical_path": "/cities/sk/myjava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058579",
          "name": "Námestovo",
          "country_code": "SK",
          "slug": "namestovo",
          "canonical_path": "/cities/sk/namestovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058546",
          "name": "Nemšová",
          "country_code": "SK",
          "slug": "nemsova",
          "canonical_path": "/cities/sk/nemsova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058540",
          "name": "Nesvady",
          "country_code": "SK",
          "slug": "nesvady",
          "canonical_path": "/cities/sk/nesvady/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:municipality:500011",
          "name": "Nitra",
          "country_code": "SK",
          "slug": "nitra",
          "canonical_path": "/cities/sk/nitra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058498",
          "name": "Nová Baňa",
          "country_code": "SK",
          "slug": "nova-bana",
          "canonical_path": "/cities/sk/nova-bana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058496",
          "name": "Nová Dubnica",
          "country_code": "SK",
          "slug": "nova-dubnica",
          "canonical_path": "/cities/sk/nova-dubnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058477",
          "name": "Nové Mesto nad Váhom",
          "country_code": "SK",
          "slug": "nove-mesto-nad-vahom",
          "canonical_path": "/cities/sk/nove-mesto-nad-vahom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058472",
          "name": "Nové Zámky",
          "country_code": "SK",
          "slug": "nove-zamky",
          "canonical_path": "/cities/sk/nove-zamky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058354",
          "name": "Oščadnica",
          "country_code": "SK",
          "slug": "oscadnica",
          "canonical_path": "/cities/sk/oscadnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058268",
          "name": "Partizánske",
          "country_code": "SK",
          "slug": "partizanske",
          "canonical_path": "/cities/sk/partizanske/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058213",
          "name": "Petržalka",
          "country_code": "SK",
          "slug": "petrzalka",
          "canonical_path": "/cities/sk/petrzalka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058210",
          "name": "Pezinok",
          "country_code": "SK",
          "slug": "pezinok",
          "canonical_path": "/cities/sk/pezinok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058202",
          "name": "Piešťany",
          "country_code": "SK",
          "slug": "piestany",
          "canonical_path": "/cities/sk/piestany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058117",
          "name": "Podunajské Biskupice",
          "country_code": "SK",
          "slug": "podunajske-biskupice",
          "canonical_path": "/cities/sk/podunajske-biskupice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058083",
          "name": "Poltár",
          "country_code": "SK",
          "slug": "poltar",
          "canonical_path": "/cities/sk/poltar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723846",
          "name": "Poprad",
          "country_code": "SK",
          "slug": "poprad",
          "canonical_path": "/cities/sk/poprad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058060",
          "name": "Považská Bystrica",
          "country_code": "SK",
          "slug": "povazska-bystrica",
          "canonical_path": "/cities/sk/povazska-bystrica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:municipality:524140",
          "name": "Prešov",
          "country_code": "SK",
          "slug": "presov",
          "canonical_path": "/cities/sk/presov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3058000",
          "name": "Prievidza",
          "country_code": "SK",
          "slug": "prievidza",
          "canonical_path": "/cities/sk/prievidza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057963",
          "name": "Púchov",
          "country_code": "SK",
          "slug": "puchov",
          "canonical_path": "/cities/sk/puchov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057934",
          "name": "Rabča",
          "country_code": "SK",
          "slug": "rabca",
          "canonical_path": "/cities/sk/rabca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057910",
          "name": "Rajec",
          "country_code": "SK",
          "slug": "rajec",
          "canonical_path": "/cities/sk/rajec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057903",
          "name": "Raková",
          "country_code": "SK",
          "slug": "rakova",
          "canonical_path": "/cities/sk/rakova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723747",
          "name": "Revúca",
          "country_code": "SK",
          "slug": "revuca",
          "canonical_path": "/cities/sk/revuca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723736",
          "name": "Rimavská Sobota",
          "country_code": "SK",
          "slug": "rimavska-sobota",
          "canonical_path": "/cities/sk/rimavska-sobota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057831",
          "name": "Rovinka",
          "country_code": "SK",
          "slug": "rovinka",
          "canonical_path": "/cities/sk/rovinka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723713",
          "name": "Rožňava",
          "country_code": "SK",
          "slug": "roznava",
          "canonical_path": "/cities/sk/roznava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057789",
          "name": "Ružomberok",
          "country_code": "SK",
          "slug": "ruzomberok",
          "canonical_path": "/cities/sk/ruzomberok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723674",
          "name": "Sabinov",
          "country_code": "SK",
          "slug": "sabinov",
          "canonical_path": "/cities/sk/sabinov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057772",
          "name": "Šahy",
          "country_code": "SK",
          "slug": "sahy",
          "canonical_path": "/cities/sk/sahy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057769",
          "name": "Šaľa",
          "country_code": "SK",
          "slug": "sala",
          "canonical_path": "/cities/sk/sala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057757",
          "name": "Šamorín",
          "country_code": "SK",
          "slug": "samorin",
          "canonical_path": "/cities/sk/samorin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723637",
          "name": "Sečovce",
          "country_code": "SK",
          "slug": "secovce",
          "canonical_path": "/cities/sk/secovce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057692",
          "name": "Senec",
          "country_code": "SK",
          "slug": "senec",
          "canonical_path": "/cities/sk/senec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057691",
          "name": "Senica",
          "country_code": "SK",
          "slug": "senica",
          "canonical_path": "/cities/sk/senica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056889",
          "name": "Šenkvice",
          "country_code": "SK",
          "slug": "senkvice",
          "canonical_path": "/cities/sk/senkvice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057685",
          "name": "Sereď",
          "country_code": "SK",
          "slug": "sered",
          "canonical_path": "/cities/sk/sered/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057630",
          "name": "Skalica",
          "country_code": "SK",
          "slug": "skalica",
          "canonical_path": "/cities/sk/skalica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057627",
          "name": "Skalité",
          "country_code": "SK",
          "slug": "skalite",
          "canonical_path": "/cities/sk/skalite/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057602",
          "name": "Sládkovičovo",
          "country_code": "SK",
          "slug": "sladkovicovo",
          "canonical_path": "/cities/sk/sladkovicovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057559",
          "name": "Slovenský Grob",
          "country_code": "SK",
          "slug": "slovensky-grob",
          "canonical_path": "/cities/sk/slovensky-grob/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723566",
          "name": "Smižany",
          "country_code": "SK",
          "slug": "smizany",
          "canonical_path": "/cities/sk/smizany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723559",
          "name": "Snina",
          "country_code": "SK",
          "slug": "snina",
          "canonical_path": "/cities/sk/snina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723554",
          "name": "Sobrance",
          "country_code": "SK",
          "slug": "sobrance",
          "canonical_path": "/cities/sk/sobrance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723529",
          "name": "Spišská Belá",
          "country_code": "SK",
          "slug": "spisska-bela",
          "canonical_path": "/cities/sk/spisska-bela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723526",
          "name": "Spišská Nová Ves",
          "country_code": "SK",
          "slug": "spisska-nova-ves",
          "canonical_path": "/cities/sk/spisska-nova-ves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723505",
          "name": "Stará Ľubovňa",
          "country_code": "SK",
          "slug": "stara-lubovna",
          "canonical_path": "/cities/sk/stara-lubovna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057480",
          "name": "Stará Turá",
          "country_code": "SK",
          "slug": "stara-tura",
          "canonical_path": "/cities/sk/stara-tura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723455",
          "name": "Stropkov",
          "country_code": "SK",
          "slug": "stropkov",
          "canonical_path": "/cities/sk/stropkov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057384",
          "name": "Stupava",
          "country_code": "SK",
          "slug": "stupava",
          "canonical_path": "/cities/sk/stupava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057379",
          "name": "Štúrovo",
          "country_code": "SK",
          "slug": "sturovo",
          "canonical_path": "/cities/sk/sturovo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057339",
          "name": "Šurany",
          "country_code": "SK",
          "slug": "surany",
          "canonical_path": "/cities/sk/surany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057304",
          "name": "Svätý Jur",
          "country_code": "SK",
          "slug": "svaty-jur",
          "canonical_path": "/cities/sk/svaty-jur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723417",
          "name": "Svidník",
          "country_code": "SK",
          "slug": "svidnik",
          "canonical_path": "/cities/sk/svidnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723411",
          "name": "Svit",
          "country_code": "SK",
          "slug": "svit",
          "canonical_path": "/cities/sk/svit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057174",
          "name": "Topoľčany",
          "country_code": "SK",
          "slug": "topolcany",
          "canonical_path": "/cities/sk/topolcany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723365",
          "name": "Tornaľa",
          "country_code": "SK",
          "slug": "tornala",
          "canonical_path": "/cities/sk/tornala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723358",
          "name": "Trebišov",
          "country_code": "SK",
          "slug": "trebisov",
          "canonical_path": "/cities/sk/trebisov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057140",
          "name": "Trenčín",
          "country_code": "SK",
          "slug": "trencin",
          "canonical_path": "/cities/sk/trencin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057124",
          "name": "Trnava",
          "country_code": "SK",
          "slug": "trnava",
          "canonical_path": "/cities/sk/trnava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057108",
          "name": "Trstená",
          "country_code": "SK",
          "slug": "trstena",
          "canonical_path": "/cities/sk/trstena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057086",
          "name": "Turčianske Teplice",
          "country_code": "SK",
          "slug": "turcianske-teplice",
          "canonical_path": "/cities/sk/turcianske-teplice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057069",
          "name": "Turzovka",
          "country_code": "SK",
          "slug": "turzovka",
          "canonical_path": "/cities/sk/turzovka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057063",
          "name": "Tvrdošín",
          "country_code": "SK",
          "slug": "tvrdosin",
          "canonical_path": "/cities/sk/tvrdosin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3057062",
          "name": "Tvrdošovce",
          "country_code": "SK",
          "slug": "tvrdosovce",
          "canonical_path": "/cities/sk/tvrdosovce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723265",
          "name": "Veľké Kapušany",
          "country_code": "SK",
          "slug": "velke-kapusany",
          "canonical_path": "/cities/sk/velke-kapusany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056825",
          "name": "Veľký Krtíš",
          "country_code": "SK",
          "slug": "velky-krtis",
          "canonical_path": "/cities/sk/velky-krtis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056816",
          "name": "Veľký Meder",
          "country_code": "SK",
          "slug": "velky-meder",
          "canonical_path": "/cities/sk/velky-meder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723246",
          "name": "Veľký Šariš",
          "country_code": "SK",
          "slug": "velky-saris",
          "canonical_path": "/cities/sk/velky-saris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056711",
          "name": "Vráble",
          "country_code": "SK",
          "slug": "vrable",
          "canonical_path": "/cities/sk/vrable/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056708",
          "name": "Vrakuňa",
          "country_code": "SK",
          "slug": "vrakuna",
          "canonical_path": "/cities/sk/vrakuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:723195",
          "name": "Vranov nad Topľou",
          "country_code": "SK",
          "slug": "vranov-nad-toplou",
          "canonical_path": "/cities/sk/vranov-nad-toplou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056697",
          "name": "Vrbové",
          "country_code": "SK",
          "slug": "vrbove",
          "canonical_path": "/cities/sk/vrbove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056683",
          "name": "Vrútky",
          "country_code": "SK",
          "slug": "vrutky",
          "canonical_path": "/cities/sk/vrutky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056610",
          "name": "Zákamenné",
          "country_code": "SK",
          "slug": "zakamenne",
          "canonical_path": "/cities/sk/zakamenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056589",
          "name": "Žarnovica",
          "country_code": "SK",
          "slug": "zarnovica",
          "canonical_path": "/cities/sk/zarnovica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056547",
          "name": "Želiezovce",
          "country_code": "SK",
          "slug": "zeliezovce",
          "canonical_path": "/cities/sk/zeliezovce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056523",
          "name": "Žiar nad Hronom",
          "country_code": "SK",
          "slug": "ziar-nad-hronom",
          "canonical_path": "/cities/sk/ziar-nad-hronom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:municipality:517402",
          "name": "Žilina",
          "country_code": "SK",
          "slug": "zilina",
          "canonical_path": "/cities/sk/zilina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056495",
          "name": "Zlaté Moravce",
          "country_code": "SK",
          "slug": "zlate-moravce",
          "canonical_path": "/cities/sk/zlate-moravce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:sk:geonames:3056459",
          "name": "Zvolen",
          "country_code": "SK",
          "slug": "zvolen",
          "canonical_path": "/cities/sk/zvolen/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "SI",
      "path": "cities/si.json",
      "city_count": 86,
      "cities": [
        {
          "entity_id": "city:si:surs_municipality:001",
          "name": "Ajdovščina",
          "country_code": "SI",
          "slug": "ajdovscina",
          "canonical_path": "/cities/si/ajdovscina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:002",
          "name": "Beltinci",
          "country_code": "SI",
          "slug": "beltinci",
          "canonical_path": "/cities/si/beltinci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:003",
          "name": "Bled",
          "country_code": "SI",
          "slug": "bled",
          "canonical_path": "/cities/si/bled/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:004",
          "name": "Bohinj",
          "country_code": "SI",
          "slug": "bohinj",
          "canonical_path": "/cities/si/bohinj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:151",
          "name": "Braslovče",
          "country_code": "SI",
          "slug": "braslovce",
          "canonical_path": "/cities/si/braslovce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:007",
          "name": "Brda",
          "country_code": "SI",
          "slug": "brda",
          "canonical_path": "/cities/si/brda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:008",
          "name": "Brezovica",
          "country_code": "SI",
          "slug": "brezovica",
          "canonical_path": "/cities/si/brezovica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:011",
          "name": "Celje",
          "country_code": "SI",
          "slug": "celje",
          "canonical_path": "/cities/si/celje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:012",
          "name": "Cerklje na Gorenjskem",
          "country_code": "SI",
          "slug": "cerklje-na-gorenjskem",
          "canonical_path": "/cities/si/cerklje-na-gorenjskem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:021",
          "name": "Dobrova - Polhov Gradec",
          "country_code": "SI",
          "slug": "dobrova-polhov-gradec",
          "canonical_path": "/cities/si/dobrova-polhov-gradec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:022",
          "name": "Dol pri Ljubljani",
          "country_code": "SI",
          "slug": "dol-pri-ljubljani",
          "canonical_path": "/cities/si/dol-pri-ljubljani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:023",
          "name": "Domžale",
          "country_code": "SI",
          "slug": "domzale",
          "canonical_path": "/cities/si/domzale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:025",
          "name": "Dravograd",
          "country_code": "SI",
          "slug": "dravograd",
          "canonical_path": "/cities/si/dravograd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:026",
          "name": "Duplek",
          "country_code": "SI",
          "slug": "duplek",
          "canonical_path": "/cities/si/duplek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:029",
          "name": "Gornja Radgona",
          "country_code": "SI",
          "slug": "gornja-radgona",
          "canonical_path": "/cities/si/gornja-radgona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:032",
          "name": "Grosuplje",
          "country_code": "SI",
          "slug": "grosuplje",
          "canonical_path": "/cities/si/grosuplje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:160",
          "name": "Hoče - Slivnica",
          "country_code": "SI",
          "slug": "hoce-slivnica",
          "canonical_path": "/cities/si/hoce-slivnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:034",
          "name": "Hrastnik",
          "country_code": "SI",
          "slug": "hrastnik",
          "canonical_path": "/cities/si/hrastnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:035",
          "name": "Hrpelje - Kozina",
          "country_code": "SI",
          "slug": "hrpelje-kozina",
          "canonical_path": "/cities/si/hrpelje-kozina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:037",
          "name": "Ig",
          "country_code": "SI",
          "slug": "ig",
          "canonical_path": "/cities/si/ig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:040",
          "name": "Izola/Isola",
          "country_code": "SI",
          "slug": "izola-isola",
          "canonical_path": "/cities/si/izola-isola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:041",
          "name": "Jesenice",
          "country_code": "SI",
          "slug": "jesenice",
          "canonical_path": "/cities/si/jesenice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:043",
          "name": "Kamnik",
          "country_code": "SI",
          "slug": "kamnik",
          "canonical_path": "/cities/si/kamnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:044",
          "name": "Kanal",
          "country_code": "SI",
          "slug": "kanal",
          "canonical_path": "/cities/si/kanal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:045",
          "name": "Kidričevo",
          "country_code": "SI",
          "slug": "kidricevo",
          "canonical_path": "/cities/si/kidricevo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:164",
          "name": "Komenda",
          "country_code": "SI",
          "slug": "komenda",
          "canonical_path": "/cities/si/komenda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:050",
          "name": "Koper/Capodistria",
          "country_code": "SI",
          "slug": "koper-capodistria",
          "canonical_path": "/cities/si/koper-capodistria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:052",
          "name": "Kranj",
          "country_code": "SI",
          "slug": "kranj",
          "canonical_path": "/cities/si/kranj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:053",
          "name": "Kranjska Gora",
          "country_code": "SI",
          "slug": "kranjska-gora",
          "canonical_path": "/cities/si/kranjska-gora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:055",
          "name": "Kungota",
          "country_code": "SI",
          "slug": "kungota",
          "canonical_path": "/cities/si/kungota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:057",
          "name": "Laško",
          "country_code": "SI",
          "slug": "lasko",
          "canonical_path": "/cities/si/lasko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:058",
          "name": "Lenart",
          "country_code": "SI",
          "slug": "lenart",
          "canonical_path": "/cities/si/lenart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:059",
          "name": "Lendava/Lendva",
          "country_code": "SI",
          "slug": "lendava-lendva",
          "canonical_path": "/cities/si/lendava-lendva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:061",
          "name": "Ljubljana",
          "country_code": "SI",
          "slug": "ljubljana",
          "canonical_path": "/cities/si/ljubljana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:063",
          "name": "Ljutomer",
          "country_code": "SI",
          "slug": "ljutomer",
          "canonical_path": "/cities/si/ljutomer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:068",
          "name": "Lukovica",
          "country_code": "SI",
          "slug": "lukovica",
          "canonical_path": "/cities/si/lukovica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:070",
          "name": "Maribor",
          "country_code": "SI",
          "slug": "maribor",
          "canonical_path": "/cities/si/maribor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:071",
          "name": "Medvode",
          "country_code": "SI",
          "slug": "medvode",
          "canonical_path": "/cities/si/medvode/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:072",
          "name": "Mengeš",
          "country_code": "SI",
          "slug": "menges",
          "canonical_path": "/cities/si/menges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:073",
          "name": "Metlika",
          "country_code": "SI",
          "slug": "metlika",
          "canonical_path": "/cities/si/metlika/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:169",
          "name": "Miklavž na Dravskem polju",
          "country_code": "SI",
          "slug": "miklavz-na-dravskem-polju",
          "canonical_path": "/cities/si/miklavz-na-dravskem-polju/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:075",
          "name": "Miren - Kostanjevica",
          "country_code": "SI",
          "slug": "miren-kostanjevica",
          "canonical_path": "/cities/si/miren-kostanjevica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:077",
          "name": "Moravče",
          "country_code": "SI",
          "slug": "moravce",
          "canonical_path": "/cities/si/moravce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:078",
          "name": "Moravske Toplice",
          "country_code": "SI",
          "slug": "moravske-toplice",
          "canonical_path": "/cities/si/moravske-toplice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:080",
          "name": "Murska Sobota",
          "country_code": "SI",
          "slug": "murska-sobota",
          "canonical_path": "/cities/si/murska-sobota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:084",
          "name": "Nova Gorica",
          "country_code": "SI",
          "slug": "nova-gorica",
          "canonical_path": "/cities/si/nova-gorica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:085",
          "name": "Novo mesto",
          "country_code": "SI",
          "slug": "novo-mesto",
          "canonical_path": "/cities/si/novo-mesto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:087",
          "name": "Ormož",
          "country_code": "SI",
          "slug": "ormoz",
          "canonical_path": "/cities/si/ormoz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:089",
          "name": "Pesnica",
          "country_code": "SI",
          "slug": "pesnica",
          "canonical_path": "/cities/si/pesnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:090",
          "name": "Piran/Pirano",
          "country_code": "SI",
          "slug": "piran-pirano",
          "canonical_path": "/cities/si/piran-pirano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:173",
          "name": "Polzela",
          "country_code": "SI",
          "slug": "polzela",
          "canonical_path": "/cities/si/polzela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:174",
          "name": "Prebold",
          "country_code": "SI",
          "slug": "prebold",
          "canonical_path": "/cities/si/prebold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:175",
          "name": "Prevalje",
          "country_code": "SI",
          "slug": "prevalje",
          "canonical_path": "/cities/si/prevalje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:096",
          "name": "Ptuj",
          "country_code": "SI",
          "slug": "ptuj",
          "canonical_path": "/cities/si/ptuj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:097",
          "name": "Puconci",
          "country_code": "SI",
          "slug": "puconci",
          "canonical_path": "/cities/si/puconci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:098",
          "name": "Rače - Fram",
          "country_code": "SI",
          "slug": "race-fram",
          "canonical_path": "/cities/si/race-fram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:100",
          "name": "Radenci",
          "country_code": "SI",
          "slug": "radenci",
          "canonical_path": "/cities/si/radenci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:101",
          "name": "Radlje ob Dravi",
          "country_code": "SI",
          "slug": "radlje-ob-dravi",
          "canonical_path": "/cities/si/radlje-ob-dravi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:103",
          "name": "Ravne na Koroškem",
          "country_code": "SI",
          "slug": "ravne-na-koroskem",
          "canonical_path": "/cities/si/ravne-na-koroskem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:108",
          "name": "Ruše",
          "country_code": "SI",
          "slug": "ruse",
          "canonical_path": "/cities/si/ruse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:183",
          "name": "Šempeter - Vrtojba",
          "country_code": "SI",
          "slug": "sempeter-vrtojba",
          "canonical_path": "/cities/si/sempeter-vrtojba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:117",
          "name": "Šenčur",
          "country_code": "SI",
          "slug": "sencur",
          "canonical_path": "/cities/si/sencur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:118",
          "name": "Šentilj",
          "country_code": "SI",
          "slug": "sentilj",
          "canonical_path": "/cities/si/sentilj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:119",
          "name": "Šentjernej",
          "country_code": "SI",
          "slug": "sentjernej",
          "canonical_path": "/cities/si/sentjernej/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:120",
          "name": "Šentjur",
          "country_code": "SI",
          "slug": "sentjur",
          "canonical_path": "/cities/si/sentjur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:110",
          "name": "Sevnica",
          "country_code": "SI",
          "slug": "sevnica",
          "canonical_path": "/cities/si/sevnica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:111",
          "name": "Sežana",
          "country_code": "SI",
          "slug": "sezana",
          "canonical_path": "/cities/si/sezana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:122",
          "name": "Škofja Loka",
          "country_code": "SI",
          "slug": "skofja-loka",
          "canonical_path": "/cities/si/skofja-loka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:123",
          "name": "Škofljica",
          "country_code": "SI",
          "slug": "skofljica",
          "canonical_path": "/cities/si/skofljica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:112",
          "name": "Slovenj Gradec",
          "country_code": "SI",
          "slug": "slovenj-gradec",
          "canonical_path": "/cities/si/slovenj-gradec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:113",
          "name": "Slovenska Bistrica",
          "country_code": "SI",
          "slug": "slovenska-bistrica",
          "canonical_path": "/cities/si/slovenska-bistrica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:114",
          "name": "Slovenske Konjice",
          "country_code": "SI",
          "slug": "slovenske-konjice",
          "canonical_path": "/cities/si/slovenske-konjice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:124",
          "name": "Šmarje pri Jelšah",
          "country_code": "SI",
          "slug": "smarje-pri-jelsah",
          "canonical_path": "/cities/si/smarje-pri-jelsah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:126",
          "name": "Šoštanj",
          "country_code": "SI",
          "slug": "sostanj",
          "canonical_path": "/cities/si/sostanj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:128",
          "name": "Tolmin",
          "country_code": "SI",
          "slug": "tolmin",
          "canonical_path": "/cities/si/tolmin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:129",
          "name": "Trbovlje",
          "country_code": "SI",
          "slug": "trbovlje",
          "canonical_path": "/cities/si/trbovlje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:130",
          "name": "Trebnje",
          "country_code": "SI",
          "slug": "trebnje",
          "canonical_path": "/cities/si/trebnje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:133",
          "name": "Velenje",
          "country_code": "SI",
          "slug": "velenje",
          "canonical_path": "/cities/si/velenje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:135",
          "name": "Videm",
          "country_code": "SI",
          "slug": "videm",
          "canonical_path": "/cities/si/videm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:136",
          "name": "Vipava",
          "country_code": "SI",
          "slug": "vipava",
          "canonical_path": "/cities/si/vipava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:138",
          "name": "Vodice",
          "country_code": "SI",
          "slug": "vodice",
          "canonical_path": "/cities/si/vodice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:139",
          "name": "Vojnik",
          "country_code": "SI",
          "slug": "vojnik",
          "canonical_path": "/cities/si/vojnik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:140",
          "name": "Vrhnika",
          "country_code": "SI",
          "slug": "vrhnika",
          "canonical_path": "/cities/si/vrhnika/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:142",
          "name": "Zagorje ob Savi",
          "country_code": "SI",
          "slug": "zagorje-ob-savi",
          "canonical_path": "/cities/si/zagorje-ob-savi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:190",
          "name": "Žalec",
          "country_code": "SI",
          "slug": "zalec",
          "canonical_path": "/cities/si/zalec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:si:surs_municipality:144",
          "name": "Zreče",
          "country_code": "SI",
          "slug": "zrece",
          "canonical_path": "/cities/si/zrece/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "KR",
      "path": "cities/kr.json",
      "city_count": 235,
      "cities": [
        {
          "entity_id": "city:kr:mois:26320",
          "name": "buggu",
          "country_code": "KR",
          "slug": "buggu-26320",
          "canonical_path": "/cities/kr/buggu-26320/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:27230",
          "name": "buggu",
          "country_code": "KR",
          "slug": "buggu-27230",
          "canonical_path": "/cities/kr/buggu-27230/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:31200",
          "name": "buggu",
          "country_code": "KR",
          "slug": "buggu-31200",
          "canonical_path": "/cities/kr/buggu-31200/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47113",
          "name": "buggu",
          "country_code": "KR",
          "slug": "buggu-47113",
          "canonical_path": "/cities/kr/buggu-47113/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26170",
          "name": "donggu",
          "country_code": "KR",
          "slug": "donggu-26170",
          "canonical_path": "/cities/kr/donggu-26170/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:27140",
          "name": "donggu",
          "country_code": "KR",
          "slug": "donggu-27140",
          "canonical_path": "/cities/kr/donggu-27140/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:30110",
          "name": "donggu",
          "country_code": "KR",
          "slug": "donggu-30110",
          "canonical_path": "/cities/kr/donggu-30110/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:31170",
          "name": "donggu",
          "country_code": "KR",
          "slug": "donggu-31170",
          "canonical_path": "/cities/kr/donggu-31170/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11500",
          "name": "gangseogu",
          "country_code": "KR",
          "slug": "gangseogu-11500",
          "canonical_path": "/cities/kr/gangseogu-11500/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26440",
          "name": "gangseogu",
          "country_code": "KR",
          "slug": "gangseogu-26440",
          "canonical_path": "/cities/kr/gangseogu-26440/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48820",
          "name": "goseonggun",
          "country_code": "KR",
          "slug": "goseonggun-48820",
          "canonical_path": "/cities/kr/goseonggun-48820/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51820",
          "name": "goseonggun",
          "country_code": "KR",
          "slug": "goseonggun-51820",
          "canonical_path": "/cities/kr/goseonggun-51820/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11140",
          "name": "junggu",
          "country_code": "KR",
          "slug": "junggu-11140",
          "canonical_path": "/cities/kr/junggu-11140/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26110",
          "name": "junggu",
          "country_code": "KR",
          "slug": "junggu-26110",
          "canonical_path": "/cities/kr/junggu-26110/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:27110",
          "name": "junggu",
          "country_code": "KR",
          "slug": "junggu-27110",
          "canonical_path": "/cities/kr/junggu-27110/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:30140",
          "name": "junggu",
          "country_code": "KR",
          "slug": "junggu-30140",
          "canonical_path": "/cities/kr/junggu-30140/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:31110",
          "name": "junggu",
          "country_code": "KR",
          "slug": "junggu-31110",
          "canonical_path": "/cities/kr/junggu-31110/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26290",
          "name": "namgu",
          "country_code": "KR",
          "slug": "namgu-26290",
          "canonical_path": "/cities/kr/namgu-26290/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:27200",
          "name": "namgu",
          "country_code": "KR",
          "slug": "namgu-27200",
          "canonical_path": "/cities/kr/namgu-27200/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:31140",
          "name": "namgu",
          "country_code": "KR",
          "slug": "namgu-31140",
          "canonical_path": "/cities/kr/namgu-31140/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47111",
          "name": "namgu",
          "country_code": "KR",
          "slug": "namgu-47111",
          "canonical_path": "/cities/kr/namgu-47111/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26140",
          "name": "seogu",
          "country_code": "KR",
          "slug": "seogu-26140",
          "canonical_path": "/cities/kr/seogu-26140/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:27170",
          "name": "seogu",
          "country_code": "KR",
          "slug": "seogu-27170",
          "canonical_path": "/cities/kr/seogu-27170/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:30170",
          "name": "seogu",
          "country_code": "KR",
          "slug": "seogu-30170",
          "canonical_path": "/cities/kr/seogu-30170/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:wikidata:Q8684",
          "name": "Seoul",
          "country_code": "KR",
          "slug": "seoul",
          "canonical_path": "/cities/kr/seoul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41820",
          "name": "가평군",
          "country_code": "KR",
          "slug": "gapyeonggun",
          "canonical_path": "/cities/kr/gapyeonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11680",
          "name": "강남구",
          "country_code": "KR",
          "slug": "gangnamgu",
          "canonical_path": "/cities/kr/gangnamgu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11740",
          "name": "강동구",
          "country_code": "KR",
          "slug": "gangdonggu",
          "canonical_path": "/cities/kr/gangdonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51150",
          "name": "강릉시",
          "country_code": "KR",
          "slug": "gangleungsi",
          "canonical_path": "/cities/kr/gangleungsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11305",
          "name": "강북구",
          "country_code": "KR",
          "slug": "gangbuggu",
          "canonical_path": "/cities/kr/gangbuggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:28710",
          "name": "강화군",
          "country_code": "KR",
          "slug": "ganghwagun",
          "canonical_path": "/cities/kr/ganghwagun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48310",
          "name": "거제시",
          "country_code": "KR",
          "slug": "geojesi",
          "canonical_path": "/cities/kr/geojesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48880",
          "name": "거창군",
          "country_code": "KR",
          "slug": "geochanggun",
          "canonical_path": "/cities/kr/geochanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47290",
          "name": "경산시",
          "country_code": "KR",
          "slug": "gyeongsansi",
          "canonical_path": "/cities/kr/gyeongsansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47130",
          "name": "경주시",
          "country_code": "KR",
          "slug": "gyeongjusi",
          "canonical_path": "/cities/kr/gyeongjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44250",
          "name": "계룡시",
          "country_code": "KR",
          "slug": "gyelyongsi",
          "canonical_path": "/cities/kr/gyelyongsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:28245",
          "name": "계양구",
          "country_code": "KR",
          "slug": "gye-yanggu",
          "canonical_path": "/cities/kr/gye-yanggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47830",
          "name": "고령군",
          "country_code": "KR",
          "slug": "golyeonggun",
          "canonical_path": "/cities/kr/golyeonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41280",
          "name": "고양시",
          "country_code": "KR",
          "slug": "go-yangsi",
          "canonical_path": "/cities/kr/go-yangsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52790",
          "name": "고창군",
          "country_code": "KR",
          "slug": "gochanggun",
          "canonical_path": "/cities/kr/gochanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44150",
          "name": "공주시",
          "country_code": "KR",
          "slug": "gongjusi",
          "canonical_path": "/cities/kr/gongjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41290",
          "name": "과천시",
          "country_code": "KR",
          "slug": "gwacheonsi",
          "canonical_path": "/cities/kr/gwacheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11620",
          "name": "관악구",
          "country_code": "KR",
          "slug": "gwan-aggu",
          "canonical_path": "/cities/kr/gwan-aggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41210",
          "name": "광명시",
          "country_code": "KR",
          "slug": "gwangmyeongsi",
          "canonical_path": "/cities/kr/gwangmyeongsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41610",
          "name": "광주시",
          "country_code": "KR",
          "slug": "gwangjusi",
          "canonical_path": "/cities/kr/gwangjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11215",
          "name": "광진구",
          "country_code": "KR",
          "slug": "gwangjingu",
          "canonical_path": "/cities/kr/gwangjingu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43760",
          "name": "괴산군",
          "country_code": "KR",
          "slug": "goesangun",
          "canonical_path": "/cities/kr/goesangun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11530",
          "name": "구로구",
          "country_code": "KR",
          "slug": "gulogu",
          "canonical_path": "/cities/kr/gulogu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41310",
          "name": "구리시",
          "country_code": "KR",
          "slug": "gulisi",
          "canonical_path": "/cities/kr/gulisi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47190",
          "name": "구미시",
          "country_code": "KR",
          "slug": "gumisi",
          "canonical_path": "/cities/kr/gumisi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52130",
          "name": "군산시",
          "country_code": "KR",
          "slug": "gunsansi",
          "canonical_path": "/cities/kr/gunsansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:27720",
          "name": "군위군",
          "country_code": "KR",
          "slug": "gun-wigun",
          "canonical_path": "/cities/kr/gun-wigun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41410",
          "name": "군포시",
          "country_code": "KR",
          "slug": "gunposi",
          "canonical_path": "/cities/kr/gunposi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41113",
          "name": "권선구",
          "country_code": "KR",
          "slug": "gwonseongu",
          "canonical_path": "/cities/kr/gwonseongu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44710",
          "name": "금산군",
          "country_code": "KR",
          "slug": "geumsangun",
          "canonical_path": "/cities/kr/geumsangun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26410",
          "name": "금정구",
          "country_code": "KR",
          "slug": "geumjeonggu",
          "canonical_path": "/cities/kr/geumjeonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11545",
          "name": "금천구",
          "country_code": "KR",
          "slug": "geumcheongu",
          "canonical_path": "/cities/kr/geumcheongu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26710",
          "name": "기장군",
          "country_code": "KR",
          "slug": "gijanggun",
          "canonical_path": "/cities/kr/gijanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41463",
          "name": "기흥구",
          "country_code": "KR",
          "slug": "giheunggu",
          "canonical_path": "/cities/kr/giheunggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52210",
          "name": "김제시",
          "country_code": "KR",
          "slug": "gimjesi",
          "canonical_path": "/cities/kr/gimjesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47150",
          "name": "김천시",
          "country_code": "KR",
          "slug": "gimcheonsi",
          "canonical_path": "/cities/kr/gimcheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41570",
          "name": "김포시",
          "country_code": "KR",
          "slug": "gimposi",
          "canonical_path": "/cities/kr/gimposi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48250",
          "name": "김해시",
          "country_code": "KR",
          "slug": "gimhaesi",
          "canonical_path": "/cities/kr/gimhaesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:28200",
          "name": "남동구",
          "country_code": "KR",
          "slug": "namdonggu",
          "canonical_path": "/cities/kr/namdonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41360",
          "name": "남양주시",
          "country_code": "KR",
          "slug": "nam-yangjusi",
          "canonical_path": "/cities/kr/nam-yangjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52190",
          "name": "남원시",
          "country_code": "KR",
          "slug": "nam-wonsi",
          "canonical_path": "/cities/kr/nam-wonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48840",
          "name": "남해군",
          "country_code": "KR",
          "slug": "namhaegun",
          "canonical_path": "/cities/kr/namhaegun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11350",
          "name": "노원구",
          "country_code": "KR",
          "slug": "no-wongu",
          "canonical_path": "/cities/kr/no-wongu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44230",
          "name": "논산시",
          "country_code": "KR",
          "slug": "nonsansi",
          "canonical_path": "/cities/kr/nonsansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43800",
          "name": "단양군",
          "country_code": "KR",
          "slug": "dan-yanggun",
          "canonical_path": "/cities/kr/dan-yanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41273",
          "name": "단원구",
          "country_code": "KR",
          "slug": "dan-wongu",
          "canonical_path": "/cities/kr/dan-wongu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:27290",
          "name": "달서구",
          "country_code": "KR",
          "slug": "dalseogu",
          "canonical_path": "/cities/kr/dalseogu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:27710",
          "name": "달성군",
          "country_code": "KR",
          "slug": "dalseonggun",
          "canonical_path": "/cities/kr/dalseonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44270",
          "name": "당진시",
          "country_code": "KR",
          "slug": "dangjinsi",
          "canonical_path": "/cities/kr/dangjinsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:30230",
          "name": "대덕구",
          "country_code": "KR",
          "slug": "daedeoggu",
          "canonical_path": "/cities/kr/daedeoggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41281",
          "name": "덕양구",
          "country_code": "KR",
          "slug": "deog-yanggu",
          "canonical_path": "/cities/kr/deog-yanggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52113",
          "name": "덕진구",
          "country_code": "KR",
          "slug": "deogjingu",
          "canonical_path": "/cities/kr/deogjingu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11320",
          "name": "도봉구",
          "country_code": "KR",
          "slug": "dobonggu",
          "canonical_path": "/cities/kr/dobonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44131",
          "name": "동남구",
          "country_code": "KR",
          "slug": "dongnamgu",
          "canonical_path": "/cities/kr/dongnamgu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11230",
          "name": "동대문구",
          "country_code": "KR",
          "slug": "dongdaemungu",
          "canonical_path": "/cities/kr/dongdaemungu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41250",
          "name": "동두천시",
          "country_code": "KR",
          "slug": "dongducheonsi",
          "canonical_path": "/cities/kr/dongducheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26260",
          "name": "동래구",
          "country_code": "KR",
          "slug": "donglaegu",
          "canonical_path": "/cities/kr/donglaegu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41173",
          "name": "동안구",
          "country_code": "KR",
          "slug": "dong-angu",
          "canonical_path": "/cities/kr/dong-angu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11590",
          "name": "동작구",
          "country_code": "KR",
          "slug": "dongjaggu",
          "canonical_path": "/cities/kr/dongjaggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51170",
          "name": "동해시",
          "country_code": "KR",
          "slug": "donghaesi",
          "canonical_path": "/cities/kr/donghaesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48125",
          "name": "마산합포구",
          "country_code": "KR",
          "slug": "masanhabpogu",
          "canonical_path": "/cities/kr/masanhabpogu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48127",
          "name": "마산회원구",
          "country_code": "KR",
          "slug": "masanhoe-wongu",
          "canonical_path": "/cities/kr/masanhoe-wongu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11440",
          "name": "마포구",
          "country_code": "KR",
          "slug": "mapogu",
          "canonical_path": "/cities/kr/mapogu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41171",
          "name": "만안구",
          "country_code": "KR",
          "slug": "man-angu",
          "canonical_path": "/cities/kr/man-angu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52730",
          "name": "무주군",
          "country_code": "KR",
          "slug": "mujugun",
          "canonical_path": "/cities/kr/mujugun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47280",
          "name": "문경시",
          "country_code": "KR",
          "slug": "mungyeongsi",
          "canonical_path": "/cities/kr/mungyeongsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:28177",
          "name": "미추홀구",
          "country_code": "KR",
          "slug": "michuholgu",
          "canonical_path": "/cities/kr/michuholgu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48270",
          "name": "밀양시",
          "country_code": "KR",
          "slug": "mil-yangsi",
          "canonical_path": "/cities/kr/mil-yangsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44180",
          "name": "보령시",
          "country_code": "KR",
          "slug": "bolyeongsi",
          "canonical_path": "/cities/kr/bolyeongsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43720",
          "name": "보은군",
          "country_code": "KR",
          "slug": "bo-eungun",
          "canonical_path": "/cities/kr/bo-eungun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47920",
          "name": "봉화군",
          "country_code": "KR",
          "slug": "bonghwagun",
          "canonical_path": "/cities/kr/bonghwagun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26230",
          "name": "부산진구",
          "country_code": "KR",
          "slug": "busanjingu",
          "canonical_path": "/cities/kr/busanjingu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52800",
          "name": "부안군",
          "country_code": "KR",
          "slug": "bu-angun",
          "canonical_path": "/cities/kr/bu-angun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44760",
          "name": "부여군",
          "country_code": "KR",
          "slug": "bu-yeogun",
          "canonical_path": "/cities/kr/bu-yeogun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41190",
          "name": "부천시",
          "country_code": "KR",
          "slug": "bucheonsi",
          "canonical_path": "/cities/kr/bucheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:28237",
          "name": "부평구",
          "country_code": "KR",
          "slug": "bupyeonggu",
          "canonical_path": "/cities/kr/bupyeonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41135",
          "name": "분당구",
          "country_code": "KR",
          "slug": "bundanggu",
          "canonical_path": "/cities/kr/bundanggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26530",
          "name": "사상구",
          "country_code": "KR",
          "slug": "sasanggu",
          "canonical_path": "/cities/kr/sasanggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48240",
          "name": "사천시",
          "country_code": "KR",
          "slug": "sacheonsi",
          "canonical_path": "/cities/kr/sacheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26380",
          "name": "사하구",
          "country_code": "KR",
          "slug": "sahagu",
          "canonical_path": "/cities/kr/sahagu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48860",
          "name": "산청군",
          "country_code": "KR",
          "slug": "sancheonggun",
          "canonical_path": "/cities/kr/sancheonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51230",
          "name": "삼척시",
          "country_code": "KR",
          "slug": "samcheogsi",
          "canonical_path": "/cities/kr/samcheogsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43111",
          "name": "상당구",
          "country_code": "KR",
          "slug": "sangdanggu",
          "canonical_path": "/cities/kr/sangdanggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41271",
          "name": "상록구",
          "country_code": "KR",
          "slug": "sangloggu",
          "canonical_path": "/cities/kr/sangloggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47250",
          "name": "상주시",
          "country_code": "KR",
          "slug": "sangjusi",
          "canonical_path": "/cities/kr/sangjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:50130",
          "name": "서귀포시",
          "country_code": "KR",
          "slug": "seogwiposi",
          "canonical_path": "/cities/kr/seogwiposi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11410",
          "name": "서대문구",
          "country_code": "KR",
          "slug": "seodaemungu",
          "canonical_path": "/cities/kr/seodaemungu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44133",
          "name": "서북구",
          "country_code": "KR",
          "slug": "seobuggu",
          "canonical_path": "/cities/kr/seobuggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44210",
          "name": "서산시",
          "country_code": "KR",
          "slug": "seosansi",
          "canonical_path": "/cities/kr/seosansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43112",
          "name": "서원구",
          "country_code": "KR",
          "slug": "seo-wongu",
          "canonical_path": "/cities/kr/seo-wongu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44770",
          "name": "서천군",
          "country_code": "KR",
          "slug": "seocheongun",
          "canonical_path": "/cities/kr/seocheongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11650",
          "name": "서초구",
          "country_code": "KR",
          "slug": "seochogu",
          "canonical_path": "/cities/kr/seochogu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41130",
          "name": "성남시",
          "country_code": "KR",
          "slug": "seongnamsi",
          "canonical_path": "/cities/kr/seongnamsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11200",
          "name": "성동구",
          "country_code": "KR",
          "slug": "seongdonggu",
          "canonical_path": "/cities/kr/seongdonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11290",
          "name": "성북구",
          "country_code": "KR",
          "slug": "seongbuggu",
          "canonical_path": "/cities/kr/seongbuggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48123",
          "name": "성산구",
          "country_code": "KR",
          "slug": "seongsangu",
          "canonical_path": "/cities/kr/seongsangu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47840",
          "name": "성주군",
          "country_code": "KR",
          "slug": "seongjugun",
          "canonical_path": "/cities/kr/seongjugun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:36110",
          "name": "세종특별자치시",
          "country_code": "KR",
          "slug": "sejongteugbyeoljachisi",
          "canonical_path": "/cities/kr/sejongteugbyeoljachisi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41194",
          "name": "소사구",
          "country_code": "KR",
          "slug": "sosagu",
          "canonical_path": "/cities/kr/sosagu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51210",
          "name": "속초시",
          "country_code": "KR",
          "slug": "sogchosi",
          "canonical_path": "/cities/kr/sogchosi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11710",
          "name": "송파구",
          "country_code": "KR",
          "slug": "songpagu",
          "canonical_path": "/cities/kr/songpagu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:27260",
          "name": "수성구",
          "country_code": "KR",
          "slug": "suseonggu",
          "canonical_path": "/cities/kr/suseonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26500",
          "name": "수영구",
          "country_code": "KR",
          "slug": "su-yeonggu",
          "canonical_path": "/cities/kr/su-yeonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41110",
          "name": "수원시",
          "country_code": "KR",
          "slug": "su-wonsi",
          "canonical_path": "/cities/kr/su-wonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41131",
          "name": "수정구",
          "country_code": "KR",
          "slug": "sujeonggu",
          "canonical_path": "/cities/kr/sujeonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41465",
          "name": "수지구",
          "country_code": "KR",
          "slug": "sujigu",
          "canonical_path": "/cities/kr/sujigu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52770",
          "name": "순창군",
          "country_code": "KR",
          "slug": "sunchanggun",
          "canonical_path": "/cities/kr/sunchanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41390",
          "name": "시흥시",
          "country_code": "KR",
          "slug": "siheungsi",
          "canonical_path": "/cities/kr/siheungsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44200",
          "name": "아산시",
          "country_code": "KR",
          "slug": "asansi",
          "canonical_path": "/cities/kr/asansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47170",
          "name": "안동시",
          "country_code": "KR",
          "slug": "andongsi",
          "canonical_path": "/cities/kr/andongsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41270",
          "name": "안산시",
          "country_code": "KR",
          "slug": "ansansi",
          "canonical_path": "/cities/kr/ansansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41550",
          "name": "안성시",
          "country_code": "KR",
          "slug": "anseongsi",
          "canonical_path": "/cities/kr/anseongsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41170",
          "name": "안양시",
          "country_code": "KR",
          "slug": "an-yangsi",
          "canonical_path": "/cities/kr/an-yangsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51800",
          "name": "양구군",
          "country_code": "KR",
          "slug": "yanggugun",
          "canonical_path": "/cities/kr/yanggugun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48330",
          "name": "양산시",
          "country_code": "KR",
          "slug": "yangsansi",
          "canonical_path": "/cities/kr/yangsansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51830",
          "name": "양양군",
          "country_code": "KR",
          "slug": "yang-yanggun",
          "canonical_path": "/cities/kr/yang-yanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41630",
          "name": "양주시",
          "country_code": "KR",
          "slug": "yangjusi",
          "canonical_path": "/cities/kr/yangjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11470",
          "name": "양천구",
          "country_code": "KR",
          "slug": "yangcheongu",
          "canonical_path": "/cities/kr/yangcheongu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41830",
          "name": "양평군",
          "country_code": "KR",
          "slug": "yangpyeonggun",
          "canonical_path": "/cities/kr/yangpyeonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41670",
          "name": "여주시",
          "country_code": "KR",
          "slug": "yeojusi",
          "canonical_path": "/cities/kr/yeojusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:28185",
          "name": "연수구",
          "country_code": "KR",
          "slug": "yeonsugu",
          "canonical_path": "/cities/kr/yeonsugu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26470",
          "name": "연제구",
          "country_code": "KR",
          "slug": "yeonjegu",
          "canonical_path": "/cities/kr/yeonjegu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41800",
          "name": "연천군",
          "country_code": "KR",
          "slug": "yeoncheongun",
          "canonical_path": "/cities/kr/yeoncheongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47770",
          "name": "영덕군",
          "country_code": "KR",
          "slug": "yeongdeoggun",
          "canonical_path": "/cities/kr/yeongdeoggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26200",
          "name": "영도구",
          "country_code": "KR",
          "slug": "yeongdogu",
          "canonical_path": "/cities/kr/yeongdogu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43740",
          "name": "영동군",
          "country_code": "KR",
          "slug": "yeongdonggun",
          "canonical_path": "/cities/kr/yeongdonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11560",
          "name": "영등포구",
          "country_code": "KR",
          "slug": "yeongdeungpogu",
          "canonical_path": "/cities/kr/yeongdeungpogu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47760",
          "name": "영양군",
          "country_code": "KR",
          "slug": "yeong-yanggun",
          "canonical_path": "/cities/kr/yeong-yanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51750",
          "name": "영월군",
          "country_code": "KR",
          "slug": "yeong-wolgun",
          "canonical_path": "/cities/kr/yeong-wolgun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47210",
          "name": "영주시",
          "country_code": "KR",
          "slug": "yeongjusi",
          "canonical_path": "/cities/kr/yeongjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47230",
          "name": "영천시",
          "country_code": "KR",
          "slug": "yeongcheonsi",
          "canonical_path": "/cities/kr/yeongcheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41117",
          "name": "영통구",
          "country_code": "KR",
          "slug": "yeongtonggu",
          "canonical_path": "/cities/kr/yeongtonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44810",
          "name": "예산군",
          "country_code": "KR",
          "slug": "yesangun",
          "canonical_path": "/cities/kr/yesangun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47900",
          "name": "예천군",
          "country_code": "KR",
          "slug": "yecheongun",
          "canonical_path": "/cities/kr/yecheongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41370",
          "name": "오산시",
          "country_code": "KR",
          "slug": "osansi",
          "canonical_path": "/cities/kr/osansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41196",
          "name": "오정구",
          "country_code": "KR",
          "slug": "ojeonggu",
          "canonical_path": "/cities/kr/ojeonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43730",
          "name": "옥천군",
          "country_code": "KR",
          "slug": "ogcheongun",
          "canonical_path": "/cities/kr/ogcheongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:28720",
          "name": "옹진군",
          "country_code": "KR",
          "slug": "ongjingun",
          "canonical_path": "/cities/kr/ongjingun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52111",
          "name": "완산구",
          "country_code": "KR",
          "slug": "wansangu",
          "canonical_path": "/cities/kr/wansangu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52710",
          "name": "완주군",
          "country_code": "KR",
          "slug": "wanjugun",
          "canonical_path": "/cities/kr/wanjugun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11170",
          "name": "용산구",
          "country_code": "KR",
          "slug": "yongsangu",
          "canonical_path": "/cities/kr/yongsangu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41460",
          "name": "용인시",
          "country_code": "KR",
          "slug": "yong-insi",
          "canonical_path": "/cities/kr/yong-insi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47940",
          "name": "울릉군",
          "country_code": "KR",
          "slug": "ulleunggun",
          "canonical_path": "/cities/kr/ulleunggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:31710",
          "name": "울주군",
          "country_code": "KR",
          "slug": "uljugun",
          "canonical_path": "/cities/kr/uljugun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47930",
          "name": "울진군",
          "country_code": "KR",
          "slug": "uljingun",
          "canonical_path": "/cities/kr/uljingun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41192",
          "name": "원미구",
          "country_code": "KR",
          "slug": "wonmigu",
          "canonical_path": "/cities/kr/wonmigu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51130",
          "name": "원주시",
          "country_code": "KR",
          "slug": "wonjusi",
          "canonical_path": "/cities/kr/wonjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:30200",
          "name": "유성구",
          "country_code": "KR",
          "slug": "yuseonggu",
          "canonical_path": "/cities/kr/yuseonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11380",
          "name": "은평구",
          "country_code": "KR",
          "slug": "eunpyeonggu",
          "canonical_path": "/cities/kr/eunpyeonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43770",
          "name": "음성군",
          "country_code": "KR",
          "slug": "eumseonggun",
          "canonical_path": "/cities/kr/eumseonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48720",
          "name": "의령군",
          "country_code": "KR",
          "slug": "uilyeonggun",
          "canonical_path": "/cities/kr/uilyeonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47730",
          "name": "의성군",
          "country_code": "KR",
          "slug": "uiseonggun",
          "canonical_path": "/cities/kr/uiseonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41430",
          "name": "의왕시",
          "country_code": "KR",
          "slug": "ui-wangsi",
          "canonical_path": "/cities/kr/ui-wangsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41150",
          "name": "의정부시",
          "country_code": "KR",
          "slug": "uijeongbusi",
          "canonical_path": "/cities/kr/uijeongbusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48121",
          "name": "의창구",
          "country_code": "KR",
          "slug": "uichanggu",
          "canonical_path": "/cities/kr/uichanggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41500",
          "name": "이천시",
          "country_code": "KR",
          "slug": "icheonsi",
          "canonical_path": "/cities/kr/icheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52140",
          "name": "익산시",
          "country_code": "KR",
          "slug": "igsansi",
          "canonical_path": "/cities/kr/igsansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51810",
          "name": "인제군",
          "country_code": "KR",
          "slug": "injegun",
          "canonical_path": "/cities/kr/injegun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41285",
          "name": "일산동구",
          "country_code": "KR",
          "slug": "ilsandonggu",
          "canonical_path": "/cities/kr/ilsandonggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41287",
          "name": "일산서구",
          "country_code": "KR",
          "slug": "ilsanseogu",
          "canonical_path": "/cities/kr/ilsanseogu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52750",
          "name": "임실군",
          "country_code": "KR",
          "slug": "imsilgun",
          "canonical_path": "/cities/kr/imsilgun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52740",
          "name": "장수군",
          "country_code": "KR",
          "slug": "jangsugun",
          "canonical_path": "/cities/kr/jangsugun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41111",
          "name": "장안구",
          "country_code": "KR",
          "slug": "jang-angu",
          "canonical_path": "/cities/kr/jang-angu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52110",
          "name": "전주시",
          "country_code": "KR",
          "slug": "jeonjusi",
          "canonical_path": "/cities/kr/jeonjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51770",
          "name": "정선군",
          "country_code": "KR",
          "slug": "jeongseongun",
          "canonical_path": "/cities/kr/jeongseongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52180",
          "name": "정읍시",
          "country_code": "KR",
          "slug": "jeong-eubsi",
          "canonical_path": "/cities/kr/jeong-eubsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:50110",
          "name": "제주시",
          "country_code": "KR",
          "slug": "jejusi",
          "canonical_path": "/cities/kr/jejusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43150",
          "name": "제천시",
          "country_code": "KR",
          "slug": "jecheonsi",
          "canonical_path": "/cities/kr/jecheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11110",
          "name": "종로구",
          "country_code": "KR",
          "slug": "jonglogu",
          "canonical_path": "/cities/kr/jonglogu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:11260",
          "name": "중랑구",
          "country_code": "KR",
          "slug": "junglanggu",
          "canonical_path": "/cities/kr/junglanggu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41133",
          "name": "중원구",
          "country_code": "KR",
          "slug": "jung-wongu",
          "canonical_path": "/cities/kr/jung-wongu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43745",
          "name": "증평군",
          "country_code": "KR",
          "slug": "jeungpyeonggun",
          "canonical_path": "/cities/kr/jeungpyeonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:52720",
          "name": "진안군",
          "country_code": "KR",
          "slug": "jin-angun",
          "canonical_path": "/cities/kr/jin-angun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48170",
          "name": "진주시",
          "country_code": "KR",
          "slug": "jinjusi",
          "canonical_path": "/cities/kr/jinjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43750",
          "name": "진천군",
          "country_code": "KR",
          "slug": "jincheongun",
          "canonical_path": "/cities/kr/jincheongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48129",
          "name": "진해구",
          "country_code": "KR",
          "slug": "jinhaegu",
          "canonical_path": "/cities/kr/jinhaegu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48740",
          "name": "창녕군",
          "country_code": "KR",
          "slug": "changnyeonggun",
          "canonical_path": "/cities/kr/changnyeonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48120",
          "name": "창원시(통합)",
          "country_code": "KR",
          "slug": "chang-wonsi-tonghab",
          "canonical_path": "/cities/kr/chang-wonsi-tonghab/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41461",
          "name": "처인구",
          "country_code": "KR",
          "slug": "cheo-ingu",
          "canonical_path": "/cities/kr/cheo-ingu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44130",
          "name": "천안시",
          "country_code": "KR",
          "slug": "cheon-ansi",
          "canonical_path": "/cities/kr/cheon-ansi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51780",
          "name": "철원군",
          "country_code": "KR",
          "slug": "cheol-wongun",
          "canonical_path": "/cities/kr/cheol-wongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47820",
          "name": "청도군",
          "country_code": "KR",
          "slug": "cheongdogun",
          "canonical_path": "/cities/kr/cheongdogun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47750",
          "name": "청송군",
          "country_code": "KR",
          "slug": "cheongsonggun",
          "canonical_path": "/cities/kr/cheongsonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44790",
          "name": "청양군",
          "country_code": "KR",
          "slug": "cheong-yanggun",
          "canonical_path": "/cities/kr/cheong-yanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43114",
          "name": "청원구",
          "country_code": "KR",
          "slug": "cheong-wongu",
          "canonical_path": "/cities/kr/cheong-wongu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43110",
          "name": "청주시",
          "country_code": "KR",
          "slug": "cheongjusi",
          "canonical_path": "/cities/kr/cheongjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51110",
          "name": "춘천시",
          "country_code": "KR",
          "slug": "chuncheonsi",
          "canonical_path": "/cities/kr/chuncheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43130",
          "name": "충주시",
          "country_code": "KR",
          "slug": "chungjusi",
          "canonical_path": "/cities/kr/chungjusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47850",
          "name": "칠곡군",
          "country_code": "KR",
          "slug": "chilgoggun",
          "canonical_path": "/cities/kr/chilgoggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51190",
          "name": "태백시",
          "country_code": "KR",
          "slug": "taebaegsi",
          "canonical_path": "/cities/kr/taebaegsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44825",
          "name": "태안군",
          "country_code": "KR",
          "slug": "tae-angun",
          "canonical_path": "/cities/kr/tae-angun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48220",
          "name": "통영시",
          "country_code": "KR",
          "slug": "tong-yeongsi",
          "canonical_path": "/cities/kr/tong-yeongsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41480",
          "name": "파주시",
          "country_code": "KR",
          "slug": "pajusi",
          "canonical_path": "/cities/kr/pajusi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41115",
          "name": "팔달구",
          "country_code": "KR",
          "slug": "paldalgu",
          "canonical_path": "/cities/kr/paldalgu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51760",
          "name": "평창군",
          "country_code": "KR",
          "slug": "pyeongchanggun",
          "canonical_path": "/cities/kr/pyeongchanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41220",
          "name": "평택시",
          "country_code": "KR",
          "slug": "pyeongtaegsi",
          "canonical_path": "/cities/kr/pyeongtaegsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41650",
          "name": "포천시",
          "country_code": "KR",
          "slug": "pocheonsi",
          "canonical_path": "/cities/kr/pocheonsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:47110",
          "name": "포항시",
          "country_code": "KR",
          "slug": "pohangsi",
          "canonical_path": "/cities/kr/pohangsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41450",
          "name": "하남시",
          "country_code": "KR",
          "slug": "hanamsi",
          "canonical_path": "/cities/kr/hanamsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48850",
          "name": "하동군",
          "country_code": "KR",
          "slug": "hadonggun",
          "canonical_path": "/cities/kr/hadonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48730",
          "name": "함안군",
          "country_code": "KR",
          "slug": "ham-angun",
          "canonical_path": "/cities/kr/ham-angun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48870",
          "name": "함양군",
          "country_code": "KR",
          "slug": "ham-yanggun",
          "canonical_path": "/cities/kr/ham-yanggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:48890",
          "name": "합천군",
          "country_code": "KR",
          "slug": "habcheongun",
          "canonical_path": "/cities/kr/habcheongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:26350",
          "name": "해운대구",
          "country_code": "KR",
          "slug": "hae-undaegu",
          "canonical_path": "/cities/kr/hae-undaegu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:44800",
          "name": "홍성군",
          "country_code": "KR",
          "slug": "hongseonggun",
          "canonical_path": "/cities/kr/hongseonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51720",
          "name": "홍천군",
          "country_code": "KR",
          "slug": "hongcheongun",
          "canonical_path": "/cities/kr/hongcheongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:41590",
          "name": "화성시",
          "country_code": "KR",
          "slug": "hwaseongsi",
          "canonical_path": "/cities/kr/hwaseongsi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51790",
          "name": "화천군",
          "country_code": "KR",
          "slug": "hwacheongun",
          "canonical_path": "/cities/kr/hwacheongun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:51730",
          "name": "횡성군",
          "country_code": "KR",
          "slug": "hoengseonggun",
          "canonical_path": "/cities/kr/hoengseonggun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:kr:mois:43113",
          "name": "흥덕구",
          "country_code": "KR",
          "slug": "heungdeoggu",
          "canonical_path": "/cities/kr/heungdeoggu/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "ES",
      "path": "cities/es.json",
      "city_count": 1387,
      "cities": [
        {
          "entity_id": "city:es:wikidata:Q744893",
          "name": "Abadiño",
          "country_code": "ES",
          "slug": "abadino",
          "canonical_path": "/cities/es/abadino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1635711",
          "name": "Abanilla",
          "country_code": "ES",
          "slug": "abanilla",
          "canonical_path": "/cities/es/abanilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1242411",
          "name": "Abanto y Ciérvana-Abanto Zierbena",
          "country_code": "ES",
          "slug": "abanto-y-ciervana-abanto-zierbena",
          "canonical_path": "/cities/es/abanto-y-ciervana-abanto-zierbena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q305593",
          "name": "Abarán",
          "country_code": "ES",
          "slug": "abaran",
          "canonical_path": "/cities/es/abaran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q318323",
          "name": "Abegondo",
          "country_code": "ES",
          "slug": "abegondo",
          "canonical_path": "/cities/es/abegondo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15593",
          "name": "Abrera",
          "country_code": "ES",
          "slug": "abrera",
          "canonical_path": "/cities/es/abrera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q616785",
          "name": "Aceuchal",
          "country_code": "ES",
          "slug": "aceuchal",
          "canonical_path": "/cities/es/aceuchal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q353618",
          "name": "Adeje",
          "country_code": "ES",
          "slug": "adeje",
          "canonical_path": "/cities/es/adeje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q49562",
          "name": "Adra",
          "country_code": "ES",
          "slug": "adra",
          "canonical_path": "/cities/es/adra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q390069",
          "name": "Agaete",
          "country_code": "ES",
          "slug": "agaete",
          "canonical_path": "/cities/es/agaete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1228383",
          "name": "Agost",
          "country_code": "ES",
          "slug": "agost",
          "canonical_path": "/cities/es/agost/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1778278",
          "name": "Agramunt",
          "country_code": "ES",
          "slug": "agramunt",
          "canonical_path": "/cities/es/agramunt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2522388",
          "name": "Aguadulce",
          "country_code": "ES",
          "slug": "aguadulce",
          "canonical_path": "/cities/es/aguadulce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q398349",
          "name": "Aguilar de Campoo",
          "country_code": "ES",
          "slug": "aguilar-de-campoo",
          "canonical_path": "/cities/es/aguilar-de-campoo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q854444",
          "name": "Aguilar de la Frontera",
          "country_code": "ES",
          "slug": "aguilar-de-la-frontera",
          "canonical_path": "/cities/es/aguilar-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q249941",
          "name": "Águilas",
          "country_code": "ES",
          "slug": "aguilas",
          "canonical_path": "/cities/es/aguilas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q399702",
          "name": "Agüimes",
          "country_code": "ES",
          "slug": "aguimes",
          "canonical_path": "/cities/es/aguimes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q398698",
          "name": "Agurain/Salvatierra",
          "country_code": "ES",
          "slug": "agurain-salvatierra",
          "canonical_path": "/cities/es/agurain-salvatierra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11959",
          "name": "Alacant/Alicante",
          "country_code": "ES",
          "slug": "alacant-alicante",
          "canonical_path": "/cities/es/alacant-alicante/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1637315",
          "name": "Alagón",
          "country_code": "ES",
          "slug": "alagon",
          "canonical_path": "/cities/es/alagon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q847324",
          "name": "Alaior",
          "country_code": "ES",
          "slug": "alaior",
          "canonical_path": "/cities/es/alaior/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1611830",
          "name": "Alameda",
          "country_code": "ES",
          "slug": "alameda",
          "canonical_path": "/cities/es/alameda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1984836",
          "name": "Álamo, El",
          "country_code": "ES",
          "slug": "alamo-el",
          "canonical_path": "/cities/es/alamo-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1649698",
          "name": "Alaquàs",
          "country_code": "ES",
          "slug": "alaquas",
          "canonical_path": "/cities/es/alaquas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q850939",
          "name": "Alaró",
          "country_code": "ES",
          "slug": "alaro",
          "canonical_path": "/cities/es/alaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q946344",
          "name": "Alba de Tormes",
          "country_code": "ES",
          "slug": "alba-de-tormes",
          "canonical_path": "/cities/es/alba-de-tormes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15095",
          "name": "Albacete",
          "country_code": "ES",
          "slug": "albacete",
          "canonical_path": "/cities/es/albacete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1917834",
          "name": "Albaida",
          "country_code": "ES",
          "slug": "albaida",
          "canonical_path": "/cities/es/albaida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1648833",
          "name": "Albal",
          "country_code": "ES",
          "slug": "albal",
          "canonical_path": "/cities/es/albal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q618585",
          "name": "Albatera",
          "country_code": "ES",
          "slug": "albatera",
          "canonical_path": "/cities/es/albatera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1312844",
          "name": "Alberic",
          "country_code": "ES",
          "slug": "alberic",
          "canonical_path": "/cities/es/alberic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q565415",
          "name": "Albolote",
          "country_code": "ES",
          "slug": "albolote",
          "canonical_path": "/cities/es/albolote/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q987383",
          "name": "Alboraia/Alboraya",
          "country_code": "ES",
          "slug": "alboraia-alboraya",
          "canonical_path": "/cities/es/alboraia-alboraya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2522203",
          "name": "Alboraya",
          "country_code": "ES",
          "slug": "alboraya",
          "canonical_path": "/cities/es/alboraya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1404671",
          "name": "Albox",
          "country_code": "ES",
          "slug": "albox",
          "canonical_path": "/cities/es/albox/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q565002",
          "name": "Albuñol",
          "country_code": "ES",
          "slug": "albunol",
          "canonical_path": "/cities/es/albunol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2522183",
          "name": "Alburquerque",
          "country_code": "ES",
          "slug": "alburquerque",
          "canonical_path": "/cities/es/alburquerque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q494781",
          "name": "Alcalá de Guadaíra",
          "country_code": "ES",
          "slug": "alcala-de-guadaira",
          "canonical_path": "/cities/es/alcala-de-guadaira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q46940",
          "name": "Alcalá de Henares",
          "country_code": "ES",
          "slug": "alcala-de-henares",
          "canonical_path": "/cities/es/alcala-de-henares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q203042",
          "name": "Alcalá de los Gazules",
          "country_code": "ES",
          "slug": "alcala-de-los-gazules",
          "canonical_path": "/cities/es/alcala-de-los-gazules/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1635204",
          "name": "Alcalà de Xivert",
          "country_code": "ES",
          "slug": "alcala-de-xivert",
          "canonical_path": "/cities/es/alcala-de-xivert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1386351",
          "name": "Alcalá del Río",
          "country_code": "ES",
          "slug": "alcala-del-rio",
          "canonical_path": "/cities/es/alcala-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2522161",
          "name": "Alcalá del Valle",
          "country_code": "ES",
          "slug": "alcala-del-valle",
          "canonical_path": "/cities/es/alcala-del-valle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q638181",
          "name": "Alcalá la Real",
          "country_code": "ES",
          "slug": "alcala-la-real",
          "canonical_path": "/cities/es/alcala-la-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q987434",
          "name": "Alcanar",
          "country_code": "ES",
          "slug": "alcanar",
          "canonical_path": "/cities/es/alcanar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q572800",
          "name": "Alcañiz",
          "country_code": "ES",
          "slug": "alcaniz",
          "canonical_path": "/cities/es/alcaniz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q954542",
          "name": "Alcantarilla",
          "country_code": "ES",
          "slug": "alcantarilla",
          "canonical_path": "/cities/es/alcantarilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1772290",
          "name": "Alcarràs",
          "country_code": "ES",
          "slug": "alcarras",
          "canonical_path": "/cities/es/alcarras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1771181",
          "name": "Alcàsser",
          "country_code": "ES",
          "slug": "alcasser",
          "canonical_path": "/cities/es/alcasser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1613282",
          "name": "Alcaudete",
          "country_code": "ES",
          "slug": "alcaudete",
          "canonical_path": "/cities/es/alcaudete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q679269",
          "name": "Alcázar de San Juan",
          "country_code": "ES",
          "slug": "alcazar-de-san-juan",
          "canonical_path": "/cities/es/alcazar-de-san-juan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1982975",
          "name": "Alcázares, Los",
          "country_code": "ES",
          "slug": "alcazares-los",
          "canonical_path": "/cities/es/alcazares-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q487679",
          "name": "Alcobendas",
          "country_code": "ES",
          "slug": "alcobendas",
          "canonical_path": "/cities/es/alcobendas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q494777",
          "name": "Alcoi/Alcoy",
          "country_code": "ES",
          "slug": "alcoi-alcoy",
          "canonical_path": "/cities/es/alcoi-alcoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1635385",
          "name": "Alcora, l'",
          "country_code": "ES",
          "slug": "alcora-l",
          "canonical_path": "/cities/es/alcora-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q10372",
          "name": "Alcorcón",
          "country_code": "ES",
          "slug": "alcorcon",
          "canonical_path": "/cities/es/alcorcon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q427790",
          "name": "Alcover",
          "country_code": "ES",
          "slug": "alcover",
          "canonical_path": "/cities/es/alcover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2522098",
          "name": "Alcoy",
          "country_code": "ES",
          "slug": "alcoy",
          "canonical_path": "/cities/es/alcoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q385923",
          "name": "Alcúdia",
          "country_code": "ES",
          "slug": "alcudia",
          "canonical_path": "/cities/es/alcudia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1905388",
          "name": "Alcúdia de Crespins, l'",
          "country_code": "ES",
          "slug": "alcudia-de-crespins-l",
          "canonical_path": "/cities/es/alcudia-de-crespins-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q2044406",
          "name": "Alcúdia, l'",
          "country_code": "ES",
          "slug": "alcudia-l",
          "canonical_path": "/cities/es/alcudia-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q368431",
          "name": "Aldaia",
          "country_code": "ES",
          "slug": "aldaia",
          "canonical_path": "/cities/es/aldaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q986727",
          "name": "Aldea de San Nicolás, La",
          "country_code": "ES",
          "slug": "aldea-de-san-nicolas-la",
          "canonical_path": "/cities/es/aldea-de-san-nicolas-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1651731",
          "name": "Aldeamayor de San Martín",
          "country_code": "ES",
          "slug": "aldeamayor-de-san-martin",
          "canonical_path": "/cities/es/aldeamayor-de-san-martin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12034",
          "name": "Alella",
          "country_code": "ES",
          "slug": "alella",
          "canonical_path": "/cities/es/alella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q564768",
          "name": "Alfacar",
          "country_code": "ES",
          "slug": "alfacar",
          "canonical_path": "/cities/es/alfacar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1648851",
          "name": "Alfafar",
          "country_code": "ES",
          "slug": "alfafar",
          "canonical_path": "/cities/es/alfafar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q695889",
          "name": "Alfaro",
          "country_code": "ES",
          "slug": "alfaro",
          "canonical_path": "/cities/es/alfaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q619126",
          "name": "Alfàs del Pi, l'",
          "country_code": "ES",
          "slug": "alfas-del-pi-l",
          "canonical_path": "/cities/es/alfas-del-pi-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q904151",
          "name": "Algaba, La",
          "country_code": "ES",
          "slug": "algaba-la",
          "canonical_path": "/cities/es/algaba-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q851011",
          "name": "Algaida",
          "country_code": "ES",
          "slug": "algaida",
          "canonical_path": "/cities/es/algaida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2522030",
          "name": "Algar",
          "country_code": "ES",
          "slug": "algar",
          "canonical_path": "/cities/es/algar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q926410",
          "name": "Algarrobo",
          "country_code": "ES",
          "slug": "algarrobo",
          "canonical_path": "/cities/es/algarrobo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q484552",
          "name": "Algeciras",
          "country_code": "ES",
          "slug": "algeciras",
          "canonical_path": "/cities/es/algeciras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1649476",
          "name": "Algemesí",
          "country_code": "ES",
          "slug": "algemesi",
          "canonical_path": "/cities/es/algemesi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q472604",
          "name": "Algete",
          "country_code": "ES",
          "slug": "algete",
          "canonical_path": "/cities/es/algete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1917986",
          "name": "Alginet",
          "country_code": "ES",
          "slug": "alginet",
          "canonical_path": "/cities/es/alginet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q818386",
          "name": "Algodonales",
          "country_code": "ES",
          "slug": "algodonales",
          "canonical_path": "/cities/es/algodonales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1770951",
          "name": "Alguazas",
          "country_code": "ES",
          "slug": "alguazas",
          "canonical_path": "/cities/es/alguazas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q501674",
          "name": "Alhama de Granada",
          "country_code": "ES",
          "slug": "alhama-de-granada",
          "canonical_path": "/cities/es/alhama-de-granada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q954556",
          "name": "Alhama de Murcia",
          "country_code": "ES",
          "slug": "alhama-de-murcia",
          "canonical_path": "/cities/es/alhama-de-murcia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q976528",
          "name": "Alhaurín de la Torre",
          "country_code": "ES",
          "slug": "alhaurin-de-la-torre",
          "canonical_path": "/cities/es/alhaurin-de-la-torre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q846149",
          "name": "Alhaurín el Grande",
          "country_code": "ES",
          "slug": "alhaurin-el-grande",
          "canonical_path": "/cities/es/alhaurin-el-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q564773",
          "name": "Alhendín",
          "country_code": "ES",
          "slug": "alhendin",
          "canonical_path": "/cities/es/alhendin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2521978",
          "name": "Alicante",
          "country_code": "ES",
          "slug": "alicante",
          "canonical_path": "/cities/es/alicante/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q913254",
          "name": "Aljaraque",
          "country_code": "ES",
          "slug": "aljaraque",
          "canonical_path": "/cities/es/aljaraque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1438879",
          "name": "Allariz",
          "country_code": "ES",
          "slug": "allariz",
          "canonical_path": "/cities/es/allariz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q537483",
          "name": "Aller",
          "country_code": "ES",
          "slug": "aller",
          "canonical_path": "/cities/es/aller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1626921",
          "name": "Almacelles",
          "country_code": "ES",
          "slug": "almacelles",
          "canonical_path": "/cities/es/almacelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q752280",
          "name": "Almagro",
          "country_code": "ES",
          "slug": "almagro",
          "canonical_path": "/cities/es/almagro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13930",
          "name": "Almansa",
          "country_code": "ES",
          "slug": "almansa",
          "canonical_path": "/cities/es/almansa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1648768",
          "name": "Almàssera",
          "country_code": "ES",
          "slug": "almassera",
          "canonical_path": "/cities/es/almassera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1373919",
          "name": "Almassora",
          "country_code": "ES",
          "slug": "almassora",
          "canonical_path": "/cities/es/almassora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q5202",
          "name": "Almazán",
          "country_code": "ES",
          "slug": "almazan",
          "canonical_path": "/cities/es/almazan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1917433",
          "name": "Almenara",
          "country_code": "ES",
          "slug": "almenara",
          "canonical_path": "/cities/es/almenara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q490638",
          "name": "Almendralejo",
          "country_code": "ES",
          "slug": "almendralejo",
          "canonical_path": "/cities/es/almendralejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1623078",
          "name": "Almensilla",
          "country_code": "ES",
          "slug": "almensilla",
          "canonical_path": "/cities/es/almensilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q10400",
          "name": "Almería",
          "country_code": "ES",
          "slug": "almeria",
          "canonical_path": "/cities/es/almeria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631896",
          "name": "Almodóvar del Campo",
          "country_code": "ES",
          "slug": "almodovar-del-campo",
          "canonical_path": "/cities/es/almodovar-del-campo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q854424",
          "name": "Almodóvar del Río",
          "country_code": "ES",
          "slug": "almodovar-del-rio",
          "canonical_path": "/cities/es/almodovar-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q736906",
          "name": "Almonte",
          "country_code": "ES",
          "slug": "almonte",
          "canonical_path": "/cities/es/almonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q620600",
          "name": "Almoradí",
          "country_code": "ES",
          "slug": "almoradi",
          "canonical_path": "/cities/es/almoradi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q193780",
          "name": "Almuñécar",
          "country_code": "ES",
          "slug": "almunecar",
          "canonical_path": "/cities/es/almunecar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q935575",
          "name": "Almunia de Doña Godina, La",
          "country_code": "ES",
          "slug": "almunia-de-dona-godina-la",
          "canonical_path": "/cities/es/almunia-de-dona-godina-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1770040",
          "name": "Almussafes",
          "country_code": "ES",
          "slug": "almussafes",
          "canonical_path": "/cities/es/almussafes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q250746",
          "name": "Álora",
          "country_code": "ES",
          "slug": "alora",
          "canonical_path": "/cities/es/alora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q368801",
          "name": "Alovera",
          "country_code": "ES",
          "slug": "alovera",
          "canonical_path": "/cities/es/alovera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q947926",
          "name": "Alpedrete",
          "country_code": "ES",
          "slug": "alpedrete",
          "canonical_path": "/cities/es/alpedrete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1770847",
          "name": "Alpicat",
          "country_code": "ES",
          "slug": "alpicat",
          "canonical_path": "/cities/es/alpicat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q433746",
          "name": "Altafulla",
          "country_code": "ES",
          "slug": "altafulla",
          "canonical_path": "/cities/es/altafulla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q436491",
          "name": "Altea",
          "country_code": "ES",
          "slug": "altea",
          "canonical_path": "/cities/es/altea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3130244",
          "name": "Altsasu",
          "country_code": "ES",
          "slug": "altsasu",
          "canonical_path": "/cities/es/altsasu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1635681",
          "name": "Altsasu/Alsasua",
          "country_code": "ES",
          "slug": "altsasu-alsasua",
          "canonical_path": "/cities/es/altsasu-alsasua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q931780",
          "name": "Alzira",
          "country_code": "ES",
          "slug": "alzira",
          "canonical_path": "/cities/es/alzira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1353997",
          "name": "Ames",
          "country_code": "ES",
          "slug": "ames",
          "canonical_path": "/cities/es/ames/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q54780",
          "name": "Ametlla de Mar, L'",
          "country_code": "ES",
          "slug": "ametlla-de-mar-l",
          "canonical_path": "/cities/es/ametlla-de-mar-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15397",
          "name": "Ametlla del Vallès, L'",
          "country_code": "ES",
          "slug": "ametlla-del-valles-l",
          "canonical_path": "/cities/es/ametlla-del-valles-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q474080",
          "name": "Amorebieta-Etxano",
          "country_code": "ES",
          "slug": "amorebieta-etxano",
          "canonical_path": "/cities/es/amorebieta-etxano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q477311",
          "name": "Amposta",
          "country_code": "ES",
          "slug": "amposta",
          "canonical_path": "/cities/es/amposta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q481760",
          "name": "Amurrio",
          "country_code": "ES",
          "slug": "amurrio",
          "canonical_path": "/cities/es/amurrio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1598976",
          "name": "Andoain",
          "country_code": "ES",
          "slug": "andoain",
          "canonical_path": "/cities/es/andoain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q492533",
          "name": "Andorra",
          "country_code": "ES",
          "slug": "andorra",
          "canonical_path": "/cities/es/andorra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q493017",
          "name": "Andratx",
          "country_code": "ES",
          "slug": "andratx",
          "canonical_path": "/cities/es/andratx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q528530",
          "name": "Andújar",
          "country_code": "ES",
          "slug": "andujar",
          "canonical_path": "/cities/es/andujar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13027",
          "name": "Anglès",
          "country_code": "ES",
          "slug": "angles",
          "canonical_path": "/cities/es/angles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q607669",
          "name": "Añover de Tajo",
          "country_code": "ES",
          "slug": "anover-de-tajo",
          "canonical_path": "/cities/es/anover-de-tajo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q656781",
          "name": "Ansoáin/Antsoain",
          "country_code": "ES",
          "slug": "ansoain-antsoain",
          "canonical_path": "/cities/es/ansoain-antsoain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q572041",
          "name": "Antequera",
          "country_code": "ES",
          "slug": "antequera",
          "canonical_path": "/cities/es/antequera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q575670",
          "name": "Antigua",
          "country_code": "ES",
          "slug": "antigua",
          "canonical_path": "/cities/es/antigua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q624511",
          "name": "Aracena",
          "country_code": "ES",
          "slug": "aracena",
          "canonical_path": "/cities/es/aracena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q624967",
          "name": "Arafo",
          "country_code": "ES",
          "slug": "arafo",
          "canonical_path": "/cities/es/arafo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q62717",
          "name": "Arahal",
          "country_code": "ES",
          "slug": "arahal",
          "canonical_path": "/cities/es/arahal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q495380",
          "name": "Aranda de Duero",
          "country_code": "ES",
          "slug": "aranda-de-duero",
          "canonical_path": "/cities/es/aranda-de-duero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1636195",
          "name": "Aranguren",
          "country_code": "ES",
          "slug": "aranguren",
          "canonical_path": "/cities/es/aranguren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q486792",
          "name": "Aranjuez",
          "country_code": "ES",
          "slug": "aranjuez",
          "canonical_path": "/cities/es/aranjuez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1233527",
          "name": "Arboç, L'",
          "country_code": "ES",
          "slug": "arboc-l",
          "canonical_path": "/cities/es/arboc-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13010",
          "name": "Arbúcies",
          "country_code": "ES",
          "slug": "arbucies",
          "canonical_path": "/cities/es/arbucies/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q632621",
          "name": "Archena",
          "country_code": "ES",
          "slug": "archena",
          "canonical_path": "/cities/es/archena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q920126",
          "name": "Archidona",
          "country_code": "ES",
          "slug": "archidona",
          "canonical_path": "/cities/es/archidona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q637863",
          "name": "Arcos de la Frontera",
          "country_code": "ES",
          "slug": "arcos-de-la-frontera",
          "canonical_path": "/cities/es/arcos-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q641669",
          "name": "Arenas de San Pedro",
          "country_code": "ES",
          "slug": "arenas-de-san-pedro",
          "canonical_path": "/cities/es/arenas-de-san-pedro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12110",
          "name": "Arenys de Mar",
          "country_code": "ES",
          "slug": "arenys-de-mar",
          "canonical_path": "/cities/es/arenys-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12101",
          "name": "Arenys de Munt",
          "country_code": "ES",
          "slug": "arenys-de-munt",
          "canonical_path": "/cities/es/arenys-de-munt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q17416",
          "name": "Ares",
          "country_code": "ES",
          "slug": "ares",
          "canonical_path": "/cities/es/ares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q935603",
          "name": "Aretxabaleta",
          "country_code": "ES",
          "slug": "aretxabaleta",
          "canonical_path": "/cities/es/aretxabaleta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q476793",
          "name": "Arévalo",
          "country_code": "ES",
          "slug": "arevalo",
          "canonical_path": "/cities/es/arevalo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1632537",
          "name": "Argamasilla de Alba",
          "country_code": "ES",
          "slug": "argamasilla-de-alba",
          "canonical_path": "/cities/es/argamasilla-de-alba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631995",
          "name": "Argamasilla de Calatrava",
          "country_code": "ES",
          "slug": "argamasilla-de-calatrava",
          "canonical_path": "/cities/es/argamasilla-de-calatrava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q497692",
          "name": "Arganda del Rey",
          "country_code": "ES",
          "slug": "arganda-del-rey",
          "canonical_path": "/cities/es/arganda-del-rey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11539",
          "name": "Argentona",
          "country_code": "ES",
          "slug": "argentona",
          "canonical_path": "/cities/es/argentona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1632009",
          "name": "Argés",
          "country_code": "ES",
          "slug": "arges",
          "canonical_path": "/cities/es/arges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q657738",
          "name": "Arico",
          "country_code": "ES",
          "slug": "arico",
          "canonical_path": "/cities/es/arico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1354411",
          "name": "Arjona",
          "country_code": "ES",
          "slug": "arjona",
          "canonical_path": "/cities/es/arjona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q550985",
          "name": "Armilla",
          "country_code": "ES",
          "slug": "armilla",
          "canonical_path": "/cities/es/armilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q642083",
          "name": "Arnedo",
          "country_code": "ES",
          "slug": "arnedo",
          "canonical_path": "/cities/es/arnedo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q698246",
          "name": "Arona",
          "country_code": "ES",
          "slug": "arona",
          "canonical_path": "/cities/es/arona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q491922",
          "name": "Arrasate/Mondragón",
          "country_code": "ES",
          "slug": "arrasate-mondragon",
          "canonical_path": "/cities/es/arrasate-mondragon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q647543",
          "name": "Arrecife",
          "country_code": "ES",
          "slug": "arrecife",
          "canonical_path": "/cities/es/arrecife/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q283607",
          "name": "Arrigorriaga",
          "country_code": "ES",
          "slug": "arrigorriaga",
          "canonical_path": "/cities/es/arrigorriaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1651677",
          "name": "Arroyo de la Encomienda",
          "country_code": "ES",
          "slug": "arroyo-de-la-encomienda",
          "canonical_path": "/cities/es/arroyo-de-la-encomienda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1630474",
          "name": "Arroyo de la Luz",
          "country_code": "ES",
          "slug": "arroyo-de-la-luz",
          "canonical_path": "/cities/es/arroyo-de-la-luz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q715970",
          "name": "Artà",
          "country_code": "ES",
          "slug": "arta",
          "canonical_path": "/cities/es/arta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q996161",
          "name": "Arteixo",
          "country_code": "ES",
          "slug": "arteixo",
          "canonical_path": "/cities/es/arteixo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16677",
          "name": "Artés",
          "country_code": "ES",
          "slug": "artes",
          "canonical_path": "/cities/es/artes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q716384",
          "name": "Arucas",
          "country_code": "ES",
          "slug": "arucas",
          "canonical_path": "/cities/es/arucas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q651676",
          "name": "Arzúa",
          "country_code": "ES",
          "slug": "arzua",
          "canonical_path": "/cities/es/arzua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1770153",
          "name": "Aspe",
          "country_code": "ES",
          "slug": "aspe",
          "canonical_path": "/cities/es/aspe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1639355",
          "name": "Astigarraga",
          "country_code": "ES",
          "slug": "astigarraga",
          "canonical_path": "/cities/es/astigarraga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1443915",
          "name": "Astillero, El",
          "country_code": "ES",
          "slug": "astillero-el",
          "canonical_path": "/cities/es/astillero-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q465078",
          "name": "Astorga",
          "country_code": "ES",
          "slug": "astorga",
          "canonical_path": "/cities/es/astorga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q550974",
          "name": "Atarfe",
          "country_code": "ES",
          "slug": "atarfe",
          "canonical_path": "/cities/es/atarfe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3105763",
          "name": "Atarrabia",
          "country_code": "ES",
          "slug": "atarrabia",
          "canonical_path": "/cities/es/atarrabia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15688",
          "name": "Ávila",
          "country_code": "ES",
          "slug": "avila",
          "canonical_path": "/cities/es/avila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q14649",
          "name": "Avilés",
          "country_code": "ES",
          "slug": "aviles",
          "canonical_path": "/cities/es/aviles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q736872",
          "name": "Ayamonte",
          "country_code": "ES",
          "slug": "ayamonte",
          "canonical_path": "/cities/es/ayamonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q34343",
          "name": "Ayora",
          "country_code": "ES",
          "slug": "ayora",
          "canonical_path": "/cities/es/ayora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q793934",
          "name": "Azkoitia",
          "country_code": "ES",
          "slug": "azkoitia",
          "canonical_path": "/cities/es/azkoitia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1601679",
          "name": "Aznalcóllar",
          "country_code": "ES",
          "slug": "aznalcollar",
          "canonical_path": "/cities/es/aznalcollar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q180611",
          "name": "Azpeitia",
          "country_code": "ES",
          "slug": "azpeitia",
          "canonical_path": "/cities/es/azpeitia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1368982",
          "name": "Azuaga",
          "country_code": "ES",
          "slug": "azuaga",
          "canonical_path": "/cities/es/azuaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q794315",
          "name": "Azuqueca de Henares",
          "country_code": "ES",
          "slug": "azuqueca-de-henares",
          "canonical_path": "/cities/es/azuqueca-de-henares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15679",
          "name": "Badajoz",
          "country_code": "ES",
          "slug": "badajoz",
          "canonical_path": "/cities/es/badajoz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15468",
          "name": "Badalona",
          "country_code": "ES",
          "slug": "badalona",
          "canonical_path": "/cities/es/badalona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13913",
          "name": "Badia del Vallès",
          "country_code": "ES",
          "slug": "badia-del-valles",
          "canonical_path": "/cities/es/badia-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q854403",
          "name": "Baena",
          "country_code": "ES",
          "slug": "baena",
          "canonical_path": "/cities/es/baena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q488555",
          "name": "Baeza",
          "country_code": "ES",
          "slug": "baeza",
          "canonical_path": "/cities/es/baeza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q695456",
          "name": "Bailén",
          "country_code": "ES",
          "slug": "bailen",
          "canonical_path": "/cities/es/bailen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q748867",
          "name": "Baiona",
          "country_code": "ES",
          "slug": "baiona",
          "canonical_path": "/cities/es/baiona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q696797",
          "name": "Balaguer",
          "country_code": "ES",
          "slug": "balaguer",
          "canonical_path": "/cities/es/balaguer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q4480",
          "name": "Balmaseda",
          "country_code": "ES",
          "slug": "balmaseda",
          "canonical_path": "/cities/es/balmaseda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442670",
          "name": "Bañeza, La",
          "country_code": "ES",
          "slug": "baneza-la",
          "canonical_path": "/cities/es/baneza-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q621626",
          "name": "Banyeres de Mariola",
          "country_code": "ES",
          "slug": "banyeres-de-mariola",
          "canonical_path": "/cities/es/banyeres-de-mariola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13614",
          "name": "Banyoles",
          "country_code": "ES",
          "slug": "banyoles",
          "canonical_path": "/cities/es/banyoles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q487801",
          "name": "Barakaldo",
          "country_code": "ES",
          "slug": "barakaldo",
          "canonical_path": "/cities/es/barakaldo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3128824",
          "name": "Barañáin",
          "country_code": "ES",
          "slug": "baranain",
          "canonical_path": "/cities/es/baranain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q768691",
          "name": "Barañáin/Barañain",
          "country_code": "ES",
          "slug": "baranain-baranain",
          "canonical_path": "/cities/es/baranain-baranain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1627578",
          "name": "Barbadás",
          "country_code": "ES",
          "slug": "barbadas",
          "canonical_path": "/cities/es/barbadas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q502975",
          "name": "Barbastro",
          "country_code": "ES",
          "slug": "barbastro",
          "canonical_path": "/cities/es/barbastro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13154",
          "name": "Barbate",
          "country_code": "ES",
          "slug": "barbate",
          "canonical_path": "/cities/es/barbate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13916",
          "name": "Barberà del Vallès",
          "country_code": "ES",
          "slug": "barbera-del-valles",
          "canonical_path": "/cities/es/barbera-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:slug:barcelona",
          "name": "Barcelona",
          "country_code": "ES",
          "slug": "barcelona",
          "canonical_path": "/cities/es/barcelona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1607428",
          "name": "Barco de Valdeorras, O",
          "country_code": "ES",
          "slug": "barco-de-valdeorras-o",
          "canonical_path": "/cities/es/barco-de-valdeorras-o/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628628",
          "name": "Bargas",
          "country_code": "ES",
          "slug": "bargas",
          "canonical_path": "/cities/es/bargas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q925913",
          "name": "Barrios, Los",
          "country_code": "ES",
          "slug": "barrios-los",
          "canonical_path": "/cities/es/barrios-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q765496",
          "name": "Basauri",
          "country_code": "ES",
          "slug": "basauri",
          "canonical_path": "/cities/es/basauri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q490472",
          "name": "Baza",
          "country_code": "ES",
          "slug": "baza",
          "canonical_path": "/cities/es/baza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q641755",
          "name": "Baztan",
          "country_code": "ES",
          "slug": "baztan",
          "canonical_path": "/cities/es/baztan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2521207",
          "name": "Beas de Segura",
          "country_code": "ES",
          "slug": "beas-de-segura",
          "canonical_path": "/cities/es/beas-de-segura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q847130",
          "name": "Beasain",
          "country_code": "ES",
          "slug": "beasain",
          "canonical_path": "/cities/es/beasain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q655675",
          "name": "Becerril de la Sierra",
          "country_code": "ES",
          "slug": "becerril-de-la-sierra",
          "canonical_path": "/cities/es/becerril-de-la-sierra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15596",
          "name": "Begues",
          "country_code": "ES",
          "slug": "begues",
          "canonical_path": "/cities/es/begues/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q695375",
          "name": "Béjar",
          "country_code": "ES",
          "slug": "bejar",
          "canonical_path": "/cities/es/bejar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q948983",
          "name": "Bellpuig",
          "country_code": "ES",
          "slug": "bellpuig",
          "canonical_path": "/cities/es/bellpuig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q816058",
          "name": "Bellreguard",
          "country_code": "ES",
          "slug": "bellreguard",
          "canonical_path": "/cities/es/bellreguard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1157834",
          "name": "Bembibre",
          "country_code": "ES",
          "slug": "bembibre",
          "canonical_path": "/cities/es/bembibre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628394",
          "name": "Benacazón",
          "country_code": "ES",
          "slug": "benacazon",
          "canonical_path": "/cities/es/benacazon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1989365",
          "name": "Benaguasil",
          "country_code": "ES",
          "slug": "benaguasil",
          "canonical_path": "/cities/es/benaguasil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q816672",
          "name": "Benahavís",
          "country_code": "ES",
          "slug": "benahavis",
          "canonical_path": "/cities/es/benahavis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q488869",
          "name": "Benalmádena",
          "country_code": "ES",
          "slug": "benalmadena",
          "canonical_path": "/cities/es/benalmadena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1632577",
          "name": "Benalup-Casas Viejas",
          "country_code": "ES",
          "slug": "benalup-casas-viejas",
          "canonical_path": "/cities/es/benalup-casas-viejas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q951778",
          "name": "Benavente",
          "country_code": "ES",
          "slug": "benavente",
          "canonical_path": "/cities/es/benavente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1752438",
          "name": "Benejúzar",
          "country_code": "ES",
          "slug": "benejuzar",
          "canonical_path": "/cities/es/benejuzar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q23012",
          "name": "Benetússer",
          "country_code": "ES",
          "slug": "benetusser",
          "canonical_path": "/cities/es/benetusser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q817302",
          "name": "Benicarló",
          "country_code": "ES",
          "slug": "benicarlo",
          "canonical_path": "/cities/es/benicarlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3128272",
          "name": "Benicàssim",
          "country_code": "ES",
          "slug": "benicassim",
          "canonical_path": "/cities/es/benicassim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q636467",
          "name": "Benicàssim/Benicasim",
          "country_code": "ES",
          "slug": "benicassim-benicasim",
          "canonical_path": "/cities/es/benicassim-benicasim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q487981",
          "name": "Benidorm",
          "country_code": "ES",
          "slug": "benidorm",
          "canonical_path": "/cities/es/benidorm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1989408",
          "name": "Beniel",
          "country_code": "ES",
          "slug": "beniel",
          "canonical_path": "/cities/es/beniel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1919317",
          "name": "Benifaió",
          "country_code": "ES",
          "slug": "benifaio",
          "canonical_path": "/cities/es/benifaio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1769957",
          "name": "Benigànim",
          "country_code": "ES",
          "slug": "beniganim",
          "canonical_path": "/cities/es/beniganim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1649406",
          "name": "Benissa",
          "country_code": "ES",
          "slug": "benissa",
          "canonical_path": "/cities/es/benissa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1242343",
          "name": "Berango",
          "country_code": "ES",
          "slug": "berango",
          "canonical_path": "/cities/es/berango/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15487",
          "name": "Berga",
          "country_code": "ES",
          "slug": "berga",
          "canonical_path": "/cities/es/berga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1382252",
          "name": "Bergara",
          "country_code": "ES",
          "slug": "bergara",
          "canonical_path": "/cities/es/bergara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q644018",
          "name": "Bergondo",
          "country_code": "ES",
          "slug": "bergondo",
          "canonical_path": "/cities/es/bergondo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q491929",
          "name": "Berja",
          "country_code": "ES",
          "slug": "berja",
          "canonical_path": "/cities/es/berja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q695444",
          "name": "Bermeo",
          "country_code": "ES",
          "slug": "bermeo",
          "canonical_path": "/cities/es/bermeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1763760",
          "name": "Berrioplano/Berriobeiti",
          "country_code": "ES",
          "slug": "berrioplano-berriobeiti",
          "canonical_path": "/cities/es/berrioplano-berriobeiti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1645776",
          "name": "Berriozar",
          "country_code": "ES",
          "slug": "berriozar",
          "canonical_path": "/cities/es/berriozar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13417",
          "name": "Bescanó",
          "country_code": "ES",
          "slug": "bescano",
          "canonical_path": "/cities/es/bescano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q671341",
          "name": "Betanzos",
          "country_code": "ES",
          "slug": "betanzos",
          "canonical_path": "/cities/es/betanzos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q986084",
          "name": "Bétera",
          "country_code": "ES",
          "slug": "betera",
          "canonical_path": "/cities/es/betera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q54948",
          "name": "Betxí",
          "country_code": "ES",
          "slug": "betxi",
          "canonical_path": "/cities/es/betxi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1763754",
          "name": "Bigastro",
          "country_code": "ES",
          "slug": "bigastro",
          "canonical_path": "/cities/es/bigastro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15398",
          "name": "Bigues i Riells del Fai",
          "country_code": "ES",
          "slug": "bigues-i-riells-del-fai",
          "canonical_path": "/cities/es/bigues-i-riells-del-fai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8692",
          "name": "Bilbao",
          "country_code": "ES",
          "slug": "bilbao",
          "canonical_path": "/cities/es/bilbao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q864175",
          "name": "Binéfar",
          "country_code": "ES",
          "slug": "binefar",
          "canonical_path": "/cities/es/binefar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q837121",
          "name": "Binissalem",
          "country_code": "ES",
          "slug": "binissalem",
          "canonical_path": "/cities/es/binissalem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13460",
          "name": "Bisbal d'Empordà, La",
          "country_code": "ES",
          "slug": "bisbal-d-emporda-la",
          "canonical_path": "/cities/es/bisbal-d-emporda-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1998560",
          "name": "Blanca",
          "country_code": "ES",
          "slug": "blanca",
          "canonical_path": "/cities/es/blanca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12991",
          "name": "Blanes",
          "country_code": "ES",
          "slug": "blanes",
          "canonical_path": "/cities/es/blanes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641013",
          "name": "Boadilla del Monte",
          "country_code": "ES",
          "slug": "boadilla-del-monte",
          "canonical_path": "/cities/es/boadilla-del-monte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3127952",
          "name": "Boalo",
          "country_code": "ES",
          "slug": "boalo",
          "canonical_path": "/cities/es/boalo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1772163",
          "name": "Boalo, El",
          "country_code": "ES",
          "slug": "boalo-el",
          "canonical_path": "/cities/es/boalo-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q735282",
          "name": "Boiro",
          "country_code": "ES",
          "slug": "boiro",
          "canonical_path": "/cities/es/boiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1613546",
          "name": "Bolaños de Calatrava",
          "country_code": "ES",
          "slug": "bolanos-de-calatrava",
          "canonical_path": "/cities/es/bolanos-de-calatrava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605640",
          "name": "Bollullos de la Mitación",
          "country_code": "ES",
          "slug": "bollullos-de-la-mitacion",
          "canonical_path": "/cities/es/bollullos-de-la-mitacion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q846143",
          "name": "Bollullos Par del Condado",
          "country_code": "ES",
          "slug": "bollullos-par-del-condado",
          "canonical_path": "/cities/es/bollullos-par-del-condado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1615150",
          "name": "Bonares",
          "country_code": "ES",
          "slug": "bonares",
          "canonical_path": "/cities/es/bonares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q928006",
          "name": "Borges Blanques, Les",
          "country_code": "ES",
          "slug": "borges-blanques-les",
          "canonical_path": "/cities/es/borges-blanques-les/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q835559",
          "name": "Borja",
          "country_code": "ES",
          "slug": "borja",
          "canonical_path": "/cities/es/borja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605629",
          "name": "Bormujos",
          "country_code": "ES",
          "slug": "bormujos",
          "canonical_path": "/cities/es/bormujos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1451570",
          "name": "Bornos",
          "country_code": "ES",
          "slug": "bornos",
          "canonical_path": "/cities/es/bornos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q385070",
          "name": "Borriana/Burriana",
          "country_code": "ES",
          "slug": "borriana-burriana",
          "canonical_path": "/cities/es/borriana-burriana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q978356",
          "name": "Borriol",
          "country_code": "ES",
          "slug": "borriol",
          "canonical_path": "/cities/es/borriol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q433958",
          "name": "Breña Alta",
          "country_code": "ES",
          "slug": "brena-alta",
          "canonical_path": "/cities/es/brena-alta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q433986",
          "name": "Breña Baja",
          "country_code": "ES",
          "slug": "brena-baja",
          "canonical_path": "/cities/es/brena-baja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q579216",
          "name": "Brenes",
          "country_code": "ES",
          "slug": "brenes",
          "canonical_path": "/cities/es/brenes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1615466",
          "name": "Brión",
          "country_code": "ES",
          "slug": "brion",
          "canonical_path": "/cities/es/brion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1391501",
          "name": "Briviesca",
          "country_code": "ES",
          "slug": "briviesca",
          "canonical_path": "/cities/es/briviesca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1647090",
          "name": "Brunete",
          "country_code": "ES",
          "slug": "brunete",
          "canonical_path": "/cities/es/brunete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2520760",
          "name": "Buenavista del Norte",
          "country_code": "ES",
          "slug": "buenavista-del-norte",
          "canonical_path": "/cities/es/buenavista-del-norte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1632909",
          "name": "Bueu",
          "country_code": "ES",
          "slug": "bueu",
          "canonical_path": "/cities/es/bueu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q975711",
          "name": "Bujalance",
          "country_code": "ES",
          "slug": "bujalance",
          "canonical_path": "/cities/es/bujalance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q986086",
          "name": "Bullas",
          "country_code": "ES",
          "slug": "bullas",
          "canonical_path": "/cities/es/bullas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q853762",
          "name": "Buñol",
          "country_code": "ES",
          "slug": "bunol",
          "canonical_path": "/cities/es/bunol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q837125",
          "name": "Bunyola",
          "country_code": "ES",
          "slug": "bunyola",
          "canonical_path": "/cities/es/bunyola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1619456",
          "name": "Burela",
          "country_code": "ES",
          "slug": "burela",
          "canonical_path": "/cities/es/burela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q485129",
          "name": "Burgo de Osma-Ciudad de Osma",
          "country_code": "ES",
          "slug": "burgo-de-osma-ciudad-de-osma",
          "canonical_path": "/cities/es/burgo-de-osma-ciudad-de-osma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q9580",
          "name": "Burgos",
          "country_code": "ES",
          "slug": "burgos",
          "canonical_path": "/cities/es/burgos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1633443",
          "name": "Burguillos",
          "country_code": "ES",
          "slug": "burguillos",
          "canonical_path": "/cities/es/burguillos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q55688",
          "name": "Burjassot",
          "country_code": "ES",
          "slug": "burjassot",
          "canonical_path": "/cities/es/burjassot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q732730",
          "name": "Burlada/Burlata",
          "country_code": "ES",
          "slug": "burlada-burlata",
          "canonical_path": "/cities/es/burlada-burlata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3127451",
          "name": "Burlata",
          "country_code": "ES",
          "slug": "burlata",
          "canonical_path": "/cities/es/burlata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2520709",
          "name": "Burriana",
          "country_code": "ES",
          "slug": "burriana",
          "canonical_path": "/cities/es/burriana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641907",
          "name": "Cabanillas del Campo",
          "country_code": "ES",
          "slug": "cabanillas-del-campo",
          "canonical_path": "/cities/es/cabanillas-del-campo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2520672",
          "name": "Cabeza del Buey",
          "country_code": "ES",
          "slug": "cabeza-del-buey",
          "canonical_path": "/cities/es/cabeza-del-buey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q63052",
          "name": "Cabezas de San Juan, Las",
          "country_code": "ES",
          "slug": "cabezas-de-san-juan-las",
          "canonical_path": "/cities/es/cabezas-de-san-juan-las/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q593831",
          "name": "Cabezón de la Sal",
          "country_code": "ES",
          "slug": "cabezon-de-la-sal",
          "canonical_path": "/cities/es/cabezon-de-la-sal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q927931",
          "name": "Cabra",
          "country_code": "ES",
          "slug": "cabra",
          "canonical_path": "/cities/es/cabra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12824",
          "name": "Cabrera de Mar",
          "country_code": "ES",
          "slug": "cabrera-de-mar",
          "canonical_path": "/cities/es/cabrera-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12083",
          "name": "Cabrils",
          "country_code": "ES",
          "slug": "cabrils",
          "canonical_path": "/cities/es/cabrils/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3127135",
          "name": "Cacabelos",
          "country_code": "ES",
          "slug": "cacabelos",
          "canonical_path": "/cities/es/cacabelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15678",
          "name": "Cáceres",
          "country_code": "ES",
          "slug": "caceres",
          "canonical_path": "/cities/es/caceres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15682",
          "name": "Cádiz",
          "country_code": "ES",
          "slug": "cadiz",
          "canonical_path": "/cities/es/cadiz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q554805",
          "name": "Cájar",
          "country_code": "ES",
          "slug": "cajar",
          "canonical_path": "/cities/es/cajar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983637",
          "name": "Calafell",
          "country_code": "ES",
          "slug": "calafell",
          "canonical_path": "/cities/es/calafell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q642046",
          "name": "Calahorra",
          "country_code": "ES",
          "slug": "calahorra",
          "canonical_path": "/cities/es/calahorra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1020436",
          "name": "Calamonte",
          "country_code": "ES",
          "slug": "calamonte",
          "canonical_path": "/cities/es/calamonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1313139",
          "name": "Calasparra",
          "country_code": "ES",
          "slug": "calasparra",
          "canonical_path": "/cities/es/calasparra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q496424",
          "name": "Calatayud",
          "country_code": "ES",
          "slug": "calatayud",
          "canonical_path": "/cities/es/calatayud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1448886",
          "name": "Caldas de Reis",
          "country_code": "ES",
          "slug": "caldas-de-reis",
          "canonical_path": "/cities/es/caldas-de-reis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13064",
          "name": "Caldes de Malavella",
          "country_code": "ES",
          "slug": "caldes-de-malavella",
          "canonical_path": "/cities/es/caldes-de-malavella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15400",
          "name": "Caldes de Montbui",
          "country_code": "ES",
          "slug": "caldes-de-montbui",
          "canonical_path": "/cities/es/caldes-de-montbui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12540",
          "name": "Calella",
          "country_code": "ES",
          "slug": "calella",
          "canonical_path": "/cities/es/calella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1770160",
          "name": "Callosa d'en Sarrià",
          "country_code": "ES",
          "slug": "callosa-d-en-sarria",
          "canonical_path": "/cities/es/callosa-d-en-sarria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1750915",
          "name": "Callosa de Segura",
          "country_code": "ES",
          "slug": "callosa-de-segura",
          "canonical_path": "/cities/es/callosa-de-segura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13459",
          "name": "Calonge i Sant Antoni",
          "country_code": "ES",
          "slug": "calonge-i-sant-antoni",
          "canonical_path": "/cities/es/calonge-i-sant-antoni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q671272",
          "name": "Calp",
          "country_code": "ES",
          "slug": "calp",
          "canonical_path": "/cities/es/calp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q491786",
          "name": "Calvià",
          "country_code": "ES",
          "slug": "calvia",
          "canonical_path": "/cities/es/calvia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1635185",
          "name": "Camargo",
          "country_code": "ES",
          "slug": "camargo",
          "canonical_path": "/cities/es/camargo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1373985",
          "name": "Camariñas",
          "country_code": "ES",
          "slug": "camarinas",
          "canonical_path": "/cities/es/camarinas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1648727",
          "name": "Camarma de Esteruelas",
          "country_code": "ES",
          "slug": "camarma-de-esteruelas",
          "canonical_path": "/cities/es/camarma-de-esteruelas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q752127",
          "name": "Camas",
          "country_code": "ES",
          "slug": "camas",
          "canonical_path": "/cities/es/camas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q695477",
          "name": "Cambados",
          "country_code": "ES",
          "slug": "cambados",
          "canonical_path": "/cities/es/cambados/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1113375",
          "name": "Cambre",
          "country_code": "ES",
          "slug": "cambre",
          "canonical_path": "/cities/es/cambre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q828572",
          "name": "Cambrils",
          "country_code": "ES",
          "slug": "cambrils",
          "canonical_path": "/cities/es/cambrils/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q63031",
          "name": "Campana, La",
          "country_code": "ES",
          "slug": "campana-la",
          "canonical_path": "/cities/es/campana-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2520456",
          "name": "Campanario",
          "country_code": "ES",
          "slug": "campanario",
          "canonical_path": "/cities/es/campanario/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q842224",
          "name": "Campello, el",
          "country_code": "ES",
          "slug": "campello-el",
          "canonical_path": "/cities/es/campello-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q944101",
          "name": "Campillos",
          "country_code": "ES",
          "slug": "campillos",
          "canonical_path": "/cities/es/campillos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q681080",
          "name": "Campo de Criptana",
          "country_code": "ES",
          "slug": "campo-de-criptana",
          "canonical_path": "/cities/es/campo-de-criptana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1999732",
          "name": "Campo Real",
          "country_code": "ES",
          "slug": "campo-real",
          "canonical_path": "/cities/es/campo-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q743716",
          "name": "Campos",
          "country_code": "ES",
          "slug": "campos",
          "canonical_path": "/cities/es/campos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q258722",
          "name": "Canals",
          "country_code": "ES",
          "slug": "canals",
          "canonical_path": "/cities/es/canals/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q487268",
          "name": "Candelaria",
          "country_code": "ES",
          "slug": "candelaria",
          "canonical_path": "/cities/es/candelaria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442696",
          "name": "Candeleda",
          "country_code": "ES",
          "slug": "candeleda",
          "canonical_path": "/cities/es/candeleda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1904015",
          "name": "Canet d'En Berenguer",
          "country_code": "ES",
          "slug": "canet-d-en-berenguer",
          "canonical_path": "/cities/es/canet-d-en-berenguer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12114",
          "name": "Canet de Mar",
          "country_code": "ES",
          "slug": "canet-de-mar",
          "canonical_path": "/cities/es/canet-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628188",
          "name": "Cangas",
          "country_code": "ES",
          "slug": "cangas",
          "canonical_path": "/cities/es/cangas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q225515",
          "name": "Cangas de Onís",
          "country_code": "ES",
          "slug": "cangas-de-onis",
          "canonical_path": "/cities/es/cangas-de-onis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q737421",
          "name": "Cangas del Narcea",
          "country_code": "ES",
          "slug": "cangas-del-narcea",
          "canonical_path": "/cities/es/cangas-del-narcea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1245507",
          "name": "Canonja, La",
          "country_code": "ES",
          "slug": "canonja-la",
          "canonical_path": "/cities/es/canonja-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15402",
          "name": "Canovelles",
          "country_code": "ES",
          "slug": "canovelles",
          "canonical_path": "/cities/es/canovelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q683023",
          "name": "Cantillana",
          "country_code": "ES",
          "slug": "cantillana",
          "canonical_path": "/cities/es/cantillana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15559",
          "name": "Canyelles",
          "country_code": "ES",
          "slug": "canyelles",
          "canonical_path": "/cities/es/canyelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q920971",
          "name": "Capdepera",
          "country_code": "ES",
          "slug": "capdepera",
          "canonical_path": "/cities/es/capdepera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15942",
          "name": "Capellades",
          "country_code": "ES",
          "slug": "capellades",
          "canonical_path": "/cities/es/capellades/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q230368",
          "name": "Caravaca de la Cruz",
          "country_code": "ES",
          "slug": "caravaca-de-la-cruz",
          "canonical_path": "/cities/es/caravaca-de-la-cruz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1640862",
          "name": "Carbajosa de la Sagrada",
          "country_code": "ES",
          "slug": "carbajosa-de-la-sagrada",
          "canonical_path": "/cities/es/carbajosa-de-la-sagrada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1607558",
          "name": "Carballiño, O",
          "country_code": "ES",
          "slug": "carballino-o",
          "canonical_path": "/cities/es/carballino-o/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q166137",
          "name": "Carballo",
          "country_code": "ES",
          "slug": "carballo",
          "canonical_path": "/cities/es/carballo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1110337",
          "name": "Carboneras",
          "country_code": "ES",
          "slug": "carboneras",
          "canonical_path": "/cities/es/carboneras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1771128",
          "name": "Carcaixent",
          "country_code": "ES",
          "slug": "carcaixent",
          "canonical_path": "/cities/es/carcaixent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15406",
          "name": "Cardedeu",
          "country_code": "ES",
          "slug": "cardedeu",
          "canonical_path": "/cities/es/cardedeu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3126293",
          "name": "Cardona",
          "country_code": "ES",
          "slug": "cardona",
          "canonical_path": "/cities/es/cardona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1312654",
          "name": "Carlet",
          "country_code": "ES",
          "slug": "carlet",
          "canonical_path": "/cities/es/carlet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q749022",
          "name": "Carlota, La",
          "country_code": "ES",
          "slug": "carlota-la",
          "canonical_path": "/cities/es/carlota-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q63092",
          "name": "Carmona",
          "country_code": "ES",
          "slug": "carmona",
          "canonical_path": "/cities/es/carmona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3126254",
          "name": "Carnota",
          "country_code": "ES",
          "slug": "carnota",
          "canonical_path": "/cities/es/carnota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q649981",
          "name": "Carolina, La",
          "country_code": "ES",
          "slug": "carolina-la",
          "canonical_path": "/cities/es/carolina-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q601352",
          "name": "Carral",
          "country_code": "ES",
          "slug": "carral",
          "canonical_path": "/cities/es/carral/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1642057",
          "name": "Carranque",
          "country_code": "ES",
          "slug": "carranque",
          "canonical_path": "/cities/es/carranque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q737389",
          "name": "Carreño",
          "country_code": "ES",
          "slug": "carreno",
          "canonical_path": "/cities/es/carreno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q162615",
          "name": "Cartagena",
          "country_code": "ES",
          "slug": "cartagena",
          "canonical_path": "/cities/es/cartagena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q935266",
          "name": "Cártama",
          "country_code": "ES",
          "slug": "cartama",
          "canonical_path": "/cities/es/cartama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q846156",
          "name": "Cartaya",
          "country_code": "ES",
          "slug": "cartaya",
          "canonical_path": "/cities/es/cartaya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1374038",
          "name": "Cartes",
          "country_code": "ES",
          "slug": "cartes",
          "canonical_path": "/cities/es/cartes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641917",
          "name": "Casar, El",
          "country_code": "ES",
          "slug": "casar-el",
          "canonical_path": "/cities/es/casar-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q913483",
          "name": "Casares",
          "country_code": "ES",
          "slug": "casares",
          "canonical_path": "/cities/es/casares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1445334",
          "name": "Casariche",
          "country_code": "ES",
          "slug": "casariche",
          "canonical_path": "/cities/es/casariche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628648",
          "name": "Casarrubios del Monte",
          "country_code": "ES",
          "slug": "casarrubios-del-monte",
          "canonical_path": "/cities/es/casarrubios-del-monte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q64010",
          "name": "Caspe",
          "country_code": "ES",
          "slug": "caspe",
          "canonical_path": "/cities/es/caspe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13424",
          "name": "Cassà de la Selva",
          "country_code": "ES",
          "slug": "cassa-de-la-selva",
          "canonical_path": "/cities/es/cassa-de-la-selva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1646122",
          "name": "Castalla",
          "country_code": "ES",
          "slug": "castalla",
          "canonical_path": "/cities/es/castalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13467",
          "name": "Castell d'Aro, Platja d'Aro i s'Agaró",
          "country_code": "ES",
          "slug": "castell-d-aro-platja-d-aro-i-s-agaro",
          "canonical_path": "/cities/es/castell-d-aro-platja-d-aro-i-s-agaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3125800",
          "name": "Castell-Platja d'Aro",
          "country_code": "ES",
          "slug": "castell-platja-d-aro",
          "canonical_path": "/cities/es/castell-platja-d-aro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q941533",
          "name": "Castell, Es",
          "country_code": "ES",
          "slug": "castell-es",
          "canonical_path": "/cities/es/castell-es/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13918",
          "name": "Castellar del Vallès",
          "country_code": "ES",
          "slug": "castellar-del-valles",
          "canonical_path": "/cities/es/castellar-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13921",
          "name": "Castellbisbal",
          "country_code": "ES",
          "slug": "castellbisbal",
          "canonical_path": "/cities/es/castellbisbal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15597",
          "name": "Castelldefels",
          "country_code": "ES",
          "slug": "castelldefels",
          "canonical_path": "/cities/es/castelldefels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q2041822",
          "name": "Castelló",
          "country_code": "ES",
          "slug": "castello",
          "canonical_path": "/cities/es/castello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11286",
          "name": "Castelló d'Empúries",
          "country_code": "ES",
          "slug": "castello-d-empuries",
          "canonical_path": "/cities/es/castello-d-empuries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2519752",
          "name": "Castelló de la Plana",
          "country_code": "ES",
          "slug": "castello-de-la-plana",
          "canonical_path": "/cities/es/castello-de-la-plana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15092",
          "name": "Castelló de la Plana/Castellón de la Plana",
          "country_code": "ES",
          "slug": "castello-de-la-plana-castellon-de-la-plana",
          "canonical_path": "/cities/es/castello-de-la-plana-castellon-de-la-plana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q980056",
          "name": "Castilblanco de los Arroyos",
          "country_code": "ES",
          "slug": "castilblanco-de-los-arroyos",
          "canonical_path": "/cities/es/castilblanco-de-los-arroyos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q841589",
          "name": "Castilleja de la Cuesta",
          "country_code": "ES",
          "slug": "castilleja-de-la-cuesta",
          "canonical_path": "/cities/es/castilleja-de-la-cuesta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2519711",
          "name": "Castillo de Locubín",
          "country_code": "ES",
          "slug": "castillo-de-locubin",
          "canonical_path": "/cities/es/castillo-de-locubin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q653861",
          "name": "Castrillón",
          "country_code": "ES",
          "slug": "castrillon",
          "canonical_path": "/cities/es/castrillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1368876",
          "name": "Castro de Rei",
          "country_code": "ES",
          "slug": "castro-de-rei",
          "canonical_path": "/cities/es/castro-de-rei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1447412",
          "name": "Castro del Río",
          "country_code": "ES",
          "slug": "castro-del-rio",
          "canonical_path": "/cities/es/castro-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q501090",
          "name": "Castro-Urdiales",
          "country_code": "ES",
          "slug": "castro-urdiales",
          "canonical_path": "/cities/es/castro-urdiales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q515016",
          "name": "Castuera",
          "country_code": "ES",
          "slug": "castuera",
          "canonical_path": "/cities/es/castuera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1771131",
          "name": "Catarroja",
          "country_code": "ES",
          "slug": "catarroja",
          "canonical_path": "/cities/es/catarroja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q594741",
          "name": "Catllar, El",
          "country_code": "ES",
          "slug": "catllar-el",
          "canonical_path": "/cities/es/catllar-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1752447",
          "name": "Catral",
          "country_code": "ES",
          "slug": "catral",
          "canonical_path": "/cities/es/catral/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1606055",
          "name": "Caudete",
          "country_code": "ES",
          "slug": "caudete",
          "canonical_path": "/cities/es/caudete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q518339",
          "name": "Cazorla",
          "country_code": "ES",
          "slug": "cazorla",
          "canonical_path": "/cities/es/cazorla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1113395",
          "name": "Cedeira",
          "country_code": "ES",
          "slug": "cedeira",
          "canonical_path": "/cities/es/cedeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q988707",
          "name": "Cee",
          "country_code": "ES",
          "slug": "cee",
          "canonical_path": "/cities/es/cee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1757489",
          "name": "Cehegín",
          "country_code": "ES",
          "slug": "cehegin",
          "canonical_path": "/cities/es/cehegin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605505",
          "name": "Celanova",
          "country_code": "ES",
          "slug": "celanova",
          "canonical_path": "/cities/es/celanova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13426",
          "name": "Celrà",
          "country_code": "ES",
          "slug": "celra",
          "canonical_path": "/cities/es/celra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q555126",
          "name": "Cenes de la Vega",
          "country_code": "ES",
          "slug": "cenes-de-la-vega",
          "canonical_path": "/cities/es/cenes-de-la-vega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13773",
          "name": "Centelles",
          "country_code": "ES",
          "slug": "centelles",
          "canonical_path": "/cities/es/centelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1369070",
          "name": "Cerceda",
          "country_code": "ES",
          "slug": "cerceda",
          "canonical_path": "/cities/es/cerceda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1646215",
          "name": "Cercedilla",
          "country_code": "ES",
          "slug": "cercedilla",
          "canonical_path": "/cities/es/cercedilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13922",
          "name": "Cerdanyola del Vallès",
          "country_code": "ES",
          "slug": "cerdanyola-del-valles",
          "canonical_path": "/cities/es/cerdanyola-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q27949267",
          "name": "Cerdedo-Cotobade",
          "country_code": "ES",
          "slug": "cerdedo-cotobade",
          "canonical_path": "/cities/es/cerdedo-cotobade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15599",
          "name": "Cervelló",
          "country_code": "ES",
          "slug": "cervello",
          "canonical_path": "/cities/es/cervello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q847011",
          "name": "Cervera",
          "country_code": "ES",
          "slug": "cervera",
          "canonical_path": "/cities/es/cervera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q5823",
          "name": "Ceuta",
          "country_code": "ES",
          "slug": "ceuta",
          "canonical_path": "/cities/es/ceuta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q599932",
          "name": "Ceutí",
          "country_code": "ES",
          "slug": "ceuti",
          "canonical_path": "/cities/es/ceuti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3125239",
          "name": "Chamartín",
          "country_code": "ES",
          "slug": "chamartin",
          "canonical_path": "/cities/es/chamartin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1447512",
          "name": "Chantada",
          "country_code": "ES",
          "slug": "chantada",
          "canonical_path": "/cities/es/chantada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q555943",
          "name": "Chauchina",
          "country_code": "ES",
          "slug": "chauchina",
          "canonical_path": "/cities/es/chauchina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1551943",
          "name": "Cheste",
          "country_code": "ES",
          "slug": "cheste",
          "canonical_path": "/cities/es/cheste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q277302",
          "name": "Chiclana de la Frontera",
          "country_code": "ES",
          "slug": "chiclana-de-la-frontera",
          "canonical_path": "/cities/es/chiclana-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q915395",
          "name": "Chinchón",
          "country_code": "ES",
          "slug": "chinchon",
          "canonical_path": "/cities/es/chinchon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q741749",
          "name": "Chipiona",
          "country_code": "ES",
          "slug": "chipiona",
          "canonical_path": "/cities/es/chipiona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q967818",
          "name": "Chiva",
          "country_code": "ES",
          "slug": "chiva",
          "canonical_path": "/cities/es/chiva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1629996",
          "name": "Chozas de Canales",
          "country_code": "ES",
          "slug": "chozas-de-canales",
          "canonical_path": "/cities/es/chozas-de-canales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q558134",
          "name": "Churriana de la Vega",
          "country_code": "ES",
          "slug": "churriana-de-la-vega",
          "canonical_path": "/cities/es/churriana-de-la-vega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751930",
          "name": "Ciempozuelos",
          "country_code": "ES",
          "slug": "ciempozuelos",
          "canonical_path": "/cities/es/ciempozuelos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1769167",
          "name": "Cigales",
          "country_code": "ES",
          "slug": "cigales",
          "canonical_path": "/cities/es/cigales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1637322",
          "name": "Cintruénigo",
          "country_code": "ES",
          "slug": "cintruenigo",
          "canonical_path": "/cities/es/cintruenigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1768521",
          "name": "Cistérniga",
          "country_code": "ES",
          "slug": "cisterniga",
          "canonical_path": "/cities/es/cisterniga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15093",
          "name": "Ciudad Real",
          "country_code": "ES",
          "slug": "ciudad-real",
          "canonical_path": "/cities/es/ciudad-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q820476",
          "name": "Ciudad Rodrigo",
          "country_code": "ES",
          "slug": "ciudad-rodrigo",
          "canonical_path": "/cities/es/ciudad-rodrigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q899884",
          "name": "Ciutadella de Menorca",
          "country_code": "ES",
          "slug": "ciutadella-de-menorca",
          "canonical_path": "/cities/es/ciutadella-de-menorca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q659582",
          "name": "Cobeña",
          "country_code": "ES",
          "slug": "cobena",
          "canonical_path": "/cities/es/cobena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1231003",
          "name": "Cocentaina",
          "country_code": "ES",
          "slug": "cocentaina",
          "canonical_path": "/cities/es/cocentaina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1110418",
          "name": "Coín",
          "country_code": "ES",
          "slug": "coin",
          "canonical_path": "/cities/es/coin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1443892",
          "name": "Colindres",
          "country_code": "ES",
          "slug": "colindres",
          "canonical_path": "/cities/es/colindres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751903",
          "name": "Collado Mediano",
          "country_code": "ES",
          "slug": "collado-mediano",
          "canonical_path": "/cities/es/collado-mediano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q735759",
          "name": "Collado Villalba",
          "country_code": "ES",
          "slug": "collado-villalba",
          "canonical_path": "/cities/es/collado-villalba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q686674",
          "name": "Colmenar de Oreja",
          "country_code": "ES",
          "slug": "colmenar-de-oreja",
          "canonical_path": "/cities/es/colmenar-de-oreja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q55480",
          "name": "Colmenar Viejo",
          "country_code": "ES",
          "slug": "colmenar-viejo",
          "canonical_path": "/cities/es/colmenar-viejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1646220",
          "name": "Colmenarejo",
          "country_code": "ES",
          "slug": "colmenarejo",
          "canonical_path": "/cities/es/colmenarejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q832984",
          "name": "Conil de la Frontera",
          "country_code": "ES",
          "slug": "conil-de-la-frontera",
          "canonical_path": "/cities/es/conil-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q550210",
          "name": "Constantí",
          "country_code": "ES",
          "slug": "constanti",
          "canonical_path": "/cities/es/constanti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q949381",
          "name": "Constantina",
          "country_code": "ES",
          "slug": "constantina",
          "canonical_path": "/cities/es/constantina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q919046",
          "name": "Consuegra",
          "country_code": "ES",
          "slug": "consuegra",
          "canonical_path": "/cities/es/consuegra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15601",
          "name": "Corbera de Llobregat",
          "country_code": "ES",
          "slug": "corbera-de-llobregat",
          "canonical_path": "/cities/es/corbera-de-llobregat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q5818",
          "name": "Córdoba",
          "country_code": "ES",
          "slug": "cordoba",
          "canonical_path": "/cities/es/cordoba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q550407",
          "name": "Corella",
          "country_code": "ES",
          "slug": "corella",
          "canonical_path": "/cities/es/corella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q142778",
          "name": "Coria",
          "country_code": "ES",
          "slug": "coria",
          "canonical_path": "/cities/es/coria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1445412",
          "name": "Coria del Río",
          "country_code": "ES",
          "slug": "coria-del-rio",
          "canonical_path": "/cities/es/coria-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1369028",
          "name": "Coristanco",
          "country_code": "ES",
          "slug": "coristanco",
          "canonical_path": "/cities/es/coristanco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15602",
          "name": "Cornellà de Llobregat",
          "country_code": "ES",
          "slug": "cornella-de-llobregat",
          "canonical_path": "/cities/es/cornella-de-llobregat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q598148",
          "name": "Corral de Almaguer",
          "country_code": "ES",
          "slug": "corral-de-almaguer",
          "canonical_path": "/cities/es/corral-de-almaguer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1443867",
          "name": "Corrales de Buelna, Los",
          "country_code": "ES",
          "slug": "corrales-de-buelna-los",
          "canonical_path": "/cities/es/corrales-de-buelna-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8757",
          "name": "Coruña, A",
          "country_code": "ES",
          "slug": "coruna-a",
          "canonical_path": "/cities/es/coruna-a/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q653895",
          "name": "Corvera de Asturias",
          "country_code": "ES",
          "slug": "corvera-de-asturias",
          "canonical_path": "/cities/es/corvera-de-asturias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q164197",
          "name": "Coslada",
          "country_code": "ES",
          "slug": "coslada",
          "canonical_path": "/cities/es/coslada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1640230",
          "name": "Cox",
          "country_code": "ES",
          "slug": "cox",
          "canonical_path": "/cities/es/cox/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1616611",
          "name": "Crevillent",
          "country_code": "ES",
          "slug": "crevillent",
          "canonical_path": "/cities/es/crevillent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1629930",
          "name": "Cuarte de Huerva",
          "country_code": "ES",
          "slug": "cuarte-de-huerva",
          "canonical_path": "/cities/es/cuarte-de-huerva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751926",
          "name": "Cubas de la Sagra",
          "country_code": "ES",
          "slug": "cubas-de-la-sagra",
          "canonical_path": "/cities/es/cubas-de-la-sagra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15558",
          "name": "Cubelles",
          "country_code": "ES",
          "slug": "cubelles",
          "canonical_path": "/cities/es/cubelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3124142",
          "name": "Cudillero",
          "country_code": "ES",
          "slug": "cudillero",
          "canonical_path": "/cities/es/cudillero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631311",
          "name": "Cuéllar",
          "country_code": "ES",
          "slug": "cuellar",
          "canonical_path": "/cities/es/cuellar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15098",
          "name": "Cuenca",
          "country_code": "ES",
          "slug": "cuenca",
          "canonical_path": "/cities/es/cuenca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q62705",
          "name": "Cuervo de Sevilla, El",
          "country_code": "ES",
          "slug": "cuervo-de-sevilla-el",
          "canonical_path": "/cities/es/cuervo-de-sevilla-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1048762",
          "name": "Cuevas del Almanzora",
          "country_code": "ES",
          "slug": "cuevas-del-almanzora",
          "canonical_path": "/cities/es/cuevas-del-almanzora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q548884",
          "name": "Cúllar Vega",
          "country_code": "ES",
          "slug": "cullar-vega",
          "canonical_path": "/cities/es/cullar-vega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q986733",
          "name": "Cullera",
          "country_code": "ES",
          "slug": "cullera",
          "canonical_path": "/cities/es/cullera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1113450",
          "name": "Culleredo",
          "country_code": "ES",
          "slug": "culleredo",
          "canonical_path": "/cities/es/culleredo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q474489",
          "name": "Cunit",
          "country_code": "ES",
          "slug": "cunit",
          "canonical_path": "/cities/es/cunit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3124021",
          "name": "Cuntis",
          "country_code": "ES",
          "slug": "cuntis",
          "canonical_path": "/cities/es/cuntis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1772173",
          "name": "Daganzo de Arriba",
          "country_code": "ES",
          "slug": "daganzo-de-arriba",
          "canonical_path": "/cities/es/daganzo-de-arriba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631261",
          "name": "Daimiel",
          "country_code": "ES",
          "slug": "daimiel",
          "canonical_path": "/cities/es/daimiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1611504",
          "name": "Deba",
          "country_code": "ES",
          "slug": "deba",
          "canonical_path": "/cities/es/deba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q967830",
          "name": "Deltebre",
          "country_code": "ES",
          "slug": "deltebre",
          "canonical_path": "/cities/es/deltebre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q646725",
          "name": "Dénia",
          "country_code": "ES",
          "slug": "denia",
          "canonical_path": "/cities/es/denia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q574712",
          "name": "Derio",
          "country_code": "ES",
          "slug": "derio",
          "canonical_path": "/cities/es/derio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q782158",
          "name": "Dolores",
          "country_code": "ES",
          "slug": "dolores",
          "canonical_path": "/cities/es/dolores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q636120",
          "name": "Don Benito",
          "country_code": "ES",
          "slug": "don-benito",
          "canonical_path": "/cities/es/don-benito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2518825",
          "name": "Doña Mencía",
          "country_code": "ES",
          "slug": "dona-mencia",
          "canonical_path": "/cities/es/dona-mencia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q10313",
          "name": "Donostia/San Sebastián",
          "country_code": "ES",
          "slug": "donostia-san-sebastian",
          "canonical_path": "/cities/es/donostia-san-sebastian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q489205",
          "name": "Dos Hermanas",
          "country_code": "ES",
          "slug": "dos-hermanas",
          "canonical_path": "/cities/es/dos-hermanas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11968",
          "name": "Dosrius",
          "country_code": "ES",
          "slug": "dosrius",
          "canonical_path": "/cities/es/dosrius/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q732094",
          "name": "Durango",
          "country_code": "ES",
          "slug": "durango",
          "canonical_path": "/cities/es/durango/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q559839",
          "name": "Dúrcal",
          "country_code": "ES",
          "slug": "durcal",
          "canonical_path": "/cities/es/durcal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q273413",
          "name": "Écija",
          "country_code": "ES",
          "slug": "ecija",
          "canonical_path": "/cities/es/ecija/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q496567",
          "name": "Eibar",
          "country_code": "ES",
          "slug": "eibar",
          "canonical_path": "/cities/es/eibar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q473914",
          "name": "Eivissa",
          "country_code": "ES",
          "slug": "eivissa",
          "canonical_path": "/cities/es/eivissa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q817204",
          "name": "Ejea de los Caballeros",
          "country_code": "ES",
          "slug": "ejea-de-los-caballeros",
          "canonical_path": "/cities/es/ejea-de-los-caballeros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q493933",
          "name": "Ejido, El",
          "country_code": "ES",
          "slug": "ejido-el",
          "canonical_path": "/cities/es/ejido-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2518559",
          "name": "Elche",
          "country_code": "ES",
          "slug": "elche",
          "canonical_path": "/cities/es/elche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q608985",
          "name": "Elda",
          "country_code": "ES",
          "slug": "elda",
          "canonical_path": "/cities/es/elda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1618383",
          "name": "Elgoibar",
          "country_code": "ES",
          "slug": "elgoibar",
          "canonical_path": "/cities/es/elgoibar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1998520",
          "name": "Eliana, l'",
          "country_code": "ES",
          "slug": "eliana-l",
          "canonical_path": "/cities/es/eliana-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1242382",
          "name": "Elorrio",
          "country_code": "ES",
          "slug": "elorrio",
          "canonical_path": "/cities/es/elorrio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q10509",
          "name": "Elx/Elche",
          "country_code": "ES",
          "slug": "elx-elche",
          "canonical_path": "/cities/es/elx-elche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2518011",
          "name": "Enguera",
          "country_code": "ES",
          "slug": "enguera",
          "canonical_path": "/cities/es/enguera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1635146",
          "name": "Entrambasaguas",
          "country_code": "ES",
          "slug": "entrambasaguas",
          "canonical_path": "/cities/es/entrambasaguas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q913272",
          "name": "Erandio",
          "country_code": "ES",
          "slug": "erandio",
          "canonical_path": "/cities/es/erandio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1242400",
          "name": "Ermua",
          "country_code": "ES",
          "slug": "ermua",
          "canonical_path": "/cities/es/ermua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q681893",
          "name": "Errenteria",
          "country_code": "ES",
          "slug": "errenteria",
          "canonical_path": "/cities/es/errenteria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11304",
          "name": "Escala, L'",
          "country_code": "ES",
          "slug": "escala-l",
          "canonical_path": "/cities/es/escala-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q985269",
          "name": "Escorial, El",
          "country_code": "ES",
          "slug": "escorial-el",
          "canonical_path": "/cities/es/escorial-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2517914",
          "name": "Esparragal",
          "country_code": "ES",
          "slug": "esparragal",
          "canonical_path": "/cities/es/esparragal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15620",
          "name": "Esparreguera",
          "country_code": "ES",
          "slug": "esparreguera",
          "canonical_path": "/cities/es/esparreguera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628327",
          "name": "Espartinas",
          "country_code": "ES",
          "slug": "espartinas",
          "canonical_path": "/cities/es/espartinas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q986735",
          "name": "Espinar, El",
          "country_code": "ES",
          "slug": "espinar-el",
          "canonical_path": "/cities/es/espinar-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15621",
          "name": "Esplugues de Llobregat",
          "country_code": "ES",
          "slug": "esplugues-de-llobregat",
          "canonical_path": "/cities/es/esplugues-de-llobregat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q847321",
          "name": "Esporles",
          "country_code": "ES",
          "slug": "esporles",
          "canonical_path": "/cities/es/esporles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1630025",
          "name": "Esquivias",
          "country_code": "ES",
          "slug": "esquivias",
          "canonical_path": "/cities/es/esquivias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q646620",
          "name": "Estella-Lizarra",
          "country_code": "ES",
          "slug": "estella-lizarra",
          "canonical_path": "/cities/es/estella-lizarra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q966470",
          "name": "Estepa",
          "country_code": "ES",
          "slug": "estepa",
          "canonical_path": "/cities/es/estepa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q492748",
          "name": "Estepona",
          "country_code": "ES",
          "slug": "estepona",
          "canonical_path": "/cities/es/estepona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1621191",
          "name": "Estrada, A",
          "country_code": "ES",
          "slug": "estrada-a",
          "canonical_path": "/cities/es/estrada-a/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1228107",
          "name": "Etxebarri",
          "country_code": "ES",
          "slug": "etxebarri",
          "canonical_path": "/cities/es/etxebarri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3122695",
          "name": "Fabero",
          "country_code": "ES",
          "slug": "fabero",
          "canonical_path": "/cities/es/fabero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q743741",
          "name": "Felanitx",
          "country_code": "ES",
          "slug": "felanitx",
          "canonical_path": "/cities/es/felanitx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1374025",
          "name": "Fene",
          "country_code": "ES",
          "slug": "fene",
          "canonical_path": "/cities/es/fene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1617311",
          "name": "Fernán-Núñez",
          "country_code": "ES",
          "slug": "fernan-nunez",
          "canonical_path": "/cities/es/fernan-nunez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983461",
          "name": "Ferreries",
          "country_code": "ES",
          "slug": "ferreries",
          "canonical_path": "/cities/es/ferreries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q485329",
          "name": "Ferrol",
          "country_code": "ES",
          "slug": "ferrol",
          "canonical_path": "/cities/es/ferrol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q6839",
          "name": "Figueres",
          "country_code": "ES",
          "slug": "figueres",
          "canonical_path": "/cities/es/figueres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1646107",
          "name": "Finestrat",
          "country_code": "ES",
          "slug": "finestrat",
          "canonical_path": "/cities/es/finestrat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q606753",
          "name": "Firgas",
          "country_code": "ES",
          "slug": "firgas",
          "canonical_path": "/cities/es/firgas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3122426",
          "name": "Fisterra",
          "country_code": "ES",
          "slug": "fisterra",
          "canonical_path": "/cities/es/fisterra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q668117",
          "name": "Foios",
          "country_code": "ES",
          "slug": "foios",
          "canonical_path": "/cities/es/foios/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q52626",
          "name": "Formentera",
          "country_code": "ES",
          "slug": "formentera",
          "canonical_path": "/cities/es/formentera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1020559",
          "name": "Fortuna",
          "country_code": "ES",
          "slug": "fortuna",
          "canonical_path": "/cities/es/fortuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q917878",
          "name": "Foz",
          "country_code": "ES",
          "slug": "foz",
          "canonical_path": "/cities/es/foz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q904212",
          "name": "Fraga",
          "country_code": "ES",
          "slug": "fraga",
          "canonical_path": "/cities/es/fraga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15412",
          "name": "Franqueses del Vallès, Les",
          "country_code": "ES",
          "slug": "franqueses-del-valles-les",
          "canonical_path": "/cities/es/franqueses-del-valles-les/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q492735",
          "name": "Fuengirola",
          "country_code": "ES",
          "slug": "fuengirola",
          "canonical_path": "/cities/es/fuengirola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q54902",
          "name": "Fuenlabrada",
          "country_code": "ES",
          "slug": "fuenlabrada",
          "canonical_path": "/cities/es/fuenlabrada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1630082",
          "name": "Fuensalida",
          "country_code": "ES",
          "slug": "fuensalida",
          "canonical_path": "/cities/es/fuensalida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1904376",
          "name": "Fuente Álamo de Murcia",
          "country_code": "ES",
          "slug": "fuente-alamo-de-murcia",
          "canonical_path": "/cities/es/fuente-alamo-de-murcia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1407463",
          "name": "Fuente del Maestre",
          "country_code": "ES",
          "slug": "fuente-del-maestre",
          "canonical_path": "/cities/es/fuente-del-maestre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q770809",
          "name": "Fuente el Saz de Jarama",
          "country_code": "ES",
          "slug": "fuente-el-saz-de-jarama",
          "canonical_path": "/cities/es/fuente-el-saz-de-jarama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2517515",
          "name": "Fuente Obejuna",
          "country_code": "ES",
          "slug": "fuente-obejuna",
          "canonical_path": "/cities/es/fuente-obejuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1443622",
          "name": "Fuente Palmera",
          "country_code": "ES",
          "slug": "fuente-palmera",
          "canonical_path": "/cities/es/fuente-palmera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q383897",
          "name": "Fuentes de Andalucía",
          "country_code": "ES",
          "slug": "fuentes-de-andalucia",
          "canonical_path": "/cities/es/fuentes-de-andalucia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q574340",
          "name": "Gabias, Las",
          "country_code": "ES",
          "slug": "gabias-las",
          "canonical_path": "/cities/es/gabias-las/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1615953",
          "name": "Galapagar",
          "country_code": "ES",
          "slug": "galapagar",
          "canonical_path": "/cities/es/galapagar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1227388",
          "name": "Galdakao",
          "country_code": "ES",
          "slug": "galdakao",
          "canonical_path": "/cities/es/galdakao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q956757",
          "name": "Gáldar",
          "country_code": "ES",
          "slug": "galdar",
          "canonical_path": "/cities/es/galdar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q33532",
          "name": "Gandia",
          "country_code": "ES",
          "slug": "gandia",
          "canonical_path": "/cities/es/gandia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15415",
          "name": "Garriga, La",
          "country_code": "ES",
          "slug": "garriga-la",
          "canonical_path": "/cities/es/garriga-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1407478",
          "name": "Garrucha",
          "country_code": "ES",
          "slug": "garrucha",
          "canonical_path": "/cities/es/garrucha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q376236",
          "name": "Gata de Gorgos",
          "country_code": "ES",
          "slug": "gata-de-gorgos",
          "canonical_path": "/cities/es/gata-de-gorgos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15622",
          "name": "Gavà",
          "country_code": "ES",
          "slug": "gava",
          "canonical_path": "/cities/es/gava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q763729",
          "name": "Gelida",
          "country_code": "ES",
          "slug": "gelida",
          "canonical_path": "/cities/es/gelida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628386",
          "name": "Gelves",
          "country_code": "ES",
          "slug": "gelves",
          "canonical_path": "/cities/es/gelves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1601614",
          "name": "Gerena",
          "country_code": "ES",
          "slug": "gerena",
          "canonical_path": "/cities/es/gerena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q189848",
          "name": "Gernika-Lumo",
          "country_code": "ES",
          "slug": "gernika-lumo",
          "canonical_path": "/cities/es/gernika-lumo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8802",
          "name": "Getafe",
          "country_code": "ES",
          "slug": "getafe",
          "canonical_path": "/cities/es/getafe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q492420",
          "name": "Getxo",
          "country_code": "ES",
          "slug": "getxo",
          "canonical_path": "/cities/es/getxo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q913215",
          "name": "Gibraleón",
          "country_code": "ES",
          "slug": "gibraleon",
          "canonical_path": "/cities/es/gibraleon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12273",
          "name": "Gijón",
          "country_code": "ES",
          "slug": "gijon",
          "canonical_path": "/cities/es/gijon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1645522",
          "name": "Gines",
          "country_code": "ES",
          "slug": "gines",
          "canonical_path": "/cities/es/gines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q7038",
          "name": "Girona",
          "country_code": "ES",
          "slug": "girona",
          "canonical_path": "/cities/es/girona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15509",
          "name": "Gironella",
          "country_code": "ES",
          "slug": "gironella",
          "canonical_path": "/cities/es/gironella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1982756",
          "name": "Godella",
          "country_code": "ES",
          "slug": "godella",
          "canonical_path": "/cities/es/godella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q574347",
          "name": "Gójar",
          "country_code": "ES",
          "slug": "gojar",
          "canonical_path": "/cities/es/gojar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1607596",
          "name": "Gondomar",
          "country_code": "ES",
          "slug": "gondomar",
          "canonical_path": "/cities/es/gondomar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q763669",
          "name": "Gorliz",
          "country_code": "ES",
          "slug": "gorliz",
          "canonical_path": "/cities/es/gorliz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q818366",
          "name": "Gozón",
          "country_code": "ES",
          "slug": "gozon",
          "canonical_path": "/cities/es/gozon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q617580",
          "name": "Grado",
          "country_code": "ES",
          "slug": "grado",
          "canonical_path": "/cities/es/grado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8810",
          "name": "Granada",
          "country_code": "ES",
          "slug": "granada",
          "canonical_path": "/cities/es/granada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q943431",
          "name": "Granadilla de Abona",
          "country_code": "ES",
          "slug": "granadilla-de-abona",
          "canonical_path": "/cities/es/granadilla-de-abona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15420",
          "name": "Granollers",
          "country_code": "ES",
          "slug": "granollers",
          "canonical_path": "/cities/es/granollers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1772237",
          "name": "Griñón",
          "country_code": "ES",
          "slug": "grinon",
          "canonical_path": "/cities/es/grinon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q929161",
          "name": "Grove, O",
          "country_code": "ES",
          "slug": "grove-o",
          "canonical_path": "/cities/es/grove-o/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11953",
          "name": "Guadalajara",
          "country_code": "ES",
          "slug": "guadalajara",
          "canonical_path": "/cities/es/guadalajara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q55482",
          "name": "Guadalix de la Sierra",
          "country_code": "ES",
          "slug": "guadalix-de-la-sierra",
          "canonical_path": "/cities/es/guadalix-de-la-sierra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q517450",
          "name": "Guadarrama",
          "country_code": "ES",
          "slug": "guadarrama",
          "canonical_path": "/cities/es/guadarrama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1312621",
          "name": "Guadassuar",
          "country_code": "ES",
          "slug": "guadassuar",
          "canonical_path": "/cities/es/guadassuar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q244324",
          "name": "Guadix",
          "country_code": "ES",
          "slug": "guadix",
          "canonical_path": "/cities/es/guadix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q575639",
          "name": "Gualchos",
          "country_code": "ES",
          "slug": "gualchos",
          "canonical_path": "/cities/es/gualchos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983556",
          "name": "Guancha, La",
          "country_code": "ES",
          "slug": "guancha-la",
          "canonical_path": "/cities/es/guancha-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q300433",
          "name": "Guarda, A",
          "country_code": "ES",
          "slug": "guarda-a",
          "canonical_path": "/cities/es/guarda-a/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q927965",
          "name": "Guardamar del Segura",
          "country_code": "ES",
          "slug": "guardamar-del-segura",
          "canonical_path": "/cities/es/guardamar-del-segura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1645543",
          "name": "Guardia de Jaén, La",
          "country_code": "ES",
          "slug": "guardia-de-jaen-la",
          "canonical_path": "/cities/es/guardia-de-jaen-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1771104",
          "name": "Guardo",
          "country_code": "ES",
          "slug": "guardo",
          "canonical_path": "/cities/es/guardo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1098716",
          "name": "Guareña",
          "country_code": "ES",
          "slug": "guarena",
          "canonical_path": "/cities/es/guarena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q596305",
          "name": "Güeñes",
          "country_code": "ES",
          "slug": "guenes",
          "canonical_path": "/cities/es/guenes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q765879",
          "name": "Guía de Isora",
          "country_code": "ES",
          "slug": "guia-de-isora",
          "canonical_path": "/cities/es/guia-de-isora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605747",
          "name": "Guijuelo",
          "country_code": "ES",
          "slug": "guijuelo",
          "canonical_path": "/cities/es/guijuelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605664",
          "name": "Guillena",
          "country_code": "ES",
          "slug": "guillena",
          "canonical_path": "/cities/es/guillena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983433",
          "name": "Güímar",
          "country_code": "ES",
          "slug": "guimar",
          "canonical_path": "/cities/es/guimar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984645",
          "name": "Guissona",
          "country_code": "ES",
          "slug": "guissona",
          "canonical_path": "/cities/es/guissona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1602975",
          "name": "Guitiriz",
          "country_code": "ES",
          "slug": "guitiriz",
          "canonical_path": "/cities/es/guitiriz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1588135",
          "name": "Haría",
          "country_code": "ES",
          "slug": "haria",
          "canonical_path": "/cities/es/haria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q405292",
          "name": "Haro",
          "country_code": "ES",
          "slug": "haro",
          "canonical_path": "/cities/es/haro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q842652",
          "name": "Hellín",
          "country_code": "ES",
          "slug": "hellin",
          "canonical_path": "/cities/es/hellin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1632508",
          "name": "Herencia",
          "country_code": "ES",
          "slug": "herencia",
          "canonical_path": "/cities/es/herencia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1441329",
          "name": "Hernani",
          "country_code": "ES",
          "slug": "hernani",
          "canonical_path": "/cities/es/hernani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1640239",
          "name": "Herrera",
          "country_code": "ES",
          "slug": "herrera",
          "canonical_path": "/cities/es/herrera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q657396",
          "name": "Hinojosa del Duque",
          "country_code": "ES",
          "slug": "hinojosa-del-duque",
          "canonical_path": "/cities/es/hinojosa-del-duque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q492312",
          "name": "Hondarribia",
          "country_code": "ES",
          "slug": "hondarribia",
          "canonical_path": "/cities/es/hondarribia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15470",
          "name": "Hospitalet de Llobregat, L'",
          "country_code": "ES",
          "slug": "hospitalet-de-llobregat-l",
          "canonical_path": "/cities/es/hospitalet-de-llobregat-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q664769",
          "name": "Hoyo de Manzanares",
          "country_code": "ES",
          "slug": "hoyo-de-manzanares",
          "canonical_path": "/cities/es/hoyo-de-manzanares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641785",
          "name": "Huarte/Uharte",
          "country_code": "ES",
          "slug": "huarte-uharte",
          "canonical_path": "/cities/es/huarte-uharte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641746",
          "name": "Huelma",
          "country_code": "ES",
          "slug": "huelma",
          "canonical_path": "/cities/es/huelma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12246",
          "name": "Huelva",
          "country_code": "ES",
          "slug": "huelva",
          "canonical_path": "/cities/es/huelva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q5277",
          "name": "Huércal de Almería",
          "country_code": "ES",
          "slug": "huercal-de-almeria",
          "canonical_path": "/cities/es/huercal-de-almeria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1372614",
          "name": "Huércal-Overa",
          "country_code": "ES",
          "slug": "huercal-overa",
          "canonical_path": "/cities/es/huercal-overa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11967",
          "name": "Huesca",
          "country_code": "ES",
          "slug": "huesca",
          "canonical_path": "/cities/es/huesca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q575709",
          "name": "Huéscar",
          "country_code": "ES",
          "slug": "huescar",
          "canonical_path": "/cities/es/huescar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q911103",
          "name": "Huétor Tájar",
          "country_code": "ES",
          "slug": "huetor-tajar",
          "canonical_path": "/cities/es/huetor-tajar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q575653",
          "name": "Huétor Vega",
          "country_code": "ES",
          "slug": "huetor-vega",
          "canonical_path": "/cities/es/huetor-vega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q281632",
          "name": "Humanes de Madrid",
          "country_code": "ES",
          "slug": "humanes-de-madrid",
          "canonical_path": "/cities/es/humanes-de-madrid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q530567",
          "name": "Ibi",
          "country_code": "ES",
          "slug": "ibi",
          "canonical_path": "/cities/es/ibi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q572542",
          "name": "Icod de los Vinos",
          "country_code": "ES",
          "slug": "icod-de-los-vinos",
          "canonical_path": "/cities/es/icod-de-los-vinos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15950",
          "name": "Igualada",
          "country_code": "ES",
          "slug": "igualada",
          "canonical_path": "/cities/es/igualada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1606474",
          "name": "Illescas",
          "country_code": "ES",
          "slug": "illescas",
          "canonical_path": "/cities/es/illescas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q291752",
          "name": "Íllora",
          "country_code": "ES",
          "slug": "illora",
          "canonical_path": "/cities/es/illora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q988688",
          "name": "Inca",
          "country_code": "ES",
          "slug": "inca",
          "canonical_path": "/cities/es/inca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q985599",
          "name": "Ingenio",
          "country_code": "ES",
          "slug": "ingenio",
          "canonical_path": "/cities/es/ingenio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q200201",
          "name": "Irun",
          "country_code": "ES",
          "slug": "irun",
          "canonical_path": "/cities/es/irun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1657029",
          "name": "Íscar",
          "country_code": "ES",
          "slug": "iscar",
          "canonical_path": "/cities/es/iscar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q736926",
          "name": "Isla Cristina",
          "country_code": "ES",
          "slug": "isla-cristina",
          "canonical_path": "/cities/es/isla-cristina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605575",
          "name": "Isla Mayor",
          "country_code": "ES",
          "slug": "isla-mayor",
          "canonical_path": "/cities/es/isla-mayor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1410782",
          "name": "Iznalloz",
          "country_code": "ES",
          "slug": "iznalloz",
          "canonical_path": "/cities/es/iznalloz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q49581",
          "name": "Jaca",
          "country_code": "ES",
          "slug": "jaca",
          "canonical_path": "/cities/es/jaca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15681",
          "name": "Jaén",
          "country_code": "ES",
          "slug": "jaen",
          "canonical_path": "/cities/es/jaen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q368372",
          "name": "Jaraíz de la Vera",
          "country_code": "ES",
          "slug": "jaraiz-de-la-vera",
          "canonical_path": "/cities/es/jaraiz-de-la-vera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2516336",
          "name": "Javea",
          "country_code": "ES",
          "slug": "javea",
          "canonical_path": "/cities/es/javea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12303",
          "name": "Jerez de la Frontera",
          "country_code": "ES",
          "slug": "jerez-de-la-frontera",
          "canonical_path": "/cities/es/jerez-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1153945",
          "name": "Jerez de los Caballeros",
          "country_code": "ES",
          "slug": "jerez-de-los-caballeros",
          "canonical_path": "/cities/es/jerez-de-los-caballeros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q916664",
          "name": "Jimena de la Frontera",
          "country_code": "ES",
          "slug": "jimena-de-la-frontera",
          "canonical_path": "/cities/es/jimena-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641632",
          "name": "Jódar",
          "country_code": "ES",
          "slug": "jodar",
          "canonical_path": "/cities/es/jodar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q917173",
          "name": "Jumilla",
          "country_code": "ES",
          "slug": "jumilla",
          "canonical_path": "/cities/es/jumilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q367842",
          "name": "Laguna de Duero",
          "country_code": "ES",
          "slug": "laguna-de-duero",
          "canonical_path": "/cities/es/laguna-de-duero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1374736",
          "name": "Lalín",
          "country_code": "ES",
          "slug": "lalin",
          "canonical_path": "/cities/es/lalin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q493806",
          "name": "Langreo",
          "country_code": "ES",
          "slug": "langreo",
          "canonical_path": "/cities/es/langreo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3119172",
          "name": "Laracha",
          "country_code": "ES",
          "slug": "laracha",
          "canonical_path": "/cities/es/laracha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q924043",
          "name": "Laracha, A",
          "country_code": "ES",
          "slug": "laracha-a",
          "canonical_path": "/cities/es/laracha-a/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q386306",
          "name": "Lardero",
          "country_code": "ES",
          "slug": "lardero",
          "canonical_path": "/cities/es/lardero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q828955",
          "name": "Laredo",
          "country_code": "ES",
          "slug": "laredo",
          "canonical_path": "/cities/es/laredo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q932766",
          "name": "Lasarte-Oria",
          "country_code": "ES",
          "slug": "lasarte-oria",
          "canonical_path": "/cities/es/lasarte-oria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q676903",
          "name": "Laudio/Llodio",
          "country_code": "ES",
          "slug": "laudio-llodio",
          "canonical_path": "/cities/es/laudio-llodio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q820461",
          "name": "Laviana",
          "country_code": "ES",
          "slug": "laviana",
          "canonical_path": "/cities/es/laviana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q932872",
          "name": "Lazkao",
          "country_code": "ES",
          "slug": "lazkao",
          "canonical_path": "/cities/es/lazkao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q261085",
          "name": "Lebrija",
          "country_code": "ES",
          "slug": "lebrija",
          "canonical_path": "/cities/es/lebrija/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q77433",
          "name": "Leganés",
          "country_code": "ES",
          "slug": "leganes",
          "canonical_path": "/cities/es/leganes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1113716",
          "name": "Legazpi",
          "country_code": "ES",
          "slug": "legazpi",
          "canonical_path": "/cities/es/legazpi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q530302",
          "name": "Leioa",
          "country_code": "ES",
          "slug": "leioa",
          "canonical_path": "/cities/es/leioa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1227965",
          "name": "Lekeitio",
          "country_code": "ES",
          "slug": "lekeitio",
          "canonical_path": "/cities/es/lekeitio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1031286",
          "name": "Lena",
          "country_code": "ES",
          "slug": "lena",
          "canonical_path": "/cities/es/lena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15699",
          "name": "León",
          "country_code": "ES",
          "slug": "leon",
          "canonical_path": "/cities/es/leon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q501077",
          "name": "Lepe",
          "country_code": "ES",
          "slug": "lepe",
          "canonical_path": "/cities/es/lepe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1649625",
          "name": "Lezo",
          "country_code": "ES",
          "slug": "lezo",
          "canonical_path": "/cities/es/lezo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1010250",
          "name": "Librilla",
          "country_code": "ES",
          "slug": "librilla",
          "canonical_path": "/cities/es/librilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q281272",
          "name": "Linares",
          "country_code": "ES",
          "slug": "linares",
          "canonical_path": "/cities/es/linares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13148",
          "name": "Línea de la Concepción, La",
          "country_code": "ES",
          "slug": "linea-de-la-concepcion-la",
          "canonical_path": "/cities/es/linea-de-la-concepcion-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15422",
          "name": "Llagosta, La",
          "country_code": "ES",
          "slug": "llagosta-la",
          "canonical_path": "/cities/es/llagosta-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13435",
          "name": "Llagostera",
          "country_code": "ES",
          "slug": "llagostera",
          "canonical_path": "/cities/es/llagostera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q744114",
          "name": "Llanera",
          "country_code": "ES",
          "slug": "llanera",
          "canonical_path": "/cities/es/llanera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q503094",
          "name": "Llanes",
          "country_code": "ES",
          "slug": "llanes",
          "canonical_path": "/cities/es/llanes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q366948",
          "name": "Llanos de Aridane, Los",
          "country_code": "ES",
          "slug": "llanos-de-aridane-los",
          "canonical_path": "/cities/es/llanos-de-aridane-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15090",
          "name": "Lleida",
          "country_code": "ES",
          "slug": "lleida",
          "canonical_path": "/cities/es/lleida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q686184",
          "name": "Llerena",
          "country_code": "ES",
          "slug": "llerena",
          "canonical_path": "/cities/es/llerena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15425",
          "name": "Lliçà d'Amunt",
          "country_code": "ES",
          "slug": "llica-d-amunt",
          "canonical_path": "/cities/es/llica-d-amunt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15428",
          "name": "Lliçà de Vall",
          "country_code": "ES",
          "slug": "llica-de-vall",
          "canonical_path": "/cities/es/llica-de-vall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15423",
          "name": "Llinars del Vallès",
          "country_code": "ES",
          "slug": "llinars-del-valles",
          "canonical_path": "/cities/es/llinars-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q23067",
          "name": "Llíria",
          "country_code": "ES",
          "slug": "lliria",
          "canonical_path": "/cities/es/lliria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12977",
          "name": "Lloret de Mar",
          "country_code": "ES",
          "slug": "lloret-de-mar",
          "canonical_path": "/cities/es/lloret-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q847317",
          "name": "Lloseta",
          "country_code": "ES",
          "slug": "lloseta",
          "canonical_path": "/cities/es/lloseta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q927498",
          "name": "Llucmajor",
          "country_code": "ES",
          "slug": "llucmajor",
          "canonical_path": "/cities/es/llucmajor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1646206",
          "name": "Loeches",
          "country_code": "ES",
          "slug": "loeches",
          "canonical_path": "/cities/es/loeches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q14325",
          "name": "Logroño",
          "country_code": "ES",
          "slug": "logrono",
          "canonical_path": "/cities/es/logrono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q332989",
          "name": "Loja",
          "country_code": "ES",
          "slug": "loja",
          "canonical_path": "/cities/es/loja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1161395",
          "name": "Lora del Río",
          "country_code": "ES",
          "slug": "lora-del-rio",
          "canonical_path": "/cities/es/lora-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q47571",
          "name": "Lorca",
          "country_code": "ES",
          "slug": "lorca",
          "canonical_path": "/cities/es/lorca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1982966",
          "name": "Lorquí",
          "country_code": "ES",
          "slug": "lorqui",
          "canonical_path": "/cities/es/lorqui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q504598",
          "name": "Lucena",
          "country_code": "ES",
          "slug": "lucena",
          "canonical_path": "/cities/es/lucena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11125",
          "name": "Lugo",
          "country_code": "ES",
          "slug": "lugo",
          "canonical_path": "/cities/es/lugo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1161455",
          "name": "Macael",
          "country_code": "ES",
          "slug": "macael",
          "canonical_path": "/cities/es/macael/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13634",
          "name": "Maçanet de la Selva",
          "country_code": "ES",
          "slug": "macanet-de-la-selva",
          "canonical_path": "/cities/es/macanet-de-la-selva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:slug:madrid",
          "name": "Madrid",
          "country_code": "ES",
          "slug": "madrid",
          "canonical_path": "/cities/es/madrid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1607392",
          "name": "Madridejos",
          "country_code": "ES",
          "slug": "madridejos",
          "canonical_path": "/cities/es/madridejos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628379",
          "name": "Mairena del Alcor",
          "country_code": "ES",
          "slug": "mairena-del-alcor",
          "canonical_path": "/cities/es/mairena-del-alcor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1447391",
          "name": "Mairena del Aljarafe",
          "country_code": "ES",
          "slug": "mairena-del-aljarafe",
          "canonical_path": "/cities/es/mairena-del-aljarafe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q427505",
          "name": "Majadahonda",
          "country_code": "ES",
          "slug": "majadahonda",
          "canonical_path": "/cities/es/majadahonda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8851",
          "name": "Málaga",
          "country_code": "ES",
          "slug": "malaga",
          "canonical_path": "/cities/es/malaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1613270",
          "name": "Malagón",
          "country_code": "ES",
          "slug": "malagon",
          "canonical_path": "/cities/es/malagon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12590",
          "name": "Malgrat de Mar",
          "country_code": "ES",
          "slug": "malgrat-de-mar",
          "canonical_path": "/cities/es/malgrat-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q596761",
          "name": "Malpica de Bergantiños",
          "country_code": "ES",
          "slug": "malpica-de-bergantinos",
          "canonical_path": "/cities/es/malpica-de-bergantinos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q49567",
          "name": "Manacor",
          "country_code": "ES",
          "slug": "manacor",
          "canonical_path": "/cities/es/manacor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q936886",
          "name": "Mancha Real",
          "country_code": "ES",
          "slug": "mancha-real",
          "canonical_path": "/cities/es/mancha-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q913492",
          "name": "Manilva",
          "country_code": "ES",
          "slug": "manilva",
          "canonical_path": "/cities/es/manilva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1648590",
          "name": "Manises",
          "country_code": "ES",
          "slug": "manises",
          "canonical_path": "/cities/es/manises/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13804",
          "name": "Manlleu",
          "country_code": "ES",
          "slug": "manlleu",
          "canonical_path": "/cities/es/manlleu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16697",
          "name": "Manresa",
          "country_code": "ES",
          "slug": "manresa",
          "canonical_path": "/cities/es/manresa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1372697",
          "name": "Manzanares",
          "country_code": "ES",
          "slug": "manzanares",
          "canonical_path": "/cities/es/manzanares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q55483",
          "name": "Manzanares el Real",
          "country_code": "ES",
          "slug": "manzanares-el-real",
          "canonical_path": "/cities/es/manzanares-el-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q49550",
          "name": "Maó",
          "country_code": "ES",
          "slug": "mao",
          "canonical_path": "/cities/es/mao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q583032",
          "name": "Maracena",
          "country_code": "ES",
          "slug": "maracena",
          "canonical_path": "/cities/es/maracena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q484799",
          "name": "Marbella",
          "country_code": "ES",
          "slug": "marbella",
          "canonical_path": "/cities/es/marbella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1769777",
          "name": "Marchamalo",
          "country_code": "ES",
          "slug": "marchamalo",
          "canonical_path": "/cities/es/marchamalo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q929481",
          "name": "Marchena",
          "country_code": "ES",
          "slug": "marchena",
          "canonical_path": "/cities/es/marchena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1640944",
          "name": "María de Huerva",
          "country_code": "ES",
          "slug": "maria-de-huerva",
          "canonical_path": "/cities/es/maria-de-huerva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q634078",
          "name": "Marín",
          "country_code": "ES",
          "slug": "marin",
          "canonical_path": "/cities/es/marin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1606273",
          "name": "Marina de Cudeyo",
          "country_code": "ES",
          "slug": "marina-de-cudeyo",
          "canonical_path": "/cities/es/marina-de-cudeyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q604810",
          "name": "Markina-Xemein",
          "country_code": "ES",
          "slug": "markina-xemein",
          "canonical_path": "/cities/es/markina-xemein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1756694",
          "name": "Marmolejo",
          "country_code": "ES",
          "slug": "marmolejo",
          "canonical_path": "/cities/es/marmolejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q950940",
          "name": "Marratxí",
          "country_code": "ES",
          "slug": "marratxi",
          "canonical_path": "/cities/es/marratxi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15623",
          "name": "Martorell",
          "country_code": "ES",
          "slug": "martorell",
          "canonical_path": "/cities/es/martorell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q695425",
          "name": "Martos",
          "country_code": "ES",
          "slug": "martos",
          "canonical_path": "/cities/es/martos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12039",
          "name": "Masnou, El",
          "country_code": "ES",
          "slug": "masnou-el",
          "canonical_path": "/cities/es/masnou-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15954",
          "name": "Masquefa",
          "country_code": "ES",
          "slug": "masquefa",
          "canonical_path": "/cities/es/masquefa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1313044",
          "name": "Massamagrell",
          "country_code": "ES",
          "slug": "massamagrell",
          "canonical_path": "/cities/es/massamagrell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q102878",
          "name": "Massanassa",
          "country_code": "ES",
          "slug": "massanassa",
          "canonical_path": "/cities/es/massanassa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13929",
          "name": "Matadepera",
          "country_code": "ES",
          "slug": "matadepera",
          "canonical_path": "/cities/es/matadepera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983577",
          "name": "Matanza de Acentejo, La",
          "country_code": "ES",
          "slug": "matanza-de-acentejo-la",
          "canonical_path": "/cities/es/matanza-de-acentejo-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11492",
          "name": "Mataró",
          "country_code": "ES",
          "slug": "mataro",
          "canonical_path": "/cities/es/mataro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3117076",
          "name": "Mazaricos",
          "country_code": "ES",
          "slug": "mazaricos",
          "canonical_path": "/cities/es/mazaricos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q913277",
          "name": "Mazarrón",
          "country_code": "ES",
          "slug": "mazarron",
          "canonical_path": "/cities/es/mazarron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1607447",
          "name": "Meaño",
          "country_code": "ES",
          "slug": "meano",
          "canonical_path": "/cities/es/meano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1646210",
          "name": "Meco",
          "country_code": "ES",
          "slug": "meco",
          "canonical_path": "/cities/es/meco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1614754",
          "name": "Medina de Pomar",
          "country_code": "ES",
          "slug": "medina-de-pomar",
          "canonical_path": "/cities/es/medina-de-pomar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3117008",
          "name": "Medina de Ríoseco",
          "country_code": "ES",
          "slug": "medina-de-rioseco",
          "canonical_path": "/cities/es/medina-de-rioseco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q693913",
          "name": "Medina del Campo",
          "country_code": "ES",
          "slug": "medina-del-campo",
          "canonical_path": "/cities/es/medina-del-campo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q642200",
          "name": "Medina Sidonia",
          "country_code": "ES",
          "slug": "medina-sidonia",
          "canonical_path": "/cities/es/medina-sidonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1602429",
          "name": "Medio Cudeyo",
          "country_code": "ES",
          "slug": "medio-cudeyo",
          "canonical_path": "/cities/es/medio-cudeyo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1984852",
          "name": "Mejorada del Campo",
          "country_code": "ES",
          "slug": "mejorada-del-campo",
          "canonical_path": "/cities/es/mejorada-del-campo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1993019",
          "name": "Meliana",
          "country_code": "ES",
          "slug": "meliana",
          "canonical_path": "/cities/es/meliana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q912514",
          "name": "Melide",
          "country_code": "ES",
          "slug": "melide",
          "canonical_path": "/cities/es/melide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q5831",
          "name": "Melilla",
          "country_code": "ES",
          "slug": "melilla",
          "canonical_path": "/cities/es/melilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1642197",
          "name": "Membrilla",
          "country_code": "ES",
          "slug": "membrilla",
          "canonical_path": "/cities/es/membrilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1645553",
          "name": "Mengíbar",
          "country_code": "ES",
          "slug": "mengibar",
          "canonical_path": "/cities/es/mengibar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628797",
          "name": "Méntrida",
          "country_code": "ES",
          "slug": "mentrida",
          "canonical_path": "/cities/es/mentrida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q945653",
          "name": "Mercadal, Es",
          "country_code": "ES",
          "slug": "mercadal-es",
          "canonical_path": "/cities/es/mercadal-es/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q14323",
          "name": "Mérida",
          "country_code": "ES",
          "slug": "merida",
          "canonical_path": "/cities/es/merida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q371790",
          "name": "Miajadas",
          "country_code": "ES",
          "slug": "miajadas",
          "canonical_path": "/cities/es/miajadas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1637424",
          "name": "Miengo",
          "country_code": "ES",
          "slug": "miengo",
          "canonical_path": "/cities/es/miengo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2513886",
          "name": "Miguel Esteban",
          "country_code": "ES",
          "slug": "miguel-esteban",
          "canonical_path": "/cities/es/miguel-esteban/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1632172",
          "name": "Miguelturra",
          "country_code": "ES",
          "slug": "miguelturra",
          "canonical_path": "/cities/es/miguelturra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q492744",
          "name": "Mijas",
          "country_code": "ES",
          "slug": "mijas",
          "canonical_path": "/cities/es/mijas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1616112",
          "name": "Miño",
          "country_code": "ES",
          "slug": "mino",
          "canonical_path": "/cities/es/mino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q55481",
          "name": "Miraflores de la Sierra",
          "country_code": "ES",
          "slug": "miraflores-de-la-sierra",
          "canonical_path": "/cities/es/miraflores-de-la-sierra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11994",
          "name": "Miranda de Ebro",
          "country_code": "ES",
          "slug": "miranda-de-ebro",
          "canonical_path": "/cities/es/miranda-de-ebro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12442",
          "name": "Mislata",
          "country_code": "ES",
          "slug": "mislata",
          "canonical_path": "/cities/es/mislata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1617430",
          "name": "Moaña",
          "country_code": "ES",
          "slug": "moana",
          "canonical_path": "/cities/es/moana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q536630",
          "name": "Mocejón",
          "country_code": "ES",
          "slug": "mocejon",
          "canonical_path": "/cities/es/mocejon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q628446",
          "name": "Mogán",
          "country_code": "ES",
          "slug": "mogan",
          "canonical_path": "/cities/es/mogan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q785888",
          "name": "Moguer",
          "country_code": "ES",
          "slug": "moguer",
          "canonical_path": "/cities/es/moguer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16702",
          "name": "Moià",
          "country_code": "ES",
          "slug": "moia",
          "canonical_path": "/cities/es/moia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q496968",
          "name": "Mojácar",
          "country_code": "ES",
          "slug": "mojacar",
          "canonical_path": "/cities/es/mojacar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1407170",
          "name": "Mojonera, La",
          "country_code": "ES",
          "slug": "mojonera-la",
          "canonical_path": "/cities/es/mojonera-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q917883",
          "name": "Molina de Segura",
          "country_code": "ES",
          "slug": "molina-de-segura",
          "canonical_path": "/cities/es/molina-de-segura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15624",
          "name": "Molins de Rei",
          "country_code": "ES",
          "slug": "molins-de-rei",
          "canonical_path": "/cities/es/molins-de-rei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q676132",
          "name": "Mollerussa",
          "country_code": "ES",
          "slug": "mollerussa",
          "canonical_path": "/cities/es/mollerussa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15430",
          "name": "Mollet del Vallès",
          "country_code": "ES",
          "slug": "mollet-del-valles",
          "canonical_path": "/cities/es/mollet-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1630374",
          "name": "Mollina",
          "country_code": "ES",
          "slug": "mollina",
          "canonical_path": "/cities/es/mollina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q593620",
          "name": "Monachil",
          "country_code": "ES",
          "slug": "monachil",
          "canonical_path": "/cities/es/monachil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2513703",
          "name": "Moncada",
          "country_code": "ES",
          "slug": "moncada",
          "canonical_path": "/cities/es/moncada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1635650",
          "name": "Moncofa",
          "country_code": "ES",
          "slug": "moncofa",
          "canonical_path": "/cities/es/moncofa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3116514",
          "name": "Mondariz",
          "country_code": "ES",
          "slug": "mondariz",
          "canonical_path": "/cities/es/mondariz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q818341",
          "name": "Monforte de Lemos",
          "country_code": "ES",
          "slug": "monforte-de-lemos",
          "canonical_path": "/cities/es/monforte-de-lemos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1769358",
          "name": "Monforte del Cid",
          "country_code": "ES",
          "slug": "monforte-del-cid",
          "canonical_path": "/cities/es/monforte-del-cid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2513680",
          "name": "Monóvar",
          "country_code": "ES",
          "slug": "monovar",
          "canonical_path": "/cities/es/monovar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1645615",
          "name": "Monòver/Monóvar",
          "country_code": "ES",
          "slug": "monover-monovar",
          "canonical_path": "/cities/es/monover-monovar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q929794",
          "name": "Mont-roig del Camp",
          "country_code": "ES",
          "slug": "mont-roig-del-camp",
          "canonical_path": "/cities/es/mont-roig-del-camp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q761735",
          "name": "Montblanc",
          "country_code": "ES",
          "slug": "montblanc",
          "canonical_path": "/cities/es/montblanc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13927",
          "name": "Montcada i Reixac",
          "country_code": "ES",
          "slug": "montcada-i-reixac",
          "canonical_path": "/cities/es/montcada-i-reixac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1010291",
          "name": "Montcada/Moncada",
          "country_code": "ES",
          "slug": "montcada-moncada",
          "canonical_path": "/cities/es/montcada-moncada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q593696",
          "name": "Montefrío",
          "country_code": "ES",
          "slug": "montefrio",
          "canonical_path": "/cities/es/montefrio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q43713",
          "name": "Montehermoso",
          "country_code": "ES",
          "slug": "montehermoso",
          "canonical_path": "/cities/es/montehermoso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605609",
          "name": "Montellano",
          "country_code": "ES",
          "slug": "montellano",
          "canonical_path": "/cities/es/montellano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1983327",
          "name": "Montesinos, Los",
          "country_code": "ES",
          "slug": "montesinos-los",
          "canonical_path": "/cities/es/montesinos-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12022",
          "name": "Montgat",
          "country_code": "ES",
          "slug": "montgat",
          "canonical_path": "/cities/es/montgat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1387091",
          "name": "Montijo",
          "country_code": "ES",
          "slug": "montijo",
          "canonical_path": "/cities/es/montijo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13156",
          "name": "Montilla",
          "country_code": "ES",
          "slug": "montilla",
          "canonical_path": "/cities/es/montilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15431",
          "name": "Montmeló",
          "country_code": "ES",
          "slug": "montmelo",
          "canonical_path": "/cities/es/montmelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15433",
          "name": "Montornès del Vallès",
          "country_code": "ES",
          "slug": "montornes-del-valles",
          "canonical_path": "/cities/es/montornes-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1375851",
          "name": "Montoro",
          "country_code": "ES",
          "slug": "montoro",
          "canonical_path": "/cities/es/montoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q604539",
          "name": "Montserrat",
          "country_code": "ES",
          "slug": "montserrat",
          "canonical_path": "/cities/es/montserrat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q5123",
          "name": "Monzón",
          "country_code": "ES",
          "slug": "monzon",
          "canonical_path": "/cities/es/monzon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641529",
          "name": "Mora",
          "country_code": "ES",
          "slug": "mora",
          "canonical_path": "/cities/es/mora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q926784",
          "name": "Móra d'Ebre",
          "country_code": "ES",
          "slug": "mora-d-ebre",
          "canonical_path": "/cities/es/mora-d-ebre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1644456",
          "name": "Moral de Calatrava",
          "country_code": "ES",
          "slug": "moral-de-calatrava",
          "canonical_path": "/cities/es/moral-de-calatrava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1444329",
          "name": "Moraleja",
          "country_code": "ES",
          "slug": "moraleja",
          "canonical_path": "/cities/es/moraleja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q965208",
          "name": "Moraleja de Enmedio",
          "country_code": "ES",
          "slug": "moraleja-de-enmedio",
          "canonical_path": "/cities/es/moraleja-de-enmedio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1646201",
          "name": "Moralzarzal",
          "country_code": "ES",
          "slug": "moralzarzal",
          "canonical_path": "/cities/es/moralzarzal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1772158",
          "name": "Morata de Tajuña",
          "country_code": "ES",
          "slug": "morata-de-tajuna",
          "canonical_path": "/cities/es/morata-de-tajuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q987450",
          "name": "Moratalla",
          "country_code": "ES",
          "slug": "moratalla",
          "canonical_path": "/cities/es/moratalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q609094",
          "name": "Morón de la Frontera",
          "country_code": "ES",
          "slug": "moron-de-la-frontera",
          "canonical_path": "/cities/es/moron-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1596023",
          "name": "Mos",
          "country_code": "ES",
          "slug": "mos",
          "canonical_path": "/cities/es/mos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q187826",
          "name": "Móstoles",
          "country_code": "ES",
          "slug": "mostoles",
          "canonical_path": "/cities/es/mostoles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1637366",
          "name": "Mota del Cuervo",
          "country_code": "ES",
          "slug": "mota-del-cuervo",
          "canonical_path": "/cities/es/mota-del-cuervo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q288552",
          "name": "Motilla del Palancar",
          "country_code": "ES",
          "slug": "motilla-del-palancar",
          "canonical_path": "/cities/es/motilla-del-palancar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q210093",
          "name": "Motril",
          "country_code": "ES",
          "slug": "motril",
          "canonical_path": "/cities/es/motril/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1639365",
          "name": "Muela, La",
          "country_code": "ES",
          "slug": "muela-la",
          "canonical_path": "/cities/es/muela-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442847",
          "name": "Mugardos",
          "country_code": "ES",
          "slug": "mugardos",
          "canonical_path": "/cities/es/mugardos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1983986",
          "name": "Mula",
          "country_code": "ES",
          "slug": "mula",
          "canonical_path": "/cities/es/mula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1228780",
          "name": "Mungia",
          "country_code": "ES",
          "slug": "mungia",
          "canonical_path": "/cities/es/mungia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12225",
          "name": "Murcia",
          "country_code": "ES",
          "slug": "murcia",
          "canonical_path": "/cities/es/murcia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q595424",
          "name": "Muro",
          "country_code": "ES",
          "slug": "muro",
          "canonical_path": "/cities/es/muro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1768714",
          "name": "Muro de Alcoy",
          "country_code": "ES",
          "slug": "muro-de-alcoy",
          "canonical_path": "/cities/es/muro-de-alcoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q578957",
          "name": "Muros",
          "country_code": "ES",
          "slug": "muros",
          "canonical_path": "/cities/es/muros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1010314",
          "name": "Museros",
          "country_code": "ES",
          "slug": "museros",
          "canonical_path": "/cities/es/museros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q607474",
          "name": "Muskiz",
          "country_code": "ES",
          "slug": "muskiz",
          "canonical_path": "/cities/es/muskiz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1618305",
          "name": "Mutriku",
          "country_code": "ES",
          "slug": "mutriku",
          "canonical_path": "/cities/es/mutriku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631458",
          "name": "Mutxamel",
          "country_code": "ES",
          "slug": "mutxamel",
          "canonical_path": "/cities/es/mutxamel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q776113",
          "name": "Nájera",
          "country_code": "ES",
          "slug": "najera",
          "canonical_path": "/cities/es/najera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628866",
          "name": "Nambroca",
          "country_code": "ES",
          "slug": "nambroca",
          "canonical_path": "/cities/es/nambroca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1810161",
          "name": "Nàquera/Náquera",
          "country_code": "ES",
          "slug": "naquera-naquera",
          "canonical_path": "/cities/es/naquera-naquera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1368896",
          "name": "Narón",
          "country_code": "ES",
          "slug": "naron",
          "canonical_path": "/cities/es/naron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q946280",
          "name": "Nava",
          "country_code": "ES",
          "slug": "nava",
          "canonical_path": "/cities/es/nava/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1623099",
          "name": "Navalcarnero",
          "country_code": "ES",
          "slug": "navalcarnero",
          "canonical_path": "/cities/es/navalcarnero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q965529",
          "name": "Navalmoral de la Mata",
          "country_code": "ES",
          "slug": "navalmoral-de-la-mata",
          "canonical_path": "/cities/es/navalmoral-de-la-mata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16723",
          "name": "Navarcles",
          "country_code": "ES",
          "slug": "navarcles",
          "canonical_path": "/cities/es/navarcles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16724",
          "name": "Navàs",
          "country_code": "ES",
          "slug": "navas",
          "canonical_path": "/cities/es/navas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:6697035",
          "name": "Navas de San Juan",
          "country_code": "ES",
          "slug": "navas-de-san-juan",
          "canonical_path": "/cities/es/navas-de-san-juan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1752883",
          "name": "Navas del Marqués, Las",
          "country_code": "ES",
          "slug": "navas-del-marques-las",
          "canonical_path": "/cities/es/navas-del-marques-las/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q668795",
          "name": "Navia",
          "country_code": "ES",
          "slug": "navia",
          "canonical_path": "/cities/es/navia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q840787",
          "name": "Negreira",
          "country_code": "ES",
          "slug": "negreira",
          "canonical_path": "/cities/es/negreira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13149",
          "name": "Nerja",
          "country_code": "ES",
          "slug": "nerja",
          "canonical_path": "/cities/es/nerja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1645078",
          "name": "Nerva",
          "country_code": "ES",
          "slug": "nerva",
          "canonical_path": "/cities/es/nerva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1617562",
          "name": "Nigrán",
          "country_code": "ES",
          "slug": "nigran",
          "canonical_path": "/cities/es/nigran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1110355",
          "name": "Níjar",
          "country_code": "ES",
          "slug": "nijar",
          "canonical_path": "/cities/es/nijar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q818601",
          "name": "Noia",
          "country_code": "ES",
          "slug": "noia",
          "canonical_path": "/cities/es/noia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q816255",
          "name": "Noreña",
          "country_code": "ES",
          "slug": "norena",
          "canonical_path": "/cities/es/norena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983473",
          "name": "Novelda",
          "country_code": "ES",
          "slug": "novelda",
          "canonical_path": "/cities/es/novelda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984403",
          "name": "Nucia, la",
          "country_code": "ES",
          "slug": "nucia-la",
          "canonical_path": "/cities/es/nucia-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1406692",
          "name": "Nueva Carteya",
          "country_code": "ES",
          "slug": "nueva-carteya",
          "canonical_path": "/cities/es/nueva-carteya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q921352",
          "name": "Nuevo Baztán",
          "country_code": "ES",
          "slug": "nuevo-baztan",
          "canonical_path": "/cities/es/nuevo-baztan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1768703",
          "name": "Nules",
          "country_code": "ES",
          "slug": "nules",
          "canonical_path": "/cities/es/nules/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641540",
          "name": "Numancia de la Sagra",
          "country_code": "ES",
          "slug": "numancia-de-la-sagra",
          "canonical_path": "/cities/es/numancia-de-la-sagra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q957767",
          "name": "Ocaña",
          "country_code": "ES",
          "slug": "ocana",
          "canonical_path": "/cities/es/ocana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q605335",
          "name": "Ogíjares",
          "country_code": "ES",
          "slug": "ogijares",
          "canonical_path": "/cities/es/ogijares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q911092",
          "name": "Oiartzun",
          "country_code": "ES",
          "slug": "oiartzun",
          "canonical_path": "/cities/es/oiartzun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q688611",
          "name": "Oleiros",
          "country_code": "ES",
          "slug": "oleiros",
          "canonical_path": "/cities/es/oleiros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15626",
          "name": "Olesa de Montserrat",
          "country_code": "ES",
          "slug": "olesa-de-montserrat",
          "canonical_path": "/cities/es/olesa-de-montserrat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q674525",
          "name": "Olías del Rey",
          "country_code": "ES",
          "slug": "olias-del-rey",
          "canonical_path": "/cities/es/olias-del-rey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q918586",
          "name": "Oliva",
          "country_code": "ES",
          "slug": "oliva",
          "canonical_path": "/cities/es/oliva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2513143",
          "name": "Oliva de la Frontera",
          "country_code": "ES",
          "slug": "oliva-de-la-frontera",
          "canonical_path": "/cities/es/oliva-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q594892",
          "name": "Oliva, La",
          "country_code": "ES",
          "slug": "oliva-la",
          "canonical_path": "/cities/es/oliva-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628400",
          "name": "Olivares",
          "country_code": "ES",
          "slug": "olivares",
          "canonical_path": "/cities/es/olivares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q488052",
          "name": "Olivenza",
          "country_code": "ES",
          "slug": "olivenza",
          "canonical_path": "/cities/es/olivenza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1993458",
          "name": "Olleria, l'",
          "country_code": "ES",
          "slug": "olleria-l",
          "canonical_path": "/cities/es/olleria-l/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12618",
          "name": "Olot",
          "country_code": "ES",
          "slug": "olot",
          "canonical_path": "/cities/es/olot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1358205",
          "name": "Olula del Río",
          "country_code": "ES",
          "slug": "olula-del-rio",
          "canonical_path": "/cities/es/olula-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q662224",
          "name": "Olvera",
          "country_code": "ES",
          "slug": "olvera",
          "canonical_path": "/cities/es/olvera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q496588",
          "name": "Oñati",
          "country_code": "ES",
          "slug": "onati",
          "canonical_path": "/cities/es/onati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984821",
          "name": "Onda",
          "country_code": "ES",
          "slug": "onda",
          "canonical_path": "/cities/es/onda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q290824",
          "name": "Ondara",
          "country_code": "ES",
          "slug": "ondara",
          "canonical_path": "/cities/es/ondara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q595283",
          "name": "Ondarroa",
          "country_code": "ES",
          "slug": "ondarroa",
          "canonical_path": "/cities/es/ondarroa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q587785",
          "name": "Onil",
          "country_code": "ES",
          "slug": "onil",
          "canonical_path": "/cities/es/onil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1610123",
          "name": "Ontígola",
          "country_code": "ES",
          "slug": "ontigola",
          "canonical_path": "/cities/es/ontigola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q973641",
          "name": "Ontinyent",
          "country_code": "ES",
          "slug": "ontinyent",
          "canonical_path": "/cities/es/ontinyent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442661",
          "name": "Ordes",
          "country_code": "ES",
          "slug": "ordes",
          "canonical_path": "/cities/es/ordes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q672483",
          "name": "Ordizia",
          "country_code": "ES",
          "slug": "ordizia",
          "canonical_path": "/cities/es/ordizia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q293130",
          "name": "Órgiva",
          "country_code": "ES",
          "slug": "orgiva",
          "canonical_path": "/cities/es/orgiva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3114957",
          "name": "Oria",
          "country_code": "ES",
          "slug": "oria",
          "canonical_path": "/cities/es/oria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q487786",
          "name": "Orihuela",
          "country_code": "ES",
          "slug": "orihuela",
          "canonical_path": "/cities/es/orihuela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1649616",
          "name": "Orio",
          "country_code": "ES",
          "slug": "orio",
          "canonical_path": "/cities/es/orio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3114912",
          "name": "Oropesa del Mar",
          "country_code": "ES",
          "slug": "oropesa-del-mar",
          "canonical_path": "/cities/es/oropesa-del-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q924131",
          "name": "Oroso",
          "country_code": "ES",
          "slug": "oroso",
          "canonical_path": "/cities/es/oroso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q920391",
          "name": "Orotava, La",
          "country_code": "ES",
          "slug": "orotava-la",
          "canonical_path": "/cities/es/orotava-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1596349",
          "name": "Orpesa/Oropesa del Mar",
          "country_code": "ES",
          "slug": "orpesa-oropesa-del-mar",
          "canonical_path": "/cities/es/orpesa-oropesa-del-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1375842",
          "name": "Ortigueira",
          "country_code": "ES",
          "slug": "ortigueira",
          "canonical_path": "/cities/es/ortigueira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q4474",
          "name": "Ortuella",
          "country_code": "ES",
          "slug": "ortuella",
          "canonical_path": "/cities/es/ortuella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q586018",
          "name": "Osuna",
          "country_code": "ES",
          "slug": "osuna",
          "canonical_path": "/cities/es/osuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q99151",
          "name": "Ourense",
          "country_code": "ES",
          "slug": "ourense",
          "canonical_path": "/cities/es/ourense/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q643709",
          "name": "Outeiro de Rei",
          "country_code": "ES",
          "slug": "outeiro-de-rei",
          "canonical_path": "/cities/es/outeiro-de-rei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q936870",
          "name": "Outes",
          "country_code": "ES",
          "slug": "outes",
          "canonical_path": "/cities/es/outes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q14317",
          "name": "Oviedo",
          "country_code": "ES",
          "slug": "oviedo",
          "canonical_path": "/cities/es/oviedo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13423086",
          "name": "Oza-Cesuras",
          "country_code": "ES",
          "slug": "oza-cesuras",
          "canonical_path": "/cities/es/oza-cesuras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q500494",
          "name": "Padrón",
          "country_code": "ES",
          "slug": "padron",
          "canonical_path": "/cities/es/padron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q605397",
          "name": "Padul",
          "country_code": "ES",
          "slug": "padul",
          "canonical_path": "/cities/es/padul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q102848",
          "name": "Paiporta",
          "country_code": "ES",
          "slug": "paiporta",
          "canonical_path": "/cities/es/paiporta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q661198",
          "name": "Pájara",
          "country_code": "ES",
          "slug": "pajara",
          "canonical_path": "/cities/es/pajara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q428954",
          "name": "Palacios y Villafranca, Los",
          "country_code": "ES",
          "slug": "palacios-y-villafranca-los",
          "canonical_path": "/cities/es/palacios-y-villafranca-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12595",
          "name": "Palafolls",
          "country_code": "ES",
          "slug": "palafolls",
          "canonical_path": "/cities/es/palafolls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13490",
          "name": "Palafrugell",
          "country_code": "ES",
          "slug": "palafrugell",
          "canonical_path": "/cities/es/palafrugell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13491",
          "name": "Palamós",
          "country_code": "ES",
          "slug": "palamos",
          "canonical_path": "/cities/es/palamos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13926",
          "name": "Palau-solità i Plegamans",
          "country_code": "ES",
          "slug": "palau-solita-i-plegamans",
          "canonical_path": "/cities/es/palau-solita-i-plegamans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q263315",
          "name": "Palazuelos de Eresma",
          "country_code": "ES",
          "slug": "palazuelos-de-eresma",
          "canonical_path": "/cities/es/palazuelos-de-eresma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8378",
          "name": "Palencia",
          "country_code": "ES",
          "slug": "palencia",
          "canonical_path": "/cities/es/palencia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q596705",
          "name": "Pallaresos, Els",
          "country_code": "ES",
          "slug": "pallaresos-els",
          "canonical_path": "/cities/es/pallaresos-els/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15627",
          "name": "Pallejà",
          "country_code": "ES",
          "slug": "palleja",
          "canonical_path": "/cities/es/palleja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8826",
          "name": "Palma",
          "country_code": "ES",
          "slug": "palma",
          "canonical_path": "/cities/es/palma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q904245",
          "name": "Palma del Condado, La",
          "country_code": "ES",
          "slug": "palma-del-condado-la",
          "canonical_path": "/cities/es/palma-del-condado-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1372714",
          "name": "Palma del Río",
          "country_code": "ES",
          "slug": "palma-del-rio",
          "canonical_path": "/cities/es/palma-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11974",
          "name": "Palmas de Gran Canaria, Las",
          "country_code": "ES",
          "slug": "palmas-de-gran-canaria-las",
          "canonical_path": "/cities/es/palmas-de-gran-canaria-las/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605692",
          "name": "Palomares del Río",
          "country_code": "ES",
          "slug": "palomares-del-rio",
          "canonical_path": "/cities/es/palomares-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q622030",
          "name": "Palos de la Frontera",
          "country_code": "ES",
          "slug": "palos-de-la-frontera",
          "canonical_path": "/cities/es/palos-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3114472",
          "name": "Pamplona",
          "country_code": "ES",
          "slug": "pamplona",
          "canonical_path": "/cities/es/pamplona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q10282",
          "name": "Pamplona/Iruña",
          "country_code": "ES",
          "slug": "pamplona-iruna",
          "canonical_path": "/cities/es/pamplona-iruna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q2046249",
          "name": "Paracuellos de Jarama",
          "country_code": "ES",
          "slug": "paracuellos-de-jarama",
          "canonical_path": "/cities/es/paracuellos-de-jarama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1146813",
          "name": "Paradas",
          "country_code": "ES",
          "slug": "paradas",
          "canonical_path": "/cities/es/paradas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15437",
          "name": "Parets del Vallès",
          "country_code": "ES",
          "slug": "parets-del-valles",
          "canonical_path": "/cities/es/parets-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q824651",
          "name": "Parla",
          "country_code": "ES",
          "slug": "parla",
          "canonical_path": "/cities/es/parla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q818327",
          "name": "Parres",
          "country_code": "ES",
          "slug": "parres",
          "canonical_path": "/cities/es/parres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q847127",
          "name": "Pasaia",
          "country_code": "ES",
          "slug": "pasaia",
          "canonical_path": "/cities/es/pasaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q434123",
          "name": "Paso, El",
          "country_code": "ES",
          "slug": "paso-el",
          "canonical_path": "/cities/es/paso-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q23042",
          "name": "Paterna",
          "country_code": "ES",
          "slug": "paterna",
          "canonical_path": "/cities/es/paterna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631804",
          "name": "Paterna de Rivera",
          "country_code": "ES",
          "slug": "paterna-de-rivera",
          "canonical_path": "/cities/es/paterna-de-rivera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1632828",
          "name": "Peal de Becerro",
          "country_code": "ES",
          "slug": "peal-de-becerro",
          "canonical_path": "/cities/es/peal-de-becerro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1750923",
          "name": "Pedreguer",
          "country_code": "ES",
          "slug": "pedreguer",
          "canonical_path": "/cities/es/pedreguer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628338",
          "name": "Pedrera",
          "country_code": "ES",
          "slug": "pedrera",
          "canonical_path": "/cities/es/pedrera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1647820",
          "name": "Pedrezuela",
          "country_code": "ES",
          "slug": "pedrezuela",
          "canonical_path": "/cities/es/pedrezuela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q910402",
          "name": "Pedro Muñoz",
          "country_code": "ES",
          "slug": "pedro-munoz",
          "canonical_path": "/cities/es/pedro-munoz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1647629",
          "name": "Pedroñeras, Las",
          "country_code": "ES",
          "slug": "pedroneras-las",
          "canonical_path": "/cities/es/pedroneras-las/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q102835",
          "name": "Pego",
          "country_code": "ES",
          "slug": "pego",
          "canonical_path": "/cities/es/pego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q538809",
          "name": "Peligros",
          "country_code": "ES",
          "slug": "peligros",
          "canonical_path": "/cities/es/peligros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q667682",
          "name": "Peñafiel",
          "country_code": "ES",
          "slug": "penafiel",
          "canonical_path": "/cities/es/penafiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q679766",
          "name": "Peñaranda de Bracamonte",
          "country_code": "ES",
          "slug": "penaranda-de-bracamonte",
          "canonical_path": "/cities/es/penaranda-de-bracamonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1406749",
          "name": "Peñarroya-Pueblonuevo",
          "country_code": "ES",
          "slug": "penarroya-pueblonuevo",
          "canonical_path": "/cities/es/penarroya-pueblonuevo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q845424",
          "name": "Peníscola/Peñíscola",
          "country_code": "ES",
          "slug": "peniscola-peniscola",
          "canonical_path": "/cities/es/peniscola-peniscola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3113800",
          "name": "Peralta",
          "country_code": "ES",
          "slug": "peralta",
          "canonical_path": "/cities/es/peralta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984865",
          "name": "Peralta/Azkoien",
          "country_code": "ES",
          "slug": "peralta-azkoien",
          "canonical_path": "/cities/es/peralta-azkoien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3113738",
          "name": "Pereiro de Aguiar",
          "country_code": "ES",
          "slug": "pereiro-de-aguiar",
          "canonical_path": "/cities/es/pereiro-de-aguiar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1603774",
          "name": "Pereiro de Aguiar, O",
          "country_code": "ES",
          "slug": "pereiro-de-aguiar-o",
          "canonical_path": "/cities/es/pereiro-de-aguiar-o/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751353",
          "name": "Petrer",
          "country_code": "ES",
          "slug": "petrer",
          "canonical_path": "/cities/es/petrer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1982763",
          "name": "Picanya",
          "country_code": "ES",
          "slug": "picanya",
          "canonical_path": "/cities/es/picanya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q10863",
          "name": "Picassent",
          "country_code": "ES",
          "slug": "picassent",
          "canonical_path": "/cities/es/picassent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1623000",
          "name": "Piélagos",
          "country_code": "ES",
          "slug": "pielagos",
          "canonical_path": "/cities/es/pielagos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15959",
          "name": "Piera",
          "country_code": "ES",
          "slug": "piera",
          "canonical_path": "/cities/es/piera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q956513",
          "name": "Pilar de la Horadada",
          "country_code": "ES",
          "slug": "pilar-de-la-horadada",
          "canonical_path": "/cities/es/pilar-de-la-horadada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1616138",
          "name": "Pilas",
          "country_code": "ES",
          "slug": "pilas",
          "canonical_path": "/cities/es/pilas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q818363",
          "name": "Piloña",
          "country_code": "ES",
          "slug": "pilona",
          "canonical_path": "/cities/es/pilona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12552",
          "name": "Pineda de Mar",
          "country_code": "ES",
          "slug": "pineda-de-mar",
          "canonical_path": "/cities/es/pineda-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q611199",
          "name": "Pinos Puente",
          "country_code": "ES",
          "slug": "pinos-puente",
          "canonical_path": "/cities/es/pinos-puente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751965",
          "name": "Pinós, el/Pinoso",
          "country_code": "ES",
          "slug": "pinos-el-pinoso",
          "canonical_path": "/cities/es/pinos-el-pinoso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2512510",
          "name": "Pinoso",
          "country_code": "ES",
          "slug": "pinoso",
          "canonical_path": "/cities/es/pinoso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q909718",
          "name": "Pinto",
          "country_code": "ES",
          "slug": "pinto",
          "canonical_path": "/cities/es/pinto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q956606",
          "name": "Pioz",
          "country_code": "ES",
          "slug": "pioz",
          "canonical_path": "/cities/es/pioz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1657599",
          "name": "Pizarra",
          "country_code": "ES",
          "slug": "pizarra",
          "canonical_path": "/cities/es/pizarra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q241767",
          "name": "Plasencia",
          "country_code": "ES",
          "slug": "plasencia",
          "canonical_path": "/cities/es/plasencia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1992972",
          "name": "Pobla de Farnals, la",
          "country_code": "ES",
          "slug": "pobla-de-farnals-la",
          "canonical_path": "/cities/es/pobla-de-farnals-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1982982",
          "name": "Pobla de Vallbona, la",
          "country_code": "ES",
          "slug": "pobla-de-vallbona-la",
          "canonical_path": "/cities/es/pobla-de-vallbona-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984493",
          "name": "Pobla, Sa",
          "country_code": "ES",
          "slug": "pobla-sa",
          "canonical_path": "/cities/es/pobla-sa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q300525",
          "name": "Pobra do Caramiñal, A",
          "country_code": "ES",
          "slug": "pobra-do-caraminal-a",
          "canonical_path": "/cities/es/pobra-do-caraminal-a/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631776",
          "name": "Poio",
          "country_code": "ES",
          "slug": "poio",
          "canonical_path": "/cities/es/poio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q595358",
          "name": "Polanco",
          "country_code": "ES",
          "slug": "polanco",
          "canonical_path": "/cities/es/polanco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13925",
          "name": "Polinyà",
          "country_code": "ES",
          "slug": "polinya",
          "canonical_path": "/cities/es/polinya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q601112",
          "name": "Pollença",
          "country_code": "ES",
          "slug": "pollenca",
          "canonical_path": "/cities/es/pollenca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1768847",
          "name": "Polop",
          "country_code": "ES",
          "slug": "polop",
          "canonical_path": "/cities/es/polop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12164",
          "name": "Ponferrada",
          "country_code": "ES",
          "slug": "ponferrada",
          "canonical_path": "/cities/es/ponferrada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631751",
          "name": "Ponte Caldelas",
          "country_code": "ES",
          "slug": "ponte-caldelas",
          "canonical_path": "/cities/es/ponte-caldelas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q617119",
          "name": "Ponteareas",
          "country_code": "ES",
          "slug": "ponteareas",
          "canonical_path": "/cities/es/ponteareas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1450823",
          "name": "Ponteceso",
          "country_code": "ES",
          "slug": "ponteceso",
          "canonical_path": "/cities/es/ponteceso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q765283",
          "name": "Pontedeume",
          "country_code": "ES",
          "slug": "pontedeume",
          "canonical_path": "/cities/es/pontedeume/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442761",
          "name": "Pontes de García Rodríguez, As",
          "country_code": "ES",
          "slug": "pontes-de-garcia-rodriguez-as",
          "canonical_path": "/cities/es/pontes-de-garcia-rodriguez-as/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12411",
          "name": "Pontevedra",
          "country_code": "ES",
          "slug": "pontevedra",
          "canonical_path": "/cities/es/pontevedra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q375851",
          "name": "Porcuna",
          "country_code": "ES",
          "slug": "porcuna",
          "canonical_path": "/cities/es/porcuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q925773",
          "name": "Porreres",
          "country_code": "ES",
          "slug": "porreres",
          "canonical_path": "/cities/es/porreres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3113157",
          "name": "Porriño",
          "country_code": "ES",
          "slug": "porrino",
          "canonical_path": "/cities/es/porrino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1616392",
          "name": "Porriño, O",
          "country_code": "ES",
          "slug": "porrino-o",
          "canonical_path": "/cities/es/porrino-o/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1450836",
          "name": "Porto do Son",
          "country_code": "ES",
          "slug": "porto-do-son",
          "canonical_path": "/cities/es/porto-do-son/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q548441",
          "name": "Portugalete",
          "country_code": "ES",
          "slug": "portugalete",
          "canonical_path": "/cities/es/portugalete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q818312",
          "name": "Posadas",
          "country_code": "ES",
          "slug": "posadas",
          "canonical_path": "/cities/es/posadas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2512343",
          "name": "Pozo Alcón",
          "country_code": "ES",
          "slug": "pozo-alcon",
          "canonical_path": "/cities/es/pozo-alcon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q820240",
          "name": "Pozoblanco",
          "country_code": "ES",
          "slug": "pozoblanco",
          "canonical_path": "/cities/es/pozoblanco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q639422",
          "name": "Pozuelo de Alarcón",
          "country_code": "ES",
          "slug": "pozuelo-de-alarcon",
          "canonical_path": "/cities/es/pozuelo-de-alarcon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1448460",
          "name": "Prado del Rey",
          "country_code": "ES",
          "slug": "prado-del-rey",
          "canonical_path": "/cities/es/prado-del-rey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15619",
          "name": "Prat de Llobregat, El",
          "country_code": "ES",
          "slug": "prat-de-llobregat-el",
          "canonical_path": "/cities/es/prat-de-llobregat-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q820469",
          "name": "Pravia",
          "country_code": "ES",
          "slug": "pravia",
          "canonical_path": "/cities/es/pravia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12049",
          "name": "Premià de Dalt",
          "country_code": "ES",
          "slug": "premia-de-dalt",
          "canonical_path": "/cities/es/premia-de-dalt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12046",
          "name": "Premià de Mar",
          "country_code": "ES",
          "slug": "premia-de-mar",
          "canonical_path": "/cities/es/premia-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q301437",
          "name": "Priego de Córdoba",
          "country_code": "ES",
          "slug": "priego-de-cordoba",
          "canonical_path": "/cities/es/priego-de-cordoba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q23028",
          "name": "Puçol",
          "country_code": "ES",
          "slug": "pucol",
          "canonical_path": "/cities/es/pucol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1640155",
          "name": "Puebla de Alfindén, La",
          "country_code": "ES",
          "slug": "puebla-de-alfinden-la",
          "canonical_path": "/cities/es/puebla-de-alfinden-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1146831",
          "name": "Puebla de Cazalla, La",
          "country_code": "ES",
          "slug": "puebla-de-cazalla-la",
          "canonical_path": "/cities/es/puebla-de-cazalla-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1387062",
          "name": "Puebla de la Calzada",
          "country_code": "ES",
          "slug": "puebla-de-la-calzada",
          "canonical_path": "/cities/es/puebla-de-la-calzada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q537779",
          "name": "Puebla de Montalbán, La",
          "country_code": "ES",
          "slug": "puebla-de-montalban-la",
          "canonical_path": "/cities/es/puebla-de-montalban-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605737",
          "name": "Puebla del Río, La",
          "country_code": "ES",
          "slug": "puebla-del-rio-la",
          "canonical_path": "/cities/es/puebla-del-rio-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q589053",
          "name": "Puente Genil",
          "country_code": "ES",
          "slug": "puente-genil",
          "canonical_path": "/cities/es/puente-genil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q623549",
          "name": "Puerto de la Cruz",
          "country_code": "ES",
          "slug": "puerto-de-la-cruz",
          "canonical_path": "/cities/es/puerto-de-la-cruz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q203040",
          "name": "Puerto de Santa María, El",
          "country_code": "ES",
          "slug": "puerto-de-santa-maria-el",
          "canonical_path": "/cities/es/puerto-de-santa-maria-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q540185",
          "name": "Puerto del Rosario",
          "country_code": "ES",
          "slug": "puerto-del-rosario",
          "canonical_path": "/cities/es/puerto-del-rosario/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q613784",
          "name": "Puerto Lumbreras",
          "country_code": "ES",
          "slug": "puerto-lumbreras",
          "canonical_path": "/cities/es/puerto-lumbreras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q846159",
          "name": "Puerto Real",
          "country_code": "ES",
          "slug": "puerto-real",
          "canonical_path": "/cities/es/puerto-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1630881",
          "name": "Puerto Serrano",
          "country_code": "ES",
          "slug": "puerto-serrano",
          "canonical_path": "/cities/es/puerto-serrano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q215822",
          "name": "Puertollano",
          "country_code": "ES",
          "slug": "puertollano",
          "canonical_path": "/cities/es/puertollano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q2040100",
          "name": "Puig de Santa Maria, el",
          "country_code": "ES",
          "slug": "puig-de-santa-maria-el",
          "canonical_path": "/cities/es/puig-de-santa-maria-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13765",
          "name": "Puigcerdà",
          "country_code": "ES",
          "slug": "puigcerda",
          "canonical_path": "/cities/es/puigcerda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q615266",
          "name": "Pulianas",
          "country_code": "ES",
          "slug": "pulianas",
          "canonical_path": "/cities/es/pulianas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1157960",
          "name": "Pulpí",
          "country_code": "ES",
          "slug": "pulpi",
          "canonical_path": "/cities/es/pulpi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q736888",
          "name": "Punta Umbría",
          "country_code": "ES",
          "slug": "punta-umbria",
          "canonical_path": "/cities/es/punta-umbria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q945911",
          "name": "Quart de Poblet",
          "country_code": "ES",
          "slug": "quart-de-poblet",
          "canonical_path": "/cities/es/quart-de-poblet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2512107",
          "name": "Quesada",
          "country_code": "ES",
          "slug": "quesada",
          "canonical_path": "/cities/es/quesada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2512099",
          "name": "Quintana de la Serena",
          "country_code": "ES",
          "slug": "quintana-de-la-serena",
          "canonical_path": "/cities/es/quintana-de-la-serena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628531",
          "name": "Quintanar de la Orden",
          "country_code": "ES",
          "slug": "quintanar-de-la-orden",
          "canonical_path": "/cities/es/quintanar-de-la-orden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1647678",
          "name": "Quintanar del Rey",
          "country_code": "ES",
          "slug": "quintanar-del-rey",
          "canonical_path": "/cities/es/quintanar-del-rey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1982774",
          "name": "Rafelbunyol",
          "country_code": "ES",
          "slug": "rafelbunyol",
          "canonical_path": "/cities/es/rafelbunyol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1645517",
          "name": "Rambla, La",
          "country_code": "ES",
          "slug": "rambla-la",
          "canonical_path": "/cities/es/rambla-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q767011",
          "name": "Ràpita, La",
          "country_code": "ES",
          "slug": "rapita-la",
          "canonical_path": "/cities/es/rapita-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1125500",
          "name": "Real Sitio de San Ildefonso",
          "country_code": "ES",
          "slug": "real-sitio-de-san-ildefonso",
          "canonical_path": "/cities/es/real-sitio-de-san-ildefonso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q953876",
          "name": "Realejos, Los",
          "country_code": "ES",
          "slug": "realejos-los",
          "canonical_path": "/cities/es/realejos-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q686635",
          "name": "Recas",
          "country_code": "ES",
          "slug": "recas",
          "canonical_path": "/cities/es/recas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q833032",
          "name": "Redondela",
          "country_code": "ES",
          "slug": "redondela",
          "canonical_path": "/cities/es/redondela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1768833",
          "name": "Redován",
          "country_code": "ES",
          "slug": "redovan",
          "canonical_path": "/cities/es/redovan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q671326",
          "name": "Reinosa",
          "country_code": "ES",
          "slug": "reinosa",
          "canonical_path": "/cities/es/reinosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1623013",
          "name": "Reocín",
          "country_code": "ES",
          "slug": "reocin",
          "canonical_path": "/cities/es/reocin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q302099",
          "name": "Requena",
          "country_code": "ES",
          "slug": "requena",
          "canonical_path": "/cities/es/requena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q487096",
          "name": "Reus",
          "country_code": "ES",
          "slug": "reus",
          "canonical_path": "/cities/es/reus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q835911",
          "name": "Rianxo",
          "country_code": "ES",
          "slug": "rianxo",
          "canonical_path": "/cities/es/rianxo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q23701",
          "name": "Riba-roja de Túria",
          "country_code": "ES",
          "slug": "riba-roja-de-turia",
          "canonical_path": "/cities/es/riba-roja-de-turia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3111863",
          "name": "Ribadavia",
          "country_code": "ES",
          "slug": "ribadavia",
          "canonical_path": "/cities/es/ribadavia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q824076",
          "name": "Ribadeo",
          "country_code": "ES",
          "slug": "ribadeo",
          "canonical_path": "/cities/es/ribadeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q591580",
          "name": "Ribadesella",
          "country_code": "ES",
          "slug": "ribadesella",
          "canonical_path": "/cities/es/ribadesella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631321",
          "name": "Ribadumia",
          "country_code": "ES",
          "slug": "ribadumia",
          "canonical_path": "/cities/es/ribadumia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q904130",
          "name": "Ribeira",
          "country_code": "ES",
          "slug": "ribeira",
          "canonical_path": "/cities/es/ribeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1248474",
          "name": "Rincón de la Victoria",
          "country_code": "ES",
          "slug": "rincon-de-la-victoria",
          "canonical_path": "/cities/es/rincon-de-la-victoria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1146785",
          "name": "Rinconada, La",
          "country_code": "ES",
          "slug": "rinconada-la",
          "canonical_path": "/cities/es/rinconada-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12335",
          "name": "Ripoll",
          "country_code": "ES",
          "slug": "ripoll",
          "canonical_path": "/cities/es/ripoll/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13933",
          "name": "Ripollet",
          "country_code": "ES",
          "slug": "ripollet",
          "canonical_path": "/cities/es/ripollet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q679015",
          "name": "Riudoms",
          "country_code": "ES",
          "slug": "riudoms",
          "canonical_path": "/cities/es/riudoms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q644481",
          "name": "Rivas-Vaciamadrid",
          "country_code": "ES",
          "slug": "rivas-vaciamadrid",
          "canonical_path": "/cities/es/rivas-vaciamadrid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15439",
          "name": "Roca del Vallès, La",
          "country_code": "ES",
          "slug": "roca-del-valles-la",
          "canonical_path": "/cities/es/roca-del-valles-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1993437",
          "name": "Rocafort",
          "country_code": "ES",
          "slug": "rocafort",
          "canonical_path": "/cities/es/rocafort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1614513",
          "name": "Rociana del Condado",
          "country_code": "ES",
          "slug": "rociana-del-condado",
          "canonical_path": "/cities/es/rociana-del-condado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1229622",
          "name": "Roda de Berà",
          "country_code": "ES",
          "slug": "roda-de-bera",
          "canonical_path": "/cities/es/roda-de-bera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13815",
          "name": "Roda de Ter",
          "country_code": "ES",
          "slug": "roda-de-ter",
          "canonical_path": "/cities/es/roda-de-ter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q630706",
          "name": "Roda, La",
          "country_code": "ES",
          "slug": "roda-la",
          "canonical_path": "/cities/es/roda-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q606240",
          "name": "Rojales",
          "country_code": "ES",
          "slug": "rojales",
          "canonical_path": "/cities/es/rojales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13153",
          "name": "Ronda",
          "country_code": "ES",
          "slug": "ronda",
          "canonical_path": "/cities/es/ronda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q499184",
          "name": "Roquetas de Mar",
          "country_code": "ES",
          "slug": "roquetas-de-mar",
          "canonical_path": "/cities/es/roquetas-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q762516",
          "name": "Roquetes",
          "country_code": "ES",
          "slug": "roquetes",
          "canonical_path": "/cities/es/roquetes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q603015",
          "name": "Rosal, O",
          "country_code": "ES",
          "slug": "rosal-o",
          "canonical_path": "/cities/es/rosal-o/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q176624",
          "name": "Rosario, El",
          "country_code": "ES",
          "slug": "rosario-el",
          "canonical_path": "/cities/es/rosario-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q11822",
          "name": "Roses",
          "country_code": "ES",
          "slug": "roses",
          "canonical_path": "/cities/es/roses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15907",
          "name": "Rota",
          "country_code": "ES",
          "slug": "rota",
          "canonical_path": "/cities/es/rota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q592747",
          "name": "Rozas de Madrid, Las",
          "country_code": "ES",
          "slug": "rozas-de-madrid-las",
          "canonical_path": "/cities/es/rozas-de-madrid-las/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13934",
          "name": "Rubí",
          "country_code": "ES",
          "slug": "rubi",
          "canonical_path": "/cities/es/rubi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q592982",
          "name": "Rute",
          "country_code": "ES",
          "slug": "rute",
          "canonical_path": "/cities/es/rute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12258",
          "name": "Sabadell",
          "country_code": "ES",
          "slug": "sabadell",
          "canonical_path": "/cities/es/sabadell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1552975",
          "name": "Sabiñánigo",
          "country_code": "ES",
          "slug": "sabinanigo",
          "canonical_path": "/cities/es/sabinanigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q47483",
          "name": "Sagunt/Sagunto",
          "country_code": "ES",
          "slug": "sagunt-sagunto",
          "canonical_path": "/cities/es/sagunt-sagunto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2511619",
          "name": "Sagunto",
          "country_code": "ES",
          "slug": "sagunto",
          "canonical_path": "/cities/es/sagunto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15695",
          "name": "Salamanca",
          "country_code": "ES",
          "slug": "salamanca",
          "canonical_path": "/cities/es/salamanca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3111101",
          "name": "Salas",
          "country_code": "ES",
          "slug": "salas",
          "canonical_path": "/cities/es/salas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1629594",
          "name": "Salceda de Caselas",
          "country_code": "ES",
          "slug": "salceda-de-caselas",
          "canonical_path": "/cities/es/salceda-de-caselas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q783498",
          "name": "Salines, Ses",
          "country_code": "ES",
          "slug": "salines-ses",
          "canonical_path": "/cities/es/salines-ses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16728",
          "name": "Sallent",
          "country_code": "ES",
          "slug": "sallent",
          "canonical_path": "/cities/es/sallent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q427330",
          "name": "Salobreña",
          "country_code": "ES",
          "slug": "salobrena",
          "canonical_path": "/cities/es/salobrena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q662789",
          "name": "Salou",
          "country_code": "ES",
          "slug": "salou",
          "canonical_path": "/cities/es/salou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13444",
          "name": "Salt",
          "country_code": "ES",
          "slug": "salt",
          "canonical_path": "/cities/es/salt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1629807",
          "name": "Salteras",
          "country_code": "ES",
          "slug": "salteras",
          "canonical_path": "/cities/es/salteras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1629539",
          "name": "Salvaterra de Miño",
          "country_code": "ES",
          "slug": "salvaterra-de-mino",
          "canonical_path": "/cities/es/salvaterra-de-mino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3110962",
          "name": "Sama",
          "country_code": "ES",
          "slug": "sama",
          "canonical_path": "/cities/es/sama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q668324",
          "name": "San Adrián",
          "country_code": "ES",
          "slug": "san-adrian",
          "canonical_path": "/cities/es/san-adrian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q985045",
          "name": "San Agustín del Guadalix",
          "country_code": "ES",
          "slug": "san-agustin-del-guadalix",
          "canonical_path": "/cities/es/san-agustin-del-guadalix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1615486",
          "name": "San Andrés del Rabanedo",
          "country_code": "ES",
          "slug": "san-andres-del-rabanedo",
          "canonical_path": "/cities/es/san-andres-del-rabanedo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q944381",
          "name": "San Antonio de Benagéber",
          "country_code": "ES",
          "slug": "san-antonio-de-benageber",
          "canonical_path": "/cities/es/san-antonio-de-benageber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q962773",
          "name": "San Bartolomé",
          "country_code": "ES",
          "slug": "san-bartolome",
          "canonical_path": "/cities/es/san-bartolome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q693258",
          "name": "San Bartolomé de Tirajana",
          "country_code": "ES",
          "slug": "san-bartolome-de-tirajana",
          "canonical_path": "/cities/es/san-bartolome-de-tirajana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q973465",
          "name": "San Cibrao das Viñas",
          "country_code": "ES",
          "slug": "san-cibrao-das-vinas",
          "canonical_path": "/cities/es/san-cibrao-das-vinas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1750966",
          "name": "San Clemente",
          "country_code": "ES",
          "slug": "san-clemente",
          "canonical_path": "/cities/es/san-clemente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q54898",
          "name": "San Cristóbal de La Laguna",
          "country_code": "ES",
          "slug": "san-cristobal-de-la-laguna",
          "canonical_path": "/cities/es/san-cristobal-de-la-laguna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q741765",
          "name": "San Fernando",
          "country_code": "ES",
          "slug": "san-fernando",
          "canonical_path": "/cities/es/san-fernando/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q842211",
          "name": "San Fernando de Henares",
          "country_code": "ES",
          "slug": "san-fernando-de-henares",
          "canonical_path": "/cities/es/san-fernando-de-henares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q2074405",
          "name": "San Fulgencio",
          "country_code": "ES",
          "slug": "san-fulgencio",
          "canonical_path": "/cities/es/san-fulgencio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2511371",
          "name": "San Isidro",
          "country_code": "ES",
          "slug": "san-isidro",
          "canonical_path": "/cities/es/san-isidro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q987453",
          "name": "San Javier",
          "country_code": "ES",
          "slug": "san-javier",
          "canonical_path": "/cities/es/san-javier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1611693",
          "name": "San Juan de Aznalfarache",
          "country_code": "ES",
          "slug": "san-juan-de-aznalfarache",
          "canonical_path": "/cities/es/san-juan-de-aznalfarache/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2511327",
          "name": "San Juan de la Rambla",
          "country_code": "ES",
          "slug": "san-juan-de-la-rambla",
          "canonical_path": "/cities/es/san-juan-de-la-rambla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1444174",
          "name": "San Juan del Puerto",
          "country_code": "ES",
          "slug": "san-juan-del-puerto",
          "canonical_path": "/cities/es/san-juan-del-puerto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q371748",
          "name": "San Lorenzo de El Escorial",
          "country_code": "ES",
          "slug": "san-lorenzo-de-el-escorial",
          "canonical_path": "/cities/es/san-lorenzo-de-el-escorial/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q959612",
          "name": "San Martín de la Vega",
          "country_code": "ES",
          "slug": "san-martin-de-la-vega",
          "canonical_path": "/cities/es/san-martin-de-la-vega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751908",
          "name": "San Martín de Valdeiglesias",
          "country_code": "ES",
          "slug": "san-martin-de-valdeiglesias",
          "canonical_path": "/cities/es/san-martin-de-valdeiglesias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q818368",
          "name": "San Martín del Rey Aurelio",
          "country_code": "ES",
          "slug": "san-martin-del-rey-aurelio",
          "canonical_path": "/cities/es/san-martin-del-rey-aurelio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q677038",
          "name": "San Miguel de Abona",
          "country_code": "ES",
          "slug": "san-miguel-de-abona",
          "canonical_path": "/cities/es/san-miguel-de-abona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984531",
          "name": "San Miguel de Salinas",
          "country_code": "ES",
          "slug": "san-miguel-de-salinas",
          "canonical_path": "/cities/es/san-miguel-de-salinas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q743996",
          "name": "San Pedro del Pinatar",
          "country_code": "ES",
          "slug": "san-pedro-del-pinatar",
          "canonical_path": "/cities/es/san-pedro-del-pinatar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q846153",
          "name": "San Roque",
          "country_code": "ES",
          "slug": "san-roque",
          "canonical_path": "/cities/es/san-roque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q512009",
          "name": "San Sebastián de la Gomera",
          "country_code": "ES",
          "slug": "san-sebastian-de-la-gomera",
          "canonical_path": "/cities/es/san-sebastian-de-la-gomera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q484717",
          "name": "San Sebastián de los Reyes",
          "country_code": "ES",
          "slug": "san-sebastian-de-los-reyes",
          "canonical_path": "/cities/es/san-sebastian-de-los-reyes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442479",
          "name": "San Vicente de Alcántara",
          "country_code": "ES",
          "slug": "san-vicente-de-alcantara",
          "canonical_path": "/cities/es/san-vicente-de-alcantara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3110589",
          "name": "Sangüesa/Zangoza",
          "country_code": "ES",
          "slug": "sanguesa-zangoza",
          "canonical_path": "/cities/es/sanguesa-zangoza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q210887",
          "name": "Sanlúcar de Barrameda",
          "country_code": "ES",
          "slug": "sanlucar-de-barrameda",
          "canonical_path": "/cities/es/sanlucar-de-barrameda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1446577",
          "name": "Sanlúcar la Mayor",
          "country_code": "ES",
          "slug": "sanlucar-la-mayor",
          "canonical_path": "/cities/es/sanlucar-la-mayor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15471",
          "name": "Sant Adrià de Besòs",
          "country_code": "ES",
          "slug": "sant-adria-de-besos",
          "canonical_path": "/cities/es/sant-adria-de-besos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15634",
          "name": "Sant Andreu de la Barca",
          "country_code": "ES",
          "slug": "sant-andreu-de-la-barca",
          "canonical_path": "/cities/es/sant-andreu-de-la-barca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12093",
          "name": "Sant Andreu de Llavaneres",
          "country_code": "ES",
          "slug": "sant-andreu-de-llavaneres",
          "canonical_path": "/cities/es/sant-andreu-de-llavaneres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q734805",
          "name": "Sant Antoni de Portmany",
          "country_code": "ES",
          "slug": "sant-antoni-de-portmany",
          "canonical_path": "/cities/es/sant-antoni-de-portmany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15440",
          "name": "Sant Antoni de Vilamajor",
          "country_code": "ES",
          "slug": "sant-antoni-de-vilamajor",
          "canonical_path": "/cities/es/sant-antoni-de-vilamajor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15635",
          "name": "Sant Boi de Llobregat",
          "country_code": "ES",
          "slug": "sant-boi-de-llobregat",
          "canonical_path": "/cities/es/sant-boi-de-llobregat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15441",
          "name": "Sant Celoni",
          "country_code": "ES",
          "slug": "sant-celoni",
          "canonical_path": "/cities/es/sant-celoni/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13936",
          "name": "Sant Cugat del Vallès",
          "country_code": "ES",
          "slug": "sant-cugat-del-valles",
          "canonical_path": "/cities/es/sant-cugat-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15638",
          "name": "Sant Esteve Sesrovires",
          "country_code": "ES",
          "slug": "sant-esteve-sesrovires",
          "canonical_path": "/cities/es/sant-esteve-sesrovires/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15444",
          "name": "Sant Feliu de Codines",
          "country_code": "ES",
          "slug": "sant-feliu-de-codines",
          "canonical_path": "/cities/es/sant-feliu-de-codines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13521",
          "name": "Sant Feliu de Guíxols",
          "country_code": "ES",
          "slug": "sant-feliu-de-guixols",
          "canonical_path": "/cities/es/sant-feliu-de-guixols/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15639",
          "name": "Sant Feliu de Llobregat",
          "country_code": "ES",
          "slug": "sant-feliu-de-llobregat",
          "canonical_path": "/cities/es/sant-feliu-de-llobregat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15445",
          "name": "Sant Fost de Campsentelles",
          "country_code": "ES",
          "slug": "sant-fost-de-campsentelles",
          "canonical_path": "/cities/es/sant-fost-de-campsentelles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16730",
          "name": "Sant Fruitós de Bages",
          "country_code": "ES",
          "slug": "sant-fruitos-de-bages",
          "canonical_path": "/cities/es/sant-fruitos-de-bages/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13639",
          "name": "Sant Hilari Sacalm",
          "country_code": "ES",
          "slug": "sant-hilari-sacalm",
          "canonical_path": "/cities/es/sant-hilari-sacalm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q740204",
          "name": "Sant Joan d'Alacant",
          "country_code": "ES",
          "slug": "sant-joan-d-alacant",
          "canonical_path": "/cities/es/sant-joan-d-alacant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983628",
          "name": "Sant Joan de Labritja",
          "country_code": "ES",
          "slug": "sant-joan-de-labritja",
          "canonical_path": "/cities/es/sant-joan-de-labritja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16731",
          "name": "Sant Joan de Vilatorrada",
          "country_code": "ES",
          "slug": "sant-joan-de-vilatorrada",
          "canonical_path": "/cities/es/sant-joan-de-vilatorrada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15640",
          "name": "Sant Joan Despí",
          "country_code": "ES",
          "slug": "sant-joan-despi",
          "canonical_path": "/cities/es/sant-joan-despi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983635",
          "name": "Sant Josep de sa Talaia",
          "country_code": "ES",
          "slug": "sant-josep-de-sa-talaia",
          "canonical_path": "/cities/es/sant-josep-de-sa-talaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15641",
          "name": "Sant Just Desvern",
          "country_code": "ES",
          "slug": "sant-just-desvern",
          "canonical_path": "/cities/es/sant-just-desvern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983463",
          "name": "Sant Llorenç des Cardassar",
          "country_code": "ES",
          "slug": "sant-llorenc-des-cardassar",
          "canonical_path": "/cities/es/sant-llorenc-des-cardassar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984499",
          "name": "Sant Lluís",
          "country_code": "ES",
          "slug": "sant-lluis",
          "canonical_path": "/cities/es/sant-lluis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15555",
          "name": "Sant Pere de Ribes",
          "country_code": "ES",
          "slug": "sant-pere-de-ribes",
          "canonical_path": "/cities/es/sant-pere-de-ribes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15450",
          "name": "Sant Pere de Vilamajor",
          "country_code": "ES",
          "slug": "sant-pere-de-vilamajor",
          "canonical_path": "/cities/es/sant-pere-de-vilamajor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12534",
          "name": "Sant Pol de Mar",
          "country_code": "ES",
          "slug": "sant-pol-de-mar",
          "canonical_path": "/cities/es/sant-pol-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13935",
          "name": "Sant Quirze del Vallès",
          "country_code": "ES",
          "slug": "sant-quirze-del-valles",
          "canonical_path": "/cities/es/sant-quirze-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984508",
          "name": "Sant Sadurní d'Anoia",
          "country_code": "ES",
          "slug": "sant-sadurni-d-anoia",
          "canonical_path": "/cities/es/sant-sadurni-d-anoia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16734",
          "name": "Sant Vicenç de Castellet",
          "country_code": "ES",
          "slug": "sant-vicenc-de-castellet",
          "canonical_path": "/cities/es/sant-vicenc-de-castellet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12095",
          "name": "Sant Vicenç de Montalt",
          "country_code": "ES",
          "slug": "sant-vicenc-de-montalt",
          "canonical_path": "/cities/es/sant-vicenc-de-montalt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15649",
          "name": "Sant Vicenç dels Horts",
          "country_code": "ES",
          "slug": "sant-vicenc-dels-horts",
          "canonical_path": "/cities/es/sant-vicenc-dels-horts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q491667",
          "name": "Sant Vicent del Raspeig/San Vicente del Raspeig",
          "country_code": "ES",
          "slug": "sant-vicent-del-raspeig-san-vicente-del-raspeig",
          "canonical_path": "/cities/es/sant-vicent-del-raspeig-san-vicente-del-raspeig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984488",
          "name": "Santa Brígida",
          "country_code": "ES",
          "slug": "santa-brigida",
          "canonical_path": "/cities/es/santa-brigida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15632",
          "name": "Santa Coloma de Cervelló",
          "country_code": "ES",
          "slug": "santa-coloma-de-cervello",
          "canonical_path": "/cities/es/santa-coloma-de-cervello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13032",
          "name": "Santa Coloma de Farners",
          "country_code": "ES",
          "slug": "santa-coloma-de-farners",
          "canonical_path": "/cities/es/santa-coloma-de-farners/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15473",
          "name": "Santa Coloma de Gramenet",
          "country_code": "ES",
          "slug": "santa-coloma-de-gramenet",
          "canonical_path": "/cities/es/santa-coloma-de-gramenet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442500",
          "name": "Santa Comba",
          "country_code": "ES",
          "slug": "santa-comba",
          "canonical_path": "/cities/es/santa-comba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13569",
          "name": "Santa Cristina d'Aro",
          "country_code": "ES",
          "slug": "santa-cristina-d-aro",
          "canonical_path": "/cities/es/santa-cristina-d-aro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q950156",
          "name": "Santa Cruz de Bezana",
          "country_code": "ES",
          "slug": "santa-cruz-de-bezana",
          "canonical_path": "/cities/es/santa-cruz-de-bezana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q433632",
          "name": "Santa Cruz de la Palma",
          "country_code": "ES",
          "slug": "santa-cruz-de-la-palma",
          "canonical_path": "/cities/es/santa-cruz-de-la-palma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q14328",
          "name": "Santa Cruz de Tenerife",
          "country_code": "ES",
          "slug": "santa-cruz-de-tenerife",
          "canonical_path": "/cities/es/santa-cruz-de-tenerife/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15454",
          "name": "Santa Eulàlia de Ronçana",
          "country_code": "ES",
          "slug": "santa-eulalia-de-roncana",
          "canonical_path": "/cities/es/santa-eulalia-de-roncana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983465",
          "name": "Santa Eulària des Riu",
          "country_code": "ES",
          "slug": "santa-eularia-des-riu",
          "canonical_path": "/cities/es/santa-eularia-des-riu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q615722",
          "name": "Santa Fe",
          "country_code": "ES",
          "slug": "santa-fe",
          "canonical_path": "/cities/es/santa-fe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q738674",
          "name": "Santa Lucía de Tirajana",
          "country_code": "ES",
          "slug": "santa-lucia-de-tirajana",
          "canonical_path": "/cities/es/santa-lucia-de-tirajana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q984491",
          "name": "Santa Margalida",
          "country_code": "ES",
          "slug": "santa-margalida",
          "canonical_path": "/cities/es/santa-margalida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15968",
          "name": "Santa Margarida de Montbui",
          "country_code": "ES",
          "slug": "santa-margarida-de-montbui",
          "canonical_path": "/cities/es/santa-margarida-de-montbui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q660350",
          "name": "Santa Margarida i els Monjos",
          "country_code": "ES",
          "slug": "santa-margarida-i-els-monjos",
          "canonical_path": "/cities/es/santa-margarida-i-els-monjos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1603040",
          "name": "Santa María de Cayón",
          "country_code": "ES",
          "slug": "santa-maria-de-cayon",
          "canonical_path": "/cities/es/santa-maria-de-cayon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q986359",
          "name": "Santa María de Guía de Gran Canaria",
          "country_code": "ES",
          "slug": "santa-maria-de-guia-de-gran-canaria",
          "canonical_path": "/cities/es/santa-maria-de-guia-de-gran-canaria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15456",
          "name": "Santa Maria de Palautordera",
          "country_code": "ES",
          "slug": "santa-maria-de-palautordera",
          "canonical_path": "/cities/es/santa-maria-de-palautordera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q943948",
          "name": "Santa María del Camí",
          "country_code": "ES",
          "slug": "santa-maria-del-cami",
          "canonical_path": "/cities/es/santa-maria-del-cami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1648843",
          "name": "Santa Marta de Tormes",
          "country_code": "ES",
          "slug": "santa-marta-de-tormes",
          "canonical_path": "/cities/es/santa-marta-de-tormes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13941",
          "name": "Santa Perpètua de Mogoda",
          "country_code": "ES",
          "slug": "santa-perpetua-de-mogoda",
          "canonical_path": "/cities/es/santa-perpetua-de-mogoda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q257707",
          "name": "Santa Pola",
          "country_code": "ES",
          "slug": "santa-pola",
          "canonical_path": "/cities/es/santa-pola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q657800",
          "name": "Santa Úrsula",
          "country_code": "ES",
          "slug": "santa-ursula",
          "canonical_path": "/cities/es/santa-ursula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2511170",
          "name": "Santaella",
          "country_code": "ES",
          "slug": "santaella",
          "canonical_path": "/cities/es/santaella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12233",
          "name": "Santander",
          "country_code": "ES",
          "slug": "santander",
          "canonical_path": "/cities/es/santander/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983633",
          "name": "Santanyí",
          "country_code": "ES",
          "slug": "santanyi",
          "canonical_path": "/cities/es/santanyi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q14314",
          "name": "Santiago de Compostela",
          "country_code": "ES",
          "slug": "santiago-de-compostela",
          "canonical_path": "/cities/es/santiago-de-compostela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q915283",
          "name": "Santiago del Teide",
          "country_code": "ES",
          "slug": "santiago-del-teide",
          "canonical_path": "/cities/es/santiago-del-teide/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q568278",
          "name": "Santiponce",
          "country_code": "ES",
          "slug": "santiponce",
          "canonical_path": "/cities/es/santiponce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q646564",
          "name": "Santo Domingo de la Calzada",
          "country_code": "ES",
          "slug": "santo-domingo-de-la-calzada",
          "canonical_path": "/cities/es/santo-domingo-de-la-calzada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1765918",
          "name": "Santomera",
          "country_code": "ES",
          "slug": "santomera",
          "canonical_path": "/cities/es/santomera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442470",
          "name": "Santoña",
          "country_code": "ES",
          "slug": "santona",
          "canonical_path": "/cities/es/santona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1372555",
          "name": "Santos de Maimona, Los",
          "country_code": "ES",
          "slug": "santos-de-maimona-los",
          "canonical_path": "/cities/es/santos-de-maimona-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16736",
          "name": "Santpedor",
          "country_code": "ES",
          "slug": "santpedor",
          "canonical_path": "/cities/es/santpedor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q917886",
          "name": "Santurtzi",
          "country_code": "ES",
          "slug": "santurtzi",
          "canonical_path": "/cities/es/santurtzi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q840355",
          "name": "Sanxenxo",
          "country_code": "ES",
          "slug": "sanxenxo",
          "canonical_path": "/cities/es/sanxenxo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1615338",
          "name": "Sariegos",
          "country_code": "ES",
          "slug": "sariegos",
          "canonical_path": "/cities/es/sariegos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q174833",
          "name": "Sarria",
          "country_code": "ES",
          "slug": "sarria",
          "canonical_path": "/cities/es/sarria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13456",
          "name": "Sarrià de Ter",
          "country_code": "ES",
          "slug": "sarria-de-ter",
          "canonical_path": "/cities/es/sarria-de-ter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2511012",
          "name": "Sauzal",
          "country_code": "ES",
          "slug": "sauzal",
          "canonical_path": "/cities/es/sauzal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q782910",
          "name": "Sauzal, El",
          "country_code": "ES",
          "slug": "sauzal-el",
          "canonical_path": "/cities/es/sauzal-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1553513",
          "name": "Sax",
          "country_code": "ES",
          "slug": "sax",
          "canonical_path": "/cities/es/sax/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q102862",
          "name": "Sedaví",
          "country_code": "ES",
          "slug": "sedavi",
          "canonical_path": "/cities/es/sedavi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q750968",
          "name": "Segorbe",
          "country_code": "ES",
          "slug": "segorbe",
          "canonical_path": "/cities/es/segorbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15684",
          "name": "Segovia",
          "country_code": "ES",
          "slug": "segovia",
          "canonical_path": "/cities/es/segovia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1230100",
          "name": "Selva del Camp, La",
          "country_code": "ES",
          "slug": "selva-del-camp-la",
          "canonical_path": "/cities/es/selva-del-camp-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q704847",
          "name": "Sénia, La",
          "country_code": "ES",
          "slug": "senia-la",
          "canonical_path": "/cities/es/senia-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13943",
          "name": "Sentmenat",
          "country_code": "ES",
          "slug": "sentmenat",
          "canonical_path": "/cities/es/sentmenat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q927922",
          "name": "Seseña",
          "country_code": "ES",
          "slug": "sesena",
          "canonical_path": "/cities/es/sesena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q909707",
          "name": "Sestao",
          "country_code": "ES",
          "slug": "sestao",
          "canonical_path": "/cities/es/sestao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q673412",
          "name": "Seu d'Urgell, La",
          "country_code": "ES",
          "slug": "seu-d-urgell-la",
          "canonical_path": "/cities/es/seu-d-urgell-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8717",
          "name": "Sevilla",
          "country_code": "ES",
          "slug": "sevilla",
          "canonical_path": "/cities/es/sevilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641045",
          "name": "Sevilla la Nueva",
          "country_code": "ES",
          "slug": "sevilla-la-nueva",
          "canonical_path": "/cities/es/sevilla-la-nueva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q744130",
          "name": "Siero",
          "country_code": "ES",
          "slug": "siero",
          "canonical_path": "/cities/es/siero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q10843",
          "name": "Silla",
          "country_code": "ES",
          "slug": "silla",
          "canonical_path": "/cities/es/silla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1607540",
          "name": "Silleda",
          "country_code": "ES",
          "slug": "silleda",
          "canonical_path": "/cities/es/silleda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13050",
          "name": "Sils",
          "country_code": "ES",
          "slug": "sils",
          "canonical_path": "/cities/es/sils/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q986572",
          "name": "Simancas",
          "country_code": "ES",
          "slug": "simancas",
          "canonical_path": "/cities/es/simancas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15551",
          "name": "Sitges",
          "country_code": "ES",
          "slug": "sitges",
          "canonical_path": "/cities/es/sitges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1614556",
          "name": "Socuéllamos",
          "country_code": "ES",
          "slug": "socuellamos",
          "canonical_path": "/cities/es/socuellamos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1607352",
          "name": "Solana, La",
          "country_code": "ES",
          "slug": "solana-la",
          "canonical_path": "/cities/es/solana-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q633096",
          "name": "Sollana",
          "country_code": "ES",
          "slug": "sollana",
          "canonical_path": "/cities/es/sollana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q832991",
          "name": "Sóller",
          "country_code": "ES",
          "slug": "soller",
          "canonical_path": "/cities/es/soller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q507621",
          "name": "Solsona",
          "country_code": "ES",
          "slug": "solsona",
          "canonical_path": "/cities/es/solsona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q610838",
          "name": "Son Servera",
          "country_code": "ES",
          "slug": "son-servera",
          "canonical_path": "/cities/es/son-servera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628387",
          "name": "Sonseca",
          "country_code": "ES",
          "slug": "sonseca",
          "canonical_path": "/cities/es/sonseca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q657407",
          "name": "Sopela",
          "country_code": "ES",
          "slug": "sopela",
          "canonical_path": "/cities/es/sopela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12155",
          "name": "Soria",
          "country_code": "ES",
          "slug": "soria",
          "canonical_path": "/cities/es/soria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1609922",
          "name": "Sotillo de la Adrada",
          "country_code": "ES",
          "slug": "sotillo-de-la-adrada",
          "canonical_path": "/cities/es/sotillo-de-la-adrada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q53697",
          "name": "Soto del Real",
          "country_code": "ES",
          "slug": "soto-del-real",
          "canonical_path": "/cities/es/soto-del-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628271",
          "name": "Soutomaior",
          "country_code": "ES",
          "slug": "soutomaior",
          "canonical_path": "/cities/es/soutomaior/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1615223",
          "name": "Suances",
          "country_code": "ES",
          "slug": "suances",
          "canonical_path": "/cities/es/suances/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1552240",
          "name": "Sueca",
          "country_code": "ES",
          "slug": "sueca",
          "canonical_path": "/cities/es/sueca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q16737",
          "name": "Súria",
          "country_code": "ES",
          "slug": "suria",
          "canonical_path": "/cities/es/suria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q944264",
          "name": "Tacoronte",
          "country_code": "ES",
          "slug": "tacoronte",
          "canonical_path": "/cities/es/tacoronte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q820224",
          "name": "Tafalla",
          "country_code": "ES",
          "slug": "tafalla",
          "canonical_path": "/cities/es/tafalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q181359",
          "name": "Talavera de la Reina",
          "country_code": "ES",
          "slug": "talavera-de-la-reina",
          "canonical_path": "/cities/es/talavera-de-la-reina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1387075",
          "name": "Talavera la Real",
          "country_code": "ES",
          "slug": "talavera-la-real",
          "canonical_path": "/cities/es/talavera-la-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442461",
          "name": "Talayuela",
          "country_code": "ES",
          "slug": "talayuela",
          "canonical_path": "/cities/es/talayuela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13850",
          "name": "Taradell",
          "country_code": "ES",
          "slug": "taradell",
          "canonical_path": "/cities/es/taradell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q367734",
          "name": "Tarancón",
          "country_code": "ES",
          "slug": "tarancon",
          "canonical_path": "/cities/es/tarancon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q639412",
          "name": "Tarazona",
          "country_code": "ES",
          "slug": "tarazona",
          "canonical_path": "/cities/es/tarazona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q611263",
          "name": "Tarazona de la Mancha",
          "country_code": "ES",
          "slug": "tarazona-de-la-mancha",
          "canonical_path": "/cities/es/tarazona-de-la-mancha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q222702",
          "name": "Tarifa",
          "country_code": "ES",
          "slug": "tarifa",
          "canonical_path": "/cities/es/tarifa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15088",
          "name": "Tarragona",
          "country_code": "ES",
          "slug": "tarragona",
          "canonical_path": "/cities/es/tarragona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q752137",
          "name": "Tàrrega",
          "country_code": "ES",
          "slug": "tarrega",
          "canonical_path": "/cities/es/tarrega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q572755",
          "name": "Tauste",
          "country_code": "ES",
          "slug": "tauste",
          "canonical_path": "/cities/es/tauste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1109227",
          "name": "Tavernes Blanques",
          "country_code": "ES",
          "slug": "tavernes-blanques",
          "canonical_path": "/cities/es/tavernes-blanques/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q299417",
          "name": "Tavernes de la Valldigna",
          "country_code": "ES",
          "slug": "tavernes-de-la-valldigna",
          "canonical_path": "/cities/es/tavernes-de-la-valldigna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2510582",
          "name": "Tazacorte",
          "country_code": "ES",
          "slug": "tazacorte",
          "canonical_path": "/cities/es/tazacorte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q985603",
          "name": "Tegueste",
          "country_code": "ES",
          "slug": "tegueste",
          "canonical_path": "/cities/es/tegueste/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q737440",
          "name": "Teguise",
          "country_code": "ES",
          "slug": "teguise",
          "canonical_path": "/cities/es/teguise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12028",
          "name": "Teià",
          "country_code": "ES",
          "slug": "teia",
          "canonical_path": "/cities/es/teia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q55845",
          "name": "Telde",
          "country_code": "ES",
          "slug": "telde",
          "canonical_path": "/cities/es/telde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1635642",
          "name": "Teo",
          "country_code": "ES",
          "slug": "teo",
          "canonical_path": "/cities/es/teo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q430147",
          "name": "Teror",
          "country_code": "ES",
          "slug": "teror",
          "canonical_path": "/cities/es/teror/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13939",
          "name": "Terrassa",
          "country_code": "ES",
          "slug": "terrassa",
          "canonical_path": "/cities/es/terrassa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q14336",
          "name": "Teruel",
          "country_code": "ES",
          "slug": "teruel",
          "canonical_path": "/cities/es/teruel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q521633",
          "name": "Teulada",
          "country_code": "ES",
          "slug": "teulada",
          "canonical_path": "/cities/es/teulada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12026",
          "name": "Tiana",
          "country_code": "ES",
          "slug": "tiana",
          "canonical_path": "/cities/es/tiana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q2244278",
          "name": "Tías",
          "country_code": "ES",
          "slug": "tias",
          "canonical_path": "/cities/es/tias/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q638013",
          "name": "Tinajo",
          "country_code": "ES",
          "slug": "tinajo",
          "canonical_path": "/cities/es/tinajo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q842632",
          "name": "Tineo",
          "country_code": "ES",
          "slug": "tineo",
          "canonical_path": "/cities/es/tineo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1622986",
          "name": "Tobarra",
          "country_code": "ES",
          "slug": "tobarra",
          "canonical_path": "/cities/es/tobarra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q63004",
          "name": "Tocina",
          "country_code": "ES",
          "slug": "tocina",
          "canonical_path": "/cities/es/tocina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q5836",
          "name": "Toledo",
          "country_code": "ES",
          "slug": "toledo",
          "canonical_path": "/cities/es/toledo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q497801",
          "name": "Tolosa",
          "country_code": "ES",
          "slug": "tolosa",
          "canonical_path": "/cities/es/tolosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1447544",
          "name": "Tomares",
          "country_code": "ES",
          "slug": "tomares",
          "canonical_path": "/cities/es/tomares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q820229",
          "name": "Tomelloso",
          "country_code": "ES",
          "slug": "tomelloso",
          "canonical_path": "/cities/es/tomelloso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628263",
          "name": "Tomiño",
          "country_code": "ES",
          "slug": "tomino",
          "canonical_path": "/cities/es/tomino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13853",
          "name": "Tona",
          "country_code": "ES",
          "slug": "tona",
          "canonical_path": "/cities/es/tona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12596",
          "name": "Tordera",
          "country_code": "ES",
          "slug": "tordera",
          "canonical_path": "/cities/es/tordera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q286004",
          "name": "Tordesillas",
          "country_code": "ES",
          "slug": "tordesillas",
          "canonical_path": "/cities/es/tordesillas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13854",
          "name": "Torelló",
          "country_code": "ES",
          "slug": "torello",
          "canonical_path": "/cities/es/torello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q836948",
          "name": "Toro",
          "country_code": "ES",
          "slug": "toro",
          "canonical_path": "/cities/es/toro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q949880",
          "name": "Torre-Pacheco",
          "country_code": "ES",
          "slug": "torre-pacheco",
          "canonical_path": "/cities/es/torre-pacheco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1635372",
          "name": "Torreblanca",
          "country_code": "ES",
          "slug": "torreblanca",
          "canonical_path": "/cities/es/torreblanca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1765676",
          "name": "Torredelcampo",
          "country_code": "ES",
          "slug": "torredelcampo",
          "canonical_path": "/cities/es/torredelcampo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q995637",
          "name": "Torredembarra",
          "country_code": "ES",
          "slug": "torredembarra",
          "canonical_path": "/cities/es/torredembarra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1915208",
          "name": "Torredonjimeno",
          "country_code": "ES",
          "slug": "torredonjimeno",
          "canonical_path": "/cities/es/torredonjimeno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q489839",
          "name": "Torrejón de Ardoz",
          "country_code": "ES",
          "slug": "torrejon-de-ardoz",
          "canonical_path": "/cities/es/torrejon-de-ardoz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q960213",
          "name": "Torrejón de la Calzada",
          "country_code": "ES",
          "slug": "torrejon-de-la-calzada",
          "canonical_path": "/cities/es/torrejon-de-la-calzada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q748951",
          "name": "Torrejón del Rey",
          "country_code": "ES",
          "slug": "torrejon-del-rey",
          "canonical_path": "/cities/es/torrejon-del-rey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641236",
          "name": "Torrelaguna",
          "country_code": "ES",
          "slug": "torrelaguna",
          "canonical_path": "/cities/es/torrelaguna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q494693",
          "name": "Torrelavega",
          "country_code": "ES",
          "slug": "torrelavega",
          "canonical_path": "/cities/es/torrelavega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15650",
          "name": "Torrelles de Llobregat",
          "country_code": "ES",
          "slug": "torrelles-de-llobregat",
          "canonical_path": "/cities/es/torrelles-de-llobregat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q542958",
          "name": "Torrelodones",
          "country_code": "ES",
          "slug": "torrelodones",
          "canonical_path": "/cities/es/torrelodones/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q492737",
          "name": "Torremolinos",
          "country_code": "ES",
          "slug": "torremolinos",
          "canonical_path": "/cities/es/torremolinos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1642300",
          "name": "Torreperogil",
          "country_code": "ES",
          "slug": "torreperogil",
          "canonical_path": "/cities/es/torreperogil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q762427",
          "name": "Torres de Cotillas, Las",
          "country_code": "ES",
          "slug": "torres-de-cotillas-las",
          "canonical_path": "/cities/es/torres-de-cotillas-las/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751912",
          "name": "Torres de la Alameda",
          "country_code": "ES",
          "slug": "torres-de-la-alameda",
          "canonical_path": "/cities/es/torres-de-la-alameda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q221749",
          "name": "Torrevieja",
          "country_code": "ES",
          "slug": "torrevieja",
          "canonical_path": "/cities/es/torrevieja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q919055",
          "name": "Torrijos",
          "country_code": "ES",
          "slug": "torrijos",
          "canonical_path": "/cities/es/torrijos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13573",
          "name": "Torroella de Montgrí",
          "country_code": "ES",
          "slug": "torroella-de-montgri",
          "canonical_path": "/cities/es/torroella-de-montgri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13150",
          "name": "Torrox",
          "country_code": "ES",
          "slug": "torrox",
          "canonical_path": "/cities/es/torrox/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12812",
          "name": "Tortosa",
          "country_code": "ES",
          "slug": "tortosa",
          "canonical_path": "/cities/es/tortosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13006",
          "name": "Tossa de Mar",
          "country_code": "ES",
          "slug": "tossa-de-mar",
          "canonical_path": "/cities/es/tossa-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q338174",
          "name": "Totana",
          "country_code": "ES",
          "slug": "totana",
          "canonical_path": "/cities/es/totana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1610648",
          "name": "Trebujena",
          "country_code": "ES",
          "slug": "trebujena",
          "canonical_path": "/cities/es/trebujena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q18272",
          "name": "Tremp",
          "country_code": "ES",
          "slug": "tremp",
          "canonical_path": "/cities/es/tremp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q910410",
          "name": "Tres Cantos",
          "country_code": "ES",
          "slug": "tres-cantos",
          "canonical_path": "/cities/es/tres-cantos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1614522",
          "name": "Trigueros",
          "country_code": "ES",
          "slug": "trigueros",
          "canonical_path": "/cities/es/trigueros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q324489",
          "name": "Trujillo",
          "country_code": "ES",
          "slug": "trujillo",
          "canonical_path": "/cities/es/trujillo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q244747",
          "name": "Tudela",
          "country_code": "ES",
          "slug": "tudela",
          "canonical_path": "/cities/es/tudela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1651692",
          "name": "Tudela de Duero",
          "country_code": "ES",
          "slug": "tudela-de-duero",
          "canonical_path": "/cities/es/tudela-de-duero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q824122",
          "name": "Tui",
          "country_code": "ES",
          "slug": "tui",
          "canonical_path": "/cities/es/tui/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q985586",
          "name": "Tuineje",
          "country_code": "ES",
          "slug": "tuineje",
          "canonical_path": "/cities/es/tuineje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1993027",
          "name": "Turís",
          "country_code": "ES",
          "slug": "turis",
          "canonical_path": "/cities/es/turis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q329984",
          "name": "Úbeda",
          "country_code": "ES",
          "slug": "ubeda",
          "canonical_path": "/cities/es/ubeda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1092146",
          "name": "Ubrique",
          "country_code": "ES",
          "slug": "ubrique",
          "canonical_path": "/cities/es/ubrique/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631336",
          "name": "Ugena",
          "country_code": "ES",
          "slug": "ugena",
          "canonical_path": "/cities/es/ugena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q995682",
          "name": "Ulldecona",
          "country_code": "ES",
          "slug": "ulldecona",
          "canonical_path": "/cities/es/ulldecona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q602485",
          "name": "Umbrete",
          "country_code": "ES",
          "slug": "umbrete",
          "canonical_path": "/cities/es/umbrete/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1228759",
          "name": "Unión, La",
          "country_code": "ES",
          "slug": "union-la",
          "canonical_path": "/cities/es/union-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q734099",
          "name": "Urduliz",
          "country_code": "ES",
          "slug": "urduliz",
          "canonical_path": "/cities/es/urduliz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1633844",
          "name": "Urnieta",
          "country_code": "ES",
          "slug": "urnieta",
          "canonical_path": "/cities/es/urnieta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q904269",
          "name": "Urretxu",
          "country_code": "ES",
          "slug": "urretxu",
          "canonical_path": "/cities/es/urretxu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1633909",
          "name": "Usurbil",
          "country_code": "ES",
          "slug": "usurbil",
          "canonical_path": "/cities/es/usurbil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q220073",
          "name": "Utebo",
          "country_code": "ES",
          "slug": "utebo",
          "canonical_path": "/cities/es/utebo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q115572",
          "name": "Utiel",
          "country_code": "ES",
          "slug": "utiel",
          "canonical_path": "/cities/es/utiel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q753825",
          "name": "Utrera",
          "country_code": "ES",
          "slug": "utrera",
          "canonical_path": "/cities/es/utrera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13945",
          "name": "Vacarisses",
          "country_code": "ES",
          "slug": "vacarisses",
          "canonical_path": "/cities/es/vacarisses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q10783",
          "name": "Valdemorillo",
          "country_code": "ES",
          "slug": "valdemorillo",
          "canonical_path": "/cities/es/valdemorillo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q840373",
          "name": "Valdemoro",
          "country_code": "ES",
          "slug": "valdemoro",
          "canonical_path": "/cities/es/valdemoro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q898563",
          "name": "Valdepeñas",
          "country_code": "ES",
          "slug": "valdepenas",
          "canonical_path": "/cities/es/valdepenas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q695499",
          "name": "Valdés",
          "country_code": "ES",
          "slug": "valdes",
          "canonical_path": "/cities/es/valdes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q969446",
          "name": "Valdetorres de Jarama",
          "country_code": "ES",
          "slug": "valdetorres-de-jarama",
          "canonical_path": "/cities/es/valdetorres-de-jarama/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q969030",
          "name": "Valdoviño",
          "country_code": "ES",
          "slug": "valdovino",
          "canonical_path": "/cities/es/valdovino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:slug:valencia",
          "name": "Valencia",
          "country_code": "ES",
          "slug": "valencia",
          "canonical_path": "/cities/es/valencia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1613421",
          "name": "Valencia de Alcántara",
          "country_code": "ES",
          "slug": "valencia-de-alcantara",
          "canonical_path": "/cities/es/valencia-de-alcantara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q385017",
          "name": "Valencia de Don Juan",
          "country_code": "ES",
          "slug": "valencia-de-don-juan",
          "canonical_path": "/cities/es/valencia-de-don-juan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1603015",
          "name": "Valencina de la Concepción",
          "country_code": "ES",
          "slug": "valencina-de-la-concepcion",
          "canonical_path": "/cities/es/valencina-de-la-concepcion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628179",
          "name": "Valga",
          "country_code": "ES",
          "slug": "valga",
          "canonical_path": "/cities/es/valga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1637512",
          "name": "Vall d'Uixó, la",
          "country_code": "ES",
          "slug": "vall-d-uixo-la",
          "canonical_path": "/cities/es/vall-d-uixo-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8356",
          "name": "Valladolid",
          "country_code": "ES",
          "slug": "valladolid",
          "canonical_path": "/cities/es/valladolid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1627534",
          "name": "Valle de Egüés/Eguesibar",
          "country_code": "ES",
          "slug": "valle-de-egues-eguesibar",
          "canonical_path": "/cities/es/valle-de-egues-eguesibar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1228787",
          "name": "Valle de Trápaga-Trapagaran",
          "country_code": "ES",
          "slug": "valle-de-trapaga-trapagaran",
          "canonical_path": "/cities/es/valle-de-trapaga-trapagaran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15651",
          "name": "Vallirana",
          "country_code": "ES",
          "slug": "vallirana",
          "canonical_path": "/cities/es/vallirana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q825883",
          "name": "Valls",
          "country_code": "ES",
          "slug": "valls",
          "canonical_path": "/cities/es/valls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q914195",
          "name": "Valsequillo de Gran Canaria",
          "country_code": "ES",
          "slug": "valsequillo-de-gran-canaria",
          "canonical_path": "/cities/es/valsequillo-de-gran-canaria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1853429",
          "name": "Valverde",
          "country_code": "ES",
          "slug": "valverde",
          "canonical_path": "/cities/es/valverde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q918087",
          "name": "Valverde de la Virgen",
          "country_code": "ES",
          "slug": "valverde-de-la-virgen",
          "canonical_path": "/cities/es/valverde-de-la-virgen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q844038",
          "name": "Valverde del Camino",
          "country_code": "ES",
          "slug": "valverde-del-camino",
          "canonical_path": "/cities/es/valverde-del-camino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q983564",
          "name": "Vandellòs i l'Hospitalet de l'Infant",
          "country_code": "ES",
          "slug": "vandellos-i-l-hospitalet-de-l-infant",
          "canonical_path": "/cities/es/vandellos-i-l-hospitalet-de-l-infant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3106356",
          "name": "Vedra",
          "country_code": "ES",
          "slug": "vedra",
          "canonical_path": "/cities/es/vedra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q986353",
          "name": "Vega de San Mateo",
          "country_code": "ES",
          "slug": "vega-de-san-mateo",
          "canonical_path": "/cities/es/vega-de-san-mateo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q618377",
          "name": "Vegas del Genil",
          "country_code": "ES",
          "slug": "vegas-del-genil",
          "canonical_path": "/cities/es/vegas-del-genil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q827393",
          "name": "Vejer de la Frontera",
          "country_code": "ES",
          "slug": "vejer-de-la-frontera",
          "canonical_path": "/cities/es/vejer-de-la-frontera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q492741",
          "name": "Vélez-Málaga",
          "country_code": "ES",
          "slug": "velez-malaga",
          "canonical_path": "/cities/es/velez-malaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1110343",
          "name": "Vélez-Rubio",
          "country_code": "ES",
          "slug": "velez-rubio",
          "canonical_path": "/cities/es/velez-rubio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1999742",
          "name": "Velilla de San Antonio",
          "country_code": "ES",
          "slug": "velilla-de-san-antonio",
          "canonical_path": "/cities/es/velilla-de-san-antonio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q929759",
          "name": "Vendrell, El",
          "country_code": "ES",
          "slug": "vendrell-el",
          "canonical_path": "/cities/es/vendrell-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1657213",
          "name": "Venta de Baños",
          "country_code": "ES",
          "slug": "venta-de-banos",
          "canonical_path": "/cities/es/venta-de-banos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1157971",
          "name": "Vera",
          "country_code": "ES",
          "slug": "vera",
          "canonical_path": "/cities/es/vera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751998",
          "name": "Verger, el",
          "country_code": "ES",
          "slug": "verger-el",
          "canonical_path": "/cities/es/verger-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q176504",
          "name": "Verín",
          "country_code": "ES",
          "slug": "verin",
          "canonical_path": "/cities/es/verin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1444040",
          "name": "Viator",
          "country_code": "ES",
          "slug": "viator",
          "canonical_path": "/cities/es/viator/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13855",
          "name": "Vic",
          "country_code": "ES",
          "slug": "vic",
          "canonical_path": "/cities/es/vic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1110397",
          "name": "Vícar",
          "country_code": "ES",
          "slug": "vicar",
          "canonical_path": "/cities/es/vicar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q985601",
          "name": "Victoria de Acentejo, La",
          "country_code": "ES",
          "slug": "victoria-de-acentejo-la",
          "canonical_path": "/cities/es/victoria-de-acentejo-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13715",
          "name": "Vidreres",
          "country_code": "ES",
          "slug": "vidreres",
          "canonical_path": "/cities/es/vidreres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12647",
          "name": "Vielha e Mijaran",
          "country_code": "ES",
          "slug": "vielha-e-mijaran",
          "canonical_path": "/cities/es/vielha-e-mijaran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q8745",
          "name": "Vigo",
          "country_code": "ES",
          "slug": "vigo",
          "canonical_path": "/cities/es/vigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q935589",
          "name": "Vila Joiosa, la/Villajoyosa",
          "country_code": "ES",
          "slug": "vila-joiosa-la-villajoyosa",
          "canonical_path": "/cities/es/vila-joiosa-la-villajoyosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12292",
          "name": "Vila-real",
          "country_code": "ES",
          "slug": "vila-real",
          "canonical_path": "/cities/es/vila-real/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q508754",
          "name": "Vila-seca",
          "country_code": "ES",
          "slug": "vila-seca",
          "canonical_path": "/cities/es/vila-seca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q377426",
          "name": "Vilaboa",
          "country_code": "ES",
          "slug": "vilaboa",
          "canonical_path": "/cities/es/vilaboa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15652",
          "name": "Viladecans",
          "country_code": "ES",
          "slug": "viladecans",
          "canonical_path": "/cities/es/viladecans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13946",
          "name": "Viladecavalls",
          "country_code": "ES",
          "slug": "viladecavalls",
          "canonical_path": "/cities/es/viladecavalls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12153",
          "name": "Vilafant",
          "country_code": "ES",
          "slug": "vilafant",
          "canonical_path": "/cities/es/vilafant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q835012",
          "name": "Vilafranca del Penedès",
          "country_code": "ES",
          "slug": "vilafranca-del-penedes",
          "canonical_path": "/cities/es/vilafranca-del-penedes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442637",
          "name": "Vilagarcía de Arousa",
          "country_code": "ES",
          "slug": "vilagarcia-de-arousa",
          "canonical_path": "/cities/es/vilagarcia-de-arousa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605437",
          "name": "Vilalba",
          "country_code": "ES",
          "slug": "vilalba",
          "canonical_path": "/cities/es/vilalba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q987433",
          "name": "Vilamarxant",
          "country_code": "ES",
          "slug": "vilamarxant",
          "canonical_path": "/cities/es/vilamarxant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q739495",
          "name": "Vilanova de Arousa",
          "country_code": "ES",
          "slug": "vilanova-de-arousa",
          "canonical_path": "/cities/es/vilanova-de-arousa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15974",
          "name": "Vilanova del Camí",
          "country_code": "ES",
          "slug": "vilanova-del-cami",
          "canonical_path": "/cities/es/vilanova-del-cami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15463",
          "name": "Vilanova del Vallès",
          "country_code": "ES",
          "slug": "vilanova-del-valles",
          "canonical_path": "/cities/es/vilanova-del-valles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15553",
          "name": "Vilanova i la Geltrú",
          "country_code": "ES",
          "slug": "vilanova-i-la-geltru",
          "canonical_path": "/cities/es/vilanova-i-la-geltru/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12075",
          "name": "Vilassar de Dalt",
          "country_code": "ES",
          "slug": "vilassar-de-dalt",
          "canonical_path": "/cities/es/vilassar-de-dalt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q12071",
          "name": "Vilassar de Mar",
          "country_code": "ES",
          "slug": "vilassar-de-mar",
          "canonical_path": "/cities/es/vilassar-de-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q434321",
          "name": "Villa de Mazo",
          "country_code": "ES",
          "slug": "villa-de-mazo",
          "canonical_path": "/cities/es/villa-de-mazo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q605381",
          "name": "Villa de Otura",
          "country_code": "ES",
          "slug": "villa-de-otura",
          "canonical_path": "/cities/es/villa-de-otura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q320398",
          "name": "Villa del Prado",
          "country_code": "ES",
          "slug": "villa-del-prado",
          "canonical_path": "/cities/es/villa-del-prado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q970738",
          "name": "Villa del Río",
          "country_code": "ES",
          "slug": "villa-del-rio",
          "canonical_path": "/cities/es/villa-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605938",
          "name": "Villablino",
          "country_code": "ES",
          "slug": "villablino",
          "canonical_path": "/cities/es/villablino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q672876",
          "name": "Villabona",
          "country_code": "ES",
          "slug": "villabona",
          "canonical_path": "/cities/es/villabona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q659416",
          "name": "Villacañas",
          "country_code": "ES",
          "slug": "villacanas",
          "canonical_path": "/cities/es/villacanas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751217",
          "name": "Villacarrillo",
          "country_code": "ES",
          "slug": "villacarrillo",
          "canonical_path": "/cities/es/villacarrillo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q613908",
          "name": "Villafranca de los Barros",
          "country_code": "ES",
          "slug": "villafranca-de-los-barros",
          "canonical_path": "/cities/es/villafranca-de-los-barros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2509597",
          "name": "Villafranca de los Caballeros",
          "country_code": "ES",
          "slug": "villafranca-de-los-caballeros",
          "canonical_path": "/cities/es/villafranca-de-los-caballeros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1646224",
          "name": "Villalbilla",
          "country_code": "ES",
          "slug": "villalbilla",
          "canonical_path": "/cities/es/villalbilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442451",
          "name": "Villamartín",
          "country_code": "ES",
          "slug": "villamartin",
          "canonical_path": "/cities/es/villamartin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1767871",
          "name": "Villamayor",
          "country_code": "ES",
          "slug": "villamayor",
          "canonical_path": "/cities/es/villamayor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1606588",
          "name": "Villamediana de Iregua",
          "country_code": "ES",
          "slug": "villamediana-de-iregua",
          "canonical_path": "/cities/es/villamediana-de-iregua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q936806",
          "name": "Villamuriel de Cerrato",
          "country_code": "ES",
          "slug": "villamuriel-de-cerrato",
          "canonical_path": "/cities/es/villamuriel-de-cerrato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q879493",
          "name": "Villanueva de Córdoba",
          "country_code": "ES",
          "slug": "villanueva-de-cordoba",
          "canonical_path": "/cities/es/villanueva-de-cordoba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q973325",
          "name": "Villanueva de la Cañada",
          "country_code": "ES",
          "slug": "villanueva-de-la-canada",
          "canonical_path": "/cities/es/villanueva-de-la-canada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q695380",
          "name": "Villanueva de la Serena",
          "country_code": "ES",
          "slug": "villanueva-de-la-serena",
          "canonical_path": "/cities/es/villanueva-de-la-serena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1642060",
          "name": "Villanueva de la Torre",
          "country_code": "ES",
          "slug": "villanueva-de-la-torre",
          "canonical_path": "/cities/es/villanueva-de-la-torre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1146794",
          "name": "Villanueva del Ariscal",
          "country_code": "ES",
          "slug": "villanueva-del-ariscal",
          "canonical_path": "/cities/es/villanueva-del-ariscal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641667",
          "name": "Villanueva del Arzobispo",
          "country_code": "ES",
          "slug": "villanueva-del-arzobispo",
          "canonical_path": "/cities/es/villanueva-del-arzobispo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751916",
          "name": "Villanueva del Pardillo",
          "country_code": "ES",
          "slug": "villanueva-del-pardillo",
          "canonical_path": "/cities/es/villanueva-del-pardillo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q63041",
          "name": "Villanueva del Río y Minas",
          "country_code": "ES",
          "slug": "villanueva-del-rio-y-minas",
          "canonical_path": "/cities/es/villanueva-del-rio-y-minas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1624040",
          "name": "Villanueva del Trabuco",
          "country_code": "ES",
          "slug": "villanueva-del-trabuco",
          "canonical_path": "/cities/es/villanueva-del-trabuco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q932612",
          "name": "Villaquilambre",
          "country_code": "ES",
          "slug": "villaquilambre",
          "canonical_path": "/cities/es/villaquilambre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641598",
          "name": "Villarejo de Salvanés",
          "country_code": "ES",
          "slug": "villarejo-de-salvanes",
          "canonical_path": "/cities/es/villarejo-de-salvanes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1640099",
          "name": "Villares de la Reina",
          "country_code": "ES",
          "slug": "villares-de-la-reina",
          "canonical_path": "/cities/es/villares-de-la-reina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q279502",
          "name": "Villares, Los",
          "country_code": "ES",
          "slug": "villares-los",
          "canonical_path": "/cities/es/villares-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q82030",
          "name": "Villarrobledo",
          "country_code": "ES",
          "slug": "villarrobledo",
          "canonical_path": "/cities/es/villarrobledo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1641422",
          "name": "Villarrubia de los Ojos",
          "country_code": "ES",
          "slug": "villarrubia-de-los-ojos",
          "canonical_path": "/cities/es/villarrubia-de-los-ojos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q600671",
          "name": "Villava/Atarrabia",
          "country_code": "ES",
          "slug": "villava-atarrabia",
          "canonical_path": "/cities/es/villava-atarrabia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q63038",
          "name": "Villaverde del Río",
          "country_code": "ES",
          "slug": "villaverde-del-rio",
          "canonical_path": "/cities/es/villaverde-del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q842648",
          "name": "Villaviciosa",
          "country_code": "ES",
          "slug": "villaviciosa",
          "canonical_path": "/cities/es/villaviciosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631897",
          "name": "Villaviciosa de Odón",
          "country_code": "ES",
          "slug": "villaviciosa-de-odon",
          "canonical_path": "/cities/es/villaviciosa-de-odon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q502249",
          "name": "Villena",
          "country_code": "ES",
          "slug": "villena",
          "canonical_path": "/cities/es/villena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1616162",
          "name": "Vimianzo",
          "country_code": "ES",
          "slug": "vimianzo",
          "canonical_path": "/cities/es/vimianzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q917888",
          "name": "Vinaròs",
          "country_code": "ES",
          "slug": "vinaros",
          "canonical_path": "/cities/es/vinaros/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q547904",
          "name": "Viso de San Juan, El",
          "country_code": "ES",
          "slug": "viso-de-san-juan-el",
          "canonical_path": "/cities/es/viso-de-san-juan-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q969581",
          "name": "Viso del Alcor, El",
          "country_code": "ES",
          "slug": "viso-del-alcor-el",
          "canonical_path": "/cities/es/viso-del-alcor-el/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q14318",
          "name": "Vitoria-Gasteiz",
          "country_code": "ES",
          "slug": "vitoria-gasteiz",
          "canonical_path": "/cities/es/vitoria-gasteiz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q641221",
          "name": "Viveiro",
          "country_code": "ES",
          "slug": "viveiro",
          "canonical_path": "/cities/es/viveiro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q851020",
          "name": "Xàbia/Jávea",
          "country_code": "ES",
          "slug": "xabia-javea",
          "canonical_path": "/cities/es/xabia-javea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q738013",
          "name": "Xàtiva",
          "country_code": "ES",
          "slug": "xativa",
          "canonical_path": "/cities/es/xativa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1312533",
          "name": "Xeraco",
          "country_code": "ES",
          "slug": "xeraco",
          "canonical_path": "/cities/es/xeraco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q918637",
          "name": "Xinzo de Limia",
          "country_code": "ES",
          "slug": "xinzo-de-limia",
          "canonical_path": "/cities/es/xinzo-de-limia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q13725",
          "name": "Xirivella",
          "country_code": "ES",
          "slug": "xirivella",
          "canonical_path": "/cities/es/xirivella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2516318",
          "name": "Xixona",
          "country_code": "ES",
          "slug": "xixona",
          "canonical_path": "/cities/es/xixona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q747527",
          "name": "Xixona/Jijona",
          "country_code": "ES",
          "slug": "xixona-jijona",
          "canonical_path": "/cities/es/xixona-jijona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q2323549",
          "name": "Yaiza",
          "country_code": "ES",
          "slug": "yaiza",
          "canonical_path": "/cities/es/yaiza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1631881",
          "name": "Yébenes, Los",
          "country_code": "ES",
          "slug": "yebenes-los",
          "canonical_path": "/cities/es/yebenes-los/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1751978",
          "name": "Yebes",
          "country_code": "ES",
          "slug": "yebes",
          "canonical_path": "/cities/es/yebes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q931116",
          "name": "Yecla",
          "country_code": "ES",
          "slug": "yecla",
          "canonical_path": "/cities/es/yecla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1629195",
          "name": "Yeles",
          "country_code": "ES",
          "slug": "yeles",
          "canonical_path": "/cities/es/yeles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1442903",
          "name": "Yepes",
          "country_code": "ES",
          "slug": "yepes",
          "canonical_path": "/cities/es/yepes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1628522",
          "name": "Yuncler",
          "country_code": "ES",
          "slug": "yuncler",
          "canonical_path": "/cities/es/yuncler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q963019",
          "name": "Yuncos",
          "country_code": "ES",
          "slug": "yuncos",
          "canonical_path": "/cities/es/yuncos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q140203",
          "name": "Zafra",
          "country_code": "ES",
          "slug": "zafra",
          "canonical_path": "/cities/es/zafra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q4476",
          "name": "Zalla",
          "country_code": "ES",
          "slug": "zalla",
          "canonical_path": "/cities/es/zalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q15696",
          "name": "Zamora",
          "country_code": "ES",
          "slug": "zamora",
          "canonical_path": "/cities/es/zamora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q10305",
          "name": "Zaragoza",
          "country_code": "ES",
          "slug": "zaragoza",
          "canonical_path": "/cities/es/zaragoza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q927038",
          "name": "Zaratán",
          "country_code": "ES",
          "slug": "zaratan",
          "canonical_path": "/cities/es/zaratan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q147774",
          "name": "Zarautz",
          "country_code": "ES",
          "slug": "zarautz",
          "canonical_path": "/cities/es/zarautz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3125077",
          "name": "Zierbena",
          "country_code": "ES",
          "slug": "zierbena",
          "canonical_path": "/cities/es/zierbena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:3124955",
          "name": "Zizur Mayor",
          "country_code": "ES",
          "slug": "zizur-mayor",
          "canonical_path": "/cities/es/zizur-mayor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1228466",
          "name": "Zizur Mayor/Zizur Nagusia",
          "country_code": "ES",
          "slug": "zizur-mayor-zizur-nagusia",
          "canonical_path": "/cities/es/zizur-mayor-zizur-nagusia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:geonames:2509305",
          "name": "Zubia",
          "country_code": "ES",
          "slug": "zubia",
          "canonical_path": "/cities/es/zubia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q619692",
          "name": "Zubia, La",
          "country_code": "ES",
          "slug": "zubia-la",
          "canonical_path": "/cities/es/zubia-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q1605519",
          "name": "Zuera",
          "country_code": "ES",
          "slug": "zuera",
          "canonical_path": "/cities/es/zuera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q229659",
          "name": "Zumaia",
          "country_code": "ES",
          "slug": "zumaia",
          "canonical_path": "/cities/es/zumaia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:es:wikidata:Q844508",
          "name": "Zumarraga",
          "country_code": "ES",
          "slug": "zumarraga",
          "canonical_path": "/cities/es/zumarraga/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "SE",
      "path": "cities/se.json",
      "city_count": 296,
      "cities": [
        {
          "entity_id": "city:se:geonames:2727594",
          "name": "Åby",
          "country_code": "SE",
          "slug": "aby",
          "canonical_path": "/cities/se/aby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2727363",
          "name": "Åhus",
          "country_code": "SE",
          "slug": "ahus",
          "canonical_path": "/cities/se/ahus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2727314",
          "name": "Åkarp",
          "country_code": "SE",
          "slug": "akarp",
          "canonical_path": "/cities/se/akarp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2727320",
          "name": "Åkarp",
          "country_code": "SE",
          "slug": "akarp-27-1231",
          "canonical_path": "/cities/se/akarp-27-1231/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2727234",
          "name": "Åkersberga",
          "country_code": "SE",
          "slug": "akersberga",
          "canonical_path": "/cities/se/akersberga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:7931985",
          "name": "Alby",
          "country_code": "SE",
          "slug": "alby",
          "canonical_path": "/cities/se/alby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q498470",
          "name": "Ale",
          "country_code": "SE",
          "slug": "ale",
          "canonical_path": "/cities/se/ale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q503162",
          "name": "Alingsås",
          "country_code": "SE",
          "slug": "alingsas",
          "canonical_path": "/cities/se/alingsas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q254799",
          "name": "Älmhult",
          "country_code": "SE",
          "slug": "almhult",
          "canonical_path": "/cities/se/almhult/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2726394",
          "name": "Älta",
          "country_code": "SE",
          "slug": "alta",
          "canonical_path": "/cities/se/alta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q182007",
          "name": "Alvesta",
          "country_code": "SE",
          "slug": "alvesta",
          "canonical_path": "/cities/se/alvesta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q271079",
          "name": "Åmål",
          "country_code": "SE",
          "slug": "amal",
          "canonical_path": "/cities/se/amal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2726032",
          "name": "Anderstorp",
          "country_code": "SE",
          "slug": "anderstorp",
          "canonical_path": "/cities/se/anderstorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q54755",
          "name": "Ängelholm",
          "country_code": "SE",
          "slug": "angelholm",
          "canonical_path": "/cities/se/angelholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q431271",
          "name": "Arboga",
          "country_code": "SE",
          "slug": "arboga",
          "canonical_path": "/cities/se/arboga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q271153",
          "name": "Åre",
          "country_code": "SE",
          "slug": "are",
          "canonical_path": "/cities/se/are/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2725336",
          "name": "Arlöv",
          "country_code": "SE",
          "slug": "arlov",
          "canonical_path": "/cities/se/arlov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511365",
          "name": "Arvika",
          "country_code": "SE",
          "slug": "arvika",
          "canonical_path": "/cities/se/arvika/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2725066",
          "name": "Åsa",
          "country_code": "SE",
          "slug": "asa",
          "canonical_path": "/cities/se/asa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q509501",
          "name": "Askersund",
          "country_code": "SE",
          "slug": "askersund",
          "canonical_path": "/cities/se/askersund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q201813",
          "name": "Åstorp",
          "country_code": "SE",
          "slug": "astorp",
          "canonical_path": "/cities/se/astorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q271340",
          "name": "Åtvidaberg",
          "country_code": "SE",
          "slug": "atvidaberg",
          "canonical_path": "/cities/se/atvidaberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q500071",
          "name": "Avesta",
          "country_code": "SE",
          "slug": "avesta",
          "canonical_path": "/cities/se/avesta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2723567",
          "name": "Bålsta",
          "country_code": "SE",
          "slug": "balsta",
          "canonical_path": "/cities/se/balsta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2723503",
          "name": "Bankeryd",
          "country_code": "SE",
          "slug": "bankeryd",
          "canonical_path": "/cities/se/bankeryd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q499464",
          "name": "Båstad",
          "country_code": "SE",
          "slug": "bastad",
          "canonical_path": "/cities/se/bastad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2722742",
          "name": "Bergshamra",
          "country_code": "SE",
          "slug": "bergshamra",
          "canonical_path": "/cities/se/bergshamra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2722570",
          "name": "Billdal",
          "country_code": "SE",
          "slug": "billdal",
          "canonical_path": "/cities/se/billdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2722362",
          "name": "Bjärred",
          "country_code": "SE",
          "slug": "bjarred",
          "canonical_path": "/cities/se/bjarred/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2721946",
          "name": "Björlanda",
          "country_code": "SE",
          "slug": "bjorlanda",
          "canonical_path": "/cities/se/bjorlanda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511310",
          "name": "Bjuv",
          "country_code": "SE",
          "slug": "bjuv",
          "canonical_path": "/cities/se/bjuv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q509476",
          "name": "Boden",
          "country_code": "SE",
          "slug": "boden",
          "canonical_path": "/cities/se/boden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q953769",
          "name": "Bollnäs",
          "country_code": "SE",
          "slug": "bollnas",
          "canonical_path": "/cities/se/bollnas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1010040",
          "name": "Borås",
          "country_code": "SE",
          "slug": "boras",
          "canonical_path": "/cities/se/boras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q503209",
          "name": "Borlänge",
          "country_code": "SE",
          "slug": "borlange",
          "canonical_path": "/cities/se/borlange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q113718",
          "name": "Botkyrka",
          "country_code": "SE",
          "slug": "botkyrka",
          "canonical_path": "/cities/se/botkyrka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2719312",
          "name": "Brevik",
          "country_code": "SE",
          "slug": "brevik",
          "canonical_path": "/cities/se/brevik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2719245",
          "name": "Bro",
          "country_code": "SE",
          "slug": "bro",
          "canonical_path": "/cities/se/bro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q514830",
          "name": "Bromölla",
          "country_code": "SE",
          "slug": "bromolla",
          "canonical_path": "/cities/se/bromolla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2718759",
          "name": "Bunkeflostrand",
          "country_code": "SE",
          "slug": "bunkeflostrand",
          "canonical_path": "/cities/se/bunkeflostrand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q186662",
          "name": "Burlöv",
          "country_code": "SE",
          "slug": "burlov",
          "canonical_path": "/cities/se/burlov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2718248",
          "name": "Dalby",
          "country_code": "SE",
          "slug": "dalby",
          "canonical_path": "/cities/se/dalby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q113679",
          "name": "Danderyd",
          "country_code": "SE",
          "slug": "danderyd",
          "canonical_path": "/cities/se/danderyd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2717884",
          "name": "Degerfors",
          "country_code": "SE",
          "slug": "degerfors",
          "canonical_path": "/cities/se/degerfors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2717517",
          "name": "Djursholm",
          "country_code": "SE",
          "slug": "djursholm",
          "canonical_path": "/cities/se/djursholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q492614",
          "name": "Ekerö",
          "country_code": "SE",
          "slug": "ekero",
          "canonical_path": "/cities/se/ekero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q512035",
          "name": "Eksjö",
          "country_code": "SE",
          "slug": "eksjo",
          "canonical_path": "/cities/se/eksjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q509568",
          "name": "Enköping",
          "country_code": "SE",
          "slug": "enkoping",
          "canonical_path": "/cities/se/enkoping/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q26498",
          "name": "Eskilstuna",
          "country_code": "SE",
          "slug": "eskilstuna",
          "canonical_path": "/cities/se/eskilstuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1130264",
          "name": "Eslöv",
          "country_code": "SE",
          "slug": "eslov",
          "canonical_path": "/cities/se/eslov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q47018",
          "name": "Fagersta",
          "country_code": "SE",
          "slug": "fagersta",
          "canonical_path": "/cities/se/fagersta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q508168",
          "name": "Falkenberg",
          "country_code": "SE",
          "slug": "falkenberg",
          "canonical_path": "/cities/se/falkenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q503214",
          "name": "Falköping",
          "country_code": "SE",
          "slug": "falkoping",
          "canonical_path": "/cities/se/falkoping/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q26509",
          "name": "Falun",
          "country_code": "SE",
          "slug": "falun",
          "canonical_path": "/cities/se/falun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2715324",
          "name": "Färjestaden",
          "country_code": "SE",
          "slug": "farjestaden",
          "canonical_path": "/cities/se/farjestaden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2715081",
          "name": "Filipstad",
          "country_code": "SE",
          "slug": "filipstad",
          "canonical_path": "/cities/se/filipstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q503180",
          "name": "Finspång",
          "country_code": "SE",
          "slug": "finspang",
          "canonical_path": "/cities/se/finspang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:3336566",
          "name": "Fisksätra",
          "country_code": "SE",
          "slug": "fisksatra",
          "canonical_path": "/cities/se/fisksatra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2714795",
          "name": "Fittja",
          "country_code": "SE",
          "slug": "fittja",
          "canonical_path": "/cities/se/fittja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q27982",
          "name": "Flen",
          "country_code": "SE",
          "slug": "flen",
          "canonical_path": "/cities/se/flen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q499385",
          "name": "Forshaga",
          "country_code": "SE",
          "slug": "forshaga",
          "canonical_path": "/cities/se/forshaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2713661",
          "name": "Fristad",
          "country_code": "SE",
          "slug": "fristad",
          "canonical_path": "/cities/se/fristad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q493815",
          "name": "Gällivare",
          "country_code": "SE",
          "slug": "gallivare",
          "canonical_path": "/cities/se/gallivare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:8288547",
          "name": "Gårdsten",
          "country_code": "SE",
          "slug": "gardsten",
          "canonical_path": "/cities/se/gardsten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25441",
          "name": "Gävle",
          "country_code": "SE",
          "slug": "gavle",
          "canonical_path": "/cities/se/gavle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1021557",
          "name": "Gislaved",
          "country_code": "SE",
          "slug": "gislaved",
          "canonical_path": "/cities/se/gislaved/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q239332",
          "name": "Gnesta",
          "country_code": "SE",
          "slug": "gnesta",
          "canonical_path": "/cities/se/gnesta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25713",
          "name": "Göteborg",
          "country_code": "SE",
          "slug": "goteborg",
          "canonical_path": "/cities/se/goteborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511281",
          "name": "Götene",
          "country_code": "SE",
          "slug": "gotene",
          "canonical_path": "/cities/se/gotene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2711537",
          "name": "Gothenburg",
          "country_code": "SE",
          "slug": "gothenburg",
          "canonical_path": "/cities/se/gothenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q374794",
          "name": "Gotland",
          "country_code": "SE",
          "slug": "gotland",
          "canonical_path": "/cities/se/gotland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2711451",
          "name": "Gråbo",
          "country_code": "SE",
          "slug": "grabo",
          "canonical_path": "/cities/se/grabo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2710343",
          "name": "Grums",
          "country_code": "SE",
          "slug": "grums",
          "canonical_path": "/cities/se/grums/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2709628",
          "name": "Gustavsberg",
          "country_code": "SE",
          "slug": "gustavsberg",
          "canonical_path": "/cities/se/gustavsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511407",
          "name": "Hagfors",
          "country_code": "SE",
          "slug": "hagfors",
          "canonical_path": "/cities/se/hagfors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q508180",
          "name": "Hallsberg",
          "country_code": "SE",
          "slug": "hallsberg",
          "canonical_path": "/cities/se/hallsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1019560",
          "name": "Hallstahammar",
          "country_code": "SE",
          "slug": "hallstahammar",
          "canonical_path": "/cities/se/hallstahammar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q26521",
          "name": "Halmstad",
          "country_code": "SE",
          "slug": "halmstad",
          "canonical_path": "/cities/se/halmstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:8288543",
          "name": "Hammarkullen",
          "country_code": "SE",
          "slug": "hammarkullen",
          "canonical_path": "/cities/se/hammarkullen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q499359",
          "name": "Hammarö",
          "country_code": "SE",
          "slug": "hammaro",
          "canonical_path": "/cities/se/hammaro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2708016",
          "name": "Handen",
          "country_code": "SE",
          "slug": "handen",
          "canonical_path": "/cities/se/handen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q113692",
          "name": "Haninge",
          "country_code": "SE",
          "slug": "haninge",
          "canonical_path": "/cities/se/haninge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:605859",
          "name": "Haparanda",
          "country_code": "SE",
          "slug": "haparanda",
          "canonical_path": "/cities/se/haparanda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q3240427",
          "name": "Härnösand",
          "country_code": "SE",
          "slug": "harnosand",
          "canonical_path": "/cities/se/harnosand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q500125",
          "name": "Härryda",
          "country_code": "SE",
          "slug": "harryda",
          "canonical_path": "/cities/se/harryda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q508125",
          "name": "Hässleholm",
          "country_code": "SE",
          "slug": "hassleholm",
          "canonical_path": "/cities/se/hassleholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q516308",
          "name": "Heby",
          "country_code": "SE",
          "slug": "heby",
          "canonical_path": "/cities/se/heby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q507684",
          "name": "Hedemora",
          "country_code": "SE",
          "slug": "hedemora",
          "canonical_path": "/cities/se/hedemora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1010585",
          "name": "Helsingborg",
          "country_code": "SE",
          "slug": "helsingborg",
          "canonical_path": "/cities/se/helsingborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2706184",
          "name": "Hjo",
          "country_code": "SE",
          "slug": "hjo",
          "canonical_path": "/cities/se/hjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2706057",
          "name": "Hofors",
          "country_code": "SE",
          "slug": "hofors",
          "canonical_path": "/cities/se/hofors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505013",
          "name": "Höganäs",
          "country_code": "SE",
          "slug": "hoganas",
          "canonical_path": "/cities/se/hoganas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2705402",
          "name": "Höllviken",
          "country_code": "SE",
          "slug": "hollviken",
          "canonical_path": "/cities/se/hollviken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:605676",
          "name": "Holmsund",
          "country_code": "SE",
          "slug": "holmsund",
          "canonical_path": "/cities/se/holmsund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2705075",
          "name": "Hönö",
          "country_code": "SE",
          "slug": "hono",
          "canonical_path": "/cities/se/hono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q266401",
          "name": "Höör",
          "country_code": "SE",
          "slug": "hoor",
          "canonical_path": "/cities/se/hoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504619",
          "name": "Hörby",
          "country_code": "SE",
          "slug": "horby",
          "canonical_path": "/cities/se/horby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1029812",
          "name": "Huddinge",
          "country_code": "SE",
          "slug": "huddinge",
          "canonical_path": "/cities/se/huddinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q642964",
          "name": "Hudiksvall",
          "country_code": "SE",
          "slug": "hudiksvall",
          "canonical_path": "/cities/se/hudiksvall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q512002",
          "name": "Hultsfred",
          "country_code": "SE",
          "slug": "hultsfred",
          "canonical_path": "/cities/se/hultsfred/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2704136",
          "name": "Huskvarna",
          "country_code": "SE",
          "slug": "huskvarna",
          "canonical_path": "/cities/se/huskvarna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2703396",
          "name": "Jakobsberg",
          "country_code": "SE",
          "slug": "jakobsberg",
          "canonical_path": "/cities/se/jakobsberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1029817",
          "name": "Järfälla",
          "country_code": "SE",
          "slug": "jarfalla",
          "canonical_path": "/cities/se/jarfalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2703269",
          "name": "Järna",
          "country_code": "SE",
          "slug": "jarna",
          "canonical_path": "/cities/se/jarna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25706",
          "name": "Jönköping",
          "country_code": "SE",
          "slug": "jonkoping",
          "canonical_path": "/cities/se/jonkoping/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2702908",
          "name": "Jordbro",
          "country_code": "SE",
          "slug": "jordbro",
          "canonical_path": "/cities/se/jordbro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q117091",
          "name": "Kalix",
          "country_code": "SE",
          "slug": "kalix",
          "canonical_path": "/cities/se/kalix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2702449",
          "name": "Kållered",
          "country_code": "SE",
          "slug": "kallered",
          "canonical_path": "/cities/se/kallered/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25566",
          "name": "Kalmar",
          "country_code": "SE",
          "slug": "kalmar",
          "canonical_path": "/cities/se/kalmar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q510223",
          "name": "Karlshamn",
          "country_code": "SE",
          "slug": "karlshamn",
          "canonical_path": "/cities/se/karlshamn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q54732",
          "name": "Karlskoga",
          "country_code": "SE",
          "slug": "karlskoga",
          "canonical_path": "/cities/se/karlskoga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25595",
          "name": "Karlskrona",
          "country_code": "SE",
          "slug": "karlskrona",
          "canonical_path": "/cities/se/karlskrona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25593",
          "name": "Karlstad",
          "country_code": "SE",
          "slug": "karlstad",
          "canonical_path": "/cities/se/karlstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q508140",
          "name": "Katrineholm",
          "country_code": "SE",
          "slug": "katrineholm",
          "canonical_path": "/cities/se/katrineholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q513370",
          "name": "Kävlinge",
          "country_code": "SE",
          "slug": "kavlinge",
          "canonical_path": "/cities/se/kavlinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q499393",
          "name": "Kil",
          "country_code": "SE",
          "slug": "kil",
          "canonical_path": "/cities/se/kil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2700839",
          "name": "Kinna",
          "country_code": "SE",
          "slug": "kinna",
          "canonical_path": "/cities/se/kinna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q83232",
          "name": "Kiruna",
          "country_code": "SE",
          "slug": "kiruna",
          "canonical_path": "/cities/se/kiruna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2700791",
          "name": "Kista",
          "country_code": "SE",
          "slug": "kista",
          "canonical_path": "/cities/se/kista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504614",
          "name": "Klippan",
          "country_code": "SE",
          "slug": "klippan",
          "canonical_path": "/cities/se/klippan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1120927",
          "name": "Knivsta",
          "country_code": "SE",
          "slug": "knivsta",
          "canonical_path": "/cities/se/knivsta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q42009",
          "name": "Köping",
          "country_code": "SE",
          "slug": "koping",
          "canonical_path": "/cities/se/koping/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q645351",
          "name": "Kramfors",
          "country_code": "SE",
          "slug": "kramfors",
          "canonical_path": "/cities/se/kramfors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25598",
          "name": "Kristianstad",
          "country_code": "SE",
          "slug": "kristianstad",
          "canonical_path": "/cities/se/kristianstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q510364",
          "name": "Kristinehamn",
          "country_code": "SE",
          "slug": "kristinehamn",
          "canonical_path": "/cities/se/kristinehamn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2699206",
          "name": "Krokek",
          "country_code": "SE",
          "slug": "krokek",
          "canonical_path": "/cities/se/krokek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q514707",
          "name": "Krokom",
          "country_code": "SE",
          "slug": "krokom",
          "canonical_path": "/cities/se/krokom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504988",
          "name": "Kumla",
          "country_code": "SE",
          "slug": "kumla",
          "canonical_path": "/cities/se/kumla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511394",
          "name": "Kungälv",
          "country_code": "SE",
          "slug": "kungalv",
          "canonical_path": "/cities/se/kungalv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2698733",
          "name": "Kungsängen",
          "country_code": "SE",
          "slug": "kungsangen",
          "canonical_path": "/cities/se/kungsangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q499380",
          "name": "Kungsbacka",
          "country_code": "SE",
          "slug": "kungsbacka",
          "canonical_path": "/cities/se/kungsbacka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2698681",
          "name": "Kungsör",
          "country_code": "SE",
          "slug": "kungsor",
          "canonical_path": "/cities/se/kungsor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2698242",
          "name": "Kvissleby",
          "country_code": "SE",
          "slug": "kvissleby",
          "canonical_path": "/cities/se/kvissleby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q487502",
          "name": "Laholm",
          "country_code": "SE",
          "slug": "laholm",
          "canonical_path": "/cities/se/laholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q502298",
          "name": "Landskrona",
          "country_code": "SE",
          "slug": "landskrona",
          "canonical_path": "/cities/se/landskrona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2697703",
          "name": "Landvetter",
          "country_code": "SE",
          "slug": "landvetter",
          "canonical_path": "/cities/se/landvetter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1003260",
          "name": "Leksand",
          "country_code": "SE",
          "slug": "leksand",
          "canonical_path": "/cities/se/leksand/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q503188",
          "name": "Lerum",
          "country_code": "SE",
          "slug": "lerum",
          "canonical_path": "/cities/se/lerum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q3120654",
          "name": "Lidingö",
          "country_code": "SE",
          "slug": "lidingo",
          "canonical_path": "/cities/se/lidingo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q29988",
          "name": "Lidköping",
          "country_code": "SE",
          "slug": "lidkoping",
          "canonical_path": "/cities/se/lidkoping/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511241",
          "name": "Lilla Edet",
          "country_code": "SE",
          "slug": "lilla-edet",
          "canonical_path": "/cities/se/lilla-edet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2695019",
          "name": "Limhamn",
          "country_code": "SE",
          "slug": "limhamn",
          "canonical_path": "/cities/se/limhamn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q514858",
          "name": "Lindesberg",
          "country_code": "SE",
          "slug": "lindesberg",
          "canonical_path": "/cities/se/lindesberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2694831",
          "name": "Lindome",
          "country_code": "SE",
          "slug": "lindome",
          "canonical_path": "/cities/se/lindome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2694808",
          "name": "Lindsdal",
          "country_code": "SE",
          "slug": "lindsdal",
          "canonical_path": "/cities/se/lindsdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25330",
          "name": "Linköping",
          "country_code": "SE",
          "slug": "linkoping",
          "canonical_path": "/cities/se/linkoping/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504235",
          "name": "Ljungby",
          "country_code": "SE",
          "slug": "ljungby",
          "canonical_path": "/cities/se/ljungby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2694529",
          "name": "Ljungsbro",
          "country_code": "SE",
          "slug": "ljungsbro",
          "canonical_path": "/cities/se/ljungsbro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1019575",
          "name": "Ljusdal",
          "country_code": "SE",
          "slug": "ljusdal",
          "canonical_path": "/cities/se/ljusdal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2694375",
          "name": "Löddeköpinge",
          "country_code": "SE",
          "slug": "loddekopinge",
          "canonical_path": "/cities/se/loddekopinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q427991",
          "name": "Lomma",
          "country_code": "SE",
          "slug": "lomma",
          "canonical_path": "/cities/se/lomma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:8288548",
          "name": "Lövgärdet",
          "country_code": "SE",
          "slug": "lovgardet",
          "canonical_path": "/cities/se/lovgardet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q503184",
          "name": "Ludvika",
          "country_code": "SE",
          "slug": "ludvika",
          "canonical_path": "/cities/se/ludvika/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q26268",
          "name": "Luleå",
          "country_code": "SE",
          "slug": "lulea",
          "canonical_path": "/cities/se/lulea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25720",
          "name": "Lund",
          "country_code": "SE",
          "slug": "lund",
          "canonical_path": "/cities/se/lund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q948462",
          "name": "Lycksele",
          "country_code": "SE",
          "slug": "lycksele",
          "canonical_path": "/cities/se/lycksele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q503173",
          "name": "Lysekil",
          "country_code": "SE",
          "slug": "lysekil",
          "canonical_path": "/cities/se/lysekil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:604419",
          "name": "Malmberget",
          "country_code": "SE",
          "slug": "malmberget",
          "canonical_path": "/cities/se/malmberget/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25710",
          "name": "Malmö",
          "country_code": "SE",
          "slug": "malmo",
          "canonical_path": "/cities/se/malmo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2692943",
          "name": "Malmslätt",
          "country_code": "SE",
          "slug": "malmslatt",
          "canonical_path": "/cities/se/malmslatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q427422",
          "name": "Mariestad",
          "country_code": "SE",
          "slug": "mariestad",
          "canonical_path": "/cities/se/mariestad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q500153",
          "name": "Mark",
          "country_code": "SE",
          "slug": "mark",
          "canonical_path": "/cities/se/mark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2692475",
          "name": "Märsta",
          "country_code": "SE",
          "slug": "marsta",
          "canonical_path": "/cities/se/marsta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q267030",
          "name": "Mjölby",
          "country_code": "SE",
          "slug": "mjolby",
          "canonical_path": "/cities/se/mjolby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511270",
          "name": "Mölndal",
          "country_code": "SE",
          "slug": "molndal",
          "canonical_path": "/cities/se/molndal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2691440",
          "name": "Mölnlycke",
          "country_code": "SE",
          "slug": "molnlycke",
          "canonical_path": "/cities/se/molnlycke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515250",
          "name": "Mönsterås",
          "country_code": "SE",
          "slug": "monsteras",
          "canonical_path": "/cities/se/monsteras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q849874",
          "name": "Mora",
          "country_code": "SE",
          "slug": "mora",
          "canonical_path": "/cities/se/mora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1641531",
          "name": "Mörbylånga",
          "country_code": "SE",
          "slug": "morbylanga",
          "canonical_path": "/cities/se/morbylanga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q54357",
          "name": "Motala",
          "country_code": "SE",
          "slug": "motala",
          "canonical_path": "/cities/se/motala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2690902",
          "name": "Mullsjö",
          "country_code": "SE",
          "slug": "mullsjo",
          "canonical_path": "/cities/se/mullsjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1029931",
          "name": "Nacka",
          "country_code": "SE",
          "slug": "nacka",
          "canonical_path": "/cities/se/nacka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505096",
          "name": "Nässjö",
          "country_code": "SE",
          "slug": "nassjo",
          "canonical_path": "/cities/se/nassjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2689471",
          "name": "Nora",
          "country_code": "SE",
          "slug": "nora",
          "canonical_path": "/cities/se/nora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25332",
          "name": "Norrköping",
          "country_code": "SE",
          "slug": "norrkoping",
          "canonical_path": "/cities/se/norrkoping/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q214048",
          "name": "Norrtälje",
          "country_code": "SE",
          "slug": "norrtalje",
          "canonical_path": "/cities/se/norrtalje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515318",
          "name": "Nybro",
          "country_code": "SE",
          "slug": "nybro",
          "canonical_path": "/cities/se/nybro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25717",
          "name": "Nyköping",
          "country_code": "SE",
          "slug": "nykoping",
          "canonical_path": "/cities/se/nykoping/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q499460",
          "name": "Nykvarn",
          "country_code": "SE",
          "slug": "nykvarn",
          "canonical_path": "/cities/se/nykvarn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505090",
          "name": "Nynäshamn",
          "country_code": "SE",
          "slug": "nynashamn",
          "canonical_path": "/cities/se/nynashamn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q293928",
          "name": "Öckerö",
          "country_code": "SE",
          "slug": "ockero",
          "canonical_path": "/cities/se/ockero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2687498",
          "name": "Ödåkra",
          "country_code": "SE",
          "slug": "odakra",
          "canonical_path": "/cities/se/odakra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q995431",
          "name": "Olofström",
          "country_code": "SE",
          "slug": "olofstrom",
          "canonical_path": "/cities/se/olofstrom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:6943587",
          "name": "Onsala",
          "country_code": "SE",
          "slug": "onsala",
          "canonical_path": "/cities/se/onsala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25726",
          "name": "Örebro",
          "country_code": "SE",
          "slug": "orebro",
          "canonical_path": "/cities/se/orebro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2686596",
          "name": "Örkelljunga",
          "country_code": "SE",
          "slug": "orkelljunga",
          "canonical_path": "/cities/se/orkelljunga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25590",
          "name": "Örnsköldsvik",
          "country_code": "SE",
          "slug": "ornskoldsvik",
          "canonical_path": "/cities/se/ornskoldsvik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2686380",
          "name": "Orsa",
          "country_code": "SE",
          "slug": "orsa",
          "canonical_path": "/cities/se/orsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q338752",
          "name": "Orust",
          "country_code": "SE",
          "slug": "orust",
          "canonical_path": "/cities/se/orust/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504594",
          "name": "Osby",
          "country_code": "SE",
          "slug": "osby",
          "canonical_path": "/cities/se/osby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505006",
          "name": "Oskarshamn",
          "country_code": "SE",
          "slug": "oskarshamn",
          "canonical_path": "/cities/se/oskarshamn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q117728",
          "name": "Österåker",
          "country_code": "SE",
          "slug": "osteraker",
          "canonical_path": "/cities/se/osteraker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25723",
          "name": "Östersund",
          "country_code": "SE",
          "slug": "ostersund",
          "canonical_path": "/cities/se/ostersund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q59093",
          "name": "Östhammar",
          "country_code": "SE",
          "slug": "osthammar",
          "canonical_path": "/cities/se/osthammar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q307370",
          "name": "Östra Göinge",
          "country_code": "SE",
          "slug": "ostra-goinge",
          "canonical_path": "/cities/se/ostra-goinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505246",
          "name": "Oxelösund",
          "country_code": "SE",
          "slug": "oxelosund",
          "canonical_path": "/cities/se/oxelosund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2684636",
          "name": "Oxie",
          "country_code": "SE",
          "slug": "oxie",
          "canonical_path": "/cities/se/oxie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q125222",
          "name": "Partille",
          "country_code": "SE",
          "slug": "partille",
          "canonical_path": "/cities/se/partille/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2684213",
          "name": "Perstorp",
          "country_code": "SE",
          "slug": "perstorp",
          "canonical_path": "/cities/se/perstorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q507656",
          "name": "Piteå",
          "country_code": "SE",
          "slug": "pitea",
          "canonical_path": "/cities/se/pitea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2682995",
          "name": "Rättvik",
          "country_code": "SE",
          "slug": "rattvik",
          "canonical_path": "/cities/se/rattvik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2682484",
          "name": "Rinkeby",
          "country_code": "SE",
          "slug": "rinkeby",
          "canonical_path": "/cities/se/rinkeby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515373",
          "name": "Ronneby",
          "country_code": "SE",
          "slug": "ronneby",
          "canonical_path": "/cities/se/ronneby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2680969",
          "name": "Rydebäck",
          "country_code": "SE",
          "slug": "rydeback",
          "canonical_path": "/cities/se/rydeback/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511326",
          "name": "Säffle",
          "country_code": "SE",
          "slug": "saffle",
          "canonical_path": "/cities/se/saffle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q37399",
          "name": "Sala",
          "country_code": "SE",
          "slug": "sala",
          "canonical_path": "/cities/se/sala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q516080",
          "name": "Salem",
          "country_code": "SE",
          "slug": "salem",
          "canonical_path": "/cities/se/salem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2680460",
          "name": "Saltsjöbaden",
          "country_code": "SE",
          "slug": "saltsjobaden",
          "canonical_path": "/cities/se/saltsjobaden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q54756",
          "name": "Sandviken",
          "country_code": "SE",
          "slug": "sandviken",
          "canonical_path": "/cities/se/sandviken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2679721",
          "name": "Sävja",
          "country_code": "SE",
          "slug": "savja",
          "canonical_path": "/cities/se/savja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505239",
          "name": "Sävsjö",
          "country_code": "SE",
          "slug": "savsjo",
          "canonical_path": "/cities/se/savsjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1029935",
          "name": "Sigtuna",
          "country_code": "SE",
          "slug": "sigtuna",
          "canonical_path": "/cities/se/sigtuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504626",
          "name": "Simrishamn",
          "country_code": "SE",
          "slug": "simrishamn",
          "canonical_path": "/cities/se/simrishamn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504601",
          "name": "Sjöbo",
          "country_code": "SE",
          "slug": "sjobo",
          "canonical_path": "/cities/se/sjobo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:3336568",
          "name": "Skanör med Falsterbo",
          "country_code": "SE",
          "slug": "skanor-med-falsterbo",
          "canonical_path": "/cities/se/skanor-med-falsterbo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q499421",
          "name": "Skara",
          "country_code": "SE",
          "slug": "skara",
          "canonical_path": "/cities/se/skara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2678153",
          "name": "Skåre",
          "country_code": "SE",
          "slug": "skare",
          "canonical_path": "/cities/se/skare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2678156",
          "name": "Skåre",
          "country_code": "SE",
          "slug": "skare-22-1780",
          "canonical_path": "/cities/se/skare-22-1780/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q103880",
          "name": "Skellefteå",
          "country_code": "SE",
          "slug": "skelleftea",
          "canonical_path": "/cities/se/skelleftea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2677456",
          "name": "Skoghall",
          "country_code": "SE",
          "slug": "skoghall",
          "canonical_path": "/cities/se/skoghall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q501452",
          "name": "Skövde",
          "country_code": "SE",
          "slug": "skovde",
          "canonical_path": "/cities/se/skovde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515266",
          "name": "Skurup",
          "country_code": "SE",
          "slug": "skurup",
          "canonical_path": "/cities/se/skurup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2677019",
          "name": "Skutskär",
          "country_code": "SE",
          "slug": "skutskar",
          "canonical_path": "/cities/se/skutskar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2676586",
          "name": "Smedjebacken",
          "country_code": "SE",
          "slug": "smedjebacken",
          "canonical_path": "/cities/se/smedjebacken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q746839",
          "name": "Söderhamn",
          "country_code": "SE",
          "slug": "soderhamn",
          "canonical_path": "/cities/se/soderhamn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515680",
          "name": "Söderköping",
          "country_code": "SE",
          "slug": "soderkoping",
          "canonical_path": "/cities/se/soderkoping/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q26518",
          "name": "Södertälje",
          "country_code": "SE",
          "slug": "sodertalje",
          "canonical_path": "/cities/se/sodertalje/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2675691",
          "name": "Södra Sandby",
          "country_code": "SE",
          "slug": "sodra-sandby",
          "canonical_path": "/cities/se/sodra-sandby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2675692",
          "name": "Södra Sandby",
          "country_code": "SE",
          "slug": "sodra-sandby-27-1281",
          "canonical_path": "/cities/se/sodra-sandby-27-1281/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q221990",
          "name": "Sollefteå",
          "country_code": "SE",
          "slug": "solleftea",
          "canonical_path": "/cities/se/solleftea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1029832",
          "name": "Sollentuna",
          "country_code": "SE",
          "slug": "sollentuna",
          "canonical_path": "/cities/se/sollentuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q109010",
          "name": "Solna",
          "country_code": "SE",
          "slug": "solna",
          "canonical_path": "/cities/se/solna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515409",
          "name": "Sölvesborg",
          "country_code": "SE",
          "slug": "solvesborg",
          "canonical_path": "/cities/se/solvesborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504609",
          "name": "Staffanstorp",
          "country_code": "SE",
          "slug": "staffanstorp",
          "canonical_path": "/cities/se/staffanstorp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511438",
          "name": "Stenungsund",
          "country_code": "SE",
          "slug": "stenungsund",
          "canonical_path": "/cities/se/stenungsund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1754",
          "name": "Stockholm",
          "country_code": "SE",
          "slug": "stockholm",
          "canonical_path": "/cities/se/stockholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2671490",
          "name": "Storvreta",
          "country_code": "SE",
          "slug": "storvreta",
          "canonical_path": "/cities/se/storvreta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q106909",
          "name": "Strängnäs",
          "country_code": "SE",
          "slug": "strangnas",
          "canonical_path": "/cities/se/strangnas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q501424",
          "name": "Strömstad",
          "country_code": "SE",
          "slug": "stromstad",
          "canonical_path": "/cities/se/stromstad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q972564",
          "name": "Sundbyberg",
          "country_code": "SE",
          "slug": "sundbyberg",
          "canonical_path": "/cities/se/sundbyberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25708",
          "name": "Sundsvall",
          "country_code": "SE",
          "slug": "sundsvall",
          "canonical_path": "/cities/se/sundsvall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q501205",
          "name": "Sunne",
          "country_code": "SE",
          "slug": "sunne",
          "canonical_path": "/cities/se/sunne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2670613",
          "name": "Surahammar",
          "country_code": "SE",
          "slug": "surahammar",
          "canonical_path": "/cities/se/surahammar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2670603",
          "name": "Surte",
          "country_code": "SE",
          "slug": "surte",
          "canonical_path": "/cities/se/surte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504227",
          "name": "Svalöv",
          "country_code": "SE",
          "slug": "svalov",
          "canonical_path": "/cities/se/svalov/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515706",
          "name": "Svedala",
          "country_code": "SE",
          "slug": "svedala",
          "canonical_path": "/cities/se/svedala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1029835",
          "name": "Täby",
          "country_code": "SE",
          "slug": "taby",
          "canonical_path": "/cities/se/taby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511228",
          "name": "Tanum",
          "country_code": "SE",
          "slug": "tanum",
          "canonical_path": "/cities/se/tanum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q501432",
          "name": "Tibro",
          "country_code": "SE",
          "slug": "tibro",
          "canonical_path": "/cities/se/tibro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q501459",
          "name": "Tidaholm",
          "country_code": "SE",
          "slug": "tidaholm",
          "canonical_path": "/cities/se/tidaholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q510198",
          "name": "Tierp",
          "country_code": "SE",
          "slug": "tierp",
          "canonical_path": "/cities/se/tierp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q1195439",
          "name": "Timrå",
          "country_code": "SE",
          "slug": "timra",
          "canonical_path": "/cities/se/timra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515491",
          "name": "Tingsryd",
          "country_code": "SE",
          "slug": "tingsryd",
          "canonical_path": "/cities/se/tingsryd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q501448",
          "name": "Tjörn",
          "country_code": "SE",
          "slug": "tjorn",
          "canonical_path": "/cities/se/tjorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515519",
          "name": "Tomelilla",
          "country_code": "SE",
          "slug": "tomelilla",
          "canonical_path": "/cities/se/tomelilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q510135",
          "name": "Torsby",
          "country_code": "SE",
          "slug": "torsby",
          "canonical_path": "/cities/se/torsby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2667847",
          "name": "Torshälla",
          "country_code": "SE",
          "slug": "torshalla",
          "canonical_path": "/cities/se/torshalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2667809",
          "name": "Torslanda",
          "country_code": "SE",
          "slug": "torslanda",
          "canonical_path": "/cities/se/torslanda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505071",
          "name": "Tranås",
          "country_code": "SE",
          "slug": "tranas",
          "canonical_path": "/cities/se/tranas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q501479",
          "name": "Tranemo",
          "country_code": "SE",
          "slug": "tranemo",
          "canonical_path": "/cities/se/tranemo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2667569",
          "name": "Trångsund",
          "country_code": "SE",
          "slug": "trangsund",
          "canonical_path": "/cities/se/trangsund/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q504219",
          "name": "Trelleborg",
          "country_code": "SE",
          "slug": "trelleborg",
          "canonical_path": "/cities/se/trelleborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q28532",
          "name": "Trollhättan",
          "country_code": "SE",
          "slug": "trollhattan",
          "canonical_path": "/cities/se/trollhattan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505064",
          "name": "Trosa",
          "country_code": "SE",
          "slug": "trosa",
          "canonical_path": "/cities/se/trosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2667109",
          "name": "Tullinge",
          "country_code": "SE",
          "slug": "tullinge",
          "canonical_path": "/cities/se/tullinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2667094",
          "name": "Tumba",
          "country_code": "SE",
          "slug": "tumba",
          "canonical_path": "/cities/se/tumba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q113730",
          "name": "Tyresö",
          "country_code": "SE",
          "slug": "tyreso",
          "canonical_path": "/cities/se/tyreso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q27447",
          "name": "Uddevalla",
          "country_code": "SE",
          "slug": "uddevalla",
          "canonical_path": "/cities/se/uddevalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q382808",
          "name": "Ulricehamn",
          "country_code": "SE",
          "slug": "ulricehamn",
          "canonical_path": "/cities/se/ulricehamn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25565",
          "name": "Umeå",
          "country_code": "SE",
          "slug": "umea",
          "canonical_path": "/cities/se/umea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q499425",
          "name": "Upplands Väsby",
          "country_code": "SE",
          "slug": "upplands-vasby",
          "canonical_path": "/cities/se/upplands-vasby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q113673",
          "name": "Upplands-Bro",
          "country_code": "SE",
          "slug": "upplands-bro",
          "canonical_path": "/cities/se/upplands-bro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25385",
          "name": "Uppsala",
          "country_code": "SE",
          "slug": "uppsala",
          "canonical_path": "/cities/se/uppsala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2665902",
          "name": "Vadstena",
          "country_code": "SE",
          "slug": "vadstena",
          "canonical_path": "/cities/se/vadstena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q605329",
          "name": "Vaggeryd",
          "country_code": "SE",
          "slug": "vaggeryd",
          "canonical_path": "/cities/se/vaggeryd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2665691",
          "name": "Valbo",
          "country_code": "SE",
          "slug": "valbo",
          "canonical_path": "/cities/se/valbo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q501526",
          "name": "Vallentuna",
          "country_code": "SE",
          "slug": "vallentuna",
          "canonical_path": "/cities/se/vallentuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511426",
          "name": "Vänersborg",
          "country_code": "SE",
          "slug": "vanersborg",
          "canonical_path": "/cities/se/vanersborg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q501428",
          "name": "Vara",
          "country_code": "SE",
          "slug": "vara",
          "canonical_path": "/cities/se/vara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q179180",
          "name": "Varberg",
          "country_code": "SE",
          "slug": "varberg",
          "canonical_path": "/cities/se/varberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2664989",
          "name": "Vårby",
          "country_code": "SE",
          "slug": "varby",
          "canonical_path": "/cities/se/varby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511297",
          "name": "Vårgårda",
          "country_code": "SE",
          "slug": "vargarda",
          "canonical_path": "/cities/se/vargarda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q493841",
          "name": "Värmdö",
          "country_code": "SE",
          "slug": "varmdo",
          "canonical_path": "/cities/se/varmdo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q280562",
          "name": "Värnamo",
          "country_code": "SE",
          "slug": "varnamo",
          "canonical_path": "/cities/se/varnamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25711",
          "name": "Västerås",
          "country_code": "SE",
          "slug": "vasteras",
          "canonical_path": "/cities/se/vasteras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q515477",
          "name": "Västervik",
          "country_code": "SE",
          "slug": "vastervik",
          "canonical_path": "/cities/se/vastervik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2664050",
          "name": "Västra Frölunda",
          "country_code": "SE",
          "slug": "vastra-frolunda",
          "canonical_path": "/cities/se/vastra-frolunda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q500090",
          "name": "Vaxholm",
          "country_code": "SE",
          "slug": "vaxholm",
          "canonical_path": "/cities/se/vaxholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q25733",
          "name": "Växjö",
          "country_code": "SE",
          "slug": "vaxjo",
          "canonical_path": "/cities/se/vaxjo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q511338",
          "name": "Vellinge",
          "country_code": "SE",
          "slug": "vellinge",
          "canonical_path": "/cities/se/vellinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505052",
          "name": "Vetlanda",
          "country_code": "SE",
          "slug": "vetlanda",
          "canonical_path": "/cities/se/vetlanda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:3336565",
          "name": "Vi",
          "country_code": "SE",
          "slug": "vi",
          "canonical_path": "/cities/se/vi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2663036",
          "name": "Viken",
          "country_code": "SE",
          "slug": "viken",
          "canonical_path": "/cities/se/viken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505057",
          "name": "Vimmerby",
          "country_code": "SE",
          "slug": "vimmerby",
          "canonical_path": "/cities/se/vimmerby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:geonames:2662689",
          "name": "Visby",
          "country_code": "SE",
          "slug": "visby",
          "canonical_path": "/cities/se/visby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:se:wikidata:Q505102",
          "name": "Ystad",
          "country_code": "SE",
          "slug": "ystad",
          "canonical_path": "/cities/se/ystad/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "CH",
      "path": "cities/ch.json",
      "city_count": 464,
      "cities": [
        {
          "entity_id": "city:ch:bfsnr:4551",
          "name": "Aadorf",
          "country_code": "CH",
          "slug": "aadorf",
          "canonical_path": "/cities/ch/aadorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4001",
          "name": "Aarau",
          "country_code": "CH",
          "slug": "4001-aarau",
          "canonical_path": "/cities/ch/4001-aarau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4271",
          "name": "Aarburg",
          "country_code": "CH",
          "slug": "aarburg",
          "canonical_path": "/cities/ch/aarburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1051",
          "name": "Adligenswil",
          "country_code": "CH",
          "slug": "adligenswil",
          "canonical_path": "/cities/ch/adligenswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0131",
          "name": "Adliswil",
          "country_code": "CH",
          "slug": "adliswil",
          "canonical_path": "/cities/ch/adliswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2661852",
          "name": "Aesch",
          "country_code": "CH",
          "slug": "aesch",
          "canonical_path": "/cities/ch/aesch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2761",
          "name": "Aesch (BL)",
          "country_code": "CH",
          "slug": "aesch-bl",
          "canonical_path": "/cities/ch/aesch-bl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0002",
          "name": "Affoltern am Albis",
          "country_code": "CH",
          "slug": "affoltern-am-albis",
          "canonical_path": "/cities/ch/affoltern-am-albis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5401",
          "name": "Aigle",
          "country_code": "CH",
          "slug": "5401-aigle",
          "canonical_path": "/cities/ch/5401-aigle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2762",
          "name": "Allschwil",
          "country_code": "CH",
          "slug": "2762-allschwil",
          "canonical_path": "/cities/ch/2762-allschwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1401",
          "name": "Alpnach",
          "country_code": "CH",
          "slug": "alpnach",
          "canonical_path": "/cities/ch/alpnach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2661780",
          "name": "Altdorf",
          "country_code": "CH",
          "slug": "altdorf",
          "canonical_path": "/cities/ch/altdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1201",
          "name": "Altdorf (UR)",
          "country_code": "CH",
          "slug": "altdorf-ur",
          "canonical_path": "/cities/ch/altdorf-ur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1341",
          "name": "Altendorf",
          "country_code": "CH",
          "slug": "altendorf",
          "canonical_path": "/cities/ch/altendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3251",
          "name": "Altstätten",
          "country_code": "CH",
          "slug": "3251-altstatten",
          "canonical_path": "/cities/ch/3251-altstatten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4461",
          "name": "Amriswil",
          "country_code": "CH",
          "slug": "4461-amriswil",
          "canonical_path": "/cities/ch/4461-amriswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3101",
          "name": "Appenzell",
          "country_code": "CH",
          "slug": "3101-appenzell",
          "canonical_path": "/cities/ch/3101-appenzell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5001",
          "name": "Arbedo-Castione",
          "country_code": "CH",
          "slug": "arbedo-castione",
          "canonical_path": "/cities/ch/arbedo-castione/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4401",
          "name": "Arbon",
          "country_code": "CH",
          "slug": "4401-arbon",
          "canonical_path": "/cities/ch/4401-arbon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2763",
          "name": "Arlesheim",
          "country_code": "CH",
          "slug": "2763-arlesheim",
          "canonical_path": "/cities/ch/2763-arlesheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1362",
          "name": "Arth",
          "country_code": "CH",
          "slug": "arth",
          "canonical_path": "/cities/ch/arth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5091",
          "name": "Ascona",
          "country_code": "CH",
          "slug": "ascona",
          "canonical_path": "/cities/ch/ascona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3231",
          "name": "Au (SG)",
          "country_code": "CH",
          "slug": "au-sg",
          "canonical_path": "/cities/ch/au-sg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1701",
          "name": "Baar",
          "country_code": "CH",
          "slug": "1701-baar",
          "canonical_path": "/cities/ch/1701-baar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3291",
          "name": "Bad Ragaz",
          "country_code": "CH",
          "slug": "bad-ragaz",
          "canonical_path": "/cities/ch/bad-ragaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4021",
          "name": "Baden",
          "country_code": "CH",
          "slug": "4021-baden",
          "canonical_path": "/cities/ch/4021-baden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3232",
          "name": "Balgach",
          "country_code": "CH",
          "slug": "balgach",
          "canonical_path": "/cities/ch/balgach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2422",
          "name": "Balsthal",
          "country_code": "CH",
          "slug": "balsthal",
          "canonical_path": "/cities/ch/balsthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0111",
          "name": "Bäretswil",
          "country_code": "CH",
          "slug": "baretswil",
          "canonical_path": "/cities/ch/baretswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2701",
          "name": "Basel",
          "country_code": "CH",
          "slug": "2701-basel",
          "canonical_path": "/cities/ch/2701-basel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0052",
          "name": "Bassersdorf",
          "country_code": "CH",
          "slug": "bassersdorf",
          "canonical_path": "/cities/ch/bassersdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0297",
          "name": "Bauma",
          "country_code": "CH",
          "slug": "bauma",
          "canonical_path": "/cities/ch/bauma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2542",
          "name": "Bellach",
          "country_code": "CH",
          "slug": "bellach",
          "canonical_path": "/cities/ch/bellach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5002",
          "name": "Bellinzona",
          "country_code": "CH",
          "slug": "5002-bellinzona",
          "canonical_path": "/cities/ch/5002-bellinzona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2053",
          "name": "Belmont-Broye",
          "country_code": "CH",
          "slug": "belmont-broye",
          "canonical_path": "/cities/ch/belmont-broye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0861",
          "name": "Belp",
          "country_code": "CH",
          "slug": "0861-belp",
          "canonical_path": "/cities/ch/0861-belp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2932",
          "name": "Beringen",
          "country_code": "CH",
          "slug": "beringen",
          "canonical_path": "/cities/ch/beringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0351",
          "name": "Bern",
          "country_code": "CH",
          "slug": "bern",
          "canonical_path": "/cities/ch/bern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6607",
          "name": "Bernex",
          "country_code": "CH",
          "slug": "bernex",
          "canonical_path": "/cities/ch/bernex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1081",
          "name": "Beromünster",
          "country_code": "CH",
          "slug": "beromunster",
          "canonical_path": "/cities/ch/beromunster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5402",
          "name": "Bex",
          "country_code": "CH",
          "slug": "bex",
          "canonical_path": "/cities/ch/bex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5281",
          "name": "Biasca",
          "country_code": "CH",
          "slug": "biasca",
          "canonical_path": "/cities/ch/biasca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2513",
          "name": "Biberist",
          "country_code": "CH",
          "slug": "biberist",
          "canonical_path": "/cities/ch/biberist/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0371",
          "name": "Biel/Bienne",
          "country_code": "CH",
          "slug": "biel",
          "canonical_path": "/cities/ch/biel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2765",
          "name": "Binningen",
          "country_code": "CH",
          "slug": "2765-binningen",
          "canonical_path": "/cities/ch/2765-binningen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0242",
          "name": "Birmensdorf (ZH)",
          "country_code": "CH",
          "slug": "birmensdorf-zh",
          "canonical_path": "/cities/ch/birmensdorf-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2766",
          "name": "Birsfelden",
          "country_code": "CH",
          "slug": "2766-birsfelden",
          "canonical_path": "/cities/ch/2766-birsfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4471",
          "name": "Bischofszell",
          "country_code": "CH",
          "slug": "bischofszell",
          "canonical_path": "/cities/ch/bischofszell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5892",
          "name": "Blonay - Saint-Légier",
          "country_code": "CH",
          "slug": "blonay-saint-legier",
          "canonical_path": "/cities/ch/blonay-saint-legier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0352",
          "name": "Bolligen",
          "country_code": "CH",
          "slug": "bolligen",
          "canonical_path": "/cities/ch/bolligen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0003",
          "name": "Bonstetten",
          "country_code": "CH",
          "slug": "bonstetten",
          "canonical_path": "/cities/ch/bonstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2767",
          "name": "Bottmingen",
          "country_code": "CH",
          "slug": "bottmingen",
          "canonical_path": "/cities/ch/bottmingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6404",
          "name": "Boudry",
          "country_code": "CH",
          "slug": "boudry",
          "canonical_path": "/cities/ch/boudry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5613",
          "name": "Bourg-en-Lavaux",
          "country_code": "CH",
          "slug": "bourg-en-lavaux",
          "canonical_path": "/cities/ch/bourg-en-lavaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4063",
          "name": "Bremgarten (AG)",
          "country_code": "CH",
          "slug": "bremgarten-ag",
          "canonical_path": "/cities/ch/bremgarten-ag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6002",
          "name": "Brig-Glis",
          "country_code": "CH",
          "slug": "brig-glis",
          "canonical_path": "/cities/ch/brig-glis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4095",
          "name": "Brugg",
          "country_code": "CH",
          "slug": "4095-brugg",
          "canonical_path": "/cities/ch/4095-brugg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0112",
          "name": "Bubikon",
          "country_code": "CH",
          "slug": "bubikon",
          "canonical_path": "/cities/ch/bubikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1052",
          "name": "Buchrain",
          "country_code": "CH",
          "slug": "1052-buchrain",
          "canonical_path": "/cities/ch/1052-buchrain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2661349",
          "name": "Buchs",
          "country_code": "CH",
          "slug": "buchs-sg-1724",
          "canonical_path": "/cities/ch/buchs-sg-1724/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4003",
          "name": "Buchs (AG)",
          "country_code": "CH",
          "slug": "buchs-ag",
          "canonical_path": "/cities/ch/buchs-ag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3271",
          "name": "Buchs (SG)",
          "country_code": "CH",
          "slug": "3271-buchs-sg",
          "canonical_path": "/cities/ch/3271-buchs-sg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0083",
          "name": "Buchs (ZH)",
          "country_code": "CH",
          "slug": "buchs-zh",
          "canonical_path": "/cities/ch/buchs-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0053",
          "name": "Bülach",
          "country_code": "CH",
          "slug": "bulach",
          "canonical_path": "/cities/ch/bulach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2125",
          "name": "Bulle",
          "country_code": "CH",
          "slug": "bulle",
          "canonical_path": "/cities/ch/bulle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1502",
          "name": "Buochs",
          "country_code": "CH",
          "slug": "buochs",
          "canonical_path": "/cities/ch/buochs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0404",
          "name": "Burgdorf",
          "country_code": "CH",
          "slug": "0404-burgdorf",
          "canonical_path": "/cities/ch/0404-burgdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5624",
          "name": "Bussigny",
          "country_code": "CH",
          "slug": "bussigny",
          "canonical_path": "/cities/ch/bussigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3395",
          "name": "Bütschwil-Ganterschwil",
          "country_code": "CH",
          "slug": "butschwil-ganterschwil",
          "canonical_path": "/cities/ch/butschwil-ganterschwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5226",
          "name": "Capriasca",
          "country_code": "CH",
          "slug": "capriasca",
          "canonical_path": "/cities/ch/capriasca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2661265",
          "name": "Carouge",
          "country_code": "CH",
          "slug": "carouge",
          "canonical_path": "/cities/ch/carouge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6608",
          "name": "Carouge (GE)",
          "country_code": "CH",
          "slug": "carouge-ge",
          "canonical_path": "/cities/ch/carouge-ge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1702",
          "name": "Cham",
          "country_code": "CH",
          "slug": "1702-cham",
          "canonical_path": "/cities/ch/1702-cham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2325",
          "name": "Châtel-Saint-Denis",
          "country_code": "CH",
          "slug": "chatel-saint-denis",
          "canonical_path": "/cities/ch/chatel-saint-denis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2661197",
          "name": "Chavannes",
          "country_code": "CH",
          "slug": "chavannes",
          "canonical_path": "/cities/ch/chavannes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5627",
          "name": "Chavannes-près-Renens",
          "country_code": "CH",
          "slug": "chavannes-pres-renens",
          "canonical_path": "/cities/ch/chavannes-pres-renens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5749",
          "name": "Chavornay",
          "country_code": "CH",
          "slug": "chavornay",
          "canonical_path": "/cities/ch/chavornay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6612",
          "name": "Chêne-Bougeries",
          "country_code": "CH",
          "slug": "chene-bougeries",
          "canonical_path": "/cities/ch/chene-bougeries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6613",
          "name": "Chêne-Bourg",
          "country_code": "CH",
          "slug": "chene-bourg",
          "canonical_path": "/cities/ch/chene-bourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5250",
          "name": "Chiasso",
          "country_code": "CH",
          "slug": "chiasso",
          "canonical_path": "/cities/ch/chiasso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3901",
          "name": "Chur",
          "country_code": "CH",
          "slug": "3901-chur",
          "canonical_path": "/cities/ch/3901-chur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6152",
          "name": "Collombey-Muraz",
          "country_code": "CH",
          "slug": "collombey-muraz",
          "canonical_path": "/cities/ch/collombey-muraz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6616",
          "name": "Collonge-Bellerive",
          "country_code": "CH",
          "slug": "collonge-bellerive",
          "canonical_path": "/cities/ch/collonge-bellerive/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6617",
          "name": "Cologny",
          "country_code": "CH",
          "slug": "cologny",
          "canonical_path": "/cities/ch/cologny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6023",
          "name": "Conthey",
          "country_code": "CH",
          "slug": "conthey",
          "canonical_path": "/cities/ch/conthey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2254",
          "name": "Courtepin",
          "country_code": "CH",
          "slug": "courtepin",
          "canonical_path": "/cities/ch/courtepin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6253",
          "name": "Crans-Montana",
          "country_code": "CH",
          "slug": "crans-montana",
          "canonical_path": "/cities/ch/crans-montana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5583",
          "name": "Crissier",
          "country_code": "CH",
          "slug": "crissier",
          "canonical_path": "/cities/ch/crissier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1125",
          "name": "Dagmersellen",
          "country_code": "CH",
          "slug": "dagmersellen",
          "canonical_path": "/cities/ch/dagmersellen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3851",
          "name": "Davos",
          "country_code": "CH",
          "slug": "davos",
          "canonical_path": "/cities/ch/davos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6711",
          "name": "Delémont",
          "country_code": "CH",
          "slug": "6711-delemont",
          "canonical_path": "/cities/ch/6711-delemont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2517",
          "name": "Derendingen",
          "country_code": "CH",
          "slug": "derendingen",
          "canonical_path": "/cities/ch/derendingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0086",
          "name": "Dielsdorf",
          "country_code": "CH",
          "slug": "dielsdorf",
          "canonical_path": "/cities/ch/dielsdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3234",
          "name": "Diepoldsau",
          "country_code": "CH",
          "slug": "diepoldsau",
          "canonical_path": "/cities/ch/diepoldsau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0243",
          "name": "Dietikon",
          "country_code": "CH",
          "slug": "dietikon",
          "canonical_path": "/cities/ch/dietikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0054",
          "name": "Dietlikon",
          "country_code": "CH",
          "slug": "dietlikon",
          "canonical_path": "/cities/ch/dietlikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3722",
          "name": "Domat/Ems",
          "country_code": "CH",
          "slug": "domat-ems",
          "canonical_path": "/cities/ch/domat-ems/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2473",
          "name": "Dornach",
          "country_code": "CH",
          "slug": "dornach",
          "canonical_path": "/cities/ch/dornach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0191",
          "name": "Dübendorf",
          "country_code": "CH",
          "slug": "dubendorf",
          "canonical_path": "/cities/ch/dubendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2293",
          "name": "Düdingen",
          "country_code": "CH",
          "slug": "dudingen",
          "canonical_path": "/cities/ch/dudingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2573",
          "name": "Dulliken",
          "country_code": "CH",
          "slug": "dulliken",
          "canonical_path": "/cities/ch/dulliken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0113",
          "name": "Dürnten",
          "country_code": "CH",
          "slug": "durnten",
          "canonical_path": "/cities/ch/durnten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1054",
          "name": "Ebikon",
          "country_code": "CH",
          "slug": "1054-ebikon",
          "canonical_path": "/cities/ch/1054-ebikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3352",
          "name": "Ebnat-Kappel",
          "country_code": "CH",
          "slug": "ebnat-kappel",
          "canonical_path": "/cities/ch/ebnat-kappel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5518",
          "name": "Echallens",
          "country_code": "CH",
          "slug": "echallens",
          "canonical_path": "/cities/ch/echallens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:6285791",
          "name": "Ecublens",
          "country_code": "CH",
          "slug": "ecublens",
          "canonical_path": "/cities/ch/ecublens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5635",
          "name": "Ecublens (VD)",
          "country_code": "CH",
          "slug": "ecublens-vd",
          "canonical_path": "/cities/ch/ecublens-vd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0192",
          "name": "Egg",
          "country_code": "CH",
          "slug": "egg",
          "canonical_path": "/cities/ch/egg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0055",
          "name": "Eglisau",
          "country_code": "CH",
          "slug": "eglisau",
          "canonical_path": "/cities/ch/eglisau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4411",
          "name": "Egnach",
          "country_code": "CH",
          "slug": "egnach",
          "canonical_path": "/cities/ch/egnach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1301",
          "name": "Einsiedeln",
          "country_code": "CH",
          "slug": "einsiedeln",
          "canonical_path": "/cities/ch/einsiedeln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0294",
          "name": "Elgg",
          "country_code": "CH",
          "slug": "elgg",
          "canonical_path": "/cities/ch/elgg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0056",
          "name": "Embrach",
          "country_code": "CH",
          "slug": "embrach",
          "canonical_path": "/cities/ch/embrach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1024",
          "name": "Emmen",
          "country_code": "CH",
          "slug": "1024-emmen",
          "canonical_path": "/cities/ch/1024-emmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1505",
          "name": "Ennetbürgen",
          "country_code": "CH",
          "slug": "ennetburgen",
          "canonical_path": "/cities/ch/ennetburgen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5584",
          "name": "Epalinges",
          "country_code": "CH",
          "slug": "epalinges",
          "canonical_path": "/cities/ch/epalinges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0151",
          "name": "Erlenbach (ZH)",
          "country_code": "CH",
          "slug": "erlenbach-zh",
          "canonical_path": "/cities/ch/erlenbach-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3342",
          "name": "Eschenbach (SG)",
          "country_code": "CH",
          "slug": "eschenbach-sg",
          "canonical_path": "/cities/ch/eschenbach-sg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2054",
          "name": "Estavayer",
          "country_code": "CH",
          "slug": "estavayer",
          "canonical_path": "/cities/ch/estavayer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2768",
          "name": "Ettingen",
          "country_code": "CH",
          "slug": "ettingen",
          "canonical_path": "/cities/ch/ettingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0193",
          "name": "Fällanden",
          "country_code": "CH",
          "slug": "fallanden",
          "canonical_path": "/cities/ch/fallanden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0172",
          "name": "Fehraltorf",
          "country_code": "CH",
          "slug": "fehraltorf",
          "canonical_path": "/cities/ch/fehraltorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1321",
          "name": "Feusisberg",
          "country_code": "CH",
          "slug": "feusisberg",
          "canonical_path": "/cities/ch/feusisberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4027",
          "name": "Fislisbach",
          "country_code": "CH",
          "slug": "fislisbach",
          "canonical_path": "/cities/ch/fislisbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3402",
          "name": "Flawil",
          "country_code": "CH",
          "slug": "flawil",
          "canonical_path": "/cities/ch/flawil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3292",
          "name": "Flums",
          "country_code": "CH",
          "slug": "flums",
          "canonical_path": "/cities/ch/flums/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0538",
          "name": "Fraubrunnen",
          "country_code": "CH",
          "slug": "fraubrunnen",
          "canonical_path": "/cities/ch/fraubrunnen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4566",
          "name": "Frauenfeld",
          "country_code": "CH",
          "slug": "4566-frauenfeld",
          "canonical_path": "/cities/ch/4566-frauenfeld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1322",
          "name": "Freienbach",
          "country_code": "CH",
          "slug": "freienbach",
          "canonical_path": "/cities/ch/freienbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2824",
          "name": "Frenkendorf",
          "country_code": "CH",
          "slug": "frenkendorf",
          "canonical_path": "/cities/ch/frenkendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2196",
          "name": "Fribourg",
          "country_code": "CH",
          "slug": "2196-fribourg",
          "canonical_path": "/cities/ch/2196-fribourg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4163",
          "name": "Frick",
          "country_code": "CH",
          "slug": "frick",
          "canonical_path": "/cities/ch/frick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0563",
          "name": "Frutigen",
          "country_code": "CH",
          "slug": "0563-frutigen",
          "canonical_path": "/cities/ch/0563-frutigen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6133",
          "name": "Fully",
          "country_code": "CH",
          "slug": "fully",
          "canonical_path": "/cities/ch/fully/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3442",
          "name": "Gaiserwald",
          "country_code": "CH",
          "slug": "gaiserwald",
          "canonical_path": "/cities/ch/gaiserwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1342",
          "name": "Galgenen",
          "country_code": "CH",
          "slug": "galgenen",
          "canonical_path": "/cities/ch/galgenen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5398",
          "name": "Gambarogno",
          "country_code": "CH",
          "slug": "gambarogno",
          "canonical_path": "/cities/ch/gambarogno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4029",
          "name": "Gebenstorf",
          "country_code": "CH",
          "slug": "gebenstorf",
          "canonical_path": "/cities/ch/gebenstorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2846",
          "name": "Gelterkinden",
          "country_code": "CH",
          "slug": "gelterkinden",
          "canonical_path": "/cities/ch/gelterkinden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2660646",
          "name": "Geneva",
          "country_code": "CH",
          "slug": "geneva",
          "canonical_path": "/cities/ch/geneva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6621",
          "name": "Genève",
          "country_code": "CH",
          "slug": "geneve",
          "canonical_path": "/cities/ch/geneve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2519",
          "name": "Gerlafingen",
          "country_code": "CH",
          "slug": "gerlafingen",
          "canonical_path": "/cities/ch/gerlafingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0244",
          "name": "Geroldswil",
          "country_code": "CH",
          "slug": "geroldswil",
          "canonical_path": "/cities/ch/geroldswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2236",
          "name": "Gibloux",
          "country_code": "CH",
          "slug": "gibloux",
          "canonical_path": "/cities/ch/gibloux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2660603",
          "name": "Giubiasco",
          "country_code": "CH",
          "slug": "giubiasco",
          "canonical_path": "/cities/ch/giubiasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5721",
          "name": "Gland",
          "country_code": "CH",
          "slug": "5721-gland",
          "canonical_path": "/cities/ch/5721-gland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1632",
          "name": "Glarus",
          "country_code": "CH",
          "slug": "glarus",
          "canonical_path": "/cities/ch/glarus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1630",
          "name": "Glarus Nord",
          "country_code": "CH",
          "slug": "glarus-nord",
          "canonical_path": "/cities/ch/glarus-nord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1631",
          "name": "Glarus Süd",
          "country_code": "CH",
          "slug": "glarus-sud",
          "canonical_path": "/cities/ch/glarus-sud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0058",
          "name": "Glattfelden",
          "country_code": "CH",
          "slug": "glattfelden",
          "canonical_path": "/cities/ch/glattfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3213",
          "name": "Goldach",
          "country_code": "CH",
          "slug": "goldach",
          "canonical_path": "/cities/ch/goldach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2660573",
          "name": "Goldau",
          "country_code": "CH",
          "slug": "goldau",
          "canonical_path": "/cities/ch/goldau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3341",
          "name": "Gommiswald",
          "country_code": "CH",
          "slug": "gommiswald",
          "canonical_path": "/cities/ch/gommiswald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2660549",
          "name": "Gossau",
          "country_code": "CH",
          "slug": "gossau",
          "canonical_path": "/cities/ch/gossau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3443",
          "name": "Gossau (SG)",
          "country_code": "CH",
          "slug": "3443-gossau-sg",
          "canonical_path": "/cities/ch/3443-gossau-sg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0115",
          "name": "Gossau (ZH)",
          "country_code": "CH",
          "slug": "gossau-zh",
          "canonical_path": "/cities/ch/gossau-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3273",
          "name": "Grabs",
          "country_code": "CH",
          "slug": "grabs",
          "canonical_path": "/cities/ch/grabs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4006",
          "name": "Gränichen",
          "country_code": "CH",
          "slug": "granichen",
          "canonical_path": "/cities/ch/granichen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0194",
          "name": "Greifensee",
          "country_code": "CH",
          "slug": "greifensee",
          "canonical_path": "/cities/ch/greifensee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2546",
          "name": "Grenchen",
          "country_code": "CH",
          "slug": "2546-grenchen",
          "canonical_path": "/cities/ch/2546-grenchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2579",
          "name": "Hägendorf",
          "country_code": "CH",
          "slug": "hagendorf",
          "canonical_path": "/cities/ch/hagendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6729",
          "name": "Haute-Sorne",
          "country_code": "CH",
          "slug": "haute-sorne",
          "canonical_path": "/cities/ch/haute-sorne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0928",
          "name": "Heimberg",
          "country_code": "CH",
          "slug": "heimberg",
          "canonical_path": "/cities/ch/heimberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1507",
          "name": "Hergiswil (NW)",
          "country_code": "CH",
          "slug": "hergiswil-nw",
          "canonical_path": "/cities/ch/hergiswil-nw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3001",
          "name": "Herisau",
          "country_code": "CH",
          "slug": "3001-herisau",
          "canonical_path": "/cities/ch/3001-herisau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0152",
          "name": "Herrliberg",
          "country_code": "CH",
          "slug": "herrliberg",
          "canonical_path": "/cities/ch/herrliberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0979",
          "name": "Herzogenbuchsee",
          "country_code": "CH",
          "slug": "herzogenbuchsee",
          "canonical_path": "/cities/ch/herzogenbuchsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0117",
          "name": "Hinwil",
          "country_code": "CH",
          "slug": "hinwil",
          "canonical_path": "/cities/ch/hinwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1030",
          "name": "Hitzkirch",
          "country_code": "CH",
          "slug": "hitzkirch",
          "canonical_path": "/cities/ch/hitzkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1031",
          "name": "Hochdorf",
          "country_code": "CH",
          "slug": "hochdorf",
          "canonical_path": "/cities/ch/hochdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0153",
          "name": "Hombrechtikon",
          "country_code": "CH",
          "slug": "hombrechtikon",
          "canonical_path": "/cities/ch/hombrechtikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0295",
          "name": "Horgen",
          "country_code": "CH",
          "slug": "horgen",
          "canonical_path": "/cities/ch/horgen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1058",
          "name": "Horw",
          "country_code": "CH",
          "slug": "1058-horw",
          "canonical_path": "/cities/ch/1058-horw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1703",
          "name": "Hünenberg",
          "country_code": "CH",
          "slug": "hunenberg",
          "canonical_path": "/cities/ch/hunenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0954",
          "name": "Huttwil",
          "country_code": "CH",
          "slug": "huttwil",
          "canonical_path": "/cities/ch/huttwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3619",
          "name": "Ilanz/Glion",
          "country_code": "CH",
          "slug": "ilanz-glion",
          "canonical_path": "/cities/ch/ilanz-glion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0296",
          "name": "Illnau-Effretikon",
          "country_code": "CH",
          "slug": "0296-illnau-effretikon",
          "canonical_path": "/cities/ch/0296-illnau-effretikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1364",
          "name": "Ingenbohl",
          "country_code": "CH",
          "slug": "ingenbohl",
          "canonical_path": "/cities/ch/ingenbohl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0581",
          "name": "Interlaken",
          "country_code": "CH",
          "slug": "0581-interlaken",
          "canonical_path": "/cities/ch/0581-interlaken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0362",
          "name": "Ittigen",
          "country_code": "CH",
          "slug": "ittigen",
          "canonical_path": "/cities/ch/ittigen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0540",
          "name": "Jegenstorf",
          "country_code": "CH",
          "slug": "0540-jegenstorf",
          "canonical_path": "/cities/ch/0540-jegenstorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2660221",
          "name": "Jona",
          "country_code": "CH",
          "slug": "jona",
          "canonical_path": "/cities/ch/jona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4252",
          "name": "Kaiseraugst",
          "country_code": "CH",
          "slug": "kaiseraugst",
          "canonical_path": "/cities/ch/kaiseraugst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3313",
          "name": "Kaltbrunn",
          "country_code": "CH",
          "slug": "kaltbrunn",
          "canonical_path": "/cities/ch/kaltbrunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1404",
          "name": "Kerns",
          "country_code": "CH",
          "slug": "kerns",
          "canonical_path": "/cities/ch/kerns/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2265",
          "name": "Kerzers",
          "country_code": "CH",
          "slug": "kerzers",
          "canonical_path": "/cities/ch/kerzers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0135",
          "name": "Kilchberg (ZH)",
          "country_code": "CH",
          "slug": "kilchberg-zh",
          "canonical_path": "/cities/ch/kilchberg-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0412",
          "name": "Kirchberg (BE)",
          "country_code": "CH",
          "slug": "kirchberg-be",
          "canonical_path": "/cities/ch/kirchberg-be/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3392",
          "name": "Kirchberg (SG)",
          "country_code": "CH",
          "slug": "kirchberg-sg",
          "canonical_path": "/cities/ch/kirchberg-sg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0062",
          "name": "Kloten",
          "country_code": "CH",
          "slug": "kloten",
          "canonical_path": "/cities/ch/kloten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4276",
          "name": "Kölliken",
          "country_code": "CH",
          "slug": "kolliken",
          "canonical_path": "/cities/ch/kolliken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0355",
          "name": "Köniz",
          "country_code": "CH",
          "slug": "0355-koniz",
          "canonical_path": "/cities/ch/0355-koniz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0612",
          "name": "Konolfingen",
          "country_code": "CH",
          "slug": "konolfingen",
          "canonical_path": "/cities/ch/konolfingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4671",
          "name": "Kreuzlingen",
          "country_code": "CH",
          "slug": "4671-kreuzlingen",
          "canonical_path": "/cities/ch/4671-kreuzlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1059",
          "name": "Kriens",
          "country_code": "CH",
          "slug": "1059-kriens",
          "canonical_path": "/cities/ch/1059-kriens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2660089",
          "name": "Küsnacht",
          "country_code": "CH",
          "slug": "kusnacht",
          "canonical_path": "/cities/ch/kusnacht/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0154",
          "name": "Küsnacht (ZH)",
          "country_code": "CH",
          "slug": "kusnacht-zh",
          "canonical_path": "/cities/ch/kusnacht-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1331",
          "name": "Küssnacht (SZ)",
          "country_code": "CH",
          "slug": "kussnacht-sz",
          "canonical_path": "/cities/ch/kussnacht-sz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4008",
          "name": "Küttigen",
          "country_code": "CH",
          "slug": "kuttigen",
          "canonical_path": "/cities/ch/kuttigen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6421",
          "name": "La Chaux-de-Fonds",
          "country_code": "CH",
          "slug": "6421-la-chaux-de-fonds",
          "canonical_path": "/cities/ch/6421-la-chaux-de-fonds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6417",
          "name": "La Grande Béroche",
          "country_code": "CH",
          "slug": "la-grande-beroche",
          "canonical_path": "/cities/ch/la-grande-beroche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6461",
          "name": "La Tène",
          "country_code": "CH",
          "slug": "la-tene",
          "canonical_path": "/cities/ch/la-tene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5889",
          "name": "La Tour-de-Peilz",
          "country_code": "CH",
          "slug": "la-tour-de-peilz",
          "canonical_path": "/cities/ch/la-tour-de-peilz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1344",
          "name": "Lachen",
          "country_code": "CH",
          "slug": "lachen",
          "canonical_path": "/cities/ch/lachen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6628",
          "name": "Lancy",
          "country_code": "CH",
          "slug": "lancy",
          "canonical_path": "/cities/ch/lancy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3955",
          "name": "Landquart",
          "country_code": "CH",
          "slug": "landquart",
          "canonical_path": "/cities/ch/landquart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0329",
          "name": "Langenthal",
          "country_code": "CH",
          "slug": "0329-langenthal",
          "canonical_path": "/cities/ch/0329-langenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0136",
          "name": "Langnau am Albis",
          "country_code": "CH",
          "slug": "langnau-am-albis",
          "canonical_path": "/cities/ch/langnau-am-albis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0902",
          "name": "Langnau im Emmental",
          "country_code": "CH",
          "slug": "langnau-im-emmental",
          "canonical_path": "/cities/ch/langnau-im-emmental/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2787",
          "name": "Laufen",
          "country_code": "CH",
          "slug": "laufen",
          "canonical_path": "/cities/ch/laufen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5586",
          "name": "Lausanne",
          "country_code": "CH",
          "slug": "5586-lausanne",
          "canonical_path": "/cities/ch/5586-lausanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2828",
          "name": "Lausen",
          "country_code": "CH",
          "slug": "lausen",
          "canonical_path": "/cities/ch/lausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6623",
          "name": "Le Grand-Saconnex",
          "country_code": "CH",
          "slug": "le-grand-saconnex",
          "canonical_path": "/cities/ch/le-grand-saconnex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6436",
          "name": "Le Locle",
          "country_code": "CH",
          "slug": "le-locle",
          "canonical_path": "/cities/ch/le-locle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5587",
          "name": "Le Mont-sur-Lausanne",
          "country_code": "CH",
          "slug": "le-mont-sur-lausanne",
          "canonical_path": "/cities/ch/le-mont-sur-lausanne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0387",
          "name": "Lengnau (BE)",
          "country_code": "CH",
          "slug": "lengnau-be",
          "canonical_path": "/cities/ch/lengnau-be/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4201",
          "name": "Lenzburg",
          "country_code": "CH",
          "slug": "4201-lenzburg",
          "canonical_path": "/cities/ch/4201-lenzburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:7779000",
          "name": "Les Avanchets",
          "country_code": "CH",
          "slug": "les-avanchets",
          "canonical_path": "/cities/ch/les-avanchets/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2829",
          "name": "Liestal",
          "country_code": "CH",
          "slug": "2829-liestal",
          "canonical_path": "/cities/ch/2829-liestal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0176",
          "name": "Lindau",
          "country_code": "CH",
          "slug": "lindau",
          "canonical_path": "/cities/ch/lindau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2659873",
          "name": "Littau",
          "country_code": "CH",
          "slug": "littau",
          "canonical_path": "/cities/ch/littau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5113",
          "name": "Locarno",
          "country_code": "CH",
          "slug": "5113-locarno",
          "canonical_path": "/cities/ch/5113-locarno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5115",
          "name": "Losone",
          "country_code": "CH",
          "slug": "losone",
          "canonical_path": "/cities/ch/losone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5192",
          "name": "Lugano",
          "country_code": "CH",
          "slug": "lugano",
          "canonical_path": "/cities/ch/lugano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5606",
          "name": "Lutry",
          "country_code": "CH",
          "slug": "lutry",
          "canonical_path": "/cities/ch/lutry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1061",
          "name": "Luzern",
          "country_code": "CH",
          "slug": "1061-luzern",
          "canonical_path": "/cities/ch/1061-luzern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0306",
          "name": "Lyss",
          "country_code": "CH",
          "slug": "lyss",
          "canonical_path": "/cities/ch/lyss/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1062",
          "name": "Malters",
          "country_code": "CH",
          "slug": "malters",
          "canonical_path": "/cities/ch/malters/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0155",
          "name": "Männedorf",
          "country_code": "CH",
          "slug": "mannedorf",
          "canonical_path": "/cities/ch/mannedorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2206",
          "name": "Marly",
          "country_code": "CH",
          "slug": "marly",
          "canonical_path": "/cities/ch/marly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6136",
          "name": "Martigny",
          "country_code": "CH",
          "slug": "6136-martigny",
          "canonical_path": "/cities/ch/6136-martigny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2659748",
          "name": "Martigny-Ville",
          "country_code": "CH",
          "slug": "martigny-ville",
          "canonical_path": "/cities/ch/martigny-ville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5196",
          "name": "Massagno",
          "country_code": "CH",
          "slug": "massagno",
          "canonical_path": "/cities/ch/massagno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0195",
          "name": "Maur",
          "country_code": "CH",
          "slug": "maur",
          "canonical_path": "/cities/ch/maur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1063",
          "name": "Meggen",
          "country_code": "CH",
          "slug": "meggen",
          "canonical_path": "/cities/ch/meggen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0156",
          "name": "Meilen",
          "country_code": "CH",
          "slug": "meilen",
          "canonical_path": "/cities/ch/meilen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4033",
          "name": "Mellingen",
          "country_code": "CH",
          "slug": "mellingen",
          "canonical_path": "/cities/ch/mellingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3293",
          "name": "Mels",
          "country_code": "CH",
          "slug": "mels",
          "canonical_path": "/cities/ch/mels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5254",
          "name": "Mendrisio",
          "country_code": "CH",
          "slug": "5254-mendrisio",
          "canonical_path": "/cities/ch/5254-mendrisio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4139",
          "name": "Menziken",
          "country_code": "CH",
          "slug": "menziken",
          "canonical_path": "/cities/ch/menziken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0009",
          "name": "Mettmenstetten",
          "country_code": "CH",
          "slug": "mettmenstetten",
          "canonical_path": "/cities/ch/mettmenstetten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6630",
          "name": "Meyrin",
          "country_code": "CH",
          "slug": "meyrin",
          "canonical_path": "/cities/ch/meyrin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6416",
          "name": "Milvignes",
          "country_code": "CH",
          "slug": "milvignes",
          "canonical_path": "/cities/ch/milvignes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5118",
          "name": "Minusio",
          "country_code": "CH",
          "slug": "minusio",
          "canonical_path": "/cities/ch/minusio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4254",
          "name": "Möhlin",
          "country_code": "CH",
          "slug": "mohlin",
          "canonical_path": "/cities/ch/mohlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6153",
          "name": "Monthey",
          "country_code": "CH",
          "slug": "6153-monthey",
          "canonical_path": "/cities/ch/6153-monthey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5886",
          "name": "Montreux",
          "country_code": "CH",
          "slug": "5886-montreux",
          "canonical_path": "/cities/ch/5886-montreux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5642",
          "name": "Morges",
          "country_code": "CH",
          "slug": "5642-morges",
          "canonical_path": "/cities/ch/5642-morges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5678",
          "name": "Moudon",
          "country_code": "CH",
          "slug": "moudon",
          "canonical_path": "/cities/ch/moudon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0546",
          "name": "Münchenbuchsee",
          "country_code": "CH",
          "slug": "munchenbuchsee",
          "canonical_path": "/cities/ch/munchenbuchsee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2769",
          "name": "Münchenstein",
          "country_code": "CH",
          "slug": "munchenstein",
          "canonical_path": "/cities/ch/munchenstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4746",
          "name": "Münchwilen (TG)",
          "country_code": "CH",
          "slug": "munchwilen-tg",
          "canonical_path": "/cities/ch/munchwilen-tg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0616",
          "name": "Münsingen",
          "country_code": "CH",
          "slug": "munsingen",
          "canonical_path": "/cities/ch/munsingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2659532",
          "name": "Muri",
          "country_code": "CH",
          "slug": "muri-be-246",
          "canonical_path": "/cities/ch/muri-be-246/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4236",
          "name": "Muri (AG)",
          "country_code": "CH",
          "slug": "muri-ag",
          "canonical_path": "/cities/ch/muri-ag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0356",
          "name": "Muri bei Bern",
          "country_code": "CH",
          "slug": "muri-bei-bern",
          "canonical_path": "/cities/ch/muri-bei-bern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2275",
          "name": "Murten",
          "country_code": "CH",
          "slug": "murten",
          "canonical_path": "/cities/ch/murten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2659529",
          "name": "Murten/Morat",
          "country_code": "CH",
          "slug": "murten-morat",
          "canonical_path": "/cities/ch/murten-morat/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2770",
          "name": "Muttenz",
          "country_code": "CH",
          "slug": "2770-muttenz",
          "canonical_path": "/cities/ch/2770-muttenz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6007",
          "name": "Naters",
          "country_code": "CH",
          "slug": "naters",
          "canonical_path": "/cities/ch/naters/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3396",
          "name": "Neckertal",
          "country_code": "CH",
          "slug": "neckertal",
          "canonical_path": "/cities/ch/neckertal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0223",
          "name": "Neftenbach",
          "country_code": "CH",
          "slug": "neftenbach",
          "canonical_path": "/cities/ch/neftenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6024",
          "name": "Nendaz",
          "country_code": "CH",
          "slug": "nendaz",
          "canonical_path": "/cities/ch/nendaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6458",
          "name": "Neuchâtel",
          "country_code": "CH",
          "slug": "6458-neuchatel",
          "canonical_path": "/cities/ch/6458-neuchatel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0670",
          "name": "Neuenegg",
          "country_code": "CH",
          "slug": "neuenegg",
          "canonical_path": "/cities/ch/neuenegg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4034",
          "name": "Neuenhof",
          "country_code": "CH",
          "slug": "neuenhof",
          "canonical_path": "/cities/ch/neuenhof/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1093",
          "name": "Neuenkirch",
          "country_code": "CH",
          "slug": "neuenkirch",
          "canonical_path": "/cities/ch/neuenkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2659485",
          "name": "Neuhausen",
          "country_code": "CH",
          "slug": "neuhausen",
          "canonical_path": "/cities/ch/neuhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2937",
          "name": "Neuhausen am Rheinfall",
          "country_code": "CH",
          "slug": "neuhausen-am-rheinfall",
          "canonical_path": "/cities/ch/neuhausen-am-rheinfall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0743",
          "name": "Nidau",
          "country_code": "CH",
          "slug": "nidau",
          "canonical_path": "/cities/ch/nidau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0981",
          "name": "Niederbipp",
          "country_code": "CH",
          "slug": "niederbipp",
          "canonical_path": "/cities/ch/niederbipp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0089",
          "name": "Niederglatt",
          "country_code": "CH",
          "slug": "niederglatt",
          "canonical_path": "/cities/ch/niederglatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0090",
          "name": "Niederhasli",
          "country_code": "CH",
          "slug": "niederhasli",
          "canonical_path": "/cities/ch/niederhasli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0064",
          "name": "Nürensdorf",
          "country_code": "CH",
          "slug": "nurensdorf",
          "canonical_path": "/cities/ch/nurensdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5724",
          "name": "Nyon",
          "country_code": "CH",
          "slug": "5724-nyon",
          "canonical_path": "/cities/ch/5724-nyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1706",
          "name": "Oberägeri",
          "country_code": "CH",
          "slug": "oberageri",
          "canonical_path": "/cities/ch/oberageri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0245",
          "name": "Oberengstringen",
          "country_code": "CH",
          "slug": "oberengstringen",
          "canonical_path": "/cities/ch/oberengstringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4010",
          "name": "Oberentfelden",
          "country_code": "CH",
          "slug": "oberentfelden",
          "canonical_path": "/cities/ch/oberentfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0092",
          "name": "Oberglatt",
          "country_code": "CH",
          "slug": "oberglatt",
          "canonical_path": "/cities/ch/oberglatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1095",
          "name": "Oberkirch",
          "country_code": "CH",
          "slug": "oberkirch",
          "canonical_path": "/cities/ch/oberkirch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0137",
          "name": "Oberrieden",
          "country_code": "CH",
          "slug": "oberrieden",
          "canonical_path": "/cities/ch/oberrieden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3254",
          "name": "Oberriet (SG)",
          "country_code": "CH",
          "slug": "oberriet-sg",
          "canonical_path": "/cities/ch/oberriet-sg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4038",
          "name": "Obersiggenthal",
          "country_code": "CH",
          "slug": "obersiggenthal",
          "canonical_path": "/cities/ch/obersiggenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3407",
          "name": "Oberuzwil",
          "country_code": "CH",
          "slug": "oberuzwil",
          "canonical_path": "/cities/ch/oberuzwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2659321",
          "name": "Oberwil",
          "country_code": "CH",
          "slug": "oberwil",
          "canonical_path": "/cities/ch/oberwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2771",
          "name": "Oberwil (BL)",
          "country_code": "CH",
          "slug": "oberwil-bl",
          "canonical_path": "/cities/ch/oberwil-bl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0010",
          "name": "Obfelden",
          "country_code": "CH",
          "slug": "obfelden",
          "canonical_path": "/cities/ch/obfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2407",
          "name": "Oensingen",
          "country_code": "CH",
          "slug": "oensingen",
          "canonical_path": "/cities/ch/oensingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0157",
          "name": "Oetwil am See",
          "country_code": "CH",
          "slug": "oetwil-am-see",
          "canonical_path": "/cities/ch/oetwil-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4280",
          "name": "Oftringen",
          "country_code": "CH",
          "slug": "oftringen",
          "canonical_path": "/cities/ch/oftringen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5409",
          "name": "Ollon",
          "country_code": "CH",
          "slug": "ollon",
          "canonical_path": "/cities/ch/ollon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2581",
          "name": "Olten",
          "country_code": "CH",
          "slug": "2581-olten",
          "canonical_path": "/cities/ch/2581-olten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6631",
          "name": "Onex",
          "country_code": "CH",
          "slug": "onex",
          "canonical_path": "/cities/ch/onex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0066",
          "name": "Opfikon",
          "country_code": "CH",
          "slug": "opfikon",
          "canonical_path": "/cities/ch/opfikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5757",
          "name": "Orbe",
          "country_code": "CH",
          "slug": "orbe",
          "canonical_path": "/cities/ch/orbe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5805",
          "name": "Oron",
          "country_code": "CH",
          "slug": "oron",
          "canonical_path": "/cities/ch/oron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0363",
          "name": "Ostermundigen",
          "country_code": "CH",
          "slug": "ostermundigen",
          "canonical_path": "/cities/ch/ostermundigen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5822",
          "name": "Payerne",
          "country_code": "CH",
          "slug": "5822-payerne",
          "canonical_path": "/cities/ch/5822-payerne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2659227",
          "name": "Peseux",
          "country_code": "CH",
          "slug": "peseux",
          "canonical_path": "/cities/ch/peseux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0177",
          "name": "Pfäffikon",
          "country_code": "CH",
          "slug": "pfaffikon",
          "canonical_path": "/cities/ch/pfaffikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0392",
          "name": "Pieterlen",
          "country_code": "CH",
          "slug": "pieterlen",
          "canonical_path": "/cities/ch/pieterlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6633",
          "name": "Plan-les-Ouates",
          "country_code": "CH",
          "slug": "plan-les-ouates",
          "canonical_path": "/cities/ch/plan-les-ouates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6800",
          "name": "Porrentruy",
          "country_code": "CH",
          "slug": "6800-porrentruy",
          "canonical_path": "/cities/ch/6800-porrentruy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2831",
          "name": "Pratteln",
          "country_code": "CH",
          "slug": "2831-pratteln",
          "canonical_path": "/cities/ch/2831-pratteln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5643",
          "name": "Préverenges",
          "country_code": "CH",
          "slug": "preverenges",
          "canonical_path": "/cities/ch/preverenges/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5589",
          "name": "Prilly",
          "country_code": "CH",
          "slug": "prilly",
          "canonical_path": "/cities/ch/prilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5590",
          "name": "Pully",
          "country_code": "CH",
          "slug": "5590-pully",
          "canonical_path": "/cities/ch/5590-pully/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2659099",
          "name": "Rapperswil",
          "country_code": "CH",
          "slug": "rapperswil",
          "canonical_path": "/cities/ch/rapperswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3340",
          "name": "Rapperswil-Jona",
          "country_code": "CH",
          "slug": "3340-rapperswil-jona",
          "canonical_path": "/cities/ch/3340-rapperswil-jona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3255",
          "name": "Rebstein",
          "country_code": "CH",
          "slug": "rebstein",
          "canonical_path": "/cities/ch/rebstein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0096",
          "name": "Regensdorf",
          "country_code": "CH",
          "slug": "regensdorf",
          "canonical_path": "/cities/ch/regensdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1140",
          "name": "Reiden",
          "country_code": "CH",
          "slug": "reiden",
          "canonical_path": "/cities/ch/reiden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:6698588",
          "name": "Reinach",
          "country_code": "CH",
          "slug": "reinach-bl-1301",
          "canonical_path": "/cities/ch/reinach-bl-1301/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4141",
          "name": "Reinach (AG)",
          "country_code": "CH",
          "slug": "reinach-ag",
          "canonical_path": "/cities/ch/reinach-ag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2773",
          "name": "Reinach (BL)",
          "country_code": "CH",
          "slug": "2773-reinach-bl",
          "canonical_path": "/cities/ch/2773-reinach-bl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2659070",
          "name": "Renens",
          "country_code": "CH",
          "slug": "renens",
          "canonical_path": "/cities/ch/renens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5591",
          "name": "Renens (VD)",
          "country_code": "CH",
          "slug": "renens-vd",
          "canonical_path": "/cities/ch/renens-vd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4258",
          "name": "Rheinfelden",
          "country_code": "CH",
          "slug": "4258-rheinfelden",
          "canonical_path": "/cities/ch/4258-rheinfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0138",
          "name": "Richterswil",
          "country_code": "CH",
          "slug": "richterswil",
          "canonical_path": "/cities/ch/richterswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2703",
          "name": "Riehen",
          "country_code": "CH",
          "slug": "riehen",
          "canonical_path": "/cities/ch/riehen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1707",
          "name": "Risch",
          "country_code": "CH",
          "slug": "risch",
          "canonical_path": "/cities/ch/risch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5861",
          "name": "Rolle",
          "country_code": "CH",
          "slug": "rolle",
          "canonical_path": "/cities/ch/rolle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4436",
          "name": "Romanshorn",
          "country_code": "CH",
          "slug": "romanshorn",
          "canonical_path": "/cities/ch/romanshorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2096",
          "name": "Romont (FR)",
          "country_code": "CH",
          "slug": "romont-fr",
          "canonical_path": "/cities/ch/romont-fr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1065",
          "name": "Root",
          "country_code": "CH",
          "slug": "root",
          "canonical_path": "/cities/ch/root/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3215",
          "name": "Rorschach",
          "country_code": "CH",
          "slug": "3215-rorschach",
          "canonical_path": "/cities/ch/3215-rorschach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3216",
          "name": "Rorschacherberg",
          "country_code": "CH",
          "slug": "rorschacherberg",
          "canonical_path": "/cities/ch/rorschacherberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1040",
          "name": "Rothenburg",
          "country_code": "CH",
          "slug": "rothenburg",
          "canonical_path": "/cities/ch/rothenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4282",
          "name": "Rothrist",
          "country_code": "CH",
          "slug": "rothrist",
          "canonical_path": "/cities/ch/rothrist/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2658950",
          "name": "Rotkreuz",
          "country_code": "CH",
          "slug": "rotkreuz",
          "canonical_path": "/cities/ch/rotkreuz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0097",
          "name": "Rümlang",
          "country_code": "CH",
          "slug": "rumlang",
          "canonical_path": "/cities/ch/rumlang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4206",
          "name": "Rupperswil",
          "country_code": "CH",
          "slug": "rupperswil",
          "canonical_path": "/cities/ch/rupperswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0139",
          "name": "Rüschlikon",
          "country_code": "CH",
          "slug": "ruschlikon",
          "canonical_path": "/cities/ch/ruschlikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1098",
          "name": "Ruswil",
          "country_code": "CH",
          "slug": "ruswil",
          "canonical_path": "/cities/ch/ruswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2658909",
          "name": "Rüti",
          "country_code": "CH",
          "slug": "ruti",
          "canonical_path": "/cities/ch/ruti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0118",
          "name": "Rüti (ZH)",
          "country_code": "CH",
          "slug": "ruti-zh",
          "canonical_path": "/cities/ch/ruti-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0843",
          "name": "Saanen",
          "country_code": "CH",
          "slug": "saanen",
          "canonical_path": "/cities/ch/saanen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1406",
          "name": "Sachseln",
          "country_code": "CH",
          "slug": "sachseln",
          "canonical_path": "/cities/ch/sachseln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0443",
          "name": "Saint-Imier",
          "country_code": "CH",
          "slug": "0443-saint-imier",
          "canonical_path": "/cities/ch/0443-saint-imier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5646",
          "name": "Saint-Prex",
          "country_code": "CH",
          "slug": "saint-prex",
          "canonical_path": "/cities/ch/saint-prex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5648",
          "name": "Saint-Sulpice (VD)",
          "country_code": "CH",
          "slug": "saint-sulpice-vd",
          "canonical_path": "/cities/ch/saint-sulpice-vd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5568",
          "name": "Sainte-Croix",
          "country_code": "CH",
          "slug": "sainte-croix",
          "canonical_path": "/cities/ch/sainte-croix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2658822",
          "name": "Sankt Gallen",
          "country_code": "CH",
          "slug": "sankt-gallen",
          "canonical_path": "/cities/ch/sankt-gallen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3296",
          "name": "Sargans",
          "country_code": "CH",
          "slug": "3296-sargans",
          "canonical_path": "/cities/ch/3296-sargans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1407",
          "name": "Sarnen",
          "country_code": "CH",
          "slug": "sarnen",
          "canonical_path": "/cities/ch/sarnen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6265",
          "name": "Savièse",
          "country_code": "CH",
          "slug": "saviese",
          "canonical_path": "/cities/ch/saviese/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6141",
          "name": "Saxon",
          "country_code": "CH",
          "slug": "saxon",
          "canonical_path": "/cities/ch/saxon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2939",
          "name": "Schaffhausen",
          "country_code": "CH",
          "slug": "2939-schaffhausen",
          "canonical_path": "/cities/ch/2939-schaffhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1213",
          "name": "Schattdorf",
          "country_code": "CH",
          "slug": "schattdorf",
          "canonical_path": "/cities/ch/schattdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0247",
          "name": "Schlieren",
          "country_code": "CH",
          "slug": "schlieren",
          "canonical_path": "/cities/ch/schlieren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2583",
          "name": "Schönenwerd",
          "country_code": "CH",
          "slug": "schonenwerd",
          "canonical_path": "/cities/ch/schonenwerd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1346",
          "name": "Schübelbach",
          "country_code": "CH",
          "slug": "schubelbach",
          "canonical_path": "/cities/ch/schubelbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0855",
          "name": "Schwarzenburg",
          "country_code": "CH",
          "slug": "schwarzenburg",
          "canonical_path": "/cities/ch/schwarzenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3112",
          "name": "Schwende-Rüte",
          "country_code": "CH",
          "slug": "schwende-rute",
          "canonical_path": "/cities/ch/schwende-rute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0197",
          "name": "Schwerzenbach",
          "country_code": "CH",
          "slug": "schwerzenbach",
          "canonical_path": "/cities/ch/schwerzenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1372",
          "name": "Schwyz",
          "country_code": "CH",
          "slug": "schwyz",
          "canonical_path": "/cities/ch/schwyz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:6295531",
          "name": "Seen (Kreis 3)",
          "country_code": "CH",
          "slug": "seen-kreis-3",
          "canonical_path": "/cities/ch/seen-kreis-3/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3274",
          "name": "Sennwald",
          "country_code": "CH",
          "slug": "sennwald",
          "canonical_path": "/cities/ch/sennwald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4209",
          "name": "Seon",
          "country_code": "CH",
          "slug": "seon",
          "canonical_path": "/cities/ch/seon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0227",
          "name": "Seuzach",
          "country_code": "CH",
          "slug": "0227-seuzach",
          "canonical_path": "/cities/ch/0227-seuzach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3275",
          "name": "Sevelen",
          "country_code": "CH",
          "slug": "sevelen",
          "canonical_path": "/cities/ch/sevelen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6248",
          "name": "Sierre",
          "country_code": "CH",
          "slug": "6248-sierre",
          "canonical_path": "/cities/ch/6248-sierre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6266",
          "name": "Sion",
          "country_code": "CH",
          "slug": "6266-sion",
          "canonical_path": "/cities/ch/6266-sion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4761",
          "name": "Sirnach",
          "country_code": "CH",
          "slug": "sirnach",
          "canonical_path": "/cities/ch/sirnach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2861",
          "name": "Sissach",
          "country_code": "CH",
          "slug": "sissach",
          "canonical_path": "/cities/ch/sissach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2658576",
          "name": "Sitten",
          "country_code": "CH",
          "slug": "sitten",
          "canonical_path": "/cities/ch/sitten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2601",
          "name": "Solothurn",
          "country_code": "CH",
          "slug": "2601-solothurn",
          "canonical_path": "/cities/ch/2601-solothurn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0768",
          "name": "Spiez",
          "country_code": "CH",
          "slug": "0768-spiez",
          "canonical_path": "/cities/ch/0768-spiez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4040",
          "name": "Spreitenbach",
          "country_code": "CH",
          "slug": "spreitenbach",
          "canonical_path": "/cities/ch/spreitenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3203",
          "name": "St. Gallen",
          "country_code": "CH",
          "slug": "3203-st-gallen",
          "canonical_path": "/cities/ch/3203-st-gallen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3236",
          "name": "St. Margrethen",
          "country_code": "CH",
          "slug": "st-margrethen",
          "canonical_path": "/cities/ch/st-margrethen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:6295520",
          "name": "Stadt Winterthur (Kreis 1)",
          "country_code": "CH",
          "slug": "stadt-winterthur-kreis-1",
          "canonical_path": "/cities/ch/stadt-winterthur-kreis-1/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0158",
          "name": "Stäfa",
          "country_code": "CH",
          "slug": "stafa",
          "canonical_path": "/cities/ch/stafa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1509",
          "name": "Stans",
          "country_code": "CH",
          "slug": "stans",
          "canonical_path": "/cities/ch/stans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0939",
          "name": "Steffisburg",
          "country_code": "CH",
          "slug": "steffisburg",
          "canonical_path": "/cities/ch/steffisburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1708",
          "name": "Steinhausen",
          "country_code": "CH",
          "slug": "steinhausen",
          "canonical_path": "/cities/ch/steinhausen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4285",
          "name": "Strengelbach",
          "country_code": "CH",
          "slug": "strengelbach",
          "canonical_path": "/cities/ch/strengelbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4012",
          "name": "Suhr",
          "country_code": "CH",
          "slug": "suhr",
          "canonical_path": "/cities/ch/suhr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0957",
          "name": "Sumiswald",
          "country_code": "CH",
          "slug": "sumiswald",
          "canonical_path": "/cities/ch/sumiswald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1103",
          "name": "Sursee",
          "country_code": "CH",
          "slug": "sursee",
          "canonical_path": "/cities/ch/sursee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2306",
          "name": "Tafers",
          "country_code": "CH",
          "slug": "tafers",
          "canonical_path": "/cities/ch/tafers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4696",
          "name": "Tägerwilen",
          "country_code": "CH",
          "slug": "tagerwilen",
          "canonical_path": "/cities/ch/tagerwilen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3024",
          "name": "Teufen (AR)",
          "country_code": "CH",
          "slug": "teufen-ar",
          "canonical_path": "/cities/ch/teufen-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3237",
          "name": "Thal",
          "country_code": "CH",
          "slug": "thal",
          "canonical_path": "/cities/ch/thal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0141",
          "name": "Thalwil",
          "country_code": "CH",
          "slug": "thalwil",
          "canonical_path": "/cities/ch/thalwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2920",
          "name": "Thayngen",
          "country_code": "CH",
          "slug": "thayngen",
          "canonical_path": "/cities/ch/thayngen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2775",
          "name": "Therwil",
          "country_code": "CH",
          "slug": "therwil",
          "canonical_path": "/cities/ch/therwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6640",
          "name": "Thônex",
          "country_code": "CH",
          "slug": "thonex",
          "canonical_path": "/cities/ch/thonex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0942",
          "name": "Thun",
          "country_code": "CH",
          "slug": "thun",
          "canonical_path": "/cities/ch/thun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2500",
          "name": "Trimbach",
          "country_code": "CH",
          "slug": "trimbach",
          "canonical_path": "/cities/ch/trimbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6156",
          "name": "Troistorrents",
          "country_code": "CH",
          "slug": "troistorrents",
          "canonical_path": "/cities/ch/troistorrents/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0228",
          "name": "Turbenthal",
          "country_code": "CH",
          "slug": "turbenthal",
          "canonical_path": "/cities/ch/turbenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0944",
          "name": "Uetendorf",
          "country_code": "CH",
          "slug": "uetendorf",
          "canonical_path": "/cities/ch/uetendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0159",
          "name": "Uetikon am See",
          "country_code": "CH",
          "slug": "uetikon-am-see",
          "canonical_path": "/cities/ch/uetikon-am-see/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0248",
          "name": "Uitikon",
          "country_code": "CH",
          "slug": "uitikon",
          "canonical_path": "/cities/ch/uitikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1709",
          "name": "Unterägeri",
          "country_code": "CH",
          "slug": "unterageri",
          "canonical_path": "/cities/ch/unterageri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0593",
          "name": "Unterseen",
          "country_code": "CH",
          "slug": "0593-unterseen",
          "canonical_path": "/cities/ch/0593-unterseen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4044",
          "name": "Untersiggenthal",
          "country_code": "CH",
          "slug": "untersiggenthal",
          "canonical_path": "/cities/ch/untersiggenthal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0250",
          "name": "Urdorf",
          "country_code": "CH",
          "slug": "urdorf",
          "canonical_path": "/cities/ch/urdorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0551",
          "name": "Urtenen-Schönbühl",
          "country_code": "CH",
          "slug": "urtenen-schonbuhl",
          "canonical_path": "/cities/ch/urtenen-schonbuhl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0198",
          "name": "Uster",
          "country_code": "CH",
          "slug": "0198-uster",
          "canonical_path": "/cities/ch/0198-uster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3339",
          "name": "Uznach",
          "country_code": "CH",
          "slug": "uznach",
          "canonical_path": "/cities/ch/uznach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3408",
          "name": "Uzwil",
          "country_code": "CH",
          "slug": "uzwil",
          "canonical_path": "/cities/ch/uzwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6037",
          "name": "Val de Bagnes",
          "country_code": "CH",
          "slug": "val-de-bagnes",
          "canonical_path": "/cities/ch/val-de-bagnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6487",
          "name": "Val-de-Ruz",
          "country_code": "CH",
          "slug": "val-de-ruz",
          "canonical_path": "/cities/ch/val-de-ruz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6512",
          "name": "Val-de-Travers",
          "country_code": "CH",
          "slug": "val-de-travers",
          "canonical_path": "/cities/ch/val-de-travers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0359",
          "name": "Vechigen",
          "country_code": "CH",
          "slug": "vechigen",
          "canonical_path": "/cities/ch/vechigen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6643",
          "name": "Vernier",
          "country_code": "CH",
          "slug": "vernier",
          "canonical_path": "/cities/ch/vernier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6644",
          "name": "Versoix",
          "country_code": "CH",
          "slug": "versoix",
          "canonical_path": "/cities/ch/versoix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6025",
          "name": "Vétroz",
          "country_code": "CH",
          "slug": "vetroz",
          "canonical_path": "/cities/ch/vetroz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5890",
          "name": "Vevey",
          "country_code": "CH",
          "slug": "5890-vevey",
          "canonical_path": "/cities/ch/5890-vevey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6645",
          "name": "Veyrier",
          "country_code": "CH",
          "slug": "veyrier",
          "canonical_path": "/cities/ch/veyrier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2228",
          "name": "Villars-sur-Glâne",
          "country_code": "CH",
          "slug": "villars-sur-glane",
          "canonical_path": "/cities/ch/villars-sur-glane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5414",
          "name": "Villeneuve (VD)",
          "country_code": "CH",
          "slug": "villeneuve-vd",
          "canonical_path": "/cities/ch/villeneuve-vd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4080",
          "name": "Villmergen",
          "country_code": "CH",
          "slug": "villmergen",
          "canonical_path": "/cities/ch/villmergen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3297",
          "name": "Vilters-Wangs",
          "country_code": "CH",
          "slug": "vilters-wangs",
          "canonical_path": "/cities/ch/vilters-wangs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6297",
          "name": "Visp",
          "country_code": "CH",
          "slug": "visp",
          "canonical_path": "/cities/ch/visp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0199",
          "name": "Volketswil",
          "country_code": "CH",
          "slug": "volketswil",
          "canonical_path": "/cities/ch/volketswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0293",
          "name": "Wädenswil",
          "country_code": "CH",
          "slug": "wadenswil",
          "canonical_path": "/cities/ch/wadenswil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0120",
          "name": "Wald (ZH)",
          "country_code": "CH",
          "slug": "wald-zh",
          "canonical_path": "/cities/ch/wald-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3298",
          "name": "Walenstadt",
          "country_code": "CH",
          "slug": "walenstadt",
          "canonical_path": "/cities/ch/walenstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0069",
          "name": "Wallisellen",
          "country_code": "CH",
          "slug": "wallisellen",
          "canonical_path": "/cities/ch/wallisellen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1349",
          "name": "Wangen (SZ)",
          "country_code": "CH",
          "slug": "wangen-sz",
          "canonical_path": "/cities/ch/wangen-sz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2586",
          "name": "Wangen bei Olten",
          "country_code": "CH",
          "slug": "wangen-bei-olten",
          "canonical_path": "/cities/ch/wangen-bei-olten/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0200",
          "name": "Wangen-Brüttisellen",
          "country_code": "CH",
          "slug": "wangen-bruttisellen",
          "canonical_path": "/cities/ch/wangen-bruttisellen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4781",
          "name": "Wängi",
          "country_code": "CH",
          "slug": "wangi",
          "canonical_path": "/cities/ch/wangi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3276",
          "name": "Wartau",
          "country_code": "CH",
          "slug": "wartau",
          "canonical_path": "/cities/ch/wartau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3379",
          "name": "Wattwil",
          "country_code": "CH",
          "slug": "wattwil",
          "canonical_path": "/cities/ch/wattwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4946",
          "name": "Weinfelden",
          "country_code": "CH",
          "slug": "4946-weinfelden",
          "canonical_path": "/cities/ch/4946-weinfelden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0251",
          "name": "Weiningen (ZH)",
          "country_code": "CH",
          "slug": "weiningen-zh",
          "canonical_path": "/cities/ch/weiningen-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4045",
          "name": "Wettingen",
          "country_code": "CH",
          "slug": "4045-wettingen",
          "canonical_path": "/cities/ch/4045-wettingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0014",
          "name": "Wettswil am Albis",
          "country_code": "CH",
          "slug": "wettswil-am-albis",
          "canonical_path": "/cities/ch/wettswil-am-albis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2658010",
          "name": "Wetzikon",
          "country_code": "CH",
          "slug": "wetzikon",
          "canonical_path": "/cities/ch/wetzikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0121",
          "name": "Wetzikon (ZH)",
          "country_code": "CH",
          "slug": "wetzikon-zh",
          "canonical_path": "/cities/ch/wetzikon-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3238",
          "name": "Widnau",
          "country_code": "CH",
          "slug": "widnau",
          "canonical_path": "/cities/ch/widnau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0298",
          "name": "Wiesendangen",
          "country_code": "CH",
          "slug": "wiesendangen",
          "canonical_path": "/cities/ch/wiesendangen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2657996",
          "name": "Wil",
          "country_code": "CH",
          "slug": "wil",
          "canonical_path": "/cities/ch/wil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3427",
          "name": "Wil (SG)",
          "country_code": "CH",
          "slug": "wil-sg",
          "canonical_path": "/cities/ch/wil-sg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1151",
          "name": "Willisau",
          "country_code": "CH",
          "slug": "willisau",
          "canonical_path": "/cities/ch/willisau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4123",
          "name": "Windisch",
          "country_code": "CH",
          "slug": "windisch",
          "canonical_path": "/cities/ch/windisch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0072",
          "name": "Winkel",
          "country_code": "CH",
          "slug": "winkel",
          "canonical_path": "/cities/ch/winkel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0230",
          "name": "Winterthur",
          "country_code": "CH",
          "slug": "winterthur",
          "canonical_path": "/cities/ch/winterthur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3204",
          "name": "Wittenbach",
          "country_code": "CH",
          "slug": "wittenbach",
          "canonical_path": "/cities/ch/wittenbach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:2657963",
          "name": "Wohlen",
          "country_code": "CH",
          "slug": "wohlen",
          "canonical_path": "/cities/ch/wohlen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4082",
          "name": "Wohlen (AG)",
          "country_code": "CH",
          "slug": "wohlen-ag",
          "canonical_path": "/cities/ch/wohlen-ag/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0360",
          "name": "Wohlen bei Bern",
          "country_code": "CH",
          "slug": "wohlen-bei-bern",
          "canonical_path": "/cities/ch/wohlen-bei-bern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1323",
          "name": "Wollerau",
          "country_code": "CH",
          "slug": "wollerau",
          "canonical_path": "/cities/ch/wollerau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0627",
          "name": "Worb",
          "country_code": "CH",
          "slug": "0627-worb",
          "canonical_path": "/cities/ch/0627-worb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:geonames:6295524",
          "name": "Wülflingen (Kreis 6)",
          "country_code": "CH",
          "slug": "wulflingen-kreis-6",
          "canonical_path": "/cities/ch/wulflingen-kreis-6/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2309",
          "name": "Wünnewil-Flamatt",
          "country_code": "CH",
          "slug": "wunnewil-flamatt",
          "canonical_path": "/cities/ch/wunnewil-flamatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4047",
          "name": "Würenlingen",
          "country_code": "CH",
          "slug": "wurenlingen",
          "canonical_path": "/cities/ch/wurenlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4048",
          "name": "Würenlos",
          "country_code": "CH",
          "slug": "wurenlos",
          "canonical_path": "/cities/ch/wurenlos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:5938",
          "name": "Yverdon-les-Bains",
          "country_code": "CH",
          "slug": "5938-yverdon-les-bains",
          "canonical_path": "/cities/ch/5938-yverdon-les-bains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0231",
          "name": "Zell (ZH)",
          "country_code": "CH",
          "slug": "zell-zh",
          "canonical_path": "/cities/ch/zell-zh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:6300",
          "name": "Zermatt",
          "country_code": "CH",
          "slug": "zermatt",
          "canonical_path": "/cities/ch/zermatt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4289",
          "name": "Zofingen",
          "country_code": "CH",
          "slug": "4289-zofingen",
          "canonical_path": "/cities/ch/4289-zofingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0361",
          "name": "Zollikofen",
          "country_code": "CH",
          "slug": "zollikofen",
          "canonical_path": "/cities/ch/zollikofen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0161",
          "name": "Zollikon",
          "country_code": "CH",
          "slug": "zollikon",
          "canonical_path": "/cities/ch/zollikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:2534",
          "name": "Zuchwil",
          "country_code": "CH",
          "slug": "zuchwil",
          "canonical_path": "/cities/ch/zuchwil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:1711",
          "name": "Zug",
          "country_code": "CH",
          "slug": "1711-zug",
          "canonical_path": "/cities/ch/1711-zug/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0160",
          "name": "Zumikon",
          "country_code": "CH",
          "slug": "zumikon",
          "canonical_path": "/cities/ch/zumikon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:0261",
          "name": "Zürich",
          "country_code": "CH",
          "slug": "0261-zurich",
          "canonical_path": "/cities/ch/0261-zurich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:4324",
          "name": "Zurzach",
          "country_code": "CH",
          "slug": "zurzach",
          "canonical_path": "/cities/ch/zurzach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:ch:bfsnr:3426",
          "name": "Zuzwil (SG)",
          "country_code": "CH",
          "slug": "zuzwil-sg",
          "canonical_path": "/cities/ch/zuzwil-sg/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "UK",
      "path": "cities/uk.json",
      "city_count": 1178,
      "cities": [
        {
          "entity_id": "city:uk:geonames:7302135",
          "name": "Abbey Wood",
          "country_code": "UK",
          "slug": "abbey-wood",
          "canonical_path": "/cities/uk/abbey-wood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657863",
          "name": "Abbots Langley",
          "country_code": "UK",
          "slug": "abbots-langley",
          "canonical_path": "/cities/uk/abbots-langley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657845",
          "name": "Abercanaid",
          "country_code": "UK",
          "slug": "abercanaid",
          "canonical_path": "/cities/uk/abercanaid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657835",
          "name": "Aberdare",
          "country_code": "UK",
          "slug": "aberdare",
          "canonical_path": "/cities/uk/aberdare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657832",
          "name": "Aberdeen",
          "country_code": "UK",
          "slug": "aberdeen",
          "canonical_path": "/cities/uk/aberdeen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657815",
          "name": "Abergavenny",
          "country_code": "UK",
          "slug": "abergavenny",
          "canonical_path": "/cities/uk/abergavenny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657804",
          "name": "Aberkenfig",
          "country_code": "UK",
          "slug": "aberkenfig",
          "canonical_path": "/cities/uk/aberkenfig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657784",
          "name": "Abertillery",
          "country_code": "UK",
          "slug": "abertillery",
          "canonical_path": "/cities/uk/abertillery/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:3345315",
          "name": "Abertridwr",
          "country_code": "UK",
          "slug": "abertridwr",
          "canonical_path": "/cities/uk/abertridwr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657782",
          "name": "Aberystwyth",
          "country_code": "UK",
          "slug": "aberystwyth",
          "canonical_path": "/cities/uk/aberystwyth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657780",
          "name": "Abingdon",
          "country_code": "UK",
          "slug": "abingdon",
          "canonical_path": "/cities/uk/abingdon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657774",
          "name": "Abram",
          "country_code": "UK",
          "slug": "abram",
          "canonical_path": "/cities/uk/abram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657770",
          "name": "Accrington",
          "country_code": "UK",
          "slug": "accrington",
          "canonical_path": "/cities/uk/accrington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657697",
          "name": "Acton",
          "country_code": "UK",
          "slug": "acton",
          "canonical_path": "/cities/uk/acton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657668",
          "name": "Adlington",
          "country_code": "UK",
          "slug": "adlington",
          "canonical_path": "/cities/uk/adlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657613",
          "name": "Airdrie",
          "country_code": "UK",
          "slug": "airdrie",
          "canonical_path": "/cities/uk/airdrie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657540",
          "name": "Aldershot",
          "country_code": "UK",
          "slug": "aldershot",
          "canonical_path": "/cities/uk/aldershot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657513",
          "name": "Alexandria",
          "country_code": "UK",
          "slug": "alexandria",
          "canonical_path": "/cities/uk/alexandria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11550900",
          "name": "Allerton",
          "country_code": "UK",
          "slug": "allerton",
          "canonical_path": "/cities/uk/allerton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657471",
          "name": "Alloa",
          "country_code": "UK",
          "slug": "alloa",
          "canonical_path": "/cities/uk/alloa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657445",
          "name": "Alness",
          "country_code": "UK",
          "slug": "alness",
          "canonical_path": "/cities/uk/alness/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657408",
          "name": "Alton",
          "country_code": "UK",
          "slug": "alton",
          "canonical_path": "/cities/uk/alton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657402",
          "name": "Altrincham",
          "country_code": "UK",
          "slug": "altrincham",
          "canonical_path": "/cities/uk/altrincham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:amersham",
          "name": "Amersham",
          "country_code": "UK",
          "slug": "amersham",
          "canonical_path": "/cities/uk/amersham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690592",
          "name": "Amersham on the Hill",
          "country_code": "UK",
          "slug": "amersham-on-the-hill",
          "canonical_path": "/cities/uk/amersham-on-the-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657324",
          "name": "Andover",
          "country_code": "UK",
          "slug": "andover",
          "canonical_path": "/cities/uk/andover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657293",
          "name": "Annan",
          "country_code": "UK",
          "slug": "annan",
          "canonical_path": "/cities/uk/annan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657215",
          "name": "Arbroath",
          "country_code": "UK",
          "slug": "arbroath",
          "canonical_path": "/cities/uk/arbroath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11777624",
          "name": "Archway",
          "country_code": "UK",
          "slug": "archway",
          "canonical_path": "/cities/uk/archway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657125",
          "name": "Ardrossan",
          "country_code": "UK",
          "slug": "ardrossan",
          "canonical_path": "/cities/uk/ardrossan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657067",
          "name": "Armadale",
          "country_code": "UK",
          "slug": "armadale",
          "canonical_path": "/cities/uk/armadale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2657030",
          "name": "Arnold",
          "country_code": "UK",
          "slug": "arnold",
          "canonical_path": "/cities/uk/arnold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656992",
          "name": "Ascot",
          "country_code": "UK",
          "slug": "ascot",
          "canonical_path": "/cities/uk/ascot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656913",
          "name": "Ash Vale",
          "country_code": "UK",
          "slug": "ash-vale",
          "canonical_path": "/cities/uk/ash-vale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656954",
          "name": "Ashford",
          "country_code": "UK",
          "slug": "ashford",
          "canonical_path": "/cities/uk/ashford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656955",
          "name": "Ashford",
          "country_code": "UK",
          "slug": "ashford-eng-g5",
          "canonical_path": "/cities/uk/ashford-eng-g5/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656946",
          "name": "Ashington",
          "country_code": "UK",
          "slug": "ashington",
          "canonical_path": "/cities/uk/ashington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656918",
          "name": "Ashton in Makerfield",
          "country_code": "UK",
          "slug": "ashton-in-makerfield",
          "canonical_path": "/cities/uk/ashton-in-makerfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656915",
          "name": "Ashton-under-Lyne",
          "country_code": "UK",
          "slug": "ashton-under-lyne",
          "canonical_path": "/cities/uk/ashton-under-lyne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656847",
          "name": "Atherton",
          "country_code": "UK",
          "slug": "atherton",
          "canonical_path": "/cities/uk/atherton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656803",
          "name": "Auchterarder",
          "country_code": "UK",
          "slug": "auchterarder",
          "canonical_path": "/cities/uk/auchterarder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656792",
          "name": "Audley",
          "country_code": "UK",
          "slug": "audley",
          "canonical_path": "/cities/uk/audley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656719",
          "name": "Aylesbury",
          "country_code": "UK",
          "slug": "aylesbury",
          "canonical_path": "/cities/uk/aylesbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656715",
          "name": "Aylestone",
          "country_code": "UK",
          "slug": "aylestone",
          "canonical_path": "/cities/uk/aylestone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656708",
          "name": "Ayr",
          "country_code": "UK",
          "slug": "ayr",
          "canonical_path": "/cities/uk/ayr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656586",
          "name": "Balerno",
          "country_code": "UK",
          "slug": "balerno",
          "canonical_path": "/cities/uk/balerno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656580",
          "name": "Balham",
          "country_code": "UK",
          "slug": "balham",
          "canonical_path": "/cities/uk/balham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656551",
          "name": "Ballingry",
          "country_code": "UK",
          "slug": "ballingry",
          "canonical_path": "/cities/uk/ballingry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656406",
          "name": "Banbury",
          "country_code": "UK",
          "slug": "banbury",
          "canonical_path": "/cities/uk/banbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656405",
          "name": "Banchory",
          "country_code": "UK",
          "slug": "banchory",
          "canonical_path": "/cities/uk/banchory/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656397",
          "name": "Bangor",
          "country_code": "UK",
          "slug": "bangor-wls-y2",
          "canonical_path": "/cities/uk/bangor-wls-y2/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656382",
          "name": "Bannockburn",
          "country_code": "UK",
          "slug": "bannockburn",
          "canonical_path": "/cities/uk/bannockburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656340",
          "name": "Bargoed",
          "country_code": "UK",
          "slug": "bargoed",
          "canonical_path": "/cities/uk/bargoed/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656333",
          "name": "Barking",
          "country_code": "UK",
          "slug": "barking",
          "canonical_path": "/cities/uk/barking/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656296",
          "name": "Barnes",
          "country_code": "UK",
          "slug": "barnes",
          "canonical_path": "/cities/uk/barnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656295",
          "name": "Barnet",
          "country_code": "UK",
          "slug": "barnet",
          "canonical_path": "/cities/uk/barnet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656293",
          "name": "Barnham",
          "country_code": "UK",
          "slug": "barnham",
          "canonical_path": "/cities/uk/barnham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690590",
          "name": "Barnsbury",
          "country_code": "UK",
          "slug": "barnsbury",
          "canonical_path": "/cities/uk/barnsbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656284",
          "name": "Barnsley",
          "country_code": "UK",
          "slug": "barnsley",
          "canonical_path": "/cities/uk/barnsley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656281",
          "name": "Barnstaple",
          "country_code": "UK",
          "slug": "barnstaple",
          "canonical_path": "/cities/uk/barnstaple/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656277",
          "name": "Barnt Green",
          "country_code": "UK",
          "slug": "barnt-green",
          "canonical_path": "/cities/uk/barnt-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656258",
          "name": "Barrhead",
          "country_code": "UK",
          "slug": "barrhead",
          "canonical_path": "/cities/uk/barrhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656241",
          "name": "Barrow in Furness",
          "country_code": "UK",
          "slug": "barrow-in-furness",
          "canonical_path": "/cities/uk/barrow-in-furness/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656235",
          "name": "Barry",
          "country_code": "UK",
          "slug": "barry",
          "canonical_path": "/cities/uk/barry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:7302130",
          "name": "Bartley Green",
          "country_code": "UK",
          "slug": "bartley-green",
          "canonical_path": "/cities/uk/bartley-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656196",
          "name": "Basford",
          "country_code": "UK",
          "slug": "basford",
          "canonical_path": "/cities/uk/basford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12123208",
          "name": "Basford, Stoke-on-Trent",
          "country_code": "UK",
          "slug": "basford-stoke-on-trent",
          "canonical_path": "/cities/uk/basford-stoke-on-trent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656194",
          "name": "Basildon",
          "country_code": "UK",
          "slug": "basildon",
          "canonical_path": "/cities/uk/basildon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656192",
          "name": "Basingstoke",
          "country_code": "UK",
          "slug": "basingstoke",
          "canonical_path": "/cities/uk/basingstoke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750089",
          "name": "Batchworth",
          "country_code": "UK",
          "slug": "batchworth",
          "canonical_path": "/cities/uk/batchworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656173",
          "name": "Bath",
          "country_code": "UK",
          "slug": "bath",
          "canonical_path": "/cities/uk/bath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656169",
          "name": "Bathgate",
          "country_code": "UK",
          "slug": "bathgate",
          "canonical_path": "/cities/uk/bathgate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656168",
          "name": "Batley",
          "country_code": "UK",
          "slug": "batley",
          "canonical_path": "/cities/uk/batley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656086",
          "name": "Bearsden",
          "country_code": "UK",
          "slug": "bearsden",
          "canonical_path": "/cities/uk/bearsden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656070",
          "name": "Bebington",
          "country_code": "UK",
          "slug": "bebington",
          "canonical_path": "/cities/uk/bebington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656065",
          "name": "Beckenham",
          "country_code": "UK",
          "slug": "beckenham",
          "canonical_path": "/cities/uk/beckenham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656046",
          "name": "Bedford",
          "country_code": "UK",
          "slug": "bedford",
          "canonical_path": "/cities/uk/bedford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656031",
          "name": "Bedworth",
          "country_code": "UK",
          "slug": "bedworth",
          "canonical_path": "/cities/uk/bedworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2656000",
          "name": "Beighton",
          "country_code": "UK",
          "slug": "beighton",
          "canonical_path": "/cities/uk/beighton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655994",
          "name": "Beith",
          "country_code": "UK",
          "slug": "beith",
          "canonical_path": "/cities/uk/beith/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655984",
          "name": "Belfast",
          "country_code": "UK",
          "slug": "belfast",
          "canonical_path": "/cities/uk/belfast/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655980",
          "name": "Belgrave",
          "country_code": "UK",
          "slug": "belgrave",
          "canonical_path": "/cities/uk/belgrave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655952",
          "name": "Bellshill",
          "country_code": "UK",
          "slug": "bellshill",
          "canonical_path": "/cities/uk/bellshill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690581",
          "name": "Belsize Park",
          "country_code": "UK",
          "slug": "belsize-park",
          "canonical_path": "/cities/uk/belsize-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750104",
          "name": "Bennetts End",
          "country_code": "UK",
          "slug": "bennetts-end",
          "canonical_path": "/cities/uk/bennetts-end/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655882",
          "name": "Bentley",
          "country_code": "UK",
          "slug": "bentley",
          "canonical_path": "/cities/uk/bentley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6693001",
          "name": "Benwell",
          "country_code": "UK",
          "slug": "benwell",
          "canonical_path": "/cities/uk/benwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655858",
          "name": "Berkhamsted",
          "country_code": "UK",
          "slug": "berkhamsted",
          "canonical_path": "/cities/uk/berkhamsted/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655785",
          "name": "Beverley",
          "country_code": "UK",
          "slug": "beverley",
          "canonical_path": "/cities/uk/beverley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6621546",
          "name": "Bewbush",
          "country_code": "UK",
          "slug": "bewbush",
          "canonical_path": "/cities/uk/bewbush/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655777",
          "name": "Bexhill-on-Sea",
          "country_code": "UK",
          "slug": "bexhill-on-sea",
          "canonical_path": "/cities/uk/bexhill-on-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655775",
          "name": "Bexley",
          "country_code": "UK",
          "slug": "bexley",
          "canonical_path": "/cities/uk/bexley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655729",
          "name": "Bicester",
          "country_code": "UK",
          "slug": "bicester",
          "canonical_path": "/cities/uk/bicester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655721",
          "name": "Bickley",
          "country_code": "UK",
          "slug": "bickley",
          "canonical_path": "/cities/uk/bickley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655690",
          "name": "Biggin Hill",
          "country_code": "UK",
          "slug": "biggin-hill",
          "canonical_path": "/cities/uk/biggin-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655689",
          "name": "Biggleswade",
          "country_code": "UK",
          "slug": "biggleswade",
          "canonical_path": "/cities/uk/biggleswade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655672",
          "name": "Billericay",
          "country_code": "UK",
          "slug": "billericay",
          "canonical_path": "/cities/uk/billericay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655666",
          "name": "Billinge",
          "country_code": "UK",
          "slug": "billinge",
          "canonical_path": "/cities/uk/billinge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655664",
          "name": "Billingham",
          "country_code": "UK",
          "slug": "billingham",
          "canonical_path": "/cities/uk/billingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655642",
          "name": "Bingley",
          "country_code": "UK",
          "slug": "bingley",
          "canonical_path": "/cities/uk/bingley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655627",
          "name": "Birchington-on-Sea",
          "country_code": "UK",
          "slug": "birchington-on-sea",
          "canonical_path": "/cities/uk/birchington-on-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655624",
          "name": "Bircotes",
          "country_code": "UK",
          "slug": "bircotes",
          "canonical_path": "/cities/uk/bircotes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655613",
          "name": "Birkenhead",
          "country_code": "UK",
          "slug": "birkenhead",
          "canonical_path": "/cities/uk/birkenhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655603",
          "name": "Birmingham",
          "country_code": "UK",
          "slug": "birmingham",
          "canonical_path": "/cities/uk/birmingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655583",
          "name": "Bishop Auckland",
          "country_code": "UK",
          "slug": "bishop-auckland",
          "canonical_path": "/cities/uk/bishop-auckland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655582",
          "name": "Bishopbriggs",
          "country_code": "UK",
          "slug": "bishopbriggs",
          "canonical_path": "/cities/uk/bishopbriggs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655562",
          "name": "Bishops Stortford",
          "country_code": "UK",
          "slug": "bishops-stortford",
          "canonical_path": "/cities/uk/bishops-stortford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655557",
          "name": "Bishopstoke",
          "country_code": "UK",
          "slug": "bishopstoke",
          "canonical_path": "/cities/uk/bishopstoke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655532",
          "name": "Blaby",
          "country_code": "UK",
          "slug": "blaby",
          "canonical_path": "/cities/uk/blaby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655523",
          "name": "Blackburn",
          "country_code": "UK",
          "slug": "blackburn",
          "canonical_path": "/cities/uk/blackburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655524",
          "name": "Blackburn",
          "country_code": "UK",
          "slug": "blackburn-eng-a8",
          "canonical_path": "/cities/uk/blackburn-eng-a8/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655459",
          "name": "Blackpool",
          "country_code": "UK",
          "slug": "blackpool",
          "canonical_path": "/cities/uk/blackpool/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6698331",
          "name": "Blacon",
          "country_code": "UK",
          "slug": "blacon",
          "canonical_path": "/cities/uk/blacon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655394",
          "name": "Blairgowrie and Rattray",
          "country_code": "UK",
          "slug": "blairgowrie-and-rattray",
          "canonical_path": "/cities/uk/blairgowrie-and-rattray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592111",
          "name": "Blantyre",
          "country_code": "UK",
          "slug": "blantyre",
          "canonical_path": "/cities/uk/blantyre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655369",
          "name": "Blaydon-on-Tyne",
          "country_code": "UK",
          "slug": "blaydon-on-tyne",
          "canonical_path": "/cities/uk/blaydon-on-tyne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655351",
          "name": "Bletchley",
          "country_code": "UK",
          "slug": "bletchley",
          "canonical_path": "/cities/uk/bletchley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655329",
          "name": "Bloxwich",
          "country_code": "UK",
          "slug": "bloxwich",
          "canonical_path": "/cities/uk/bloxwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655315",
          "name": "Blyth",
          "country_code": "UK",
          "slug": "blyth",
          "canonical_path": "/cities/uk/blyth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655215",
          "name": "Bo’ness",
          "country_code": "UK",
          "slug": "bo-ness",
          "canonical_path": "/cities/uk/bo-ness/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655262",
          "name": "Bognor Regis",
          "country_code": "UK",
          "slug": "bognor-regis",
          "canonical_path": "/cities/uk/bognor-regis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655237",
          "name": "Bolton",
          "country_code": "UK",
          "slug": "bolton",
          "canonical_path": "/cities/uk/bolton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655214",
          "name": "Bonhill",
          "country_code": "UK",
          "slug": "bonhill",
          "canonical_path": "/cities/uk/bonhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655211",
          "name": "Bonnybridge",
          "country_code": "UK",
          "slug": "bonnybridge",
          "canonical_path": "/cities/uk/bonnybridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655210",
          "name": "Bonnyrigg",
          "country_code": "UK",
          "slug": "bonnyrigg",
          "canonical_path": "/cities/uk/bonnyrigg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655198",
          "name": "Bootle",
          "country_code": "UK",
          "slug": "bootle",
          "canonical_path": "/cities/uk/bootle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655186",
          "name": "Borehamwood",
          "country_code": "UK",
          "slug": "borehamwood",
          "canonical_path": "/cities/uk/borehamwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655138",
          "name": "Boston",
          "country_code": "UK",
          "slug": "boston",
          "canonical_path": "/cities/uk/boston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655130",
          "name": "Bothwell",
          "country_code": "UK",
          "slug": "bothwell",
          "canonical_path": "/cities/uk/bothwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655117",
          "name": "Boughton",
          "country_code": "UK",
          "slug": "boughton",
          "canonical_path": "/cities/uk/boughton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655095",
          "name": "Bournemouth",
          "country_code": "UK",
          "slug": "bournemouth",
          "canonical_path": "/cities/uk/bournemouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6620355",
          "name": "Bowthorpe",
          "country_code": "UK",
          "slug": "bowthorpe",
          "canonical_path": "/cities/uk/bowthorpe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655009",
          "name": "Bracknell",
          "country_code": "UK",
          "slug": "bracknell",
          "canonical_path": "/cities/uk/bracknell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654993",
          "name": "Bradford",
          "country_code": "UK",
          "slug": "bradford",
          "canonical_path": "/cities/uk/bradford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11919781",
          "name": "Bradwell",
          "country_code": "UK",
          "slug": "bradwell",
          "canonical_path": "/cities/uk/bradwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654938",
          "name": "Braintree",
          "country_code": "UK",
          "slug": "braintree",
          "canonical_path": "/cities/uk/braintree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654895",
          "name": "Brandon",
          "country_code": "UK",
          "slug": "brandon",
          "canonical_path": "/cities/uk/brandon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654897",
          "name": "Brandon",
          "country_code": "UK",
          "slug": "brandon-eng-p3",
          "canonical_path": "/cities/uk/brandon-eng-p3/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654859",
          "name": "Braunstone",
          "country_code": "UK",
          "slug": "braunstone",
          "canonical_path": "/cities/uk/braunstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654824",
          "name": "Brechin",
          "country_code": "UK",
          "slug": "brechin",
          "canonical_path": "/cities/uk/brechin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654814",
          "name": "Bredbury",
          "country_code": "UK",
          "slug": "bredbury",
          "canonical_path": "/cities/uk/bredbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654787",
          "name": "Brentford",
          "country_code": "UK",
          "slug": "brentford",
          "canonical_path": "/cities/uk/brentford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654782",
          "name": "Brentwood",
          "country_code": "UK",
          "slug": "brentwood",
          "canonical_path": "/cities/uk/brentwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654747",
          "name": "Bridge of Allan",
          "country_code": "UK",
          "slug": "bridge-of-allan",
          "canonical_path": "/cities/uk/bridge-of-allan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654755",
          "name": "Bridgend",
          "country_code": "UK",
          "slug": "bridgend",
          "canonical_path": "/cities/uk/bridgend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654730",
          "name": "Bridgwater",
          "country_code": "UK",
          "slug": "bridgwater",
          "canonical_path": "/cities/uk/bridgwater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654728",
          "name": "Bridlington",
          "country_code": "UK",
          "slug": "bridlington",
          "canonical_path": "/cities/uk/bridlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654724",
          "name": "Brierley Hill",
          "country_code": "UK",
          "slug": "brierley-hill",
          "canonical_path": "/cities/uk/brierley-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654715",
          "name": "Brighouse",
          "country_code": "UK",
          "slug": "brighouse",
          "canonical_path": "/cities/uk/brighouse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654710",
          "name": "Brighton",
          "country_code": "UK",
          "slug": "brighton",
          "canonical_path": "/cities/uk/brighton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654675",
          "name": "Bristol",
          "country_code": "UK",
          "slug": "bristol",
          "canonical_path": "/cities/uk/bristol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654668",
          "name": "Briton Ferry",
          "country_code": "UK",
          "slug": "briton-ferry",
          "canonical_path": "/cities/uk/briton-ferry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750101",
          "name": "Britwell",
          "country_code": "UK",
          "slug": "britwell",
          "canonical_path": "/cities/uk/britwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6692466",
          "name": "Brixton Hill",
          "country_code": "UK",
          "slug": "brixton-hill",
          "canonical_path": "/cities/uk/brixton-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6621545",
          "name": "Broadfield",
          "country_code": "UK",
          "slug": "broadfield",
          "canonical_path": "/cities/uk/broadfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654635",
          "name": "Broadstairs",
          "country_code": "UK",
          "slug": "broadstairs",
          "canonical_path": "/cities/uk/broadstairs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654634",
          "name": "Broadstone",
          "country_code": "UK",
          "slug": "broadstone",
          "canonical_path": "/cities/uk/broadstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11551040",
          "name": "Brockley",
          "country_code": "UK",
          "slug": "brockley",
          "canonical_path": "/cities/uk/brockley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654596",
          "name": "Bromborough",
          "country_code": "UK",
          "slug": "bromborough",
          "canonical_path": "/cities/uk/bromborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654579",
          "name": "Bromsgrove",
          "country_code": "UK",
          "slug": "bromsgrove",
          "canonical_path": "/cities/uk/bromsgrove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654532",
          "name": "Brough",
          "country_code": "UK",
          "slug": "brough",
          "canonical_path": "/cities/uk/brough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654507",
          "name": "Broughton",
          "country_code": "UK",
          "slug": "broughton",
          "canonical_path": "/cities/uk/broughton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654490",
          "name": "Brownhills",
          "country_code": "UK",
          "slug": "brownhills",
          "canonical_path": "/cities/uk/brownhills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654481",
          "name": "Broxbourne",
          "country_code": "UK",
          "slug": "broxbourne",
          "canonical_path": "/cities/uk/broxbourne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654480",
          "name": "Broxburn",
          "country_code": "UK",
          "slug": "broxburn",
          "canonical_path": "/cities/uk/broxburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654461",
          "name": "Brundall",
          "country_code": "UK",
          "slug": "brundall",
          "canonical_path": "/cities/uk/brundall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654450",
          "name": "Brymbo",
          "country_code": "UK",
          "slug": "brymbo",
          "canonical_path": "/cities/uk/brymbo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654447",
          "name": "Brynamman",
          "country_code": "UK",
          "slug": "brynamman",
          "canonical_path": "/cities/uk/brynamman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:3345314",
          "name": "Brynna",
          "country_code": "UK",
          "slug": "brynna",
          "canonical_path": "/cities/uk/brynna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654411",
          "name": "Buckie",
          "country_code": "UK",
          "slug": "buckie",
          "canonical_path": "/cities/uk/buckie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654357",
          "name": "Bulford",
          "country_code": "UK",
          "slug": "bulford",
          "canonical_path": "/cities/uk/bulford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654308",
          "name": "Burgess Hill",
          "country_code": "UK",
          "slug": "burgess-hill",
          "canonical_path": "/cities/uk/burgess-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11776857",
          "name": "Burngreave",
          "country_code": "UK",
          "slug": "burngreave",
          "canonical_path": "/cities/uk/burngreave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654274",
          "name": "Burnham",
          "country_code": "UK",
          "slug": "burnham",
          "canonical_path": "/cities/uk/burnham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654264",
          "name": "Burnley",
          "country_code": "UK",
          "slug": "burnley",
          "canonical_path": "/cities/uk/burnley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654255",
          "name": "Burntisland",
          "country_code": "UK",
          "slug": "burntisland",
          "canonical_path": "/cities/uk/burntisland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654252",
          "name": "Burntwood",
          "country_code": "UK",
          "slug": "burntwood",
          "canonical_path": "/cities/uk/burntwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:7116367",
          "name": "Burpham",
          "country_code": "UK",
          "slug": "burpham",
          "canonical_path": "/cities/uk/burpham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654229",
          "name": "Burry Port",
          "country_code": "UK",
          "slug": "burry-port",
          "canonical_path": "/cities/uk/burry-port/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654200",
          "name": "Burton upon Trent",
          "country_code": "UK",
          "slug": "burton-upon-trent",
          "canonical_path": "/cities/uk/burton-upon-trent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654187",
          "name": "Bury",
          "country_code": "UK",
          "slug": "bury",
          "canonical_path": "/cities/uk/bury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654186",
          "name": "Bury St Edmunds",
          "country_code": "UK",
          "slug": "bury-st-edmunds",
          "canonical_path": "/cities/uk/bury-st-edmunds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654179",
          "name": "Bushey",
          "country_code": "UK",
          "slug": "bushey",
          "canonical_path": "/cities/uk/bushey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654141",
          "name": "Buxton",
          "country_code": "UK",
          "slug": "buxton",
          "canonical_path": "/cities/uk/buxton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2654089",
          "name": "Caerphilly",
          "country_code": "UK",
          "slug": "caerphilly",
          "canonical_path": "/cities/uk/caerphilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6692920",
          "name": "Calcot",
          "country_code": "UK",
          "slug": "calcot",
          "canonical_path": "/cities/uk/calcot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653981",
          "name": "Callington",
          "country_code": "UK",
          "slug": "callington",
          "canonical_path": "/cities/uk/callington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653947",
          "name": "Camberley",
          "country_code": "UK",
          "slug": "camberley",
          "canonical_path": "/cities/uk/camberley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653945",
          "name": "Camborne",
          "country_code": "UK",
          "slug": "camborne",
          "canonical_path": "/cities/uk/camborne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653941",
          "name": "Cambridge",
          "country_code": "UK",
          "slug": "cambridge",
          "canonical_path": "/cities/uk/cambridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653935",
          "name": "Cambuslang",
          "country_code": "UK",
          "slug": "cambuslang",
          "canonical_path": "/cities/uk/cambuslang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:3345437",
          "name": "Camden Town",
          "country_code": "UK",
          "slug": "camden-town",
          "canonical_path": "/cities/uk/camden-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11549407",
          "name": "Canning Town",
          "country_code": "UK",
          "slug": "canning-town",
          "canonical_path": "/cities/uk/canning-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653883",
          "name": "Cannock",
          "country_code": "UK",
          "slug": "cannock",
          "canonical_path": "/cities/uk/cannock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653877",
          "name": "Canterbury",
          "country_code": "UK",
          "slug": "canterbury",
          "canonical_path": "/cities/uk/canterbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:7911271",
          "name": "Canvey Island",
          "country_code": "UK",
          "slug": "canvey-island",
          "canonical_path": "/cities/uk/canvey-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653825",
          "name": "Carcroft",
          "country_code": "UK",
          "slug": "carcroft",
          "canonical_path": "/cities/uk/carcroft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653822",
          "name": "Cardiff",
          "country_code": "UK",
          "slug": "cardiff",
          "canonical_path": "/cities/uk/cardiff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653818",
          "name": "Cardigan",
          "country_code": "UK",
          "slug": "cardigan",
          "canonical_path": "/cities/uk/cardigan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653775",
          "name": "Carlisle",
          "country_code": "UK",
          "slug": "carlisle",
          "canonical_path": "/cities/uk/carlisle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:carlton-gedling",
          "name": "Carlton (Gedling)",
          "country_code": "UK",
          "slug": "carlton-gedling",
          "canonical_path": "/cities/uk/carlton-gedling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653756",
          "name": "Carluke",
          "country_code": "UK",
          "slug": "carluke",
          "canonical_path": "/cities/uk/carluke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653755",
          "name": "Carmarthen",
          "country_code": "UK",
          "slug": "carmarthen",
          "canonical_path": "/cities/uk/carmarthen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653704",
          "name": "Carnoustie",
          "country_code": "UK",
          "slug": "carnoustie",
          "canonical_path": "/cities/uk/carnoustie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750097",
          "name": "Carpenders Park",
          "country_code": "UK",
          "slug": "carpenders-park",
          "canonical_path": "/cities/uk/carpenders-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653646",
          "name": "Carshalton",
          "country_code": "UK",
          "slug": "carshalton",
          "canonical_path": "/cities/uk/carshalton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11778104",
          "name": "Castle Vale",
          "country_code": "UK",
          "slug": "castle-vale",
          "canonical_path": "/cities/uk/castle-vale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653584",
          "name": "Castleford",
          "country_code": "UK",
          "slug": "castleford",
          "canonical_path": "/cities/uk/castleford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653520",
          "name": "Caterham",
          "country_code": "UK",
          "slug": "caterham",
          "canonical_path": "/cities/uk/caterham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653516",
          "name": "Catford",
          "country_code": "UK",
          "slug": "catford",
          "canonical_path": "/cities/uk/catford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11551009",
          "name": "Chadderton",
          "country_code": "UK",
          "slug": "chadderton",
          "canonical_path": "/cities/uk/chadderton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653414",
          "name": "Chaddesden",
          "country_code": "UK",
          "slug": "chaddesden",
          "canonical_path": "/cities/uk/chaddesden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653393",
          "name": "Chalfont Saint Peter",
          "country_code": "UK",
          "slug": "chalfont-saint-peter",
          "canonical_path": "/cities/uk/chalfont-saint-peter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653394",
          "name": "Chalfont St Giles",
          "country_code": "UK",
          "slug": "chalfont-st-giles",
          "canonical_path": "/cities/uk/chalfont-st-giles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690583",
          "name": "Chalk Farm",
          "country_code": "UK",
          "slug": "chalk-farm",
          "canonical_path": "/cities/uk/chalk-farm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6695247",
          "name": "Chapel Allerton",
          "country_code": "UK",
          "slug": "chapel-allerton",
          "canonical_path": "/cities/uk/chapel-allerton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653366",
          "name": "Chapelhall",
          "country_code": "UK",
          "slug": "chapelhall",
          "canonical_path": "/cities/uk/chapelhall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653353",
          "name": "Chapeltown",
          "country_code": "UK",
          "slug": "chapeltown",
          "canonical_path": "/cities/uk/chapeltown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8741036",
          "name": "Charlton",
          "country_code": "UK",
          "slug": "charlton",
          "canonical_path": "/cities/uk/charlton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653324",
          "name": "Charlton Kings",
          "country_code": "UK",
          "slug": "charlton-kings",
          "canonical_path": "/cities/uk/charlton-kings/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653307",
          "name": "Chasetown",
          "country_code": "UK",
          "slug": "chasetown",
          "canonical_path": "/cities/uk/chasetown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653305",
          "name": "Chatham",
          "country_code": "UK",
          "slug": "chatham",
          "canonical_path": "/cities/uk/chatham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653292",
          "name": "Cheadle",
          "country_code": "UK",
          "slug": "cheadle",
          "canonical_path": "/cities/uk/cheadle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653290",
          "name": "Cheadle Hulme",
          "country_code": "UK",
          "slug": "cheadle-hulme",
          "canonical_path": "/cities/uk/cheadle-hulme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653266",
          "name": "Chelmsford",
          "country_code": "UK",
          "slug": "chelmsford",
          "canonical_path": "/cities/uk/chelmsford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6698373",
          "name": "Chelmsley Wood",
          "country_code": "UK",
          "slug": "chelmsley-wood",
          "canonical_path": "/cities/uk/chelmsley-wood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653264",
          "name": "Chelsfield",
          "country_code": "UK",
          "slug": "chelsfield",
          "canonical_path": "/cities/uk/chelsfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653261",
          "name": "Cheltenham",
          "country_code": "UK",
          "slug": "cheltenham",
          "canonical_path": "/cities/uk/cheltenham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653256",
          "name": "Chepstow",
          "country_code": "UK",
          "slug": "chepstow",
          "canonical_path": "/cities/uk/chepstow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653235",
          "name": "Chesham",
          "country_code": "UK",
          "slug": "chesham",
          "canonical_path": "/cities/uk/chesham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653232",
          "name": "Cheshunt",
          "country_code": "UK",
          "slug": "cheshunt",
          "canonical_path": "/cities/uk/cheshunt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653229",
          "name": "Chessington",
          "country_code": "UK",
          "slug": "chessington",
          "canonical_path": "/cities/uk/chessington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653228",
          "name": "Chester",
          "country_code": "UK",
          "slug": "chester",
          "canonical_path": "/cities/uk/chester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653224",
          "name": "Chester-le-Street",
          "country_code": "UK",
          "slug": "chester-le-street",
          "canonical_path": "/cities/uk/chester-le-street/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653225",
          "name": "Chesterfield",
          "country_code": "UK",
          "slug": "chesterfield",
          "canonical_path": "/cities/uk/chesterfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653192",
          "name": "Chichester",
          "country_code": "UK",
          "slug": "chichester",
          "canonical_path": "/cities/uk/chichester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:chigwell",
          "name": "Chigwell",
          "country_code": "UK",
          "slug": "chigwell",
          "canonical_path": "/cities/uk/chigwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653169",
          "name": "Childwall",
          "country_code": "UK",
          "slug": "childwall",
          "canonical_path": "/cities/uk/childwall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653148",
          "name": "Chingford",
          "country_code": "UK",
          "slug": "chingford",
          "canonical_path": "/cities/uk/chingford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653144",
          "name": "Chippenham",
          "country_code": "UK",
          "slug": "chippenham",
          "canonical_path": "/cities/uk/chippenham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653123",
          "name": "Chislehurst",
          "country_code": "UK",
          "slug": "chislehurst",
          "canonical_path": "/cities/uk/chislehurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653086",
          "name": "Chorley",
          "country_code": "UK",
          "slug": "chorley",
          "canonical_path": "/cities/uk/chorley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2653075",
          "name": "Christchurch",
          "country_code": "UK",
          "slug": "christchurch",
          "canonical_path": "/cities/uk/christchurch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643741",
          "name": "City of London",
          "country_code": "UK",
          "slug": "city-of-london",
          "canonical_path": "/cities/uk/city-of-london/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634341",
          "name": "City of Westminster",
          "country_code": "UK",
          "slug": "city-of-westminster",
          "canonical_path": "/cities/uk/city-of-westminster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652974",
          "name": "Clacton-on-Sea",
          "country_code": "UK",
          "slug": "clacton-on-sea",
          "canonical_path": "/cities/uk/clacton-on-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6929936",
          "name": "Clapham Junction",
          "country_code": "UK",
          "slug": "clapham-junction",
          "canonical_path": "/cities/uk/clapham-junction/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6640069",
          "name": "Clarkston",
          "country_code": "UK",
          "slug": "clarkston",
          "canonical_path": "/cities/uk/clarkston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652898",
          "name": "Clayton West",
          "country_code": "UK",
          "slug": "clayton-west",
          "canonical_path": "/cities/uk/clayton-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6691951",
          "name": "Clayton-le-Woods",
          "country_code": "UK",
          "slug": "clayton-le-woods",
          "canonical_path": "/cities/uk/clayton-le-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652885",
          "name": "Cleethorpes",
          "country_code": "UK",
          "slug": "cleethorpes",
          "canonical_path": "/cities/uk/cleethorpes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652861",
          "name": "Clevedon",
          "country_code": "UK",
          "slug": "clevedon",
          "canonical_path": "/cities/uk/clevedon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652734",
          "name": "Clydach",
          "country_code": "UK",
          "slug": "clydach",
          "canonical_path": "/cities/uk/clydach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652730",
          "name": "Clydebank",
          "country_code": "UK",
          "slug": "clydebank",
          "canonical_path": "/cities/uk/clydebank/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652698",
          "name": "Coalville",
          "country_code": "UK",
          "slug": "coalville",
          "canonical_path": "/cities/uk/coalville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652696",
          "name": "Coatbridge",
          "country_code": "UK",
          "slug": "coatbridge",
          "canonical_path": "/cities/uk/coatbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652689",
          "name": "Cobham",
          "country_code": "UK",
          "slug": "cobham",
          "canonical_path": "/cities/uk/cobham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652681",
          "name": "Cockenzie",
          "country_code": "UK",
          "slug": "cockenzie",
          "canonical_path": "/cities/uk/cockenzie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11239661",
          "name": "Cockington",
          "country_code": "UK",
          "slug": "cockington",
          "canonical_path": "/cities/uk/cockington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652656",
          "name": "Codicote",
          "country_code": "UK",
          "slug": "codicote",
          "canonical_path": "/cities/uk/codicote/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652648",
          "name": "Coedpoeth",
          "country_code": "UK",
          "slug": "coedpoeth",
          "canonical_path": "/cities/uk/coedpoeth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652622",
          "name": "Coity",
          "country_code": "UK",
          "slug": "coity",
          "canonical_path": "/cities/uk/coity/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652618",
          "name": "Colchester",
          "country_code": "UK",
          "slug": "colchester",
          "canonical_path": "/cities/uk/colchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652591",
          "name": "Coleford",
          "country_code": "UK",
          "slug": "coleford",
          "canonical_path": "/cities/uk/coleford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652577",
          "name": "Colinton",
          "country_code": "UK",
          "slug": "colinton",
          "canonical_path": "/cities/uk/colinton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652546",
          "name": "Colnbrook",
          "country_code": "UK",
          "slug": "colnbrook",
          "canonical_path": "/cities/uk/colnbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652513",
          "name": "Colwyn Bay",
          "country_code": "UK",
          "slug": "colwyn-bay",
          "canonical_path": "/cities/uk/colwyn-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652505",
          "name": "Comber",
          "country_code": "UK",
          "slug": "comber",
          "canonical_path": "/cities/uk/comber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652464",
          "name": "Congleton",
          "country_code": "UK",
          "slug": "congleton",
          "canonical_path": "/cities/uk/congleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652437",
          "name": "Consett",
          "country_code": "UK",
          "slug": "consett",
          "canonical_path": "/cities/uk/consett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652381",
          "name": "Corby",
          "country_code": "UK",
          "slug": "corby",
          "canonical_path": "/cities/uk/corby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652294",
          "name": "Cosham",
          "country_code": "UK",
          "slug": "cosham",
          "canonical_path": "/cities/uk/cosham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652249",
          "name": "Coulsdon",
          "country_code": "UK",
          "slug": "coulsdon",
          "canonical_path": "/cities/uk/coulsdon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652227",
          "name": "Cove",
          "country_code": "UK",
          "slug": "cove",
          "canonical_path": "/cities/uk/cove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652229",
          "name": "Cove",
          "country_code": "UK",
          "slug": "cove-eng-f2",
          "canonical_path": "/cities/uk/cove-eng-f2/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652221",
          "name": "Coventry",
          "country_code": "UK",
          "slug": "coventry",
          "canonical_path": "/cities/uk/coventry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652207",
          "name": "Cowdenbeath",
          "country_code": "UK",
          "slug": "cowdenbeath",
          "canonical_path": "/cities/uk/cowdenbeath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652191",
          "name": "Cowley",
          "country_code": "UK",
          "slug": "cowley",
          "canonical_path": "/cities/uk/cowley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6940296",
          "name": "Cowplain",
          "country_code": "UK",
          "slug": "cowplain",
          "canonical_path": "/cities/uk/cowplain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652095",
          "name": "Cramlington",
          "country_code": "UK",
          "slug": "cramlington",
          "canonical_path": "/cities/uk/cramlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652085",
          "name": "Cranford",
          "country_code": "UK",
          "slug": "cranford",
          "canonical_path": "/cities/uk/cranford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652053",
          "name": "Crawley",
          "country_code": "UK",
          "slug": "crawley",
          "canonical_path": "/cities/uk/crawley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2652002",
          "name": "Crewe",
          "country_code": "UK",
          "slug": "crewe",
          "canonical_path": "/cities/uk/crewe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651984",
          "name": "Cricklewood",
          "country_code": "UK",
          "slug": "cricklewood",
          "canonical_path": "/cities/uk/cricklewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651983",
          "name": "Crieff",
          "country_code": "UK",
          "slug": "crieff",
          "canonical_path": "/cities/uk/crieff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11551042",
          "name": "Crofton Park",
          "country_code": "UK",
          "slug": "crofton-park",
          "canonical_path": "/cities/uk/crofton-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:crosby-sefton",
          "name": "Crosby (Sefton)",
          "country_code": "UK",
          "slug": "crosby-sefton",
          "canonical_path": "/cities/uk/crosby-sefton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:7732703",
          "name": "Cross Hills",
          "country_code": "UK",
          "slug": "cross-hills",
          "canonical_path": "/cities/uk/cross-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651852",
          "name": "Crowborough",
          "country_code": "UK",
          "slug": "crowborough",
          "canonical_path": "/cities/uk/crowborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651826",
          "name": "Croxley Green",
          "country_code": "UK",
          "slug": "croxley-green",
          "canonical_path": "/cities/uk/croxley-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651817",
          "name": "Croydon",
          "country_code": "UK",
          "slug": "croydon",
          "canonical_path": "/cities/uk/croydon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651804",
          "name": "Crumlin",
          "country_code": "UK",
          "slug": "crumlin",
          "canonical_path": "/cities/uk/crumlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651805",
          "name": "Crumlin",
          "country_code": "UK",
          "slug": "crumlin-wls-x4",
          "canonical_path": "/cities/uk/crumlin-wls-x4/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6693937",
          "name": "Crystal Palace",
          "country_code": "UK",
          "slug": "crystal-palace",
          "canonical_path": "/cities/uk/crystal-palace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651778",
          "name": "Cudworth",
          "country_code": "UK",
          "slug": "cudworth",
          "canonical_path": "/cities/uk/cudworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:cudworth-and-shafton",
          "name": "Cudworth and Shafton",
          "country_code": "UK",
          "slug": "cudworth-and-shafton",
          "canonical_path": "/cities/uk/cudworth-and-shafton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651715",
          "name": "Cumbernauld",
          "country_code": "UK",
          "slug": "cumbernauld",
          "canonical_path": "/cities/uk/cumbernauld/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651706",
          "name": "Cumnock",
          "country_code": "UK",
          "slug": "cumnock",
          "canonical_path": "/cities/uk/cumnock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651698",
          "name": "Cupar",
          "country_code": "UK",
          "slug": "cupar",
          "canonical_path": "/cities/uk/cupar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651685",
          "name": "Currie",
          "country_code": "UK",
          "slug": "currie",
          "canonical_path": "/cities/uk/currie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651656",
          "name": "Cwmafan",
          "country_code": "UK",
          "slug": "cwmafan",
          "canonical_path": "/cities/uk/cwmafan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651621",
          "name": "Dagenham",
          "country_code": "UK",
          "slug": "dagenham",
          "canonical_path": "/cities/uk/dagenham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8739669",
          "name": "Dalgety Bay",
          "country_code": "UK",
          "slug": "dalgety-bay",
          "canonical_path": "/cities/uk/dalgety-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651587",
          "name": "Dalkeith",
          "country_code": "UK",
          "slug": "dalkeith",
          "canonical_path": "/cities/uk/dalkeith/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651570",
          "name": "Dalmuir",
          "country_code": "UK",
          "slug": "dalmuir",
          "canonical_path": "/cities/uk/dalmuir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651561",
          "name": "Dalry",
          "country_code": "UK",
          "slug": "dalry",
          "canonical_path": "/cities/uk/dalry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651558",
          "name": "Dalserf",
          "country_code": "UK",
          "slug": "dalserf",
          "canonical_path": "/cities/uk/dalserf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651513",
          "name": "Darlington",
          "country_code": "UK",
          "slug": "darlington",
          "canonical_path": "/cities/uk/darlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651500",
          "name": "Dartford",
          "country_code": "UK",
          "slug": "dartford",
          "canonical_path": "/cities/uk/dartford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651495",
          "name": "Darwen",
          "country_code": "UK",
          "slug": "darwen",
          "canonical_path": "/cities/uk/darwen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651485",
          "name": "Daventry",
          "country_code": "UK",
          "slug": "daventry",
          "canonical_path": "/cities/uk/daventry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651468",
          "name": "Deal",
          "country_code": "UK",
          "slug": "deal",
          "canonical_path": "/cities/uk/deal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8299616",
          "name": "Deeside",
          "country_code": "UK",
          "slug": "deeside",
          "canonical_path": "/cities/uk/deeside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651407",
          "name": "Deganwy",
          "country_code": "UK",
          "slug": "deganwy",
          "canonical_path": "/cities/uk/deganwy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651366",
          "name": "Denny",
          "country_code": "UK",
          "slug": "denny",
          "canonical_path": "/cities/uk/denny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651357",
          "name": "Denton",
          "country_code": "UK",
          "slug": "denton",
          "canonical_path": "/cities/uk/denton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651347",
          "name": "Derby",
          "country_code": "UK",
          "slug": "derby",
          "canonical_path": "/cities/uk/derby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651286",
          "name": "Dewsbury",
          "country_code": "UK",
          "slug": "dewsbury",
          "canonical_path": "/cities/uk/dewsbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651269",
          "name": "Didcot",
          "country_code": "UK",
          "slug": "didcot",
          "canonical_path": "/cities/uk/didcot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6620310",
          "name": "Didsbury",
          "country_code": "UK",
          "slug": "didsbury",
          "canonical_path": "/cities/uk/didsbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651248",
          "name": "Dinas Powys",
          "country_code": "UK",
          "slug": "dinas-powys",
          "canonical_path": "/cities/uk/dinas-powys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651246",
          "name": "Dingle",
          "country_code": "UK",
          "slug": "dingle",
          "canonical_path": "/cities/uk/dingle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651245",
          "name": "Dingwall",
          "country_code": "UK",
          "slug": "dingwall",
          "canonical_path": "/cities/uk/dingwall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651241",
          "name": "Dinnington",
          "country_code": "UK",
          "slug": "dinnington",
          "canonical_path": "/cities/uk/dinnington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651123",
          "name": "Doncaster",
          "country_code": "UK",
          "slug": "doncaster",
          "canonical_path": "/cities/uk/doncaster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6900515",
          "name": "Donington le Heath",
          "country_code": "UK",
          "slug": "donington-le-heath",
          "canonical_path": "/cities/uk/donington-le-heath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651101",
          "name": "Dorchester",
          "country_code": "UK",
          "slug": "dorchester",
          "canonical_path": "/cities/uk/dorchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651082",
          "name": "Dorridge",
          "country_code": "UK",
          "slug": "dorridge",
          "canonical_path": "/cities/uk/dorridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651048",
          "name": "Dover",
          "country_code": "UK",
          "slug": "dover",
          "canonical_path": "/cities/uk/dover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651021",
          "name": "Downside",
          "country_code": "UK",
          "slug": "downside",
          "canonical_path": "/cities/uk/downside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650983",
          "name": "Droitwich",
          "country_code": "UK",
          "slug": "droitwich",
          "canonical_path": "/cities/uk/droitwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650967",
          "name": "Dronfield",
          "country_code": "UK",
          "slug": "dronfield",
          "canonical_path": "/cities/uk/dronfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650962",
          "name": "Droylsden",
          "country_code": "UK",
          "slug": "droylsden",
          "canonical_path": "/cities/uk/droylsden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650839",
          "name": "Dudley",
          "country_code": "UK",
          "slug": "dudley",
          "canonical_path": "/cities/uk/dudley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650815",
          "name": "Dukinfield",
          "country_code": "UK",
          "slug": "dukinfield",
          "canonical_path": "/cities/uk/dukinfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650802",
          "name": "Dumbarton",
          "country_code": "UK",
          "slug": "dumbarton",
          "canonical_path": "/cities/uk/dumbarton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650798",
          "name": "Dumfries",
          "country_code": "UK",
          "slug": "dumfries",
          "canonical_path": "/cities/uk/dumfries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650776",
          "name": "Dunbar",
          "country_code": "UK",
          "slug": "dunbar",
          "canonical_path": "/cities/uk/dunbar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650769",
          "name": "Dunblane",
          "country_code": "UK",
          "slug": "dunblane",
          "canonical_path": "/cities/uk/dunblane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650752",
          "name": "Dundee",
          "country_code": "UK",
          "slug": "dundee",
          "canonical_path": "/cities/uk/dundee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650732",
          "name": "Dunfermline",
          "country_code": "UK",
          "slug": "dunfermline",
          "canonical_path": "/cities/uk/dunfermline/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650721",
          "name": "Dunholme",
          "country_code": "UK",
          "slug": "dunholme",
          "canonical_path": "/cities/uk/dunholme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650681",
          "name": "Dunoon",
          "country_code": "UK",
          "slug": "dunoon",
          "canonical_path": "/cities/uk/dunoon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650657",
          "name": "Dunstable",
          "country_code": "UK",
          "slug": "dunstable",
          "canonical_path": "/cities/uk/dunstable/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650646",
          "name": "Duntocher",
          "country_code": "UK",
          "slug": "duntocher",
          "canonical_path": "/cities/uk/duntocher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650628",
          "name": "Durham",
          "country_code": "UK",
          "slug": "durham",
          "canonical_path": "/cities/uk/durham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6694830",
          "name": "Eaglescliffe",
          "country_code": "UK",
          "slug": "eaglescliffe",
          "canonical_path": "/cities/uk/eaglescliffe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8063096",
          "name": "Earlsfield",
          "country_code": "UK",
          "slug": "earlsfield",
          "canonical_path": "/cities/uk/earlsfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650518",
          "name": "Easington",
          "country_code": "UK",
          "slug": "easington",
          "canonical_path": "/cities/uk/easington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650498",
          "name": "East Boldon",
          "country_code": "UK",
          "slug": "east-boldon",
          "canonical_path": "/cities/uk/east-boldon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650470",
          "name": "East Dereham",
          "country_code": "UK",
          "slug": "east-dereham",
          "canonical_path": "/cities/uk/east-dereham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650435",
          "name": "East Grinstead",
          "country_code": "UK",
          "slug": "east-grinstead",
          "canonical_path": "/cities/uk/east-grinstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650405",
          "name": "East Kilbride",
          "country_code": "UK",
          "slug": "east-kilbride",
          "canonical_path": "/cities/uk/east-kilbride/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650376",
          "name": "East Molesey",
          "country_code": "UK",
          "slug": "east-molesey",
          "canonical_path": "/cities/uk/east-molesey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11551053",
          "name": "East Sheen",
          "country_code": "UK",
          "slug": "east-sheen",
          "canonical_path": "/cities/uk/east-sheen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650497",
          "name": "Eastbourne",
          "country_code": "UK",
          "slug": "eastbourne",
          "canonical_path": "/cities/uk/eastbourne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650396",
          "name": "Eastleigh",
          "country_code": "UK",
          "slug": "eastleigh",
          "canonical_path": "/cities/uk/eastleigh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650368",
          "name": "Easton",
          "country_code": "UK",
          "slug": "easton",
          "canonical_path": "/cities/uk/easton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650293",
          "name": "Eaton Socon",
          "country_code": "UK",
          "slug": "eaton-socon",
          "canonical_path": "/cities/uk/eaton-socon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650285",
          "name": "Ebbw Vale",
          "country_code": "UK",
          "slug": "ebbw-vale",
          "canonical_path": "/cities/uk/ebbw-vale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650278",
          "name": "Eccles",
          "country_code": "UK",
          "slug": "eccles",
          "canonical_path": "/cities/uk/eccles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650228",
          "name": "Edgware",
          "country_code": "UK",
          "slug": "edgware",
          "canonical_path": "/cities/uk/edgware/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650225",
          "name": "Edinburgh",
          "country_code": "UK",
          "slug": "edinburgh",
          "canonical_path": "/cities/uk/edinburgh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650209",
          "name": "Edmonton",
          "country_code": "UK",
          "slug": "edmonton",
          "canonical_path": "/cities/uk/edmonton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:egglescliffe",
          "name": "Egglescliffe",
          "country_code": "UK",
          "slug": "egglescliffe",
          "canonical_path": "/cities/uk/egglescliffe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650188",
          "name": "Egham",
          "country_code": "UK",
          "slug": "egham",
          "canonical_path": "/cities/uk/egham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650128",
          "name": "Elderslie",
          "country_code": "UK",
          "slug": "elderslie",
          "canonical_path": "/cities/uk/elderslie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650122",
          "name": "Elgin",
          "country_code": "UK",
          "slug": "elgin",
          "canonical_path": "/cities/uk/elgin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650096",
          "name": "Ellesmere Port Town",
          "country_code": "UK",
          "slug": "ellesmere-port-town",
          "canonical_path": "/cities/uk/ellesmere-port-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650086",
          "name": "Ellon",
          "country_code": "UK",
          "slug": "ellon",
          "canonical_path": "/cities/uk/ellon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650042",
          "name": "Eltham",
          "country_code": "UK",
          "slug": "eltham",
          "canonical_path": "/cities/uk/eltham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650000",
          "name": "Enderby",
          "country_code": "UK",
          "slug": "enderby",
          "canonical_path": "/cities/uk/enderby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649996",
          "name": "Enfield Lock",
          "country_code": "UK",
          "slug": "enfield-lock",
          "canonical_path": "/cities/uk/enfield-lock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649997",
          "name": "Enfield Town",
          "country_code": "UK",
          "slug": "enfield-town",
          "canonical_path": "/cities/uk/enfield-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649957",
          "name": "Epsom",
          "country_code": "UK",
          "slug": "epsom",
          "canonical_path": "/cities/uk/epsom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649937",
          "name": "Erith",
          "country_code": "UK",
          "slug": "erith",
          "canonical_path": "/cities/uk/erith/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6639623",
          "name": "Erskine",
          "country_code": "UK",
          "slug": "erskine",
          "canonical_path": "/cities/uk/erskine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649886",
          "name": "Eston",
          "country_code": "UK",
          "slug": "eston",
          "canonical_path": "/cities/uk/eston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649833",
          "name": "Evesham",
          "country_code": "UK",
          "slug": "evesham",
          "canonical_path": "/cities/uk/evesham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649830",
          "name": "Evington",
          "country_code": "UK",
          "slug": "evington",
          "canonical_path": "/cities/uk/evington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649808",
          "name": "Exeter",
          "country_code": "UK",
          "slug": "exeter",
          "canonical_path": "/cities/uk/exeter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649800",
          "name": "Exmouth",
          "country_code": "UK",
          "slug": "exmouth",
          "canonical_path": "/cities/uk/exmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592280",
          "name": "Faifley",
          "country_code": "UK",
          "slug": "faifley",
          "canonical_path": "/cities/uk/faifley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2651849",
          "name": "Fair Oak",
          "country_code": "UK",
          "slug": "fair-oak",
          "canonical_path": "/cities/uk/fair-oak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649723",
          "name": "Falkirk",
          "country_code": "UK",
          "slug": "falkirk",
          "canonical_path": "/cities/uk/falkirk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649715",
          "name": "Falmouth",
          "country_code": "UK",
          "slug": "falmouth",
          "canonical_path": "/cities/uk/falmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649692",
          "name": "Fareham",
          "country_code": "UK",
          "slug": "fareham",
          "canonical_path": "/cities/uk/fareham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649671",
          "name": "Farnborough",
          "country_code": "UK",
          "slug": "farnborough",
          "canonical_path": "/cities/uk/farnborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649672",
          "name": "Farnborough",
          "country_code": "UK",
          "slug": "farnborough-eng-f2",
          "canonical_path": "/cities/uk/farnborough-eng-f2/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649660",
          "name": "Farnham",
          "country_code": "UK",
          "slug": "farnham",
          "canonical_path": "/cities/uk/farnham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649657",
          "name": "Farnham Royal",
          "country_code": "UK",
          "slug": "farnham-royal",
          "canonical_path": "/cities/uk/farnham-royal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649650",
          "name": "Farnworth",
          "country_code": "UK",
          "slug": "farnworth",
          "canonical_path": "/cities/uk/farnworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649622",
          "name": "Faversham",
          "country_code": "UK",
          "slug": "faversham",
          "canonical_path": "/cities/uk/faversham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649610",
          "name": "Fazakerley",
          "country_code": "UK",
          "slug": "fazakerley",
          "canonical_path": "/cities/uk/fazakerley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649593",
          "name": "Featherstone",
          "country_code": "UK",
          "slug": "featherstone",
          "canonical_path": "/cities/uk/featherstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6692918",
          "name": "Featherstone",
          "country_code": "UK",
          "slug": "featherstone-eng-m9",
          "canonical_path": "/cities/uk/featherstone-eng-m9/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649579",
          "name": "Felixstowe",
          "country_code": "UK",
          "slug": "felixstowe",
          "canonical_path": "/cities/uk/felixstowe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649578",
          "name": "Felling",
          "country_code": "UK",
          "slug": "felling",
          "canonical_path": "/cities/uk/felling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649571",
          "name": "Feltham",
          "country_code": "UK",
          "slug": "feltham",
          "canonical_path": "/cities/uk/feltham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649531",
          "name": "Ferndale",
          "country_code": "UK",
          "slug": "ferndale",
          "canonical_path": "/cities/uk/ferndale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:7287910",
          "name": "Fetcham",
          "country_code": "UK",
          "slug": "fetcham",
          "canonical_path": "/cities/uk/fetcham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649441",
          "name": "Finchley",
          "country_code": "UK",
          "slug": "finchley",
          "canonical_path": "/cities/uk/finchley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12217158",
          "name": "Flackwell Heath",
          "country_code": "UK",
          "slug": "flackwell-heath",
          "canonical_path": "/cities/uk/flackwell-heath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:flackwell-heath-and-wooburn-green",
          "name": "Flackwell Heath and Wooburn Green",
          "country_code": "UK",
          "slug": "flackwell-heath-and-wooburn-green",
          "canonical_path": "/cities/uk/flackwell-heath-and-wooburn-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649322",
          "name": "Fleet",
          "country_code": "UK",
          "slug": "fleet",
          "canonical_path": "/cities/uk/fleet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649312",
          "name": "Fleetwood",
          "country_code": "UK",
          "slug": "fleetwood",
          "canonical_path": "/cities/uk/fleetwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649258",
          "name": "Folkestone",
          "country_code": "UK",
          "slug": "folkestone",
          "canonical_path": "/cities/uk/folkestone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649228",
          "name": "Fordingbridge",
          "country_code": "UK",
          "slug": "fordingbridge",
          "canonical_path": "/cities/uk/fordingbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649207",
          "name": "Forfar",
          "country_code": "UK",
          "slug": "forfar",
          "canonical_path": "/cities/uk/forfar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649198",
          "name": "Formby",
          "country_code": "UK",
          "slug": "formby",
          "canonical_path": "/cities/uk/formby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649192",
          "name": "Forres",
          "country_code": "UK",
          "slug": "forres",
          "canonical_path": "/cities/uk/forres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649089",
          "name": "Fraserburgh",
          "country_code": "UK",
          "slug": "fraserburgh",
          "canonical_path": "/cities/uk/fraserburgh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649083",
          "name": "Freckleton",
          "country_code": "UK",
          "slug": "freckleton",
          "canonical_path": "/cities/uk/freckleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649069",
          "name": "Freshwater",
          "country_code": "UK",
          "slug": "freshwater",
          "canonical_path": "/cities/uk/freshwater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:freshwater-and-totland",
          "name": "Freshwater and Totland",
          "country_code": "UK",
          "slug": "freshwater-and-totland",
          "canonical_path": "/cities/uk/freshwater-and-totland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649055",
          "name": "Friern Barnet",
          "country_code": "UK",
          "slug": "friern-barnet",
          "canonical_path": "/cities/uk/friern-barnet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:frimley",
          "name": "Frimley",
          "country_code": "UK",
          "slug": "frimley",
          "canonical_path": "/cities/uk/frimley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:10104050",
          "name": "Frimley Green",
          "country_code": "UK",
          "slug": "frimley-green",
          "canonical_path": "/cities/uk/frimley-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649049",
          "name": "Frinton-on-Sea",
          "country_code": "UK",
          "slug": "frinton-on-sea",
          "canonical_path": "/cities/uk/frinton-on-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2649024",
          "name": "Frome",
          "country_code": "UK",
          "slug": "frome",
          "canonical_path": "/cities/uk/frome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648997",
          "name": "Fulham",
          "country_code": "UK",
          "slug": "fulham",
          "canonical_path": "/cities/uk/fulham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648988",
          "name": "Fulwood",
          "country_code": "UK",
          "slug": "fulwood",
          "canonical_path": "/cities/uk/fulwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6621542",
          "name": "Furnace Green",
          "country_code": "UK",
          "slug": "furnace-green",
          "canonical_path": "/cities/uk/furnace-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750102",
          "name": "Furze Platt",
          "country_code": "UK",
          "slug": "furze-platt",
          "canonical_path": "/cities/uk/furze-platt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648970",
          "name": "Fylde",
          "country_code": "UK",
          "slug": "fylde",
          "canonical_path": "/cities/uk/fylde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648945",
          "name": "Gainsborough",
          "country_code": "UK",
          "slug": "gainsborough",
          "canonical_path": "/cities/uk/gainsborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648928",
          "name": "Galashiels",
          "country_code": "UK",
          "slug": "galashiels",
          "canonical_path": "/cities/uk/galashiels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648827",
          "name": "Garston",
          "country_code": "UK",
          "slug": "garston",
          "canonical_path": "/cities/uk/garston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648828",
          "name": "Garston",
          "country_code": "UK",
          "slug": "garston-eng-f8",
          "canonical_path": "/cities/uk/garston-eng-f8/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648826",
          "name": "Garswood",
          "country_code": "UK",
          "slug": "garswood",
          "canonical_path": "/cities/uk/garswood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648773",
          "name": "Gateshead",
          "country_code": "UK",
          "slug": "gateshead",
          "canonical_path": "/cities/uk/gateshead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648738",
          "name": "Gedling",
          "country_code": "UK",
          "slug": "gedling",
          "canonical_path": "/cities/uk/gedling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648728",
          "name": "Gelligaer",
          "country_code": "UK",
          "slug": "gelligaer",
          "canonical_path": "/cities/uk/gelligaer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648683",
          "name": "Giffnock",
          "country_code": "UK",
          "slug": "giffnock",
          "canonical_path": "/cities/uk/giffnock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648657",
          "name": "Gillingham",
          "country_code": "UK",
          "slug": "gillingham",
          "canonical_path": "/cities/uk/gillingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648658",
          "name": "Gillingham",
          "country_code": "UK",
          "slug": "gillingham-eng-d6",
          "canonical_path": "/cities/uk/gillingham-eng-d6/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648626",
          "name": "Girvan",
          "country_code": "UK",
          "slug": "girvan",
          "canonical_path": "/cities/uk/girvan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648579",
          "name": "Glasgow",
          "country_code": "UK",
          "slug": "glasgow",
          "canonical_path": "/cities/uk/glasgow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648448",
          "name": "Glen Parva",
          "country_code": "UK",
          "slug": "glen-parva",
          "canonical_path": "/cities/uk/glen-parva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648484",
          "name": "Glenfield",
          "country_code": "UK",
          "slug": "glenfield",
          "canonical_path": "/cities/uk/glenfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648438",
          "name": "Glenrothes",
          "country_code": "UK",
          "slug": "glenrothes",
          "canonical_path": "/cities/uk/glenrothes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648404",
          "name": "Gloucester",
          "country_code": "UK",
          "slug": "gloucester",
          "canonical_path": "/cities/uk/gloucester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648396",
          "name": "Glusburn",
          "country_code": "UK",
          "slug": "glusburn",
          "canonical_path": "/cities/uk/glusburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648385",
          "name": "Glyn-neath",
          "country_code": "UK",
          "slug": "glyn-neath",
          "canonical_path": "/cities/uk/glyn-neath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648356",
          "name": "Golborne",
          "country_code": "UK",
          "slug": "golborne",
          "canonical_path": "/cities/uk/golborne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:7535506",
          "name": "Golders Green",
          "country_code": "UK",
          "slug": "golders-green",
          "canonical_path": "/cities/uk/golders-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648330",
          "name": "Goodmayes",
          "country_code": "UK",
          "slug": "goodmayes",
          "canonical_path": "/cities/uk/goodmayes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648319",
          "name": "Goole",
          "country_code": "UK",
          "slug": "goole",
          "canonical_path": "/cities/uk/goole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648308",
          "name": "Gorebridge",
          "country_code": "UK",
          "slug": "gorebridge",
          "canonical_path": "/cities/uk/gorebridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648299",
          "name": "Gorleston-on-Sea",
          "country_code": "UK",
          "slug": "gorleston-on-sea",
          "canonical_path": "/cities/uk/gorleston-on-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648290",
          "name": "Gorseinon",
          "country_code": "UK",
          "slug": "gorseinon",
          "canonical_path": "/cities/uk/gorseinon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648273",
          "name": "Gosforth",
          "country_code": "UK",
          "slug": "gosforth",
          "canonical_path": "/cities/uk/gosforth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648272",
          "name": "Gosport",
          "country_code": "UK",
          "slug": "gosport",
          "canonical_path": "/cities/uk/gosport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6621547",
          "name": "Gossops Green",
          "country_code": "UK",
          "slug": "gossops-green",
          "canonical_path": "/cities/uk/gossops-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648259",
          "name": "Gourock",
          "country_code": "UK",
          "slug": "gourock",
          "canonical_path": "/cities/uk/gourock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690801",
          "name": "Grange Hill",
          "country_code": "UK",
          "slug": "grange-hill",
          "canonical_path": "/cities/uk/grange-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648215",
          "name": "Grangemouth",
          "country_code": "UK",
          "slug": "grangemouth",
          "canonical_path": "/cities/uk/grangemouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648208",
          "name": "Grantham",
          "country_code": "UK",
          "slug": "grantham",
          "canonical_path": "/cities/uk/grantham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6693989",
          "name": "Grappenhall",
          "country_code": "UK",
          "slug": "grappenhall",
          "canonical_path": "/cities/uk/grappenhall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648187",
          "name": "Gravesend",
          "country_code": "UK",
          "slug": "gravesend",
          "canonical_path": "/cities/uk/gravesend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648182",
          "name": "Grays",
          "country_code": "UK",
          "slug": "grays",
          "canonical_path": "/cities/uk/grays/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648154",
          "name": "Great Bookham",
          "country_code": "UK",
          "slug": "great-bookham",
          "canonical_path": "/cities/uk/great-bookham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648096",
          "name": "Great Gonerby",
          "country_code": "UK",
          "slug": "great-gonerby",
          "canonical_path": "/cities/uk/great-gonerby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648063",
          "name": "Great Malvern",
          "country_code": "UK",
          "slug": "great-malvern",
          "canonical_path": "/cities/uk/great-malvern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648057",
          "name": "Great Missenden",
          "country_code": "UK",
          "slug": "great-missenden",
          "canonical_path": "/cities/uk/great-missenden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2648026",
          "name": "Great Sankey",
          "country_code": "UK",
          "slug": "great-sankey",
          "canonical_path": "/cities/uk/great-sankey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647985",
          "name": "Great Wyrley",
          "country_code": "UK",
          "slug": "great-wyrley",
          "canonical_path": "/cities/uk/great-wyrley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647984",
          "name": "Great Yarmouth",
          "country_code": "UK",
          "slug": "great-yarmouth",
          "canonical_path": "/cities/uk/great-yarmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647972",
          "name": "Greenford",
          "country_code": "UK",
          "slug": "greenford",
          "canonical_path": "/cities/uk/greenford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6693776",
          "name": "Greenhill",
          "country_code": "UK",
          "slug": "greenhill",
          "canonical_path": "/cities/uk/greenhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647962",
          "name": "Greenhithe",
          "country_code": "UK",
          "slug": "greenhithe",
          "canonical_path": "/cities/uk/greenhithe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647948",
          "name": "Greenock",
          "country_code": "UK",
          "slug": "greenock",
          "canonical_path": "/cities/uk/greenock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647919",
          "name": "Gresford",
          "country_code": "UK",
          "slug": "gresford",
          "canonical_path": "/cities/uk/gresford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647878",
          "name": "Grimsby",
          "country_code": "UK",
          "slug": "grimsby",
          "canonical_path": "/cities/uk/grimsby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647837",
          "name": "Grove",
          "country_code": "UK",
          "slug": "grove",
          "canonical_path": "/cities/uk/grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647793",
          "name": "Guildford",
          "country_code": "UK",
          "slug": "guildford",
          "canonical_path": "/cities/uk/guildford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647686",
          "name": "Haddington",
          "country_code": "UK",
          "slug": "haddington",
          "canonical_path": "/cities/uk/haddington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647677",
          "name": "Hadley",
          "country_code": "UK",
          "slug": "hadley",
          "canonical_path": "/cities/uk/hadley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6693771",
          "name": "Hadley Wood",
          "country_code": "UK",
          "slug": "hadley-wood",
          "canonical_path": "/cities/uk/hadley-wood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647655",
          "name": "Hailsham",
          "country_code": "UK",
          "slug": "hailsham",
          "canonical_path": "/cities/uk/hailsham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6640028",
          "name": "Hale",
          "country_code": "UK",
          "slug": "hale",
          "canonical_path": "/cities/uk/hale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12491995",
          "name": "Hale Barns",
          "country_code": "UK",
          "slug": "hale-barns",
          "canonical_path": "/cities/uk/hale-barns/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647639",
          "name": "Halesowen",
          "country_code": "UK",
          "slug": "halesowen",
          "canonical_path": "/cities/uk/halesowen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647638",
          "name": "Halesworth",
          "country_code": "UK",
          "slug": "halesworth",
          "canonical_path": "/cities/uk/halesworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647637",
          "name": "Halewood",
          "country_code": "UK",
          "slug": "halewood",
          "canonical_path": "/cities/uk/halewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647632",
          "name": "Halifax",
          "country_code": "UK",
          "slug": "halifax",
          "canonical_path": "/cities/uk/halifax/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647604",
          "name": "Halstead",
          "country_code": "UK",
          "slug": "halstead",
          "canonical_path": "/cities/uk/halstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647570",
          "name": "Hamilton",
          "country_code": "UK",
          "slug": "hamilton",
          "canonical_path": "/cities/uk/hamilton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647550",
          "name": "Hampton",
          "country_code": "UK",
          "slug": "hampton",
          "canonical_path": "/cities/uk/hampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:9613008",
          "name": "Hampton Wick",
          "country_code": "UK",
          "slug": "hampton-wick",
          "canonical_path": "/cities/uk/hampton-wick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647514",
          "name": "Hanworth",
          "country_code": "UK",
          "slug": "hanworth",
          "canonical_path": "/cities/uk/hanworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647497",
          "name": "Hardingstone",
          "country_code": "UK",
          "slug": "hardingstone",
          "canonical_path": "/cities/uk/hardingstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647487",
          "name": "Harefield",
          "country_code": "UK",
          "slug": "harefield",
          "canonical_path": "/cities/uk/harefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647468",
          "name": "Harlesden",
          "country_code": "UK",
          "slug": "harlesden",
          "canonical_path": "/cities/uk/harlesden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647461",
          "name": "Harlow",
          "country_code": "UK",
          "slug": "harlow",
          "canonical_path": "/cities/uk/harlow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647451",
          "name": "Harpenden",
          "country_code": "UK",
          "slug": "harpenden",
          "canonical_path": "/cities/uk/harpenden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8581595",
          "name": "Harringay",
          "country_code": "UK",
          "slug": "harringay",
          "canonical_path": "/cities/uk/harringay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647428",
          "name": "Harrogate",
          "country_code": "UK",
          "slug": "harrogate",
          "canonical_path": "/cities/uk/harrogate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647425",
          "name": "Harrow",
          "country_code": "UK",
          "slug": "harrow",
          "canonical_path": "/cities/uk/harrow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647421",
          "name": "Harrow on the Hill",
          "country_code": "UK",
          "slug": "harrow-on-the-hill",
          "canonical_path": "/cities/uk/harrow-on-the-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647420",
          "name": "Harrow Weald",
          "country_code": "UK",
          "slug": "harrow-weald",
          "canonical_path": "/cities/uk/harrow-weald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647400",
          "name": "Hartlepool",
          "country_code": "UK",
          "slug": "hartlepool",
          "canonical_path": "/cities/uk/hartlepool/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647398",
          "name": "Hartley",
          "country_code": "UK",
          "slug": "hartley",
          "canonical_path": "/cities/uk/hartley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647391",
          "name": "Hartshill",
          "country_code": "UK",
          "slug": "hartshill",
          "canonical_path": "/cities/uk/hartshill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647383",
          "name": "Harwich",
          "country_code": "UK",
          "slug": "harwich",
          "canonical_path": "/cities/uk/harwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647359",
          "name": "Hassocks",
          "country_code": "UK",
          "slug": "hassocks",
          "canonical_path": "/cities/uk/hassocks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647356",
          "name": "Hastings",
          "country_code": "UK",
          "slug": "hastings",
          "canonical_path": "/cities/uk/hastings/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647351",
          "name": "Hatch End",
          "country_code": "UK",
          "slug": "hatch-end",
          "canonical_path": "/cities/uk/hatch-end/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647349",
          "name": "Hatfield",
          "country_code": "UK",
          "slug": "hatfield",
          "canonical_path": "/cities/uk/hatfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647317",
          "name": "Havant",
          "country_code": "UK",
          "slug": "havant",
          "canonical_path": "/cities/uk/havant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:havercroft-and-ryhill",
          "name": "Havercroft and Ryhill",
          "country_code": "UK",
          "slug": "havercroft-and-ryhill",
          "canonical_path": "/cities/uk/havercroft-and-ryhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647311",
          "name": "Haverfordwest",
          "country_code": "UK",
          "slug": "haverfordwest",
          "canonical_path": "/cities/uk/haverfordwest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647310",
          "name": "Haverhill",
          "country_code": "UK",
          "slug": "haverhill",
          "canonical_path": "/cities/uk/haverhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647303",
          "name": "Hawarden",
          "country_code": "UK",
          "slug": "hawarden",
          "canonical_path": "/cities/uk/hawarden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647297",
          "name": "Hawick",
          "country_code": "UK",
          "slug": "hawick",
          "canonical_path": "/cities/uk/hawick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647261",
          "name": "Hayes",
          "country_code": "UK",
          "slug": "hayes",
          "canonical_path": "/cities/uk/hayes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647262",
          "name": "Hayes",
          "country_code": "UK",
          "slug": "hayes-eng-gla",
          "canonical_path": "/cities/uk/hayes-eng-gla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8299619",
          "name": "Hayling Island",
          "country_code": "UK",
          "slug": "hayling-island",
          "canonical_path": "/cities/uk/hayling-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647248",
          "name": "Haywards Heath",
          "country_code": "UK",
          "slug": "haywards-heath",
          "canonical_path": "/cities/uk/haywards-heath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647246",
          "name": "Hazel Grove",
          "country_code": "UK",
          "slug": "hazel-grove",
          "canonical_path": "/cities/uk/hazel-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:10345364",
          "name": "Headstone",
          "country_code": "UK",
          "slug": "headstone",
          "canonical_path": "/cities/uk/headstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647227",
          "name": "Heanor",
          "country_code": "UK",
          "slug": "heanor",
          "canonical_path": "/cities/uk/heanor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647209",
          "name": "Hebburn",
          "country_code": "UK",
          "slug": "hebburn",
          "canonical_path": "/cities/uk/hebburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6620360",
          "name": "Hedge End",
          "country_code": "UK",
          "slug": "hedge-end",
          "canonical_path": "/cities/uk/hedge-end/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647187",
          "name": "Heighington",
          "country_code": "UK",
          "slug": "heighington",
          "canonical_path": "/cities/uk/heighington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647178",
          "name": "Helensburgh",
          "country_code": "UK",
          "slug": "helensburgh",
          "canonical_path": "/cities/uk/helensburgh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647138",
          "name": "Hemel Hempstead",
          "country_code": "UK",
          "slug": "hemel-hempstead",
          "canonical_path": "/cities/uk/hemel-hempstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647108",
          "name": "Hengoed",
          "country_code": "UK",
          "slug": "hengoed",
          "canonical_path": "/cities/uk/hengoed/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647097",
          "name": "Henlow",
          "country_code": "UK",
          "slug": "henlow",
          "canonical_path": "/cities/uk/henlow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647074",
          "name": "Hereford",
          "country_code": "UK",
          "slug": "hereford",
          "canonical_path": "/cities/uk/hereford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647057",
          "name": "Herne Bay",
          "country_code": "UK",
          "slug": "herne-bay",
          "canonical_path": "/cities/uk/herne-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647044",
          "name": "Hertford",
          "country_code": "UK",
          "slug": "hertford",
          "canonical_path": "/cities/uk/hertford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647027",
          "name": "Heston",
          "country_code": "UK",
          "slug": "heston",
          "canonical_path": "/cities/uk/heston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2647026",
          "name": "Heswall",
          "country_code": "UK",
          "slug": "heswall",
          "canonical_path": "/cities/uk/heswall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646979",
          "name": "High Blantyre",
          "country_code": "UK",
          "slug": "high-blantyre",
          "canonical_path": "/cities/uk/high-blantyre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8299617",
          "name": "High Peak",
          "country_code": "UK",
          "slug": "high-peak",
          "canonical_path": "/cities/uk/high-peak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646914",
          "name": "High Wycombe",
          "country_code": "UK",
          "slug": "high-wycombe",
          "canonical_path": "/cities/uk/high-wycombe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646976",
          "name": "Highbury",
          "country_code": "UK",
          "slug": "highbury",
          "canonical_path": "/cities/uk/highbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646958",
          "name": "Highgate",
          "country_code": "UK",
          "slug": "highgate",
          "canonical_path": "/cities/uk/highgate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646895",
          "name": "Hillingdon",
          "country_code": "UK",
          "slug": "hillingdon",
          "canonical_path": "/cities/uk/hillingdon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646867",
          "name": "Hinckley",
          "country_code": "UK",
          "slug": "hinckley",
          "canonical_path": "/cities/uk/hinckley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646862",
          "name": "Hindley",
          "country_code": "UK",
          "slug": "hindley",
          "canonical_path": "/cities/uk/hindley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646830",
          "name": "Hirwaun",
          "country_code": "UK",
          "slug": "hirwaun",
          "canonical_path": "/cities/uk/hirwaun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646828",
          "name": "Histon",
          "country_code": "UK",
          "slug": "histon",
          "canonical_path": "/cities/uk/histon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:histon-and-impington",
          "name": "Histon and Impington",
          "country_code": "UK",
          "slug": "histon-and-impington",
          "canonical_path": "/cities/uk/histon-and-impington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646826",
          "name": "Hitchin",
          "country_code": "UK",
          "slug": "hitchin",
          "canonical_path": "/cities/uk/hitchin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646807",
          "name": "Hoddesdon",
          "country_code": "UK",
          "slug": "hoddesdon",
          "canonical_path": "/cities/uk/hoddesdon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11776851",
          "name": "Holbeck",
          "country_code": "UK",
          "slug": "holbeck",
          "canonical_path": "/cities/uk/holbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646781",
          "name": "Holborn",
          "country_code": "UK",
          "slug": "holborn",
          "canonical_path": "/cities/uk/holborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646742",
          "name": "Hollinwood",
          "country_code": "UK",
          "slug": "hollinwood",
          "canonical_path": "/cities/uk/hollinwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646686",
          "name": "Holyhead",
          "country_code": "UK",
          "slug": "holyhead",
          "canonical_path": "/cities/uk/holyhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646675",
          "name": "Holytown",
          "country_code": "UK",
          "slug": "holytown",
          "canonical_path": "/cities/uk/holytown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750093",
          "name": "Holywell",
          "country_code": "UK",
          "slug": "holywell-eng-f8",
          "canonical_path": "/cities/uk/holywell-eng-f8/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646673",
          "name": "Holywell",
          "country_code": "UK",
          "slug": "holywell",
          "canonical_path": "/cities/uk/holywell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646670",
          "name": "Holywood",
          "country_code": "UK",
          "slug": "holywood",
          "canonical_path": "/cities/uk/holywood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:honley",
          "name": "Honley",
          "country_code": "UK",
          "slug": "honley",
          "canonical_path": "/cities/uk/honley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646656",
          "name": "Hoo",
          "country_code": "UK",
          "slug": "hoo",
          "canonical_path": "/cities/uk/hoo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646653",
          "name": "Hook",
          "country_code": "UK",
          "slug": "hook",
          "canonical_path": "/cities/uk/hook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646654",
          "name": "Hook",
          "country_code": "UK",
          "slug": "hook-eng-f2",
          "canonical_path": "/cities/uk/hook-eng-f2/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646606",
          "name": "Horley",
          "country_code": "UK",
          "slug": "horley",
          "canonical_path": "/cities/uk/horley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646580",
          "name": "Hornsey",
          "country_code": "UK",
          "slug": "hornsey",
          "canonical_path": "/cities/uk/hornsey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646558",
          "name": "Horsforth",
          "country_code": "UK",
          "slug": "horsforth",
          "canonical_path": "/cities/uk/horsforth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646557",
          "name": "Horsham",
          "country_code": "UK",
          "slug": "horsham",
          "canonical_path": "/cities/uk/horsham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646542",
          "name": "Horwich",
          "country_code": "UK",
          "slug": "horwich",
          "canonical_path": "/cities/uk/horwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646517",
          "name": "Hounslow",
          "country_code": "UK",
          "slug": "hounslow",
          "canonical_path": "/cities/uk/hounslow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646507",
          "name": "Houston",
          "country_code": "UK",
          "slug": "houston",
          "canonical_path": "/cities/uk/houston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646504",
          "name": "Hove",
          "country_code": "UK",
          "slug": "hove",
          "canonical_path": "/cities/uk/hove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:hoyland",
          "name": "Hoyland",
          "country_code": "UK",
          "slug": "hoyland",
          "canonical_path": "/cities/uk/hoyland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646471",
          "name": "Hoyland Nether",
          "country_code": "UK",
          "slug": "hoyland-nether",
          "canonical_path": "/cities/uk/hoyland-nether/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646460",
          "name": "Hucknall",
          "country_code": "UK",
          "slug": "hucknall",
          "canonical_path": "/cities/uk/hucknall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646458",
          "name": "Huddersfield",
          "country_code": "UK",
          "slug": "huddersfield",
          "canonical_path": "/cities/uk/huddersfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646435",
          "name": "Humberston",
          "country_code": "UK",
          "slug": "humberston",
          "canonical_path": "/cities/uk/humberston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646434",
          "name": "Humberstone",
          "country_code": "UK",
          "slug": "humberstone",
          "canonical_path": "/cities/uk/humberstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646403",
          "name": "Hunstanton",
          "country_code": "UK",
          "slug": "hunstanton",
          "canonical_path": "/cities/uk/hunstanton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646393",
          "name": "Huntingdon",
          "country_code": "UK",
          "slug": "huntingdon",
          "canonical_path": "/cities/uk/huntingdon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646355",
          "name": "Hurstpierpoint",
          "country_code": "UK",
          "slug": "hurstpierpoint",
          "canonical_path": "/cities/uk/hurstpierpoint/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646329",
          "name": "Huyton",
          "country_code": "UK",
          "slug": "huyton",
          "canonical_path": "/cities/uk/huyton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646327",
          "name": "Hyde",
          "country_code": "UK",
          "slug": "hyde",
          "canonical_path": "/cities/uk/hyde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646306",
          "name": "Ickenham",
          "country_code": "UK",
          "slug": "ickenham",
          "canonical_path": "/cities/uk/ickenham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646277",
          "name": "Ilford",
          "country_code": "UK",
          "slug": "ilford",
          "canonical_path": "/cities/uk/ilford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646274",
          "name": "Ilkeston",
          "country_code": "UK",
          "slug": "ilkeston",
          "canonical_path": "/cities/uk/ilkeston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646208",
          "name": "Ingleby Greenhow",
          "country_code": "UK",
          "slug": "ingleby-greenhow",
          "canonical_path": "/cities/uk/ingleby-greenhow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646104",
          "name": "Inverkeithing",
          "country_code": "UK",
          "slug": "inverkeithing",
          "canonical_path": "/cities/uk/inverkeithing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646088",
          "name": "Inverness",
          "country_code": "UK",
          "slug": "inverness",
          "canonical_path": "/cities/uk/inverness/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646073",
          "name": "Inverurie",
          "country_code": "UK",
          "slug": "inverurie",
          "canonical_path": "/cities/uk/inverurie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646057",
          "name": "Ipswich",
          "country_code": "UK",
          "slug": "ipswich",
          "canonical_path": "/cities/uk/ipswich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646032",
          "name": "Irvine",
          "country_code": "UK",
          "slug": "irvine",
          "canonical_path": "/cities/uk/irvine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8299836",
          "name": "Isle of Arran",
          "country_code": "UK",
          "slug": "isle-of-arran",
          "canonical_path": "/cities/uk/isle-of-arran/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8299622",
          "name": "Isle of Bute",
          "country_code": "UK",
          "slug": "isle-of-bute",
          "canonical_path": "/cities/uk/isle-of-bute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8299620",
          "name": "Isle of Lewis",
          "country_code": "UK",
          "slug": "isle-of-lewis",
          "canonical_path": "/cities/uk/isle-of-lewis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646004",
          "name": "Isleworth",
          "country_code": "UK",
          "slug": "isleworth",
          "canonical_path": "/cities/uk/isleworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2646003",
          "name": "Islington",
          "country_code": "UK",
          "slug": "islington",
          "canonical_path": "/cities/uk/islington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645990",
          "name": "Iver",
          "country_code": "UK",
          "slug": "iver",
          "canonical_path": "/cities/uk/iver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645972",
          "name": "Jarrow",
          "country_code": "UK",
          "slug": "jarrow",
          "canonical_path": "/cities/uk/jarrow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645951",
          "name": "Johnstone",
          "country_code": "UK",
          "slug": "johnstone",
          "canonical_path": "/cities/uk/johnstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645889",
          "name": "Keighley",
          "country_code": "UK",
          "slug": "keighley",
          "canonical_path": "/cities/uk/keighley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645849",
          "name": "Kelso",
          "country_code": "UK",
          "slug": "kelso",
          "canonical_path": "/cities/uk/kelso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645843",
          "name": "Kelty",
          "country_code": "UK",
          "slug": "kelty",
          "canonical_path": "/cities/uk/kelty/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645841",
          "name": "Kelvedon",
          "country_code": "UK",
          "slug": "kelvedon",
          "canonical_path": "/cities/uk/kelvedon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645831",
          "name": "Kempston",
          "country_code": "UK",
          "slug": "kempston",
          "canonical_path": "/cities/uk/kempston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6947168",
          "name": "Kempston Hardwick",
          "country_code": "UK",
          "slug": "kempston-hardwick",
          "canonical_path": "/cities/uk/kempston-hardwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645830",
          "name": "Kemsing",
          "country_code": "UK",
          "slug": "kemsing",
          "canonical_path": "/cities/uk/kemsing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645826",
          "name": "Kendal",
          "country_code": "UK",
          "slug": "kendal",
          "canonical_path": "/cities/uk/kendal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645822",
          "name": "Kenilworth",
          "country_code": "UK",
          "slug": "kenilworth",
          "canonical_path": "/cities/uk/kenilworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645821",
          "name": "Kenley",
          "country_code": "UK",
          "slug": "kenley",
          "canonical_path": "/cities/uk/kenley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645753",
          "name": "Kettering",
          "country_code": "UK",
          "slug": "kettering",
          "canonical_path": "/cities/uk/kettering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645740",
          "name": "Kew",
          "country_code": "UK",
          "slug": "kew",
          "canonical_path": "/cities/uk/kew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:kibworth-beauchamp-and-kibworth-harcourt",
          "name": "Kibworth Beauchamp and Kibworth Harcourt",
          "country_code": "UK",
          "slug": "kibworth-beauchamp-and-kibworth-harcourt",
          "canonical_path": "/cities/uk/kibworth-beauchamp-and-kibworth-harcourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645728",
          "name": "Kibworth Harcourt",
          "country_code": "UK",
          "slug": "kibworth-harcourt",
          "canonical_path": "/cities/uk/kibworth-harcourt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645726",
          "name": "Kidbrooke",
          "country_code": "UK",
          "slug": "kidbrooke",
          "canonical_path": "/cities/uk/kidbrooke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645724",
          "name": "Kidderminster",
          "country_code": "UK",
          "slug": "kidderminster",
          "canonical_path": "/cities/uk/kidderminster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645712",
          "name": "Kilbirnie",
          "country_code": "UK",
          "slug": "kilbirnie",
          "canonical_path": "/cities/uk/kilbirnie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645703",
          "name": "Kilburn",
          "country_code": "UK",
          "slug": "kilburn",
          "canonical_path": "/cities/uk/kilburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645605",
          "name": "Kilmarnock",
          "country_code": "UK",
          "slug": "kilmarnock",
          "canonical_path": "/cities/uk/kilmarnock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645548",
          "name": "Kilsyth",
          "country_code": "UK",
          "slug": "kilsyth",
          "canonical_path": "/cities/uk/kilsyth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645541",
          "name": "Kilwinning",
          "country_code": "UK",
          "slug": "kilwinning",
          "canonical_path": "/cities/uk/kilwinning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645539",
          "name": "Kimberley",
          "country_code": "UK",
          "slug": "kimberley",
          "canonical_path": "/cities/uk/kimberley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690589",
          "name": "King's Cross",
          "country_code": "UK",
          "slug": "king-s-cross",
          "canonical_path": "/cities/uk/king-s-cross/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645456",
          "name": "King's Lynn",
          "country_code": "UK",
          "slug": "king-s-lynn",
          "canonical_path": "/cities/uk/king-s-lynn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645460",
          "name": "Kings Langley",
          "country_code": "UK",
          "slug": "kings-langley",
          "canonical_path": "/cities/uk/kings-langley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645425",
          "name": "Kingston upon Hull",
          "country_code": "UK",
          "slug": "kingston-upon-hull",
          "canonical_path": "/cities/uk/kingston-upon-hull/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690829",
          "name": "Kingston upon Thames",
          "country_code": "UK",
          "slug": "kingston-upon-thames",
          "canonical_path": "/cities/uk/kingston-upon-thames/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645420",
          "name": "Kingswinford",
          "country_code": "UK",
          "slug": "kingswinford",
          "canonical_path": "/cities/uk/kingswinford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645418",
          "name": "Kingswood",
          "country_code": "UK",
          "slug": "kingswood",
          "canonical_path": "/cities/uk/kingswood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645419",
          "name": "Kingswood",
          "country_code": "UK",
          "slug": "kingswood-eng-n7",
          "canonical_path": "/cities/uk/kingswood-eng-n7/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645335",
          "name": "Kirby Muxloe",
          "country_code": "UK",
          "slug": "kirby-muxloe",
          "canonical_path": "/cities/uk/kirby-muxloe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645232",
          "name": "Kirk Sandall",
          "country_code": "UK",
          "slug": "kirk-sandall",
          "canonical_path": "/cities/uk/kirk-sandall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:kirk-sandall-and-edenthorpe",
          "name": "Kirk Sandall and Edenthorpe",
          "country_code": "UK",
          "slug": "kirk-sandall-and-edenthorpe",
          "canonical_path": "/cities/uk/kirk-sandall-and-edenthorpe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645313",
          "name": "Kirkby",
          "country_code": "UK",
          "slug": "kirkby",
          "canonical_path": "/cities/uk/kirkby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645309",
          "name": "Kirkby in Ashfield",
          "country_code": "UK",
          "slug": "kirkby-in-ashfield",
          "canonical_path": "/cities/uk/kirkby-in-ashfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645298",
          "name": "Kirkcaldy",
          "country_code": "UK",
          "slug": "kirkcaldy",
          "canonical_path": "/cities/uk/kirkcaldy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645261",
          "name": "Kirkintilloch",
          "country_code": "UK",
          "slug": "kirkintilloch",
          "canonical_path": "/cities/uk/kirkintilloch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645255",
          "name": "Kirkleatham",
          "country_code": "UK",
          "slug": "kirkleatham",
          "canonical_path": "/cities/uk/kirkleatham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645198",
          "name": "Kirkwall",
          "country_code": "UK",
          "slug": "kirkwall",
          "canonical_path": "/cities/uk/kirkwall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645191",
          "name": "Kirriemuir",
          "country_code": "UK",
          "slug": "kirriemuir",
          "canonical_path": "/cities/uk/kirriemuir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:kiveton-park",
          "name": "Kiveton Park",
          "country_code": "UK",
          "slug": "kiveton-park",
          "canonical_path": "/cities/uk/kiveton-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6693245",
          "name": "Knaphill",
          "country_code": "UK",
          "slug": "knaphill",
          "canonical_path": "/cities/uk/knaphill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8063573",
          "name": "Knotty Ash",
          "country_code": "UK",
          "slug": "knotty-ash",
          "canonical_path": "/cities/uk/knotty-ash/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2645099",
          "name": "Knowle",
          "country_code": "UK",
          "slug": "knowle",
          "canonical_path": "/cities/uk/knowle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11551041",
          "name": "Ladywell",
          "country_code": "UK",
          "slug": "ladywell",
          "canonical_path": "/cities/uk/ladywell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644976",
          "name": "Lanark",
          "country_code": "UK",
          "slug": "lanark",
          "canonical_path": "/cities/uk/lanark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644972",
          "name": "Lancaster",
          "country_code": "UK",
          "slug": "lancaster",
          "canonical_path": "/cities/uk/lancaster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641319",
          "name": "Lancing",
          "country_code": "UK",
          "slug": "lancing",
          "canonical_path": "/cities/uk/lancing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6621548",
          "name": "Langley Green",
          "country_code": "UK",
          "slug": "langley-green",
          "canonical_path": "/cities/uk/langley-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644867",
          "name": "Larbert",
          "country_code": "UK",
          "slug": "larbert",
          "canonical_path": "/cities/uk/larbert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644860",
          "name": "Largs",
          "country_code": "UK",
          "slug": "largs",
          "canonical_path": "/cities/uk/largs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6693668",
          "name": "Larkfield",
          "country_code": "UK",
          "slug": "larkfield",
          "canonical_path": "/cities/uk/larkfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644853",
          "name": "Larkhall",
          "country_code": "UK",
          "slug": "larkhall",
          "canonical_path": "/cities/uk/larkhall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644720",
          "name": "Leavesden Green",
          "country_code": "UK",
          "slug": "leavesden-green",
          "canonical_path": "/cities/uk/leavesden-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:9730993",
          "name": "Lee",
          "country_code": "UK",
          "slug": "lee",
          "canonical_path": "/cities/uk/lee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644680",
          "name": "Lee-on-the-Solent",
          "country_code": "UK",
          "slug": "lee-on-the-solent",
          "canonical_path": "/cities/uk/lee-on-the-solent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644688",
          "name": "Leeds",
          "country_code": "UK",
          "slug": "leeds",
          "canonical_path": "/cities/uk/leeds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644668",
          "name": "Leicester",
          "country_code": "UK",
          "slug": "leicester",
          "canonical_path": "/cities/uk/leicester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12264215",
          "name": "Leicester Forest East",
          "country_code": "UK",
          "slug": "leicester-forest-east",
          "canonical_path": "/cities/uk/leicester-forest-east/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644660",
          "name": "Leigh",
          "country_code": "UK",
          "slug": "leigh",
          "canonical_path": "/cities/uk/leigh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644652",
          "name": "Leighton Buzzard",
          "country_code": "UK",
          "slug": "leighton-buzzard",
          "canonical_path": "/cities/uk/leighton-buzzard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592284",
          "name": "Lenzie",
          "country_code": "UK",
          "slug": "lenzie",
          "canonical_path": "/cities/uk/lenzie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644605",
          "name": "Lerwick",
          "country_code": "UK",
          "slug": "lerwick",
          "canonical_path": "/cities/uk/lerwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8224216",
          "name": "Letchworth Garden City",
          "country_code": "UK",
          "slug": "letchworth-garden-city",
          "canonical_path": "/cities/uk/letchworth-garden-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644577",
          "name": "Leven",
          "country_code": "UK",
          "slug": "leven",
          "canonical_path": "/cities/uk/leven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644565",
          "name": "Leverstock Green",
          "country_code": "UK",
          "slug": "leverstock-green",
          "canonical_path": "/cities/uk/leverstock-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644547",
          "name": "Leyland",
          "country_code": "UK",
          "slug": "leyland",
          "canonical_path": "/cities/uk/leyland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644542",
          "name": "Leyton",
          "country_code": "UK",
          "slug": "leyton",
          "canonical_path": "/cities/uk/leyton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644531",
          "name": "Lichfield",
          "country_code": "UK",
          "slug": "lichfield",
          "canonical_path": "/cities/uk/lichfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644487",
          "name": "Lincoln",
          "country_code": "UK",
          "slug": "lincoln",
          "canonical_path": "/cities/uk/lincoln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644444",
          "name": "Linlithgow",
          "country_code": "UK",
          "slug": "linlithgow",
          "canonical_path": "/cities/uk/linlithgow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11551012",
          "name": "Linwood",
          "country_code": "UK",
          "slug": "linwood",
          "canonical_path": "/cities/uk/linwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644398",
          "name": "Liss",
          "country_code": "UK",
          "slug": "liss",
          "canonical_path": "/cities/uk/liss/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644369",
          "name": "Little Bookham",
          "country_code": "UK",
          "slug": "little-bookham",
          "canonical_path": "/cities/uk/little-bookham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644305",
          "name": "Little Hulton",
          "country_code": "UK",
          "slug": "little-hulton",
          "canonical_path": "/cities/uk/little-hulton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644210",
          "name": "Liverpool",
          "country_code": "UK",
          "slug": "liverpool",
          "canonical_path": "/cities/uk/liverpool/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644204",
          "name": "Livingston",
          "country_code": "UK",
          "slug": "livingston",
          "canonical_path": "/cities/uk/livingston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644120",
          "name": "Llandudno",
          "country_code": "UK",
          "slug": "llandudno",
          "canonical_path": "/cities/uk/llandudno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644100",
          "name": "Llanelli",
          "country_code": "UK",
          "slug": "llanelli",
          "canonical_path": "/cities/uk/llanelli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643994",
          "name": "Llanharan",
          "country_code": "UK",
          "slug": "llanharan",
          "canonical_path": "/cities/uk/llanharan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643937",
          "name": "Llantrisant",
          "country_code": "UK",
          "slug": "llantrisant",
          "canonical_path": "/cities/uk/llantrisant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643862",
          "name": "Loanhead",
          "country_code": "UK",
          "slug": "loanhead",
          "canonical_path": "/cities/uk/loanhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643853",
          "name": "Locharbriggs",
          "country_code": "UK",
          "slug": "locharbriggs",
          "canonical_path": "/cities/uk/locharbriggs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643827",
          "name": "Lochgelly",
          "country_code": "UK",
          "slug": "lochgelly",
          "canonical_path": "/cities/uk/lochgelly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643776",
          "name": "Lofthouse",
          "country_code": "UK",
          "slug": "lofthouse",
          "canonical_path": "/cities/uk/lofthouse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:wikidata:Q84",
          "name": "London",
          "country_code": "UK",
          "slug": "london",
          "canonical_path": "/cities/uk/london/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643701",
          "name": "Long Ditton",
          "country_code": "UK",
          "slug": "long-ditton",
          "canonical_path": "/cities/uk/long-ditton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643697",
          "name": "Long Eaton",
          "country_code": "UK",
          "slug": "long-eaton",
          "canonical_path": "/cities/uk/long-eaton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643704",
          "name": "Longdendale",
          "country_code": "UK",
          "slug": "longdendale",
          "canonical_path": "/cities/uk/longdendale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643696",
          "name": "Longfield",
          "country_code": "UK",
          "slug": "longfield",
          "canonical_path": "/cities/uk/longfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643646",
          "name": "Longridge",
          "country_code": "UK",
          "slug": "longridge",
          "canonical_path": "/cities/uk/longridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643587",
          "name": "Lossiemouth",
          "country_code": "UK",
          "slug": "lossiemouth",
          "canonical_path": "/cities/uk/lossiemouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643567",
          "name": "Loughborough",
          "country_code": "UK",
          "slug": "loughborough",
          "canonical_path": "/cities/uk/loughborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643556",
          "name": "Loughton",
          "country_code": "UK",
          "slug": "loughton",
          "canonical_path": "/cities/uk/loughton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:7290015",
          "name": "Lower Earley",
          "country_code": "UK",
          "slug": "lower-earley",
          "canonical_path": "/cities/uk/lower-earley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643490",
          "name": "Lowestoft",
          "country_code": "UK",
          "slug": "lowestoft",
          "canonical_path": "/cities/uk/lowestoft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643339",
          "name": "Luton",
          "country_code": "UK",
          "slug": "luton",
          "canonical_path": "/cities/uk/luton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643298",
          "name": "Lyneham",
          "country_code": "UK",
          "slug": "lyneham",
          "canonical_path": "/cities/uk/lyneham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6693470",
          "name": "Lytham St Annes",
          "country_code": "UK",
          "slug": "lytham-st-annes",
          "canonical_path": "/cities/uk/lytham-st-annes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643266",
          "name": "Macclesfield",
          "country_code": "UK",
          "slug": "macclesfield",
          "canonical_path": "/cities/uk/macclesfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643218",
          "name": "Maesteg",
          "country_code": "UK",
          "slug": "maesteg",
          "canonical_path": "/cities/uk/maesteg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643198",
          "name": "Maghull",
          "country_code": "UK",
          "slug": "maghull",
          "canonical_path": "/cities/uk/maghull/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643196",
          "name": "Magor",
          "country_code": "UK",
          "slug": "magor",
          "canonical_path": "/cities/uk/magor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6621541",
          "name": "Maidenbower",
          "country_code": "UK",
          "slug": "maidenbower",
          "canonical_path": "/cities/uk/maidenbower/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643186",
          "name": "Maidenhead",
          "country_code": "UK",
          "slug": "maidenhead",
          "canonical_path": "/cities/uk/maidenhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643179",
          "name": "Maidstone",
          "country_code": "UK",
          "slug": "maidstone",
          "canonical_path": "/cities/uk/maidstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643160",
          "name": "Maldon",
          "country_code": "UK",
          "slug": "maldon",
          "canonical_path": "/cities/uk/maldon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643123",
          "name": "Manchester",
          "country_code": "UK",
          "slug": "manchester",
          "canonical_path": "/cities/uk/manchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643116",
          "name": "Mangotsfield",
          "country_code": "UK",
          "slug": "mangotsfield",
          "canonical_path": "/cities/uk/mangotsfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643107",
          "name": "Manningtree",
          "country_code": "UK",
          "slug": "manningtree",
          "canonical_path": "/cities/uk/manningtree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11550772",
          "name": "Manor Park",
          "country_code": "UK",
          "slug": "manor-park",
          "canonical_path": "/cities/uk/manor-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643097",
          "name": "Mansfield",
          "country_code": "UK",
          "slug": "mansfield",
          "canonical_path": "/cities/uk/mansfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643095",
          "name": "Manston",
          "country_code": "UK",
          "slug": "manston",
          "canonical_path": "/cities/uk/manston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643071",
          "name": "March",
          "country_code": "UK",
          "slug": "march",
          "canonical_path": "/cities/uk/march/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643044",
          "name": "Margate",
          "country_code": "UK",
          "slug": "margate",
          "canonical_path": "/cities/uk/margate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2643027",
          "name": "Market Harborough",
          "country_code": "UK",
          "slug": "market-harborough",
          "canonical_path": "/cities/uk/market-harborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750108",
          "name": "Marshalswick",
          "country_code": "UK",
          "slug": "marshalswick",
          "canonical_path": "/cities/uk/marshalswick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592286",
          "name": "Mayfield",
          "country_code": "UK",
          "slug": "mayfield",
          "canonical_path": "/cities/uk/mayfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642814",
          "name": "Meikle Earnock",
          "country_code": "UK",
          "slug": "meikle-earnock",
          "canonical_path": "/cities/uk/meikle-earnock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:meltham",
          "name": "Meltham",
          "country_code": "UK",
          "slug": "meltham",
          "canonical_path": "/cities/uk/meltham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6301962",
          "name": "Meltham Mills",
          "country_code": "UK",
          "slug": "meltham-mills",
          "canonical_path": "/cities/uk/meltham-mills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642763",
          "name": "Melton Mowbray",
          "country_code": "UK",
          "slug": "melton-mowbray",
          "canonical_path": "/cities/uk/melton-mowbray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750096",
          "name": "Meriden",
          "country_code": "UK",
          "slug": "meriden",
          "canonical_path": "/cities/uk/meriden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642711",
          "name": "Merstham",
          "country_code": "UK",
          "slug": "merstham",
          "canonical_path": "/cities/uk/merstham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642705",
          "name": "Merthyr Tydfil",
          "country_code": "UK",
          "slug": "merthyr-tydfil",
          "canonical_path": "/cities/uk/merthyr-tydfil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642694",
          "name": "Methil",
          "country_code": "UK",
          "slug": "methil",
          "canonical_path": "/cities/uk/methil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642607",
          "name": "Middlesbrough",
          "country_code": "UK",
          "slug": "middlesbrough",
          "canonical_path": "/cities/uk/middlesbrough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642593",
          "name": "Middleton",
          "country_code": "UK",
          "slug": "middleton",
          "canonical_path": "/cities/uk/middleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642543",
          "name": "Mildenhall",
          "country_code": "UK",
          "slug": "mildenhall",
          "canonical_path": "/cities/uk/mildenhall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642537",
          "name": "Milford",
          "country_code": "UK",
          "slug": "milford",
          "canonical_path": "/cities/uk/milford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642534",
          "name": "Milford Haven",
          "country_code": "UK",
          "slug": "milford-haven",
          "canonical_path": "/cities/uk/milford-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750090",
          "name": "Mill End",
          "country_code": "UK",
          "slug": "mill-end",
          "canonical_path": "/cities/uk/mill-end/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642484",
          "name": "Milngavie",
          "country_code": "UK",
          "slug": "milngavie",
          "canonical_path": "/cities/uk/milngavie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642465",
          "name": "Milton Keynes",
          "country_code": "UK",
          "slug": "milton-keynes",
          "canonical_path": "/cities/uk/milton-keynes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642414",
          "name": "Mitcham",
          "country_code": "UK",
          "slug": "mitcham",
          "canonical_path": "/cities/uk/mitcham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642342",
          "name": "Monifieth",
          "country_code": "UK",
          "slug": "monifieth",
          "canonical_path": "/cities/uk/monifieth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642313",
          "name": "Monmouth",
          "country_code": "UK",
          "slug": "monmouth",
          "canonical_path": "/cities/uk/monmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642302",
          "name": "Montrose",
          "country_code": "UK",
          "slug": "montrose",
          "canonical_path": "/cities/uk/montrose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6620363",
          "name": "Moodiesburn",
          "country_code": "UK",
          "slug": "moodiesburn",
          "canonical_path": "/cities/uk/moodiesburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642233",
          "name": "Morden",
          "country_code": "UK",
          "slug": "morden",
          "canonical_path": "/cities/uk/morden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642214",
          "name": "Morecambe",
          "country_code": "UK",
          "slug": "morecambe",
          "canonical_path": "/cities/uk/morecambe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642204",
          "name": "Moreton",
          "country_code": "UK",
          "slug": "moreton",
          "canonical_path": "/cities/uk/moreton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642189",
          "name": "Morley",
          "country_code": "UK",
          "slug": "morley",
          "canonical_path": "/cities/uk/morley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11551058",
          "name": "Mortlake",
          "country_code": "UK",
          "slug": "mortlake",
          "canonical_path": "/cities/uk/mortlake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642145",
          "name": "Mossend",
          "country_code": "UK",
          "slug": "mossend",
          "canonical_path": "/cities/uk/mossend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11550898",
          "name": "Mossley Hill",
          "country_code": "UK",
          "slug": "mossley-hill",
          "canonical_path": "/cities/uk/mossley-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2642135",
          "name": "Motherwell",
          "country_code": "UK",
          "slug": "motherwell",
          "canonical_path": "/cities/uk/motherwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690816",
          "name": "Mottingham",
          "country_code": "UK",
          "slug": "mottingham",
          "canonical_path": "/cities/uk/mottingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641945",
          "name": "Murton",
          "country_code": "UK",
          "slug": "murton",
          "canonical_path": "/cities/uk/murton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641942",
          "name": "Musselburgh",
          "country_code": "UK",
          "slug": "musselburgh",
          "canonical_path": "/cities/uk/musselburgh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6694222",
          "name": "Muswell Hill",
          "country_code": "UK",
          "slug": "muswell-hill",
          "canonical_path": "/cities/uk/muswell-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641910",
          "name": "Nairn",
          "country_code": "UK",
          "slug": "nairn",
          "canonical_path": "/cities/uk/nairn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641884",
          "name": "Narborough",
          "country_code": "UK",
          "slug": "narborough",
          "canonical_path": "/cities/uk/narborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641843",
          "name": "Neath",
          "country_code": "UK",
          "slug": "neath",
          "canonical_path": "/cities/uk/neath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641815",
          "name": "Neilston",
          "country_code": "UK",
          "slug": "neilston",
          "canonical_path": "/cities/uk/neilston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641810",
          "name": "Nelson",
          "country_code": "UK",
          "slug": "nelson",
          "canonical_path": "/cities/uk/nelson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641811",
          "name": "Nelson",
          "country_code": "UK",
          "slug": "nelson-wls-x4",
          "canonical_path": "/cities/uk/nelson-wls-x4/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641795",
          "name": "Neston",
          "country_code": "UK",
          "slug": "neston",
          "canonical_path": "/cities/uk/neston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:3345432",
          "name": "Neston",
          "country_code": "UK",
          "slug": "neston-eng-p8",
          "canonical_path": "/cities/uk/neston-eng-p8/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11549414",
          "name": "Netherley",
          "country_code": "UK",
          "slug": "netherley",
          "canonical_path": "/cities/uk/netherley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641727",
          "name": "New Barnet",
          "country_code": "UK",
          "slug": "new-barnet",
          "canonical_path": "/cities/uk/new-barnet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11863042",
          "name": "New Basford",
          "country_code": "UK",
          "slug": "new-basford",
          "canonical_path": "/cities/uk/new-basford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12265686",
          "name": "New Mill",
          "country_code": "UK",
          "slug": "new-mill",
          "canonical_path": "/cities/uk/new-mill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641582",
          "name": "New Romney",
          "country_code": "UK",
          "slug": "new-romney",
          "canonical_path": "/cities/uk/new-romney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592288",
          "name": "New Stevenston",
          "country_code": "UK",
          "slug": "new-stevenston",
          "canonical_path": "/cities/uk/new-stevenston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641731",
          "name": "Newark on Trent",
          "country_code": "UK",
          "slug": "newark-on-trent",
          "canonical_path": "/cities/uk/newark-on-trent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641729",
          "name": "Newarthill",
          "country_code": "UK",
          "slug": "newarthill",
          "canonical_path": "/cities/uk/newarthill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641690",
          "name": "Newburn",
          "country_code": "UK",
          "slug": "newburn",
          "canonical_path": "/cities/uk/newburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641689",
          "name": "Newbury",
          "country_code": "UK",
          "slug": "newbury",
          "canonical_path": "/cities/uk/newbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:13354228",
          "name": "Newbury Park",
          "country_code": "UK",
          "slug": "newbury-park",
          "canonical_path": "/cities/uk/newbury-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6695976",
          "name": "Newcastle",
          "country_code": "UK",
          "slug": "newcastle",
          "canonical_path": "/cities/uk/newcastle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641674",
          "name": "Newcastle under Lyme",
          "country_code": "UK",
          "slug": "newcastle-under-lyme",
          "canonical_path": "/cities/uk/newcastle-under-lyme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641673",
          "name": "Newcastle upon Tyne",
          "country_code": "UK",
          "slug": "newcastle-upon-tyne",
          "canonical_path": "/cities/uk/newcastle-upon-tyne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641618",
          "name": "Newmains",
          "country_code": "UK",
          "slug": "newmains",
          "canonical_path": "/cities/uk/newmains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641595",
          "name": "Newport",
          "country_code": "UK",
          "slug": "newport",
          "canonical_path": "/cities/uk/newport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641598",
          "name": "Newport",
          "country_code": "UK",
          "slug": "newport-wls-y6",
          "canonical_path": "/cities/uk/newport-wls-y6/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641599",
          "name": "Newport",
          "country_code": "UK",
          "slug": "newport-eng-g2",
          "canonical_path": "/cities/uk/newport-eng-g2/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641589",
          "name": "Newquay",
          "country_code": "UK",
          "slug": "newquay",
          "canonical_path": "/cities/uk/newquay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641557",
          "name": "Newton Abbot",
          "country_code": "UK",
          "slug": "newton-abbot",
          "canonical_path": "/cities/uk/newton-abbot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641555",
          "name": "Newton Aycliffe",
          "country_code": "UK",
          "slug": "newton-aycliffe",
          "canonical_path": "/cities/uk/newton-aycliffe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641544",
          "name": "Newton Mearns",
          "country_code": "UK",
          "slug": "newton-mearns",
          "canonical_path": "/cities/uk/newton-mearns/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641546",
          "name": "Newton-le-Willows",
          "country_code": "UK",
          "slug": "newton-le-willows",
          "canonical_path": "/cities/uk/newton-le-willows/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641523",
          "name": "Newtown",
          "country_code": "UK",
          "slug": "newtown",
          "canonical_path": "/cities/uk/newtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:9409273",
          "name": "Norbiton",
          "country_code": "UK",
          "slug": "norbiton",
          "canonical_path": "/cities/uk/norbiton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641419",
          "name": "North Berwick",
          "country_code": "UK",
          "slug": "north-berwick",
          "canonical_path": "/cities/uk/north-berwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641356",
          "name": "North Ferriby",
          "country_code": "UK",
          "slug": "north-ferriby",
          "canonical_path": "/cities/uk/north-ferriby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641267",
          "name": "North Shields",
          "country_code": "UK",
          "slug": "north-shields",
          "canonical_path": "/cities/uk/north-shields/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6559327",
          "name": "North Watford",
          "country_code": "UK",
          "slug": "north-watford",
          "canonical_path": "/cities/uk/north-watford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641430",
          "name": "Northampton",
          "country_code": "UK",
          "slug": "northampton",
          "canonical_path": "/cities/uk/northampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641290",
          "name": "Northolt",
          "country_code": "UK",
          "slug": "northolt",
          "canonical_path": "/cities/uk/northolt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641216",
          "name": "Northwood",
          "country_code": "UK",
          "slug": "northwood",
          "canonical_path": "/cities/uk/northwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641198",
          "name": "Norton",
          "country_code": "UK",
          "slug": "norton",
          "canonical_path": "/cities/uk/norton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641181",
          "name": "Norwich",
          "country_code": "UK",
          "slug": "norwich",
          "canonical_path": "/cities/uk/norwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641170",
          "name": "Nottingham",
          "country_code": "UK",
          "slug": "nottingham",
          "canonical_path": "/cities/uk/nottingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641157",
          "name": "Nuneaton",
          "country_code": "UK",
          "slug": "nuneaton",
          "canonical_path": "/cities/uk/nuneaton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641134",
          "name": "Oadby",
          "country_code": "UK",
          "slug": "oadby",
          "canonical_path": "/cities/uk/oadby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641130",
          "name": "Oakengates",
          "country_code": "UK",
          "slug": "oakengates",
          "canonical_path": "/cities/uk/oakengates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:13546077",
          "name": "Oakwood",
          "country_code": "UK",
          "slug": "oakwood",
          "canonical_path": "/cities/uk/oakwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11788280",
          "name": "Old Harlow",
          "country_code": "UK",
          "slug": "old-harlow",
          "canonical_path": "/cities/uk/old-harlow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8063574",
          "name": "Old Swan",
          "country_code": "UK",
          "slug": "old-swan",
          "canonical_path": "/cities/uk/old-swan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640981",
          "name": "Old Windsor",
          "country_code": "UK",
          "slug": "old-windsor",
          "canonical_path": "/cities/uk/old-windsor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641036",
          "name": "Oldbury",
          "country_code": "UK",
          "slug": "oldbury",
          "canonical_path": "/cities/uk/oldbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641022",
          "name": "Oldham",
          "country_code": "UK",
          "slug": "oldham",
          "canonical_path": "/cities/uk/oldham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640908",
          "name": "Ormskirk",
          "country_code": "UK",
          "slug": "ormskirk",
          "canonical_path": "/cities/uk/ormskirk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640894",
          "name": "Orpington",
          "country_code": "UK",
          "slug": "orpington",
          "canonical_path": "/cities/uk/orpington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640869",
          "name": "Ossett",
          "country_code": "UK",
          "slug": "ossett",
          "canonical_path": "/cities/uk/ossett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8604716",
          "name": "Osterley",
          "country_code": "UK",
          "slug": "osterley",
          "canonical_path": "/cities/uk/osterley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640860",
          "name": "Otford",
          "country_code": "UK",
          "slug": "otford",
          "canonical_path": "/cities/uk/otford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640857",
          "name": "Otley",
          "country_code": "UK",
          "slug": "otley",
          "canonical_path": "/cities/uk/otley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640729",
          "name": "Oxford",
          "country_code": "UK",
          "slug": "oxford",
          "canonical_path": "/cities/uk/oxford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640681",
          "name": "Paignton",
          "country_code": "UK",
          "slug": "paignton",
          "canonical_path": "/cities/uk/paignton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640677",
          "name": "Paisley",
          "country_code": "UK",
          "slug": "paisley",
          "canonical_path": "/cities/uk/paisley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640667",
          "name": "Palmers Green",
          "country_code": "UK",
          "slug": "palmers-green",
          "canonical_path": "/cities/uk/palmers-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640623",
          "name": "Par",
          "country_code": "UK",
          "slug": "par",
          "canonical_path": "/cities/uk/par/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640601",
          "name": "Parkstone",
          "country_code": "UK",
          "slug": "parkstone",
          "canonical_path": "/cities/uk/parkstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:3345396",
          "name": "Peasedown Saint John",
          "country_code": "UK",
          "slug": "peasedown-saint-john",
          "canonical_path": "/cities/uk/peasedown-saint-john/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640526",
          "name": "Peebles",
          "country_code": "UK",
          "slug": "peebles",
          "canonical_path": "/cities/uk/peebles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640511",
          "name": "Pelton",
          "country_code": "UK",
          "slug": "pelton",
          "canonical_path": "/cities/uk/pelton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:pelton-and-ouston",
          "name": "Pelton and Ouston",
          "country_code": "UK",
          "slug": "pelton-and-ouston",
          "canonical_path": "/cities/uk/pelton-and-ouston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640496",
          "name": "Penarth",
          "country_code": "UK",
          "slug": "penarth",
          "canonical_path": "/cities/uk/penarth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640465",
          "name": "Penicuik",
          "country_code": "UK",
          "slug": "penicuik",
          "canonical_path": "/cities/uk/penicuik/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8260056",
          "name": "Pentre",
          "country_code": "UK",
          "slug": "pentre",
          "canonical_path": "/cities/uk/pentre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640358",
          "name": "Perth",
          "country_code": "UK",
          "slug": "perth",
          "canonical_path": "/cities/uk/perth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640354",
          "name": "Peterborough",
          "country_code": "UK",
          "slug": "peterborough",
          "canonical_path": "/cities/uk/peterborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640351",
          "name": "Peterhead",
          "country_code": "UK",
          "slug": "peterhead",
          "canonical_path": "/cities/uk/peterhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750103",
          "name": "Pinkneys Green",
          "country_code": "UK",
          "slug": "pinkneys-green",
          "canonical_path": "/cities/uk/pinkneys-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640275",
          "name": "Pinner",
          "country_code": "UK",
          "slug": "pinner",
          "canonical_path": "/cities/uk/pinner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640273",
          "name": "Pinxton",
          "country_code": "UK",
          "slug": "pinxton",
          "canonical_path": "/cities/uk/pinxton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640246",
          "name": "Pitsea",
          "country_code": "UK",
          "slug": "pitsea",
          "canonical_path": "/cities/uk/pitsea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:platt-bridge-and-abram",
          "name": "Platt Bridge and Abram",
          "country_code": "UK",
          "slug": "platt-bridge-and-abram",
          "canonical_path": "/cities/uk/platt-bridge-and-abram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640201",
          "name": "Plumstead",
          "country_code": "UK",
          "slug": "plumstead",
          "canonical_path": "/cities/uk/plumstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640194",
          "name": "Plymouth",
          "country_code": "UK",
          "slug": "plymouth",
          "canonical_path": "/cities/uk/plymouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640192",
          "name": "Plympton",
          "country_code": "UK",
          "slug": "plympton",
          "canonical_path": "/cities/uk/plympton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640190",
          "name": "Plymstock",
          "country_code": "UK",
          "slug": "plymstock",
          "canonical_path": "/cities/uk/plymstock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640173",
          "name": "Polesworth",
          "country_code": "UK",
          "slug": "polesworth",
          "canonical_path": "/cities/uk/polesworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640155",
          "name": "Polmont",
          "country_code": "UK",
          "slug": "polmont",
          "canonical_path": "/cities/uk/polmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640140",
          "name": "Ponders End",
          "country_code": "UK",
          "slug": "ponders-end",
          "canonical_path": "/cities/uk/ponders-end/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640132",
          "name": "Pontefract",
          "country_code": "UK",
          "slug": "pontefract",
          "canonical_path": "/cities/uk/pontefract/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640106",
          "name": "Pontypool",
          "country_code": "UK",
          "slug": "pontypool",
          "canonical_path": "/cities/uk/pontypool/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640104",
          "name": "Pontypridd",
          "country_code": "UK",
          "slug": "pontypridd",
          "canonical_path": "/cities/uk/pontypridd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640101",
          "name": "Poole",
          "country_code": "UK",
          "slug": "poole",
          "canonical_path": "/cities/uk/poole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640091",
          "name": "Poplar",
          "country_code": "UK",
          "slug": "poplar",
          "canonical_path": "/cities/uk/poplar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640060",
          "name": "Port Glasgow",
          "country_code": "UK",
          "slug": "port-glasgow",
          "canonical_path": "/cities/uk/port-glasgow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640054",
          "name": "Porthcawl",
          "country_code": "UK",
          "slug": "porthcawl",
          "canonical_path": "/cities/uk/porthcawl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640037",
          "name": "Portishead",
          "country_code": "UK",
          "slug": "portishead",
          "canonical_path": "/cities/uk/portishead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6692041",
          "name": "Portland",
          "country_code": "UK",
          "slug": "portland",
          "canonical_path": "/cities/uk/portland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2640030",
          "name": "Portlethen",
          "country_code": "UK",
          "slug": "portlethen",
          "canonical_path": "/cities/uk/portlethen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639998",
          "name": "Portslade",
          "country_code": "UK",
          "slug": "portslade",
          "canonical_path": "/cities/uk/portslade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639996",
          "name": "Portsmouth",
          "country_code": "UK",
          "slug": "portsmouth",
          "canonical_path": "/cities/uk/portsmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11551048",
          "name": "Portswood",
          "country_code": "UK",
          "slug": "portswood",
          "canonical_path": "/cities/uk/portswood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639970",
          "name": "Potters Bar",
          "country_code": "UK",
          "slug": "potters-bar",
          "canonical_path": "/cities/uk/potters-bar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639934",
          "name": "Preesall",
          "country_code": "UK",
          "slug": "preesall",
          "canonical_path": "/cities/uk/preesall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6694080",
          "name": "Prenton",
          "country_code": "UK",
          "slug": "prenton",
          "canonical_path": "/cities/uk/prenton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639928",
          "name": "Prescot",
          "country_code": "UK",
          "slug": "prescot",
          "canonical_path": "/cities/uk/prescot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639926",
          "name": "Prestatyn",
          "country_code": "UK",
          "slug": "prestatyn",
          "canonical_path": "/cities/uk/prestatyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639912",
          "name": "Preston",
          "country_code": "UK",
          "slug": "preston",
          "canonical_path": "/cities/uk/preston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639902",
          "name": "Prestonpans",
          "country_code": "UK",
          "slug": "prestonpans",
          "canonical_path": "/cities/uk/prestonpans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639897",
          "name": "Prestwich",
          "country_code": "UK",
          "slug": "prestwich",
          "canonical_path": "/cities/uk/prestwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639896",
          "name": "Prestwick",
          "country_code": "UK",
          "slug": "prestwick",
          "canonical_path": "/cities/uk/prestwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:prestwood-and-great-missenden",
          "name": "Prestwood and Great Missenden",
          "country_code": "UK",
          "slug": "prestwood-and-great-missenden",
          "canonical_path": "/cities/uk/prestwood-and-great-missenden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:13353776",
          "name": "Primrose Place",
          "country_code": "UK",
          "slug": "primrose-place",
          "canonical_path": "/cities/uk/primrose-place/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639866",
          "name": "Pudsey",
          "country_code": "UK",
          "slug": "pudsey",
          "canonical_path": "/cities/uk/pudsey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639842",
          "name": "Purley",
          "country_code": "UK",
          "slug": "purley",
          "canonical_path": "/cities/uk/purley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639823",
          "name": "Pyle",
          "country_code": "UK",
          "slug": "pyle",
          "canonical_path": "/cities/uk/pyle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639820",
          "name": "Pyrford",
          "country_code": "UK",
          "slug": "pyrford",
          "canonical_path": "/cities/uk/pyrford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639788",
          "name": "Queensferry",
          "country_code": "UK",
          "slug": "queensferry",
          "canonical_path": "/cities/uk/queensferry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6691227",
          "name": "Radcliffe",
          "country_code": "UK",
          "slug": "radcliffe",
          "canonical_path": "/cities/uk/radcliffe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639690",
          "name": "Rainham",
          "country_code": "UK",
          "slug": "rainham",
          "canonical_path": "/cities/uk/rainham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639691",
          "name": "Rainham",
          "country_code": "UK",
          "slug": "rainham-eng-i3",
          "canonical_path": "/cities/uk/rainham-eng-i3/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639689",
          "name": "Rainhill",
          "country_code": "UK",
          "slug": "rainhill",
          "canonical_path": "/cities/uk/rainhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639660",
          "name": "Ramsgate",
          "country_code": "UK",
          "slug": "ramsgate",
          "canonical_path": "/cities/uk/ramsgate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12060359",
          "name": "Rastrick",
          "country_code": "UK",
          "slug": "rastrick",
          "canonical_path": "/cities/uk/rastrick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639586",
          "name": "Rawtenstall",
          "country_code": "UK",
          "slug": "rawtenstall",
          "canonical_path": "/cities/uk/rawtenstall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639583",
          "name": "Rayleigh",
          "country_code": "UK",
          "slug": "rayleigh",
          "canonical_path": "/cities/uk/rayleigh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639577",
          "name": "Reading",
          "country_code": "UK",
          "slug": "reading",
          "canonical_path": "/cities/uk/reading/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639563",
          "name": "Redcar",
          "country_code": "UK",
          "slug": "redcar",
          "canonical_path": "/cities/uk/redcar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639557",
          "name": "Redditch",
          "country_code": "UK",
          "slug": "redditch",
          "canonical_path": "/cities/uk/redditch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639545",
          "name": "Redhill",
          "country_code": "UK",
          "slug": "redhill",
          "canonical_path": "/cities/uk/redhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639506",
          "name": "Reigate",
          "country_code": "UK",
          "slug": "reigate",
          "canonical_path": "/cities/uk/reigate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639495",
          "name": "Renfrew",
          "country_code": "UK",
          "slug": "renfrew",
          "canonical_path": "/cities/uk/renfrew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2650346",
          "name": "Retford",
          "country_code": "UK",
          "slug": "retford",
          "canonical_path": "/cities/uk/retford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8604543",
          "name": "Rhiwbina",
          "country_code": "UK",
          "slug": "rhiwbina",
          "canonical_path": "/cities/uk/rhiwbina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639447",
          "name": "Rhondda",
          "country_code": "UK",
          "slug": "rhondda",
          "canonical_path": "/cities/uk/rhondda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639409",
          "name": "Rhyl",
          "country_code": "UK",
          "slug": "rhyl",
          "canonical_path": "/cities/uk/rhyl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639407",
          "name": "Rhymney",
          "country_code": "UK",
          "slug": "rhymney",
          "canonical_path": "/cities/uk/rhymney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639381",
          "name": "Rickmansworth",
          "country_code": "UK",
          "slug": "rickmansworth",
          "canonical_path": "/cities/uk/rickmansworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639325",
          "name": "Ripley",
          "country_code": "UK",
          "slug": "ripley",
          "canonical_path": "/cities/uk/ripley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639317",
          "name": "Risca",
          "country_code": "UK",
          "slug": "risca",
          "canonical_path": "/cities/uk/risca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639272",
          "name": "Rochdale",
          "country_code": "UK",
          "slug": "rochdale",
          "canonical_path": "/cities/uk/rochdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639268",
          "name": "Rochester",
          "country_code": "UK",
          "slug": "rochester",
          "canonical_path": "/cities/uk/rochester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639192",
          "name": "Romford",
          "country_code": "UK",
          "slug": "romford",
          "canonical_path": "/cities/uk/romford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8299614",
          "name": "Rossendale",
          "country_code": "UK",
          "slug": "rossendale",
          "canonical_path": "/cities/uk/rossendale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639104",
          "name": "Rosyth",
          "country_code": "UK",
          "slug": "rosyth",
          "canonical_path": "/cities/uk/rosyth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639093",
          "name": "Rotherham",
          "country_code": "UK",
          "slug": "rotherham",
          "canonical_path": "/cities/uk/rotherham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639074",
          "name": "Rothwell",
          "country_code": "UK",
          "slug": "rothwell",
          "canonical_path": "/cities/uk/rothwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639069",
          "name": "Rottingdean",
          "country_code": "UK",
          "slug": "rottingdean",
          "canonical_path": "/cities/uk/rottingdean/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2644737",
          "name": "Royal Leamington Spa",
          "country_code": "UK",
          "slug": "royal-leamington-spa",
          "canonical_path": "/cities/uk/royal-leamington-spa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639022",
          "name": "Royal Tunbridge Wells",
          "country_code": "UK",
          "slug": "royal-tunbridge-wells",
          "canonical_path": "/cities/uk/royal-tunbridge-wells/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639017",
          "name": "Royston",
          "country_code": "UK",
          "slug": "royston",
          "canonical_path": "/cities/uk/royston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639018",
          "name": "Royston",
          "country_code": "UK",
          "slug": "royston-eng-f8",
          "canonical_path": "/cities/uk/royston-eng-f8/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2639015",
          "name": "Royton",
          "country_code": "UK",
          "slug": "royton",
          "canonical_path": "/cities/uk/royton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638978",
          "name": "Rugby",
          "country_code": "UK",
          "slug": "rugby",
          "canonical_path": "/cities/uk/rugby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638977",
          "name": "Rugeley",
          "country_code": "UK",
          "slug": "rugeley",
          "canonical_path": "/cities/uk/rugeley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638976",
          "name": "Ruislip",
          "country_code": "UK",
          "slug": "ruislip",
          "canonical_path": "/cities/uk/ruislip/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638960",
          "name": "Runcorn",
          "country_code": "UK",
          "slug": "runcorn",
          "canonical_path": "/cities/uk/runcorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638946",
          "name": "Rushden",
          "country_code": "UK",
          "slug": "rushden",
          "canonical_path": "/cities/uk/rushden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638930",
          "name": "Rustington",
          "country_code": "UK",
          "slug": "rustington",
          "canonical_path": "/cities/uk/rustington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638926",
          "name": "Rutherglen",
          "country_code": "UK",
          "slug": "rutherglen",
          "canonical_path": "/cities/uk/rutherglen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638911",
          "name": "Ryde",
          "country_code": "UK",
          "slug": "ryde",
          "canonical_path": "/cities/uk/ryde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638909",
          "name": "Rye",
          "country_code": "UK",
          "slug": "rye",
          "canonical_path": "/cities/uk/rye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638901",
          "name": "Ryhill",
          "country_code": "UK",
          "slug": "ryhill",
          "canonical_path": "/cities/uk/ryhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638899",
          "name": "Ryhope",
          "country_code": "UK",
          "slug": "ryhope",
          "canonical_path": "/cities/uk/ryhope/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638879",
          "name": "Saddleworth",
          "country_code": "UK",
          "slug": "saddleworth",
          "canonical_path": "/cities/uk/saddleworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638864",
          "name": "Saint Andrews",
          "country_code": "UK",
          "slug": "saint-andrews",
          "canonical_path": "/cities/uk/saint-andrews/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638849",
          "name": "Saint Blazey",
          "country_code": "UK",
          "slug": "saint-blazey",
          "canonical_path": "/cities/uk/saint-blazey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638776",
          "name": "Saint Ives",
          "country_code": "UK",
          "slug": "saint-ives",
          "canonical_path": "/cities/uk/saint-ives/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638756",
          "name": "Saint Leonards-on-Sea",
          "country_code": "UK",
          "slug": "saint-leonards-on-sea",
          "canonical_path": "/cities/uk/saint-leonards-on-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638717",
          "name": "Saint Neots",
          "country_code": "UK",
          "slug": "saint-neots",
          "canonical_path": "/cities/uk/saint-neots/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638703",
          "name": "Saint Peters",
          "country_code": "UK",
          "slug": "saint-peters",
          "canonical_path": "/cities/uk/saint-peters/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638678",
          "name": "Sale",
          "country_code": "UK",
          "slug": "sale",
          "canonical_path": "/cities/uk/sale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638671",
          "name": "Salford",
          "country_code": "UK",
          "slug": "salford",
          "canonical_path": "/cities/uk/salford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638664",
          "name": "Salisbury",
          "country_code": "UK",
          "slug": "salisbury",
          "canonical_path": "/cities/uk/salisbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638652",
          "name": "Saltaire",
          "country_code": "UK",
          "slug": "saltaire",
          "canonical_path": "/cities/uk/saltaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638648",
          "name": "Saltcoats",
          "country_code": "UK",
          "slug": "saltcoats",
          "canonical_path": "/cities/uk/saltcoats/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638595",
          "name": "Sanderstead",
          "country_code": "UK",
          "slug": "sanderstead",
          "canonical_path": "/cities/uk/sanderstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638580",
          "name": "Sandhurst",
          "country_code": "UK",
          "slug": "sandhurst",
          "canonical_path": "/cities/uk/sandhurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638496",
          "name": "Sauchie",
          "country_code": "UK",
          "slug": "sauchie",
          "canonical_path": "/cities/uk/sauchie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638448",
          "name": "Scalby",
          "country_code": "UK",
          "slug": "scalby",
          "canonical_path": "/cities/uk/scalby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638419",
          "name": "Scarborough",
          "country_code": "UK",
          "slug": "scarborough",
          "canonical_path": "/cities/uk/scarborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2641577",
          "name": "Scone",
          "country_code": "UK",
          "slug": "scone",
          "canonical_path": "/cities/uk/scone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638324",
          "name": "Scunthorpe",
          "country_code": "UK",
          "slug": "scunthorpe",
          "canonical_path": "/cities/uk/scunthorpe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638311",
          "name": "Seaford",
          "country_code": "UK",
          "slug": "seaford",
          "canonical_path": "/cities/uk/seaford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638302",
          "name": "Seaham",
          "country_code": "UK",
          "slug": "seaham",
          "canonical_path": "/cities/uk/seaham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638278",
          "name": "Seaton",
          "country_code": "UK",
          "slug": "seaton",
          "canonical_path": "/cities/uk/seaton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638229",
          "name": "Selkirk",
          "country_code": "UK",
          "slug": "selkirk",
          "canonical_path": "/cities/uk/selkirk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638207",
          "name": "Send",
          "country_code": "UK",
          "slug": "send",
          "canonical_path": "/cities/uk/send/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638187",
          "name": "Sevenoaks",
          "country_code": "UK",
          "slug": "sevenoaks",
          "canonical_path": "/cities/uk/sevenoaks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690595",
          "name": "Shadwell",
          "country_code": "UK",
          "slug": "shadwell",
          "canonical_path": "/cities/uk/shadwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638077",
          "name": "Sheffield",
          "country_code": "UK",
          "slug": "sheffield",
          "canonical_path": "/cities/uk/sheffield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638065",
          "name": "Shelley",
          "country_code": "UK",
          "slug": "shelley",
          "canonical_path": "/cities/uk/shelley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638053",
          "name": "Shenfield",
          "country_code": "UK",
          "slug": "shenfield",
          "canonical_path": "/cities/uk/shenfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638043",
          "name": "Shepherds Bush",
          "country_code": "UK",
          "slug": "shepherds-bush",
          "canonical_path": "/cities/uk/shepherds-bush/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638040",
          "name": "Shepley",
          "country_code": "UK",
          "slug": "shepley",
          "canonical_path": "/cities/uk/shepley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637958",
          "name": "Shipley",
          "country_code": "UK",
          "slug": "shipley",
          "canonical_path": "/cities/uk/shipley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637935",
          "name": "Shirley",
          "country_code": "UK",
          "slug": "shirley",
          "canonical_path": "/cities/uk/shirley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637916",
          "name": "Shoreham-by-Sea",
          "country_code": "UK",
          "slug": "shoreham-by-sea",
          "canonical_path": "/cities/uk/shoreham-by-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:10793747",
          "name": "Shortlands",
          "country_code": "UK",
          "slug": "shortlands",
          "canonical_path": "/cities/uk/shortlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8015341",
          "name": "Shotts",
          "country_code": "UK",
          "slug": "shotts",
          "canonical_path": "/cities/uk/shotts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637891",
          "name": "Shrewsbury",
          "country_code": "UK",
          "slug": "shrewsbury",
          "canonical_path": "/cities/uk/shrewsbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637861",
          "name": "Sidcup",
          "country_code": "UK",
          "slug": "sidcup",
          "canonical_path": "/cities/uk/sidcup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11863036",
          "name": "Sinfin",
          "country_code": "UK",
          "slug": "sinfin",
          "canonical_path": "/cities/uk/sinfin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637802",
          "name": "Sittingbourne",
          "country_code": "UK",
          "slug": "sittingbourne",
          "canonical_path": "/cities/uk/sittingbourne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637762",
          "name": "Skegness",
          "country_code": "UK",
          "slug": "skegness",
          "canonical_path": "/cities/uk/skegness/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637752",
          "name": "Skelmersdale",
          "country_code": "UK",
          "slug": "skelmersdale",
          "canonical_path": "/cities/uk/skelmersdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637746",
          "name": "Skelton",
          "country_code": "UK",
          "slug": "skelton",
          "canonical_path": "/cities/uk/skelton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637748",
          "name": "Skelton",
          "country_code": "UK",
          "slug": "skelton-eng-e1",
          "canonical_path": "/cities/uk/skelton-eng-e1/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637627",
          "name": "Slough",
          "country_code": "UK",
          "slug": "slough",
          "canonical_path": "/cities/uk/slough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637607",
          "name": "Smethwick",
          "country_code": "UK",
          "slug": "smethwick",
          "canonical_path": "/cities/uk/smethwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637595",
          "name": "Snaresbrook",
          "country_code": "UK",
          "slug": "snaresbrook",
          "canonical_path": "/cities/uk/snaresbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637546",
          "name": "Solihull",
          "country_code": "UK",
          "slug": "solihull",
          "canonical_path": "/cities/uk/solihull/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637476",
          "name": "South Benfleet",
          "country_code": "UK",
          "slug": "south-benfleet",
          "canonical_path": "/cities/uk/south-benfleet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690862",
          "name": "South Croydon",
          "country_code": "UK",
          "slug": "south-croydon",
          "canonical_path": "/cities/uk/south-croydon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:south-hayling",
          "name": "South Hayling",
          "country_code": "UK",
          "slug": "south-hayling",
          "canonical_path": "/cities/uk/south-hayling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637355",
          "name": "South Ockendon",
          "country_code": "UK",
          "slug": "south-ockendon",
          "canonical_path": "/cities/uk/south-ockendon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637329",
          "name": "South Shields",
          "country_code": "UK",
          "slug": "south-shields",
          "canonical_path": "/cities/uk/south-shields/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637490",
          "name": "Southall",
          "country_code": "UK",
          "slug": "southall",
          "canonical_path": "/cities/uk/southall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637488",
          "name": "Southam",
          "country_code": "UK",
          "slug": "southam",
          "canonical_path": "/cities/uk/southam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637487",
          "name": "Southampton",
          "country_code": "UK",
          "slug": "southampton",
          "canonical_path": "/cities/uk/southampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637433",
          "name": "Southend-on-Sea",
          "country_code": "UK",
          "slug": "southend-on-sea",
          "canonical_path": "/cities/uk/southend-on-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637418",
          "name": "Southgate",
          "country_code": "UK",
          "slug": "southgate",
          "canonical_path": "/cities/uk/southgate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637343",
          "name": "Southport",
          "country_code": "UK",
          "slug": "southport",
          "canonical_path": "/cities/uk/southport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637296",
          "name": "Southwell",
          "country_code": "UK",
          "slug": "southwell",
          "canonical_path": "/cities/uk/southwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637268",
          "name": "Sowerby Bridge",
          "country_code": "UK",
          "slug": "sowerby-bridge",
          "canonical_path": "/cities/uk/sowerby-bridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637265",
          "name": "Spalding",
          "country_code": "UK",
          "slug": "spalding",
          "canonical_path": "/cities/uk/spalding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637241",
          "name": "Speke",
          "country_code": "UK",
          "slug": "speke",
          "canonical_path": "/cities/uk/speke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637235",
          "name": "Spennymoor",
          "country_code": "UK",
          "slug": "spennymoor",
          "canonical_path": "/cities/uk/spennymoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638867",
          "name": "St Albans",
          "country_code": "UK",
          "slug": "st-albans",
          "canonical_path": "/cities/uk/st-albans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638853",
          "name": "St Austell",
          "country_code": "UK",
          "slug": "st-austell",
          "canonical_path": "/cities/uk/st-austell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638785",
          "name": "St Helens",
          "country_code": "UK",
          "slug": "st-helens",
          "canonical_path": "/cities/uk/st-helens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638778",
          "name": "St Ives",
          "country_code": "UK",
          "slug": "st-ives",
          "canonical_path": "/cities/uk/st-ives/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2638757",
          "name": "St Leonards",
          "country_code": "UK",
          "slug": "st-leonards",
          "canonical_path": "/cities/uk/st-leonards/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637142",
          "name": "Stafford",
          "country_code": "UK",
          "slug": "stafford",
          "canonical_path": "/cities/uk/stafford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637126",
          "name": "Staines",
          "country_code": "UK",
          "slug": "staines",
          "canonical_path": "/cities/uk/staines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637106",
          "name": "Stalybridge",
          "country_code": "UK",
          "slug": "stalybridge",
          "canonical_path": "/cities/uk/stalybridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637104",
          "name": "Stamford",
          "country_code": "UK",
          "slug": "stamford",
          "canonical_path": "/cities/uk/stamford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2637087",
          "name": "Stanford-le-Hope",
          "country_code": "UK",
          "slug": "stanford-le-hope",
          "canonical_path": "/cities/uk/stanford-le-hope/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8224783",
          "name": "Stanley",
          "country_code": "UK",
          "slug": "stanley",
          "canonical_path": "/cities/uk/stanley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636995",
          "name": "Staveley",
          "country_code": "UK",
          "slug": "staveley",
          "canonical_path": "/cities/uk/staveley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592294",
          "name": "Stenhousemuir",
          "country_code": "UK",
          "slug": "stenhousemuir",
          "canonical_path": "/cities/uk/stenhousemuir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636948",
          "name": "Stepney",
          "country_code": "UK",
          "slug": "stepney",
          "canonical_path": "/cities/uk/stepney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636945",
          "name": "Stepps",
          "country_code": "UK",
          "slug": "stepps",
          "canonical_path": "/cities/uk/stepps/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636940",
          "name": "Stevenage",
          "country_code": "UK",
          "slug": "stevenage",
          "canonical_path": "/cities/uk/stevenage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636938",
          "name": "Stevenston",
          "country_code": "UK",
          "slug": "stevenston",
          "canonical_path": "/cities/uk/stevenston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636932",
          "name": "Stewarton",
          "country_code": "UK",
          "slug": "stewarton",
          "canonical_path": "/cities/uk/stewarton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636910",
          "name": "Stirling",
          "country_code": "UK",
          "slug": "stirling",
          "canonical_path": "/cities/uk/stirling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636882",
          "name": "Stockport",
          "country_code": "UK",
          "slug": "stockport",
          "canonical_path": "/cities/uk/stockport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8224784",
          "name": "Stockton Heath",
          "country_code": "UK",
          "slug": "stockton-heath",
          "canonical_path": "/cities/uk/stockton-heath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636876",
          "name": "Stockton-on-Tees",
          "country_code": "UK",
          "slug": "stockton-on-tees",
          "canonical_path": "/cities/uk/stockton-on-tees/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636841",
          "name": "Stoke-on-Trent",
          "country_code": "UK",
          "slug": "stoke-on-trent",
          "canonical_path": "/cities/uk/stoke-on-trent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636804",
          "name": "Stone",
          "country_code": "UK",
          "slug": "stone",
          "canonical_path": "/cities/uk/stone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636822",
          "name": "Stone",
          "country_code": "UK",
          "slug": "stone-eng-m9",
          "canonical_path": "/cities/uk/stone-eng-m9/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636826",
          "name": "Stone",
          "country_code": "UK",
          "slug": "stone-eng-g5",
          "canonical_path": "/cities/uk/stone-eng-g5/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636814",
          "name": "Stonehaven",
          "country_code": "UK",
          "slug": "stonehaven",
          "canonical_path": "/cities/uk/stonehaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636810",
          "name": "Stonehouse",
          "country_code": "UK",
          "slug": "stonehouse",
          "canonical_path": "/cities/uk/stonehouse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636811",
          "name": "Stonehouse",
          "country_code": "UK",
          "slug": "stonehouse-eng-e6",
          "canonical_path": "/cities/uk/stonehouse-eng-e6/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636790",
          "name": "Stornoway",
          "country_code": "UK",
          "slug": "stornoway",
          "canonical_path": "/cities/uk/stornoway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636769",
          "name": "Stourbridge",
          "country_code": "UK",
          "slug": "stourbridge",
          "canonical_path": "/cities/uk/stourbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636767",
          "name": "Stourport-on-Severn",
          "country_code": "UK",
          "slug": "stourport-on-severn",
          "canonical_path": "/cities/uk/stourport-on-severn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636749",
          "name": "Stowmarket",
          "country_code": "UK",
          "slug": "stowmarket",
          "canonical_path": "/cities/uk/stowmarket/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636719",
          "name": "Stranraer",
          "country_code": "UK",
          "slug": "stranraer",
          "canonical_path": "/cities/uk/stranraer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636714",
          "name": "Stratford",
          "country_code": "UK",
          "slug": "stratford",
          "canonical_path": "/cities/uk/stratford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636713",
          "name": "Stratford-upon-Avon",
          "country_code": "UK",
          "slug": "stratford-upon-avon",
          "canonical_path": "/cities/uk/stratford-upon-avon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636710",
          "name": "Strathaven",
          "country_code": "UK",
          "slug": "strathaven",
          "canonical_path": "/cities/uk/strathaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636675",
          "name": "Streatham",
          "country_code": "UK",
          "slug": "streatham",
          "canonical_path": "/cities/uk/streatham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636663",
          "name": "Stretford",
          "country_code": "UK",
          "slug": "stretford",
          "canonical_path": "/cities/uk/stretford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636616",
          "name": "Stroud",
          "country_code": "UK",
          "slug": "stroud",
          "canonical_path": "/cities/uk/stroud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636582",
          "name": "Sturry",
          "country_code": "UK",
          "slug": "sturry",
          "canonical_path": "/cities/uk/sturry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636564",
          "name": "Sudbury",
          "country_code": "UK",
          "slug": "sudbury",
          "canonical_path": "/cities/uk/sudbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636565",
          "name": "Sudbury",
          "country_code": "UK",
          "slug": "sudbury-eng-gla",
          "canonical_path": "/cities/uk/sudbury-eng-gla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636534",
          "name": "Sunbury-on-Thames",
          "country_code": "UK",
          "slug": "sunbury-on-thames",
          "canonical_path": "/cities/uk/sunbury-on-thames/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636531",
          "name": "Sunderland",
          "country_code": "UK",
          "slug": "sunderland",
          "canonical_path": "/cities/uk/sunderland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636518",
          "name": "Sunninghill",
          "country_code": "UK",
          "slug": "sunninghill",
          "canonical_path": "/cities/uk/sunninghill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690866",
          "name": "Surbiton",
          "country_code": "UK",
          "slug": "surbiton",
          "canonical_path": "/cities/uk/surbiton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636503",
          "name": "Sutton",
          "country_code": "UK",
          "slug": "sutton",
          "canonical_path": "/cities/uk/sutton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636486",
          "name": "Sutton Coldfield",
          "country_code": "UK",
          "slug": "sutton-coldfield",
          "canonical_path": "/cities/uk/sutton-coldfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636484",
          "name": "Sutton in Ashfield",
          "country_code": "UK",
          "slug": "sutton-in-ashfield",
          "canonical_path": "/cities/uk/sutton-in-ashfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636465",
          "name": "Swadlincote",
          "country_code": "UK",
          "slug": "swadlincote",
          "canonical_path": "/cities/uk/swadlincote/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:swanscombe",
          "name": "Swanscombe",
          "country_code": "UK",
          "slug": "swanscombe",
          "canonical_path": "/cities/uk/swanscombe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636432",
          "name": "Swansea",
          "country_code": "UK",
          "slug": "swansea",
          "canonical_path": "/cities/uk/swansea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636389",
          "name": "Swindon",
          "country_code": "UK",
          "slug": "swindon",
          "canonical_path": "/cities/uk/swindon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636373",
          "name": "Swinton",
          "country_code": "UK",
          "slug": "swinton",
          "canonical_path": "/cities/uk/swinton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636331",
          "name": "Tadworth",
          "country_code": "UK",
          "slug": "tadworth",
          "canonical_path": "/cities/uk/tadworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636276",
          "name": "Tamworth",
          "country_code": "UK",
          "slug": "tamworth",
          "canonical_path": "/cities/uk/tamworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636215",
          "name": "Tarleton",
          "country_code": "UK",
          "slug": "tarleton",
          "canonical_path": "/cities/uk/tarleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636177",
          "name": "Taunton",
          "country_code": "UK",
          "slug": "taunton",
          "canonical_path": "/cities/uk/taunton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636147",
          "name": "Teddington",
          "country_code": "UK",
          "slug": "teddington",
          "canonical_path": "/cities/uk/teddington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:3345439",
          "name": "Telford",
          "country_code": "UK",
          "slug": "telford",
          "canonical_path": "/cities/uk/telford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636062",
          "name": "Thames Ditton",
          "country_code": "UK",
          "slug": "thames-ditton",
          "canonical_path": "/cities/uk/thames-ditton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11551039",
          "name": "Thamesmead",
          "country_code": "UK",
          "slug": "thamesmead",
          "canonical_path": "/cities/uk/thamesmead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636049",
          "name": "Thatcham",
          "country_code": "UK",
          "slug": "thatcham",
          "canonical_path": "/cities/uk/thatcham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2655250",
          "name": "The Boldons",
          "country_code": "UK",
          "slug": "the-boldons",
          "canonical_path": "/cities/uk/the-boldons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636032",
          "name": "Thetford",
          "country_code": "UK",
          "slug": "thetford",
          "canonical_path": "/cities/uk/thetford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2636005",
          "name": "Thornaby-on-Tees",
          "country_code": "UK",
          "slug": "thornaby-on-tees",
          "canonical_path": "/cities/uk/thornaby-on-tees/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:13061030",
          "name": "Thornhill",
          "country_code": "UK",
          "slug": "thornhill",
          "canonical_path": "/cities/uk/thornhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635963",
          "name": "Thornton Heath",
          "country_code": "UK",
          "slug": "thornton-heath",
          "canonical_path": "/cities/uk/thornton-heath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8299615",
          "name": "Thornton-Cleveleys",
          "country_code": "UK",
          "slug": "thornton-cleveleys",
          "canonical_path": "/cities/uk/thornton-cleveleys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635954",
          "name": "Thorpe",
          "country_code": "UK",
          "slug": "thorpe",
          "canonical_path": "/cities/uk/thorpe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635881",
          "name": "Thurso",
          "country_code": "UK",
          "slug": "thurso",
          "canonical_path": "/cities/uk/thurso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635829",
          "name": "Tillicoultry",
          "country_code": "UK",
          "slug": "tillicoultry",
          "canonical_path": "/cities/uk/tillicoultry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635803",
          "name": "Timperley",
          "country_code": "UK",
          "slug": "timperley",
          "canonical_path": "/cities/uk/timperley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635785",
          "name": "Tipton",
          "country_code": "UK",
          "slug": "tipton",
          "canonical_path": "/cities/uk/tipton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635771",
          "name": "Titchfield",
          "country_code": "UK",
          "slug": "titchfield",
          "canonical_path": "/cities/uk/titchfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6690827",
          "name": "Tolworth",
          "country_code": "UK",
          "slug": "tolworth",
          "canonical_path": "/cities/uk/tolworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635703",
          "name": "Tonbridge",
          "country_code": "UK",
          "slug": "tonbridge",
          "canonical_path": "/cities/uk/tonbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:3345283",
          "name": "Tonypandy",
          "country_code": "UK",
          "slug": "tonypandy",
          "canonical_path": "/cities/uk/tonypandy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635689",
          "name": "Tonyrefail",
          "country_code": "UK",
          "slug": "tonyrefail",
          "canonical_path": "/cities/uk/tonyrefail/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635650",
          "name": "Torquay",
          "country_code": "UK",
          "slug": "torquay",
          "canonical_path": "/cities/uk/torquay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635608",
          "name": "Tottenham",
          "country_code": "UK",
          "slug": "tottenham",
          "canonical_path": "/cities/uk/tottenham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635607",
          "name": "Totteridge",
          "country_code": "UK",
          "slug": "totteridge",
          "canonical_path": "/cities/uk/totteridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635604",
          "name": "Tottington",
          "country_code": "UK",
          "slug": "tottington",
          "canonical_path": "/cities/uk/tottington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635603",
          "name": "Totton",
          "country_code": "UK",
          "slug": "totton",
          "canonical_path": "/cities/uk/totton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635563",
          "name": "Tranent",
          "country_code": "UK",
          "slug": "tranent",
          "canonical_path": "/cities/uk/tranent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635547",
          "name": "Tredegar",
          "country_code": "UK",
          "slug": "tredegar",
          "canonical_path": "/cities/uk/tredegar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635442",
          "name": "Troon",
          "country_code": "UK",
          "slug": "troon",
          "canonical_path": "/cities/uk/troon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635427",
          "name": "Trowbridge",
          "country_code": "UK",
          "slug": "trowbridge",
          "canonical_path": "/cities/uk/trowbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635412",
          "name": "Truro",
          "country_code": "UK",
          "slug": "truro",
          "canonical_path": "/cities/uk/truro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592219",
          "name": "Tullibody",
          "country_code": "UK",
          "slug": "tullibody",
          "canonical_path": "/cities/uk/tullibody/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11919597",
          "name": "Tunstall",
          "country_code": "UK",
          "slug": "tunstall",
          "canonical_path": "/cities/uk/tunstall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635329",
          "name": "Turriff",
          "country_code": "UK",
          "slug": "turriff",
          "canonical_path": "/cities/uk/turriff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635294",
          "name": "Twyford",
          "country_code": "UK",
          "slug": "twyford",
          "canonical_path": "/cities/uk/twyford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635269",
          "name": "Tynemouth",
          "country_code": "UK",
          "slug": "tynemouth",
          "canonical_path": "/cities/uk/tynemouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635239",
          "name": "Uddingston",
          "country_code": "UK",
          "slug": "uddingston",
          "canonical_path": "/cities/uk/uddingston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635174",
          "name": "Undy",
          "country_code": "UK",
          "slug": "undy",
          "canonical_path": "/cities/uk/undy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635150",
          "name": "Upminster",
          "country_code": "UK",
          "slug": "upminster",
          "canonical_path": "/cities/uk/upminster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:uppermill",
          "name": "Uppermill",
          "country_code": "UK",
          "slug": "uppermill",
          "canonical_path": "/cities/uk/uppermill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635090",
          "name": "Upton",
          "country_code": "UK",
          "slug": "upton",
          "canonical_path": "/cities/uk/upton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750100",
          "name": "Upton Lea",
          "country_code": "UK",
          "slug": "upton-lea",
          "canonical_path": "/cities/uk/upton-lea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635062",
          "name": "Urmston",
          "country_code": "UK",
          "slug": "urmston",
          "canonical_path": "/cities/uk/urmston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635054",
          "name": "Ushaw Moor",
          "country_code": "UK",
          "slug": "ushaw-moor",
          "canonical_path": "/cities/uk/ushaw-moor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:ushaw-moor-and-bearpark",
          "name": "Ushaw Moor and Bearpark",
          "country_code": "UK",
          "slug": "ushaw-moor-and-bearpark",
          "canonical_path": "/cities/uk/ushaw-moor-and-bearpark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2635042",
          "name": "Uxbridge",
          "country_code": "UK",
          "slug": "uxbridge",
          "canonical_path": "/cities/uk/uxbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592272",
          "name": "Vale of Leven",
          "country_code": "UK",
          "slug": "vale-of-leven",
          "canonical_path": "/cities/uk/vale-of-leven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592296",
          "name": "Viewpark",
          "country_code": "UK",
          "slug": "viewpark",
          "canonical_path": "/cities/uk/viewpark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634910",
          "name": "Wakefield",
          "country_code": "UK",
          "slug": "wakefield",
          "canonical_path": "/cities/uk/wakefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634894",
          "name": "Wales",
          "country_code": "UK",
          "slug": "wales",
          "canonical_path": "/cities/uk/wales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634873",
          "name": "Wallasey",
          "country_code": "UK",
          "slug": "wallasey",
          "canonical_path": "/cities/uk/wallasey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634867",
          "name": "Wallington",
          "country_code": "UK",
          "slug": "wallington",
          "canonical_path": "/cities/uk/wallington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634864",
          "name": "Wallsend",
          "country_code": "UK",
          "slug": "wallsend",
          "canonical_path": "/cities/uk/wallsend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634853",
          "name": "Walsall",
          "country_code": "UK",
          "slug": "walsall",
          "canonical_path": "/cities/uk/walsall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634838",
          "name": "Walthamstow",
          "country_code": "UK",
          "slug": "walthamstow",
          "canonical_path": "/cities/uk/walthamstow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634825",
          "name": "Walton-on-Thames",
          "country_code": "UK",
          "slug": "walton-on-thames",
          "canonical_path": "/cities/uk/walton-on-thames/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634803",
          "name": "Wanstead",
          "country_code": "UK",
          "slug": "wanstead",
          "canonical_path": "/cities/uk/wanstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634782",
          "name": "Wardle",
          "country_code": "UK",
          "slug": "wardle",
          "canonical_path": "/cities/uk/wardle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634739",
          "name": "Warrington",
          "country_code": "UK",
          "slug": "warrington",
          "canonical_path": "/cities/uk/warrington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634736",
          "name": "Warsop",
          "country_code": "UK",
          "slug": "warsop",
          "canonical_path": "/cities/uk/warsop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634725",
          "name": "Warwick",
          "country_code": "UK",
          "slug": "warwick",
          "canonical_path": "/cities/uk/warwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634717",
          "name": "Washingborough",
          "country_code": "UK",
          "slug": "washingborough",
          "canonical_path": "/cities/uk/washingborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634715",
          "name": "Washington",
          "country_code": "UK",
          "slug": "washington",
          "canonical_path": "/cities/uk/washington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8468720",
          "name": "Water Eaton",
          "country_code": "UK",
          "slug": "water-eaton",
          "canonical_path": "/cities/uk/water-eaton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634686",
          "name": "Waterlooville",
          "country_code": "UK",
          "slug": "waterlooville",
          "canonical_path": "/cities/uk/waterlooville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634677",
          "name": "Watford",
          "country_code": "UK",
          "slug": "watford",
          "canonical_path": "/cities/uk/watford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634617",
          "name": "Wednesbury",
          "country_code": "UK",
          "slug": "wednesbury",
          "canonical_path": "/cities/uk/wednesbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634616",
          "name": "Wednesfield",
          "country_code": "UK",
          "slug": "wednesfield",
          "canonical_path": "/cities/uk/wednesfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:wellesbourne",
          "name": "Wellesbourne",
          "country_code": "UK",
          "slug": "wellesbourne",
          "canonical_path": "/cities/uk/wellesbourne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634581",
          "name": "Wellesbourne Mountford",
          "country_code": "UK",
          "slug": "wellesbourne-mountford",
          "canonical_path": "/cities/uk/wellesbourne-mountford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634579",
          "name": "Welling",
          "country_code": "UK",
          "slug": "welling",
          "canonical_path": "/cities/uk/welling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634578",
          "name": "Wellingborough",
          "country_code": "UK",
          "slug": "wellingborough",
          "canonical_path": "/cities/uk/wellingborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634573",
          "name": "Wellington",
          "country_code": "UK",
          "slug": "wellington",
          "canonical_path": "/cities/uk/wellington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634552",
          "name": "Welwyn Garden City",
          "country_code": "UK",
          "slug": "welwyn-garden-city",
          "canonical_path": "/cities/uk/welwyn-garden-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634549",
          "name": "Wembley",
          "country_code": "UK",
          "slug": "wembley",
          "canonical_path": "/cities/uk/wembley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634493",
          "name": "West Bridgford",
          "country_code": "UK",
          "slug": "west-bridgford",
          "canonical_path": "/cities/uk/west-bridgford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634491",
          "name": "West Bromwich",
          "country_code": "UK",
          "slug": "west-bromwich",
          "canonical_path": "/cities/uk/west-bromwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634478",
          "name": "West Byfleet",
          "country_code": "UK",
          "slug": "west-byfleet",
          "canonical_path": "/cities/uk/west-byfleet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634469",
          "name": "West Clandon",
          "country_code": "UK",
          "slug": "west-clandon",
          "canonical_path": "/cities/uk/west-clandon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634455",
          "name": "West Derby",
          "country_code": "UK",
          "slug": "west-derby",
          "canonical_path": "/cities/uk/west-derby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634451",
          "name": "West Drayton",
          "country_code": "UK",
          "slug": "west-drayton",
          "canonical_path": "/cities/uk/west-drayton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:7302137",
          "name": "West Ealing",
          "country_code": "UK",
          "slug": "west-ealing",
          "canonical_path": "/cities/uk/west-ealing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634403",
          "name": "West Ham",
          "country_code": "UK",
          "slug": "west-ham",
          "canonical_path": "/cities/uk/west-ham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:10246613",
          "name": "West Kingsdown",
          "country_code": "UK",
          "slug": "west-kingsdown",
          "canonical_path": "/cities/uk/west-kingsdown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634340",
          "name": "West Molesey",
          "country_code": "UK",
          "slug": "west-molesey",
          "canonical_path": "/cities/uk/west-molesey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634251",
          "name": "West Thurrock",
          "country_code": "UK",
          "slug": "west-thurrock",
          "canonical_path": "/cities/uk/west-thurrock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634234",
          "name": "West Wickham",
          "country_code": "UK",
          "slug": "west-wickham",
          "canonical_path": "/cities/uk/west-wickham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634483",
          "name": "Westbury",
          "country_code": "UK",
          "slug": "westbury",
          "canonical_path": "/cities/uk/westbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:8063669",
          "name": "Westergate",
          "country_code": "UK",
          "slug": "westergate",
          "canonical_path": "/cities/uk/westergate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634413",
          "name": "Westgate on Sea",
          "country_code": "UK",
          "slug": "westgate-on-sea",
          "canonical_path": "/cities/uk/westgate-on-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:11592297",
          "name": "Westhill",
          "country_code": "UK",
          "slug": "westhill-sct-v3",
          "canonical_path": "/cities/uk/westhill-sct-v3/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6640068",
          "name": "Westhill",
          "country_code": "UK",
          "slug": "westhill",
          "canonical_path": "/cities/uk/westhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634387",
          "name": "Westhoughton",
          "country_code": "UK",
          "slug": "westhoughton",
          "canonical_path": "/cities/uk/westhoughton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634308",
          "name": "Weston-super-Mare",
          "country_code": "UK",
          "slug": "weston-super-mare",
          "canonical_path": "/cities/uk/weston-super-mare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634202",
          "name": "Weymouth",
          "country_code": "UK",
          "slug": "weymouth",
          "canonical_path": "/cities/uk/weymouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634194",
          "name": "Whaley Bridge",
          "country_code": "UK",
          "slug": "whaley-bridge",
          "canonical_path": "/cities/uk/whaley-bridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634171",
          "name": "Wheatley",
          "country_code": "UK",
          "slug": "wheatley",
          "canonical_path": "/cities/uk/wheatley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634156",
          "name": "Whetstone",
          "country_code": "UK",
          "slug": "whetstone",
          "canonical_path": "/cities/uk/whetstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6694788",
          "name": "Whiston",
          "country_code": "UK",
          "slug": "whiston",
          "canonical_path": "/cities/uk/whiston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634137",
          "name": "Whitburn",
          "country_code": "UK",
          "slug": "whitburn",
          "canonical_path": "/cities/uk/whitburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634138",
          "name": "Whitburn",
          "country_code": "UK",
          "slug": "whitburn-eng-m7",
          "canonical_path": "/cities/uk/whitburn-eng-m7/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634124",
          "name": "Whitchurch",
          "country_code": "UK",
          "slug": "whitchurch",
          "canonical_path": "/cities/uk/whitchurch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634127",
          "name": "Whitchurch",
          "country_code": "UK",
          "slug": "whitchurch-wls-x5",
          "canonical_path": "/cities/uk/whitchurch-wls-x5/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634103",
          "name": "Whitefield",
          "country_code": "UK",
          "slug": "whitefield",
          "canonical_path": "/cities/uk/whitefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634096",
          "name": "Whitehaven",
          "country_code": "UK",
          "slug": "whitehaven",
          "canonical_path": "/cities/uk/whitehaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634032",
          "name": "Whitley Bay",
          "country_code": "UK",
          "slug": "whitley-bay",
          "canonical_path": "/cities/uk/whitley-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2634021",
          "name": "Whitstable",
          "country_code": "UK",
          "slug": "whitstable",
          "canonical_path": "/cities/uk/whitstable/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:slug:whittlesey",
          "name": "Whittlesey",
          "country_code": "UK",
          "slug": "whittlesey",
          "canonical_path": "/cities/uk/whittlesey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633982",
          "name": "Wick",
          "country_code": "UK",
          "slug": "wick",
          "canonical_path": "/cities/uk/wick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633976",
          "name": "Wickford",
          "country_code": "UK",
          "slug": "wickford",
          "canonical_path": "/cities/uk/wickford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633954",
          "name": "Widnes",
          "country_code": "UK",
          "slug": "widnes",
          "canonical_path": "/cities/uk/widnes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633948",
          "name": "Wigan",
          "country_code": "UK",
          "slug": "wigan",
          "canonical_path": "/cities/uk/wigan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633936",
          "name": "Wigston Magna",
          "country_code": "UK",
          "slug": "wigston-magna",
          "canonical_path": "/cities/uk/wigston-magna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633912",
          "name": "Willenhall",
          "country_code": "UK",
          "slug": "willenhall",
          "canonical_path": "/cities/uk/willenhall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633907",
          "name": "Willesden",
          "country_code": "UK",
          "slug": "willesden",
          "canonical_path": "/cities/uk/willesden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633896",
          "name": "Willington",
          "country_code": "UK",
          "slug": "willington",
          "canonical_path": "/cities/uk/willington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633883",
          "name": "Wilmslow",
          "country_code": "UK",
          "slug": "wilmslow",
          "canonical_path": "/cities/uk/wilmslow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633880",
          "name": "Wilsden",
          "country_code": "UK",
          "slug": "wilsden",
          "canonical_path": "/cities/uk/wilsden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:6691839",
          "name": "Wimbledon Park",
          "country_code": "UK",
          "slug": "wimbledon-park",
          "canonical_path": "/cities/uk/wimbledon-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633858",
          "name": "Winchester",
          "country_code": "UK",
          "slug": "winchester",
          "canonical_path": "/cities/uk/winchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633851",
          "name": "Windermere",
          "country_code": "UK",
          "slug": "windermere",
          "canonical_path": "/cities/uk/windermere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633842",
          "name": "Windsor",
          "country_code": "UK",
          "slug": "windsor",
          "canonical_path": "/cities/uk/windsor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633810",
          "name": "Winsford",
          "country_code": "UK",
          "slug": "winsford",
          "canonical_path": "/cities/uk/winsford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633774",
          "name": "Wirksworth",
          "country_code": "UK",
          "slug": "wirksworth",
          "canonical_path": "/cities/uk/wirksworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633771",
          "name": "Wisbech",
          "country_code": "UK",
          "slug": "wisbech",
          "canonical_path": "/cities/uk/wisbech/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633765",
          "name": "Wishaw",
          "country_code": "UK",
          "slug": "wishaw",
          "canonical_path": "/cities/uk/wishaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633749",
          "name": "Witham",
          "country_code": "UK",
          "slug": "witham",
          "canonical_path": "/cities/uk/witham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633731",
          "name": "Witley",
          "country_code": "UK",
          "slug": "witley",
          "canonical_path": "/cities/uk/witley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633729",
          "name": "Witney",
          "country_code": "UK",
          "slug": "witney",
          "canonical_path": "/cities/uk/witney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633710",
          "name": "Woburn Sands",
          "country_code": "UK",
          "slug": "woburn-sands",
          "canonical_path": "/cities/uk/woburn-sands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633709",
          "name": "Woking",
          "country_code": "UK",
          "slug": "woking",
          "canonical_path": "/cities/uk/woking/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633708",
          "name": "Wokingham",
          "country_code": "UK",
          "slug": "wokingham",
          "canonical_path": "/cities/uk/wokingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633691",
          "name": "Wolverhampton",
          "country_code": "UK",
          "slug": "wolverhampton",
          "canonical_path": "/cities/uk/wolverhampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633653",
          "name": "Wood Green",
          "country_code": "UK",
          "slug": "wood-green",
          "canonical_path": "/cities/uk/wood-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633655",
          "name": "Woodford Green",
          "country_code": "UK",
          "slug": "woodford-green",
          "canonical_path": "/cities/uk/woodford-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:12750095",
          "name": "Woodside",
          "country_code": "UK",
          "slug": "woodside",
          "canonical_path": "/cities/uk/woodside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633586",
          "name": "Woolton",
          "country_code": "UK",
          "slug": "woolton",
          "canonical_path": "/cities/uk/woolton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633563",
          "name": "Worcester",
          "country_code": "UK",
          "slug": "worcester",
          "canonical_path": "/cities/uk/worcester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633561",
          "name": "Worcester Park",
          "country_code": "UK",
          "slug": "worcester-park",
          "canonical_path": "/cities/uk/worcester-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633553",
          "name": "Workington",
          "country_code": "UK",
          "slug": "workington",
          "canonical_path": "/cities/uk/workington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633551",
          "name": "Worksop",
          "country_code": "UK",
          "slug": "worksop",
          "canonical_path": "/cities/uk/worksop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633521",
          "name": "Worthing",
          "country_code": "UK",
          "slug": "worthing",
          "canonical_path": "/cities/uk/worthing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633511",
          "name": "Wotton-under-Edge",
          "country_code": "UK",
          "slug": "wotton-under-edge",
          "canonical_path": "/cities/uk/wotton-under-edge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633485",
          "name": "Wrexham",
          "country_code": "UK",
          "slug": "wrexham",
          "canonical_path": "/cities/uk/wrexham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633406",
          "name": "Yate",
          "country_code": "UK",
          "slug": "yate",
          "canonical_path": "/cities/uk/yate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633399",
          "name": "Yaxley",
          "country_code": "UK",
          "slug": "yaxley",
          "canonical_path": "/cities/uk/yaxley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633373",
          "name": "Yeovil",
          "country_code": "UK",
          "slug": "yeovil",
          "canonical_path": "/cities/uk/yeovil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:uk:geonames:2633352",
          "name": "York",
          "country_code": "UK",
          "slug": "york",
          "canonical_path": "/cities/uk/york/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "US",
      "path": "cities/us-1.json",
      "city_count": 3545,
      "cities": [
        {
          "entity_id": "city:us:geonames:5856516",
          "name": "‘Āhuimanu",
          "country_code": "US",
          "slug": "ahuimanu",
          "canonical_path": "/cities/us/ahuimanu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5855051",
          "name": "‘Ewa Beach",
          "country_code": "US",
          "slug": "ewa-beach",
          "canonical_path": "/cities/us/ewa-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5855070",
          "name": "‘Ewa Gentry",
          "country_code": "US",
          "slug": "ewa-gentry",
          "canonical_path": "/cities/us/ewa-gentry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5855073",
          "name": "‘Ewa Villages",
          "country_code": "US",
          "slug": "ewa-villages",
          "canonical_path": "/cities/us/ewa-villages/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2200100",
          "name": "Abbeville",
          "country_code": "US",
          "slug": "abbeville",
          "canonical_path": "/cities/us/abbeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4415813",
          "name": "Aberdeen",
          "country_code": "US",
          "slug": "aberdeen",
          "canonical_path": "/cities/us/aberdeen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2400125",
          "name": "Aberdeen",
          "country_code": "US",
          "slug": "aberdeen-md",
          "canonical_path": "/cities/us/aberdeen-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3700160",
          "name": "Aberdeen",
          "country_code": "US",
          "slug": "aberdeen-nc",
          "canonical_path": "/cities/us/aberdeen-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4600100",
          "name": "Aberdeen",
          "country_code": "US",
          "slug": "aberdeen-sd",
          "canonical_path": "/cities/us/aberdeen-sd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5300100",
          "name": "Aberdeen",
          "country_code": "US",
          "slug": "aberdeen-wa",
          "canonical_path": "/cities/us/aberdeen-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2000125",
          "name": "Abilene",
          "country_code": "US",
          "slug": "abilene-ks",
          "canonical_path": "/cities/us/abilene-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4801000",
          "name": "Abilene",
          "country_code": "US",
          "slug": "abilene-tx",
          "canonical_path": "/cities/us/abilene-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5100148",
          "name": "Abingdon",
          "country_code": "US",
          "slug": "abingdon",
          "canonical_path": "/cities/us/abingdon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4928662",
          "name": "Abington",
          "country_code": "US",
          "slug": "abington",
          "canonical_path": "/cities/us/abington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3400100",
          "name": "Absecon",
          "country_code": "US",
          "slug": "absecon",
          "canonical_path": "/cities/us/absecon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4346952",
          "name": "Accokeek",
          "country_code": "US",
          "slug": "accokeek",
          "canonical_path": "/cities/us/accokeek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4928703",
          "name": "Acton",
          "country_code": "US",
          "slug": "acton",
          "canonical_path": "/cities/us/acton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5322317",
          "name": "Acton",
          "country_code": "US",
          "slug": "acton-ca-037",
          "canonical_path": "/cities/us/acton-ca-037/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4928720",
          "name": "Acushnet",
          "country_code": "US",
          "slug": "acushnet",
          "canonical_path": "/cities/us/acushnet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1300408",
          "name": "Acworth",
          "country_code": "US",
          "slug": "acworth",
          "canonical_path": "/cities/us/acworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4000200",
          "name": "Ada",
          "country_code": "US",
          "slug": "ada",
          "canonical_path": "/cities/us/ada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1300436",
          "name": "Adairsville",
          "country_code": "US",
          "slug": "adairsville",
          "canonical_path": "/cities/us/adairsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4928733",
          "name": "Adams",
          "country_code": "US",
          "slug": "adams",
          "canonical_path": "/cities/us/adams/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4137457",
          "name": "Adams Morgan",
          "country_code": "US",
          "slug": "adams-morgan",
          "canonical_path": "/cities/us/adams-morgan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2200415",
          "name": "Addis",
          "country_code": "US",
          "slug": "addis",
          "canonical_path": "/cities/us/addis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1700243",
          "name": "Addison",
          "country_code": "US",
          "slug": "addison-il",
          "canonical_path": "/cities/us/addison-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4801240",
          "name": "Addison",
          "country_code": "US",
          "slug": "addison-tx",
          "canonical_path": "/cities/us/addison-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1300576",
          "name": "Adel",
          "country_code": "US",
          "slug": "adel-ga",
          "canonical_path": "/cities/us/adel-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1900505",
          "name": "Adel",
          "country_code": "US",
          "slug": "adel-ia",
          "canonical_path": "/cities/us/adel-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0600296",
          "name": "Adelanto",
          "country_code": "US",
          "slug": "adelanto",
          "canonical_path": "/cities/us/adelanto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4346991",
          "name": "Adelphi",
          "country_code": "US",
          "slug": "adelphi",
          "canonical_path": "/cities/us/adelphi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2600440",
          "name": "Adrian",
          "country_code": "US",
          "slug": "adrian",
          "canonical_path": "/cities/us/adrian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4374513",
          "name": "Affton",
          "country_code": "US",
          "slug": "affton",
          "canonical_path": "/cities/us/affton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4928788",
          "name": "Agawam",
          "country_code": "US",
          "slug": "agawam",
          "canonical_path": "/cities/us/agawam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2500840",
          "name": "Agawam Town",
          "country_code": "US",
          "slug": "agawam-town",
          "canonical_path": "/cities/us/agawam-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0600394",
          "name": "Agoura Hills",
          "country_code": "US",
          "slug": "agoura-hills",
          "canonical_path": "/cities/us/agoura-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5322571",
          "name": "Agua Caliente",
          "country_code": "US",
          "slug": "agua-caliente",
          "canonical_path": "/cities/us/agua-caliente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4500550",
          "name": "Aiken",
          "country_code": "US",
          "slug": "aiken",
          "canonical_path": "/cities/us/aiken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260752",
          "name": "Air Force Academy",
          "country_code": "US",
          "slug": "air-force-academy",
          "canonical_path": "/cities/us/air-force-academy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3600408",
          "name": "Airmont",
          "country_code": "US",
          "slug": "airmont",
          "canonical_path": "/cities/us/airmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5300905",
          "name": "Airway Heights",
          "country_code": "US",
          "slug": "airway-heights",
          "canonical_path": "/cities/us/airway-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3901000",
          "name": "Akron",
          "country_code": "US",
          "slug": "akron",
          "canonical_path": "/cities/us/akron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0100820",
          "name": "Alabaster",
          "country_code": "US",
          "slug": "alabaster",
          "canonical_path": "/cities/us/alabaster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1200375",
          "name": "Alachua",
          "country_code": "US",
          "slug": "alachua",
          "canonical_path": "/cities/us/alachua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:6332439",
          "name": "Alafaya",
          "country_code": "US",
          "slug": "alafaya",
          "canonical_path": "/cities/us/alafaya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0600562",
          "name": "Alameda",
          "country_code": "US",
          "slug": "alameda",
          "canonical_path": "/cities/us/alameda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4801576",
          "name": "Alamo",
          "country_code": "US",
          "slug": "alamo",
          "canonical_path": "/cities/us/alamo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4801600",
          "name": "Alamo Heights",
          "country_code": "US",
          "slug": "alamo-heights",
          "canonical_path": "/cities/us/alamo-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3501780",
          "name": "Alamogordo",
          "country_code": "US",
          "slug": "alamogordo",
          "canonical_path": "/cities/us/alamogordo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0801090",
          "name": "Alamosa",
          "country_code": "US",
          "slug": "alamosa",
          "canonical_path": "/cities/us/alamosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0600674",
          "name": "Albany",
          "country_code": "US",
          "slug": "albany-ca",
          "canonical_path": "/cities/us/albany-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1301052",
          "name": "Albany",
          "country_code": "US",
          "slug": "albany-ga",
          "canonical_path": "/cities/us/albany-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3601000",
          "name": "Albany",
          "country_code": "US",
          "slug": "albany-ny",
          "canonical_path": "/cities/us/albany-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4101000",
          "name": "Albany",
          "country_code": "US",
          "slug": "albany-or",
          "canonical_path": "/cities/us/albany-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3700680",
          "name": "Albemarle",
          "country_code": "US",
          "slug": "albemarle",
          "canonical_path": "/cities/us/albemarle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2700694",
          "name": "Albert Lea",
          "country_code": "US",
          "slug": "albert-lea",
          "canonical_path": "/cities/us/albert-lea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106857",
          "name": "Albertson",
          "country_code": "US",
          "slug": "albertson",
          "canonical_path": "/cities/us/albertson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0100988",
          "name": "Albertville",
          "country_code": "US",
          "slug": "albertville-al",
          "canonical_path": "/cities/us/albertville-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2700730",
          "name": "Albertville",
          "country_code": "US",
          "slug": "albertville-mn",
          "canonical_path": "/cities/us/albertville-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2600980",
          "name": "Albion",
          "country_code": "US",
          "slug": "albion-mi",
          "canonical_path": "/cities/us/albion-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3601033",
          "name": "Albion",
          "country_code": "US",
          "slug": "albion-ny",
          "canonical_path": "/cities/us/albion-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3502000",
          "name": "Albuquerque",
          "country_code": "US",
          "slug": "albuquerque",
          "canonical_path": "/cities/us/albuquerque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4700540",
          "name": "Alcoa",
          "country_code": "US",
          "slug": "alcoa",
          "canonical_path": "/cities/us/alcoa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5785453",
          "name": "Alderwood Manor",
          "country_code": "US",
          "slug": "alderwood-manor",
          "canonical_path": "/cities/us/alderwood-manor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4801744",
          "name": "Aledo",
          "country_code": "US",
          "slug": "aledo",
          "canonical_path": "/cities/us/aledo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0101132",
          "name": "Alexander City",
          "country_code": "US",
          "slug": "alexander-city",
          "canonical_path": "/cities/us/alexander-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1800910",
          "name": "Alexandria",
          "country_code": "US",
          "slug": "alexandria-in",
          "canonical_path": "/cities/us/alexandria-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2100802",
          "name": "Alexandria",
          "country_code": "US",
          "slug": "alexandria-ky",
          "canonical_path": "/cities/us/alexandria-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2200975",
          "name": "Alexandria",
          "country_code": "US",
          "slug": "alexandria-la",
          "canonical_path": "/cities/us/alexandria-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2700928",
          "name": "Alexandria",
          "country_code": "US",
          "slug": "alexandria-mn",
          "canonical_path": "/cities/us/alexandria-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5101000",
          "name": "Alexandria",
          "country_code": "US",
          "slug": "alexandria-va",
          "canonical_path": "/cities/us/alexandria-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3601198",
          "name": "Alfred",
          "country_code": "US",
          "slug": "alfred",
          "canonical_path": "/cities/us/alfred/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1901135",
          "name": "Algona",
          "country_code": "US",
          "slug": "algona",
          "canonical_path": "/cities/us/algona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1700685",
          "name": "Algonquin",
          "country_code": "US",
          "slug": "algonquin",
          "canonical_path": "/cities/us/algonquin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0600884",
          "name": "Alhambra",
          "country_code": "US",
          "slug": "alhambra",
          "canonical_path": "/cities/us/alhambra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4801852",
          "name": "Alice",
          "country_code": "US",
          "slug": "alice",
          "canonical_path": "/cities/us/alice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4200820",
          "name": "Aliquippa",
          "country_code": "US",
          "slug": "aliquippa",
          "canonical_path": "/cities/us/aliquippa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0600947",
          "name": "Aliso Viejo",
          "country_code": "US",
          "slug": "aliso-viejo",
          "canonical_path": "/cities/us/aliso-viejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2601260",
          "name": "Allegan",
          "country_code": "US",
          "slug": "allegan",
          "canonical_path": "/cities/us/allegan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4801924",
          "name": "Allen",
          "country_code": "US",
          "slug": "allen",
          "canonical_path": "/cities/us/allen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2601380",
          "name": "Allen Park",
          "country_code": "US",
          "slug": "allen-park",
          "canonical_path": "/cities/us/allen-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4984029",
          "name": "Allendale",
          "country_code": "US",
          "slug": "allendale",
          "canonical_path": "/cities/us/allendale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095124",
          "name": "Allendale",
          "country_code": "US",
          "slug": "allendale-nj-003",
          "canonical_path": "/cities/us/allendale-nj-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3400700",
          "name": "Allendale borough",
          "country_code": "US",
          "slug": "allendale-borough",
          "canonical_path": "/cities/us/allendale-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4202000",
          "name": "Allentown",
          "country_code": "US",
          "slug": "allentown",
          "canonical_path": "/cities/us/allentown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3100905",
          "name": "Alliance",
          "country_code": "US",
          "slug": "alliance-ne",
          "canonical_path": "/cities/us/alliance-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3901420",
          "name": "Alliance",
          "country_code": "US",
          "slug": "alliance-oh",
          "canonical_path": "/cities/us/alliance-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5178165",
          "name": "Allison Park",
          "country_code": "US",
          "slug": "allison-park",
          "canonical_path": "/cities/us/allison-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5501150",
          "name": "Allouez",
          "country_code": "US",
          "slug": "allouez",
          "canonical_path": "/cities/us/allouez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0500970",
          "name": "Alma",
          "country_code": "US",
          "slug": "alma-ar",
          "canonical_path": "/cities/us/alma-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2601540",
          "name": "Alma",
          "country_code": "US",
          "slug": "alma-mi",
          "canonical_path": "/cities/us/alma-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5711099",
          "name": "Aloha",
          "country_code": "US",
          "slug": "aloha",
          "canonical_path": "/cities/us/aloha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5323371",
          "name": "Alondra Park",
          "country_code": "US",
          "slug": "alondra-park",
          "canonical_path": "/cities/us/alondra-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2601740",
          "name": "Alpena",
          "country_code": "US",
          "slug": "alpena",
          "canonical_path": "/cities/us/alpena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1301696",
          "name": "Alpharetta",
          "country_code": "US",
          "slug": "alpharetta",
          "canonical_path": "/cities/us/alpharetta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5323401",
          "name": "Alpine",
          "country_code": "US",
          "slug": "alpine",
          "canonical_path": "/cities/us/alpine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4802104",
          "name": "Alpine",
          "country_code": "US",
          "slug": "alpine-tx",
          "canonical_path": "/cities/us/alpine-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4900540",
          "name": "Alpine",
          "country_code": "US",
          "slug": "alpine-ut",
          "canonical_path": "/cities/us/alpine-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1701010",
          "name": "Alsip",
          "country_code": "US",
          "slug": "alsip",
          "canonical_path": "/cities/us/alsip/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5323500",
          "name": "Alta Sierra",
          "country_code": "US",
          "slug": "alta-sierra-ca-057",
          "canonical_path": "/cities/us/alta-sierra-ca-057/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5323525",
          "name": "Altadena",
          "country_code": "US",
          "slug": "altadena",
          "canonical_path": "/cities/us/altadena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5711149",
          "name": "Altamont",
          "country_code": "US",
          "slug": "altamont",
          "canonical_path": "/cities/us/altamont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1200950",
          "name": "Altamonte Springs",
          "country_code": "US",
          "slug": "altamonte-springs",
          "canonical_path": "/cities/us/altamonte-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1701114",
          "name": "Alton",
          "country_code": "US",
          "slug": "alton-il",
          "canonical_path": "/cities/us/alton-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4802212",
          "name": "Alton",
          "country_code": "US",
          "slug": "alton-tx",
          "canonical_path": "/cities/us/alton-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1901630",
          "name": "Altoona",
          "country_code": "US",
          "slug": "altoona-ia",
          "canonical_path": "/cities/us/altoona-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4202184",
          "name": "Altoona",
          "country_code": "US",
          "slug": "altoona-pa",
          "canonical_path": "/cities/us/altoona-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5501550",
          "name": "Altoona",
          "country_code": "US",
          "slug": "altoona-wi",
          "canonical_path": "/cities/us/altoona-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4001700",
          "name": "Altus",
          "country_code": "US",
          "slug": "altus",
          "canonical_path": "/cities/us/altus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4529308",
          "name": "Alva",
          "country_code": "US",
          "slug": "alva",
          "canonical_path": "/cities/us/alva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4802260",
          "name": "Alvarado",
          "country_code": "US",
          "slug": "alvarado",
          "canonical_path": "/cities/us/alvarado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4802272",
          "name": "Alvin",
          "country_code": "US",
          "slug": "alvin",
          "canonical_path": "/cities/us/alvin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4803000",
          "name": "Amarillo",
          "country_code": "US",
          "slug": "amarillo",
          "canonical_path": "/cities/us/amarillo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5178225",
          "name": "Ambler",
          "country_code": "US",
          "slug": "ambler",
          "canonical_path": "/cities/us/ambler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4202264",
          "name": "Ambler borough",
          "country_code": "US",
          "slug": "ambler-borough",
          "canonical_path": "/cities/us/ambler-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5178228",
          "name": "Ambridge",
          "country_code": "US",
          "slug": "ambridge",
          "canonical_path": "/cities/us/ambridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4202288",
          "name": "Ambridge borough",
          "country_code": "US",
          "slug": "ambridge-borough",
          "canonical_path": "/cities/us/ambridge-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0601640",
          "name": "American Canyon",
          "country_code": "US",
          "slug": "american-canyon",
          "canonical_path": "/cities/us/american-canyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4901310",
          "name": "American Fork",
          "country_code": "US",
          "slug": "american-fork",
          "canonical_path": "/cities/us/american-fork/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1302116",
          "name": "Americus",
          "country_code": "US",
          "slug": "americus",
          "canonical_path": "/cities/us/americus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1901855",
          "name": "Ames",
          "country_code": "US",
          "slug": "ames",
          "canonical_path": "/cities/us/ames/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4929004",
          "name": "Amesbury",
          "country_code": "US",
          "slug": "amesbury",
          "canonical_path": "/cities/us/amesbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3901798",
          "name": "Amherst",
          "country_code": "US",
          "slug": "amherst",
          "canonical_path": "/cities/us/amherst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2501370",
          "name": "Amherst Town",
          "country_code": "US",
          "slug": "amherst-town",
          "canonical_path": "/cities/us/amherst-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3602044",
          "name": "Amityville",
          "country_code": "US",
          "slug": "amityville",
          "canonical_path": "/cities/us/amityville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1601990",
          "name": "Ammon",
          "country_code": "US",
          "slug": "ammon",
          "canonical_path": "/cities/us/ammon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2801260",
          "name": "Amory",
          "country_code": "US",
          "slug": "amory",
          "canonical_path": "/cities/us/amory/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3602066",
          "name": "Amsterdam",
          "country_code": "US",
          "slug": "amsterdam",
          "canonical_path": "/cities/us/amsterdam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3001675",
          "name": "Anaconda-Deer Lodge County",
          "country_code": "US",
          "slug": "anaconda-deer-lodge-county",
          "canonical_path": "/cities/us/anaconda-deer-lodge-county/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5301990",
          "name": "Anacortes",
          "country_code": "US",
          "slug": "anacortes",
          "canonical_path": "/cities/us/anacortes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4137523",
          "name": "Anacostia",
          "country_code": "US",
          "slug": "anacostia",
          "canonical_path": "/cities/us/anacostia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4002050",
          "name": "Anadarko",
          "country_code": "US",
          "slug": "anadarko",
          "canonical_path": "/cities/us/anadarko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0602000",
          "name": "Anaheim",
          "country_code": "US",
          "slug": "anaheim",
          "canonical_path": "/cities/us/anaheim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1901990",
          "name": "Anamosa",
          "country_code": "US",
          "slug": "anamosa",
          "canonical_path": "/cities/us/anamosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5879400",
          "name": "Anchorage",
          "country_code": "US",
          "slug": "anchorage",
          "canonical_path": "/cities/us/anchorage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0203000",
          "name": "Anchorage municipality",
          "country_code": "US",
          "slug": "anchorage-municipality",
          "canonical_path": "/cities/us/anchorage-municipality/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5178280",
          "name": "Ancient Oaks",
          "country_code": "US",
          "slug": "ancient-oaks",
          "canonical_path": "/cities/us/ancient-oaks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0101708",
          "name": "Andalusia",
          "country_code": "US",
          "slug": "andalusia",
          "canonical_path": "/cities/us/andalusia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0602042",
          "name": "Anderson",
          "country_code": "US",
          "slug": "anderson-ca",
          "canonical_path": "/cities/us/anderson-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1801468",
          "name": "Anderson",
          "country_code": "US",
          "slug": "anderson-in",
          "canonical_path": "/cities/us/anderson-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4501360",
          "name": "Anderson",
          "country_code": "US",
          "slug": "anderson-sc",
          "canonical_path": "/cities/us/anderson-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4929055",
          "name": "Andover",
          "country_code": "US",
          "slug": "andover-ma-009",
          "canonical_path": "/cities/us/andover-ma-009/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2001800",
          "name": "Andover",
          "country_code": "US",
          "slug": "andover-ks",
          "canonical_path": "/cities/us/andover-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2701486",
          "name": "Andover",
          "country_code": "US",
          "slug": "andover-mn",
          "canonical_path": "/cities/us/andover-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4803216",
          "name": "Andrews",
          "country_code": "US",
          "slug": "andrews",
          "canonical_path": "/cities/us/andrews/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3701400",
          "name": "Angier",
          "country_code": "US",
          "slug": "angier",
          "canonical_path": "/cities/us/angier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4803264",
          "name": "Angleton",
          "country_code": "US",
          "slug": "angleton",
          "canonical_path": "/cities/us/angleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1801666",
          "name": "Angola",
          "country_code": "US",
          "slug": "angola",
          "canonical_path": "/cities/us/angola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1902305",
          "name": "Ankeny",
          "country_code": "US",
          "slug": "ankeny",
          "canonical_path": "/cities/us/ankeny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2603000",
          "name": "Ann Arbor",
          "country_code": "US",
          "slug": "ann-arbor",
          "canonical_path": "/cities/us/ann-arbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4803300",
          "name": "Anna",
          "country_code": "US",
          "slug": "anna",
          "canonical_path": "/cities/us/anna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4744468",
          "name": "Annandale",
          "country_code": "US",
          "slug": "annandale",
          "canonical_path": "/cities/us/annandale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2401600",
          "name": "Annapolis",
          "country_code": "US",
          "slug": "annapolis",
          "canonical_path": "/cities/us/annapolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0101852",
          "name": "Anniston",
          "country_code": "US",
          "slug": "anniston",
          "canonical_path": "/cities/us/anniston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2701720",
          "name": "Anoka",
          "country_code": "US",
          "slug": "anoka",
          "canonical_path": "/cities/us/anoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0901150",
          "name": "Ansonia",
          "country_code": "US",
          "slug": "ansonia",
          "canonical_path": "/cities/us/ansonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5324105",
          "name": "Antelope",
          "country_code": "US",
          "slug": "antelope",
          "canonical_path": "/cities/us/antelope/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3503820",
          "name": "Anthony",
          "country_code": "US",
          "slug": "anthony",
          "canonical_path": "/cities/us/anthony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5502250",
          "name": "Antigo",
          "country_code": "US",
          "slug": "antigo",
          "canonical_path": "/cities/us/antigo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0602252",
          "name": "Antioch",
          "country_code": "US",
          "slug": "antioch-ca",
          "canonical_path": "/cities/us/antioch-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1701595",
          "name": "Antioch",
          "country_code": "US",
          "slug": "antioch-il",
          "canonical_path": "/cities/us/antioch-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0402830",
          "name": "Apache Junction",
          "country_code": "US",
          "slug": "apache-junction",
          "canonical_path": "/cities/us/apache-junction/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3701520",
          "name": "Apex",
          "country_code": "US",
          "slug": "apex",
          "canonical_path": "/cities/us/apex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4146161",
          "name": "Apollo Beach",
          "country_code": "US",
          "slug": "apollo-beach",
          "canonical_path": "/cities/us/apollo-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1201700",
          "name": "Apopka",
          "country_code": "US",
          "slug": "apopka",
          "canonical_path": "/cities/us/apopka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8480059",
          "name": "Apple Valley",
          "country_code": "US",
          "slug": "apple-valley",
          "canonical_path": "/cities/us/apple-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0602364",
          "name": "Apple Valley",
          "country_code": "US",
          "slug": "apple-valley-ca",
          "canonical_path": "/cities/us/apple-valley-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2701900",
          "name": "Apple Valley",
          "country_code": "US",
          "slug": "apple-valley-mn",
          "canonical_path": "/cities/us/apple-valley-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5502375",
          "name": "Appleton",
          "country_code": "US",
          "slug": "appleton",
          "canonical_path": "/cities/us/appleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5412030",
          "name": "Applewood",
          "country_code": "US",
          "slug": "applewood",
          "canonical_path": "/cities/us/applewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5324400",
          "name": "Aptos",
          "country_code": "US",
          "slug": "aptos",
          "canonical_path": "/cities/us/aptos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4744645",
          "name": "Aquia Harbour",
          "country_code": "US",
          "slug": "aquia-harbour",
          "canonical_path": "/cities/us/aquia-harbour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0102116",
          "name": "Arab",
          "country_code": "US",
          "slug": "arab",
          "canonical_path": "/cities/us/arab/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4803600",
          "name": "Aransas Pass",
          "country_code": "US",
          "slug": "aransas-pass",
          "canonical_path": "/cities/us/aransas-pass/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4347371",
          "name": "Arbutus",
          "country_code": "US",
          "slug": "arbutus",
          "canonical_path": "/cities/us/arbutus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0602462",
          "name": "Arcadia",
          "country_code": "US",
          "slug": "arcadia-ca",
          "canonical_path": "/cities/us/arcadia-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1201750",
          "name": "Arcadia",
          "country_code": "US",
          "slug": "arcadia-fl",
          "canonical_path": "/cities/us/arcadia-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0602476",
          "name": "Arcata",
          "country_code": "US",
          "slug": "arcata",
          "canonical_path": "/cities/us/arcata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5178450",
          "name": "Archbald",
          "country_code": "US",
          "slug": "archbald",
          "canonical_path": "/cities/us/archbald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4202832",
          "name": "Archbald borough",
          "country_code": "US",
          "slug": "archbald-borough",
          "canonical_path": "/cities/us/archbald-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3701720",
          "name": "Archdale",
          "country_code": "US",
          "slug": "archdale",
          "canonical_path": "/cities/us/archdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3701760",
          "name": "Archer Lodge",
          "country_code": "US",
          "slug": "archer-lodge",
          "canonical_path": "/cities/us/archer-lodge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2702026",
          "name": "Arden Hills",
          "country_code": "US",
          "slug": "arden-hills",
          "canonical_path": "/cities/us/arden-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260806",
          "name": "Arden-Arcade",
          "country_code": "US",
          "slug": "arden-arcade",
          "canonical_path": "/cities/us/arden-arcade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4002600",
          "name": "Ardmore",
          "country_code": "US",
          "slug": "ardmore",
          "canonical_path": "/cities/us/ardmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3602506",
          "name": "Ardsley",
          "country_code": "US",
          "slug": "ardsley",
          "canonical_path": "/cities/us/ardsley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4803768",
          "name": "Argyle",
          "country_code": "US",
          "slug": "argyle",
          "canonical_path": "/cities/us/argyle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5551665",
          "name": "Arizona City",
          "country_code": "US",
          "slug": "arizona-city",
          "canonical_path": "/cities/us/arizona-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0501870",
          "name": "Arkadelphia",
          "country_code": "US",
          "slug": "arkadelphia",
          "canonical_path": "/cities/us/arkadelphia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2002300",
          "name": "Arkansas City",
          "country_code": "US",
          "slug": "arkansas-city",
          "canonical_path": "/cities/us/arkansas-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4744709",
          "name": "Arlington",
          "country_code": "US",
          "slug": "arlington",
          "canonical_path": "/cities/us/arlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4929180",
          "name": "Arlington",
          "country_code": "US",
          "slug": "arlington-ma-017",
          "canonical_path": "/cities/us/arlington-ma-017/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4701740",
          "name": "Arlington",
          "country_code": "US",
          "slug": "arlington-tn",
          "canonical_path": "/cities/us/arlington-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4804000",
          "name": "Arlington",
          "country_code": "US",
          "slug": "arlington-tx",
          "canonical_path": "/cities/us/arlington-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5302585",
          "name": "Arlington",
          "country_code": "US",
          "slug": "arlington-wa",
          "canonical_path": "/cities/us/arlington-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1702154",
          "name": "Arlington Heights",
          "country_code": "US",
          "slug": "arlington-heights",
          "canonical_path": "/cities/us/arlington-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2901972",
          "name": "Arnold",
          "country_code": "US",
          "slug": "arnold",
          "canonical_path": "/cities/us/arnold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0602868",
          "name": "Arroyo Grande",
          "country_code": "US",
          "slug": "arroyo-grande",
          "canonical_path": "/cities/us/arroyo-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0602896",
          "name": "Artesia",
          "country_code": "US",
          "slug": "artesia-ca",
          "canonical_path": "/cities/us/artesia-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3505220",
          "name": "Artesia",
          "country_code": "US",
          "slug": "artesia-nm",
          "canonical_path": "/cities/us/artesia-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5785909",
          "name": "Artondale",
          "country_code": "US",
          "slug": "artondale",
          "canonical_path": "/cities/us/artondale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0803455",
          "name": "Arvada",
          "country_code": "US",
          "slug": "arvada",
          "canonical_path": "/cities/us/arvada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0602924",
          "name": "Arvin",
          "country_code": "US",
          "slug": "arvin",
          "canonical_path": "/cities/us/arvin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1903160",
          "name": "Asbury",
          "country_code": "US",
          "slug": "asbury",
          "canonical_path": "/cities/us/asbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4146302",
          "name": "Asbury Lake",
          "country_code": "US",
          "slug": "asbury-lake",
          "canonical_path": "/cities/us/asbury-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3401960",
          "name": "Asbury Park",
          "country_code": "US",
          "slug": "asbury-park",
          "canonical_path": "/cities/us/asbury-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4744870",
          "name": "Ashburn",
          "country_code": "US",
          "slug": "ashburn",
          "canonical_path": "/cities/us/ashburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3702080",
          "name": "Asheboro",
          "country_code": "US",
          "slug": "asheboro",
          "canonical_path": "/cities/us/asheboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3702140",
          "name": "Asheville",
          "country_code": "US",
          "slug": "asheville",
          "canonical_path": "/cities/us/asheville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4500538",
          "name": "Ashland",
          "country_code": "US",
          "slug": "ashland",
          "canonical_path": "/cities/us/ashland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5325011",
          "name": "Ashland",
          "country_code": "US",
          "slug": "ashland-ca-001",
          "canonical_path": "/cities/us/ashland-ca-001/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2102368",
          "name": "Ashland",
          "country_code": "US",
          "slug": "ashland-ky",
          "canonical_path": "/cities/us/ashland-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2902242",
          "name": "Ashland",
          "country_code": "US",
          "slug": "ashland-mo",
          "canonical_path": "/cities/us/ashland-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3902568",
          "name": "Ashland",
          "country_code": "US",
          "slug": "ashland-oh",
          "canonical_path": "/cities/us/ashland-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4103050",
          "name": "Ashland",
          "country_code": "US",
          "slug": "ashland-or",
          "canonical_path": "/cities/us/ashland-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5103368",
          "name": "Ashland",
          "country_code": "US",
          "slug": "ashland-va",
          "canonical_path": "/cities/us/ashland-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5503225",
          "name": "Ashland",
          "country_code": "US",
          "slug": "ashland-wi",
          "canonical_path": "/cities/us/ashland-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4702180",
          "name": "Ashland City",
          "country_code": "US",
          "slug": "ashland-city",
          "canonical_path": "/cities/us/ashland-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3902638",
          "name": "Ashtabula",
          "country_code": "US",
          "slug": "ashtabula",
          "canonical_path": "/cities/us/ashtabula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257953",
          "name": "Ashton-Sandy Spring",
          "country_code": "US",
          "slug": "ashton-sandy-spring",
          "canonical_path": "/cities/us/ashton-sandy-spring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5503425",
          "name": "Ashwaubenon",
          "country_code": "US",
          "slug": "ashwaubenon",
          "canonical_path": "/cities/us/ashwaubenon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0803620",
          "name": "Aspen",
          "country_code": "US",
          "slug": "aspen",
          "canonical_path": "/cities/us/aspen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4347553",
          "name": "Aspen Hill",
          "country_code": "US",
          "slug": "aspen-hill",
          "canonical_path": "/cities/us/aspen-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4103150",
          "name": "Astoria",
          "country_code": "US",
          "slug": "astoria",
          "canonical_path": "/cities/us/astoria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0603064",
          "name": "Atascadero",
          "country_code": "US",
          "slug": "atascadero",
          "canonical_path": "/cities/us/atascadero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2002900",
          "name": "Atchison",
          "country_code": "US",
          "slug": "atchison",
          "canonical_path": "/cities/us/atchison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4500541",
          "name": "Atco",
          "country_code": "US",
          "slug": "atco",
          "canonical_path": "/cities/us/atco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0102956",
          "name": "Athens",
          "country_code": "US",
          "slug": "athens-al",
          "canonical_path": "/cities/us/athens-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3902736",
          "name": "Athens",
          "country_code": "US",
          "slug": "athens-oh",
          "canonical_path": "/cities/us/athens-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4702320",
          "name": "Athens",
          "country_code": "US",
          "slug": "athens-tn",
          "canonical_path": "/cities/us/athens-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4804504",
          "name": "Athens",
          "country_code": "US",
          "slug": "athens-tx",
          "canonical_path": "/cities/us/athens-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0603092",
          "name": "Atherton",
          "country_code": "US",
          "slug": "atherton",
          "canonical_path": "/cities/us/atherton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4929376",
          "name": "Athol",
          "country_code": "US",
          "slug": "athol",
          "canonical_path": "/cities/us/athol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5082790",
          "name": "Atkinson",
          "country_code": "US",
          "slug": "atkinson",
          "canonical_path": "/cities/us/atkinson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1304000",
          "name": "Atlanta",
          "country_code": "US",
          "slug": "atlanta-ga",
          "canonical_path": "/cities/us/atlanta-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4804516",
          "name": "Atlanta",
          "country_code": "US",
          "slug": "atlanta-tx",
          "canonical_path": "/cities/us/atlanta-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1903520",
          "name": "Atlantic",
          "country_code": "US",
          "slug": "atlantic",
          "canonical_path": "/cities/us/atlantic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1202400",
          "name": "Atlantic Beach",
          "country_code": "US",
          "slug": "atlantic-beach",
          "canonical_path": "/cities/us/atlantic-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3402080",
          "name": "Atlantic City",
          "country_code": "US",
          "slug": "atlantic-city",
          "canonical_path": "/cities/us/atlantic-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0103004",
          "name": "Atmore",
          "country_code": "US",
          "slug": "atmore",
          "canonical_path": "/cities/us/atmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4702340",
          "name": "Atoka",
          "country_code": "US",
          "slug": "atoka",
          "canonical_path": "/cities/us/atoka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0103028",
          "name": "Attalla",
          "country_code": "US",
          "slug": "attalla",
          "canonical_path": "/cities/us/attalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2502690",
          "name": "Attleboro",
          "country_code": "US",
          "slug": "attleboro",
          "canonical_path": "/cities/us/attleboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0603162",
          "name": "Atwater",
          "country_code": "US",
          "slug": "atwater",
          "canonical_path": "/cities/us/atwater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4804600",
          "name": "Aubrey",
          "country_code": "US",
          "slug": "aubrey",
          "canonical_path": "/cities/us/aubrey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4929417",
          "name": "Auburn",
          "country_code": "US",
          "slug": "auburn",
          "canonical_path": "/cities/us/auburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5082811",
          "name": "Auburn",
          "country_code": "US",
          "slug": "auburn-nh-015",
          "canonical_path": "/cities/us/auburn-nh-015/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0103076",
          "name": "Auburn",
          "country_code": "US",
          "slug": "auburn-al",
          "canonical_path": "/cities/us/auburn-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0603204",
          "name": "Auburn",
          "country_code": "US",
          "slug": "auburn-ca",
          "canonical_path": "/cities/us/auburn-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1304140",
          "name": "Auburn",
          "country_code": "US",
          "slug": "auburn-ga",
          "canonical_path": "/cities/us/auburn-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1802674",
          "name": "Auburn",
          "country_code": "US",
          "slug": "auburn-in",
          "canonical_path": "/cities/us/auburn-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2302060",
          "name": "Auburn",
          "country_code": "US",
          "slug": "auburn-me",
          "canonical_path": "/cities/us/auburn-me/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3603078",
          "name": "Auburn",
          "country_code": "US",
          "slug": "auburn-ny",
          "canonical_path": "/cities/us/auburn-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5303180",
          "name": "Auburn",
          "country_code": "US",
          "slug": "auburn-wa",
          "canonical_path": "/cities/us/auburn-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2604105",
          "name": "Auburn Hills",
          "country_code": "US",
          "slug": "auburn-hills",
          "canonical_path": "/cities/us/auburn-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1202550",
          "name": "Auburndale",
          "country_code": "US",
          "slug": "auburndale",
          "canonical_path": "/cities/us/auburndale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4500572",
          "name": "Audubon",
          "country_code": "US",
          "slug": "audubon",
          "canonical_path": "/cities/us/audubon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5178686",
          "name": "Audubon",
          "country_code": "US",
          "slug": "audubon-pa-091",
          "canonical_path": "/cities/us/audubon-pa-091/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3402200",
          "name": "Audubon borough",
          "country_code": "US",
          "slug": "audubon-borough",
          "canonical_path": "/cities/us/audubon-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5325256",
          "name": "August",
          "country_code": "US",
          "slug": "august",
          "canonical_path": "/cities/us/august/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4180531",
          "name": "Augusta",
          "country_code": "US",
          "slug": "augusta",
          "canonical_path": "/cities/us/augusta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2003300",
          "name": "Augusta",
          "country_code": "US",
          "slug": "augusta-ks",
          "canonical_path": "/cities/us/augusta-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2302100",
          "name": "Augusta",
          "country_code": "US",
          "slug": "augusta-me",
          "canonical_path": "/cities/us/augusta-me/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0804000",
          "name": "Aurora",
          "country_code": "US",
          "slug": "aurora-co",
          "canonical_path": "/cities/us/aurora-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1703012",
          "name": "Aurora",
          "country_code": "US",
          "slug": "aurora-il",
          "canonical_path": "/cities/us/aurora-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2902548",
          "name": "Aurora",
          "country_code": "US",
          "slug": "aurora-mo",
          "canonical_path": "/cities/us/aurora-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3903086",
          "name": "Aurora",
          "country_code": "US",
          "slug": "aurora-oh",
          "canonical_path": "/cities/us/aurora-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1304252",
          "name": "Austell",
          "country_code": "US",
          "slug": "austell",
          "canonical_path": "/cities/us/austell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2702908",
          "name": "Austin",
          "country_code": "US",
          "slug": "austin-mn",
          "canonical_path": "/cities/us/austin-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4805000",
          "name": "Austin",
          "country_code": "US",
          "slug": "austin-tx",
          "canonical_path": "/cities/us/austin-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5146256",
          "name": "Austintown",
          "country_code": "US",
          "slug": "austintown",
          "canonical_path": "/cities/us/austintown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4146428",
          "name": "Ave Maria",
          "country_code": "US",
          "slug": "ave-maria",
          "canonical_path": "/cities/us/ave-maria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0603302",
          "name": "Avenal",
          "country_code": "US",
          "slug": "avenal",
          "canonical_path": "/cities/us/avenal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095325",
          "name": "Avenel",
          "country_code": "US",
          "slug": "avenel",
          "canonical_path": "/cities/us/avenel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1202681",
          "name": "Aventura",
          "country_code": "US",
          "slug": "aventura",
          "canonical_path": "/cities/us/aventura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5325372",
          "name": "Avocado Heights",
          "country_code": "US",
          "slug": "avocado-heights",
          "canonical_path": "/cities/us/avocado-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5281730",
          "name": "Avon",
          "country_code": "US",
          "slug": "avon",
          "canonical_path": "/cities/us/avon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0804110",
          "name": "Avon",
          "country_code": "US",
          "slug": "avon-co",
          "canonical_path": "/cities/us/avon-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1802908",
          "name": "Avon",
          "country_code": "US",
          "slug": "avon-in",
          "canonical_path": "/cities/us/avon-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3903352",
          "name": "Avon",
          "country_code": "US",
          "slug": "avon-oh",
          "canonical_path": "/cities/us/avon-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3903464",
          "name": "Avon Lake",
          "country_code": "US",
          "slug": "avon-lake",
          "canonical_path": "/cities/us/avon-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1202750",
          "name": "Avon Park",
          "country_code": "US",
          "slug": "avon-park",
          "canonical_path": "/cities/us/avon-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0404720",
          "name": "Avondale",
          "country_code": "US",
          "slug": "avondale",
          "canonical_path": "/cities/us/avondale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5552323",
          "name": "Avra Valley",
          "country_code": "US",
          "slug": "avra-valley",
          "canonical_path": "/cities/us/avra-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3702840",
          "name": "Ayden",
          "country_code": "US",
          "slug": "ayden",
          "canonical_path": "/cities/us/ayden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4146464",
          "name": "Azalea Park",
          "country_code": "US",
          "slug": "azalea-park",
          "canonical_path": "/cities/us/azalea-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4805168",
          "name": "Azle",
          "country_code": "US",
          "slug": "azle",
          "canonical_path": "/cities/us/azle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3505780",
          "name": "Aztec",
          "country_code": "US",
          "slug": "aztec",
          "canonical_path": "/cities/us/aztec/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0603386",
          "name": "Azusa",
          "country_code": "US",
          "slug": "azusa",
          "canonical_path": "/cities/us/azusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3603408",
          "name": "Babylon",
          "country_code": "US",
          "slug": "babylon",
          "canonical_path": "/cities/us/babylon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4671895",
          "name": "Bacliff",
          "country_code": "US",
          "slug": "bacliff",
          "canonical_path": "/cities/us/bacliff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5879898",
          "name": "Badger",
          "country_code": "US",
          "slug": "badger",
          "canonical_path": "/cities/us/badger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4745272",
          "name": "Baileys Crossroads",
          "country_code": "US",
          "slug": "baileys-crossroads",
          "canonical_path": "/cities/us/baileys-crossroads/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1304896",
          "name": "Bainbridge",
          "country_code": "US",
          "slug": "bainbridge",
          "canonical_path": "/cities/us/bainbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5303736",
          "name": "Bainbridge Island",
          "country_code": "US",
          "slug": "bainbridge-island",
          "canonical_path": "/cities/us/bainbridge-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2203985",
          "name": "Baker",
          "country_code": "US",
          "slug": "baker",
          "canonical_path": "/cities/us/baker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4103650",
          "name": "Baker City",
          "country_code": "US",
          "slug": "baker-city",
          "canonical_path": "/cities/us/baker-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0603526",
          "name": "Bakersfield",
          "country_code": "US",
          "slug": "bakersfield",
          "canonical_path": "/cities/us/bakersfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5178892",
          "name": "Bala Cynwyd",
          "country_code": "US",
          "slug": "bala-cynwyd",
          "canonical_path": "/cities/us/bala-cynwyd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4805372",
          "name": "Balch Springs",
          "country_code": "US",
          "slug": "balch-springs",
          "canonical_path": "/cities/us/balch-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5107760",
          "name": "Baldwin",
          "country_code": "US",
          "slug": "baldwin",
          "canonical_path": "/cities/us/baldwin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5178940",
          "name": "Baldwin",
          "country_code": "US",
          "slug": "baldwin-pa-003",
          "canonical_path": "/cities/us/baldwin-pa-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4203928",
          "name": "Baldwin borough",
          "country_code": "US",
          "slug": "baldwin-borough",
          "canonical_path": "/cities/us/baldwin-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5107771",
          "name": "Baldwin Harbor",
          "country_code": "US",
          "slug": "baldwin-harbor",
          "canonical_path": "/cities/us/baldwin-harbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0603666",
          "name": "Baldwin Park",
          "country_code": "US",
          "slug": "baldwin-park",
          "canonical_path": "/cities/us/baldwin-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3604198",
          "name": "Baldwinsville",
          "country_code": "US",
          "slug": "baldwinsville",
          "canonical_path": "/cities/us/baldwinsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4347839",
          "name": "Ballenger Creek",
          "country_code": "US",
          "slug": "ballenger-creek",
          "canonical_path": "/cities/us/ballenger-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5107812",
          "name": "Ballston Spa",
          "country_code": "US",
          "slug": "ballston-spa",
          "canonical_path": "/cities/us/ballston-spa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2903160",
          "name": "Ballwin",
          "country_code": "US",
          "slug": "ballwin",
          "canonical_path": "/cities/us/ballwin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2404000",
          "name": "Baltimore",
          "country_code": "US",
          "slug": "baltimore",
          "canonical_path": "/cities/us/baltimore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4347800",
          "name": "Baltimore Highlands",
          "country_code": "US",
          "slug": "baltimore-highlands",
          "canonical_path": "/cities/us/baltimore-highlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2302795",
          "name": "Bangor",
          "country_code": "US",
          "slug": "bangor",
          "canonical_path": "/cities/us/bangor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4204032",
          "name": "Bangor borough",
          "country_code": "US",
          "slug": "bangor-borough",
          "canonical_path": "/cities/us/bangor-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260845",
          "name": "Bangor Trident Base",
          "country_code": "US",
          "slug": "bangor-trident-base",
          "canonical_path": "/cities/us/bangor-trident-base/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0603820",
          "name": "Banning",
          "country_code": "US",
          "slug": "banning",
          "canonical_path": "/cities/us/banning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5504625",
          "name": "Baraboo",
          "country_code": "US",
          "slug": "baraboo",
          "canonical_path": "/cities/us/baraboo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3903828",
          "name": "Barberton",
          "country_code": "US",
          "slug": "barberton",
          "canonical_path": "/cities/us/barberton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2103628",
          "name": "Bardstown",
          "country_code": "US",
          "slug": "bardstown",
          "canonical_path": "/cities/us/bardstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1803394",
          "name": "Bargersville",
          "country_code": "US",
          "slug": "bargersville",
          "canonical_path": "/cities/us/bargersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0503640",
          "name": "Barling",
          "country_code": "US",
          "slug": "barling",
          "canonical_path": "/cities/us/barling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1305344",
          "name": "Barnesville",
          "country_code": "US",
          "slug": "barnesville",
          "canonical_path": "/cities/us/barnesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4375832",
          "name": "Barnhart",
          "country_code": "US",
          "slug": "barnhart",
          "canonical_path": "/cities/us/barnhart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2503690",
          "name": "Barnstable Town",
          "country_code": "US",
          "slug": "barnstable-town",
          "canonical_path": "/cities/us/barnstable-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526883",
          "name": "Barracks Row",
          "country_code": "US",
          "slug": "barracks-row",
          "canonical_path": "/cities/us/barracks-row/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5003175",
          "name": "Barre",
          "country_code": "US",
          "slug": "barre",
          "canonical_path": "/cities/us/barre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1703844",
          "name": "Barrington",
          "country_code": "US",
          "slug": "barrington",
          "canonical_path": "/cities/us/barrington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3403250",
          "name": "Barrington borough",
          "country_code": "US",
          "slug": "barrington-borough",
          "canonical_path": "/cities/us/barrington-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0604030",
          "name": "Barstow",
          "country_code": "US",
          "slug": "barstow",
          "canonical_path": "/cities/us/barstow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4004450",
          "name": "Bartlesville",
          "country_code": "US",
          "slug": "bartlesville",
          "canonical_path": "/cities/us/bartlesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1704013",
          "name": "Bartlett",
          "country_code": "US",
          "slug": "bartlett-il",
          "canonical_path": "/cities/us/bartlett-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4703440",
          "name": "Bartlett",
          "country_code": "US",
          "slug": "bartlett-tn",
          "canonical_path": "/cities/us/bartlett-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1704039",
          "name": "Bartonville",
          "country_code": "US",
          "slug": "bartonville",
          "canonical_path": "/cities/us/bartonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1203675",
          "name": "Bartow",
          "country_code": "US",
          "slug": "bartow",
          "canonical_path": "/cities/us/bartow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2004400",
          "name": "Basehor",
          "country_code": "US",
          "slug": "basehor",
          "canonical_path": "/cities/us/basehor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095409",
          "name": "Basking Ridge",
          "country_code": "US",
          "slug": "basking-ridge",
          "canonical_path": "/cities/us/basking-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2204685",
          "name": "Bastrop",
          "country_code": "US",
          "slug": "bastrop-la",
          "canonical_path": "/cities/us/bastrop-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4805864",
          "name": "Bastrop",
          "country_code": "US",
          "slug": "bastrop-tx",
          "canonical_path": "/cities/us/bastrop-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1704078",
          "name": "Batavia",
          "country_code": "US",
          "slug": "batavia-il",
          "canonical_path": "/cities/us/batavia-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3604715",
          "name": "Batavia",
          "country_code": "US",
          "slug": "batavia-ny",
          "canonical_path": "/cities/us/batavia-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4504300",
          "name": "Batesburg-Leesville",
          "country_code": "US",
          "slug": "batesburg-leesville",
          "canonical_path": "/cities/us/batesburg-leesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0504030",
          "name": "Batesville",
          "country_code": "US",
          "slug": "batesville-ar",
          "canonical_path": "/cities/us/batesville-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1803664",
          "name": "Batesville",
          "country_code": "US",
          "slug": "batesville-in",
          "canonical_path": "/cities/us/batesville-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2803620",
          "name": "Batesville",
          "country_code": "US",
          "slug": "batesville-ms",
          "canonical_path": "/cities/us/batesville-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2303355",
          "name": "Bath",
          "country_code": "US",
          "slug": "bath-me",
          "canonical_path": "/cities/us/bath-me/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3604759",
          "name": "Bath",
          "country_code": "US",
          "slug": "bath-ny",
          "canonical_path": "/cities/us/bath-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4315588",
          "name": "Baton Rouge",
          "country_code": "US",
          "slug": "baton-rouge",
          "canonical_path": "/cities/us/baton-rouge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2605920",
          "name": "Battle Creek",
          "country_code": "US",
          "slug": "battle-creek",
          "canonical_path": "/cities/us/battle-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5304475",
          "name": "Battle Ground",
          "country_code": "US",
          "slug": "battle-ground",
          "canonical_path": "/cities/us/battle-ground/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2903592",
          "name": "Battlefield",
          "country_code": "US",
          "slug": "battlefield",
          "canonical_path": "/cities/us/battlefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1306016",
          "name": "Baxley",
          "country_code": "US",
          "slug": "baxley",
          "canonical_path": "/cities/us/baxley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2704042",
          "name": "Baxter",
          "country_code": "US",
          "slug": "baxter",
          "canonical_path": "/cities/us/baxter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2606020",
          "name": "Bay City",
          "country_code": "US",
          "slug": "bay-city-mi",
          "canonical_path": "/cities/us/bay-city-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4805984",
          "name": "Bay City",
          "country_code": "US",
          "slug": "bay-city-tx",
          "canonical_path": "/cities/us/bay-city-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1203975",
          "name": "Bay Harbor Islands",
          "country_code": "US",
          "slug": "bay-harbor-islands",
          "canonical_path": "/cities/us/bay-harbor-islands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0104660",
          "name": "Bay Minette",
          "country_code": "US",
          "slug": "bay-minette",
          "canonical_path": "/cities/us/bay-minette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5326561",
          "name": "Bay Point",
          "country_code": "US",
          "slug": "bay-point",
          "canonical_path": "/cities/us/bay-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4417205",
          "name": "Bay Saint Louis",
          "country_code": "US",
          "slug": "bay-saint-louis",
          "canonical_path": "/cities/us/bay-saint-louis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5108169",
          "name": "Bay Shore",
          "country_code": "US",
          "slug": "bay-shore",
          "canonical_path": "/cities/us/bay-shore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2803980",
          "name": "Bay St. Louis",
          "country_code": "US",
          "slug": "bay-st-louis",
          "canonical_path": "/cities/us/bay-st-louis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3904416",
          "name": "Bay Village",
          "country_code": "US",
          "slug": "bay-village",
          "canonical_path": "/cities/us/bay-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5108179",
          "name": "Bay Wood",
          "country_code": "US",
          "slug": "bay-wood",
          "canonical_path": "/cities/us/bay-wood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4146901",
          "name": "Bayonet Point",
          "country_code": "US",
          "slug": "bayonet-point",
          "canonical_path": "/cities/us/bayonet-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3403580",
          "name": "Bayonne",
          "country_code": "US",
          "slug": "bayonne",
          "canonical_path": "/cities/us/bayonne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4315756",
          "name": "Bayou Boeuf",
          "country_code": "US",
          "slug": "bayou-boeuf",
          "canonical_path": "/cities/us/bayou-boeuf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4315768",
          "name": "Bayou Cane",
          "country_code": "US",
          "slug": "bayou-cane",
          "canonical_path": "/cities/us/bayou-cane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5108191",
          "name": "Bayport",
          "country_code": "US",
          "slug": "bayport",
          "canonical_path": "/cities/us/bayport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4146934",
          "name": "Bayshore Gardens",
          "country_code": "US",
          "slug": "bayshore-gardens",
          "canonical_path": "/cities/us/bayshore-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4806128",
          "name": "Baytown",
          "country_code": "US",
          "slug": "baytown",
          "canonical_path": "/cities/us/baytown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3605034",
          "name": "Bayville",
          "country_code": "US",
          "slug": "bayville",
          "canonical_path": "/cities/us/bayville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1704303",
          "name": "Beach Park",
          "country_code": "US",
          "slug": "beach-park",
          "canonical_path": "/cities/us/beach-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3904500",
          "name": "Beachwood",
          "country_code": "US",
          "slug": "beachwood",
          "canonical_path": "/cities/us/beachwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3404180",
          "name": "Beachwood borough",
          "country_code": "US",
          "slug": "beachwood-borough",
          "canonical_path": "/cities/us/beachwood-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3605100",
          "name": "Beacon",
          "country_code": "US",
          "slug": "beacon",
          "canonical_path": "/cities/us/beacon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4146984",
          "name": "Beacon Square",
          "country_code": "US",
          "slug": "beacon-square",
          "canonical_path": "/cities/us/beacon-square/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4930019",
          "name": "Beaconsfield",
          "country_code": "US",
          "slug": "beaconsfield",
          "canonical_path": "/cities/us/beaconsfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4141363",
          "name": "Bear",
          "country_code": "US",
          "slug": "bear",
          "canonical_path": "/cities/us/bear/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5327003",
          "name": "Bear Valley Springs",
          "country_code": "US",
          "slug": "bear-valley-springs",
          "canonical_path": "/cities/us/bear-valley-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1704351",
          "name": "Beardstown",
          "country_code": "US",
          "slug": "beardstown",
          "canonical_path": "/cities/us/beardstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3103390",
          "name": "Beatrice",
          "country_code": "US",
          "slug": "beatrice",
          "canonical_path": "/cities/us/beatrice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4504690",
          "name": "Beaufort",
          "country_code": "US",
          "slug": "beaufort",
          "canonical_path": "/cities/us/beaufort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0604758",
          "name": "Beaumont",
          "country_code": "US",
          "slug": "beaumont-ca",
          "canonical_path": "/cities/us/beaumont-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4807000",
          "name": "Beaumont",
          "country_code": "US",
          "slug": "beaumont-tx",
          "canonical_path": "/cities/us/beaumont-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5505900",
          "name": "Beaver Dam",
          "country_code": "US",
          "slug": "beaver-dam",
          "canonical_path": "/cities/us/beaver-dam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4204792",
          "name": "Beaver Falls",
          "country_code": "US",
          "slug": "beaver-falls",
          "canonical_path": "/cities/us/beaver-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3904720",
          "name": "Beavercreek",
          "country_code": "US",
          "slug": "beavercreek",
          "canonical_path": "/cities/us/beavercreek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4105350",
          "name": "Beaverton",
          "country_code": "US",
          "slug": "beaverton",
          "canonical_path": "/cities/us/beaverton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2704618",
          "name": "Becker",
          "country_code": "US",
          "slug": "becker",
          "canonical_path": "/cities/us/becker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4506031",
          "name": "Beckett Ridge",
          "country_code": "US",
          "slug": "beckett-ridge",
          "canonical_path": "/cities/us/beckett-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5405332",
          "name": "Beckley",
          "country_code": "US",
          "slug": "beckley",
          "canonical_path": "/cities/us/beckley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4930183",
          "name": "Bedford",
          "country_code": "US",
          "slug": "bedford",
          "canonical_path": "/cities/us/bedford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5083221",
          "name": "Bedford",
          "country_code": "US",
          "slug": "bedford-nh-011",
          "canonical_path": "/cities/us/bedford-nh-011/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1804114",
          "name": "Bedford",
          "country_code": "US",
          "slug": "bedford-in",
          "canonical_path": "/cities/us/bedford-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3904878",
          "name": "Bedford",
          "country_code": "US",
          "slug": "bedford-oh",
          "canonical_path": "/cities/us/bedford-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4807132",
          "name": "Bedford",
          "country_code": "US",
          "slug": "bedford-tx",
          "canonical_path": "/cities/us/bedford-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5105544",
          "name": "Bedford",
          "country_code": "US",
          "slug": "bedford-va",
          "canonical_path": "/cities/us/bedford-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3904920",
          "name": "Bedford Heights",
          "country_code": "US",
          "slug": "bedford-heights",
          "canonical_path": "/cities/us/bedford-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095528",
          "name": "Bedminster",
          "country_code": "US",
          "slug": "bedminster",
          "canonical_path": "/cities/us/bedminster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4807156",
          "name": "Bee Cave",
          "country_code": "US",
          "slug": "bee-cave",
          "canonical_path": "/cities/us/bee-cave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4147145",
          "name": "Bee Ridge",
          "country_code": "US",
          "slug": "bee-ridge",
          "canonical_path": "/cities/us/bee-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0504600",
          "name": "Beebe",
          "country_code": "US",
          "slug": "beebe",
          "canonical_path": "/cities/us/beebe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1804204",
          "name": "Beech Grove",
          "country_code": "US",
          "slug": "beech-grove",
          "canonical_path": "/cities/us/beech-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4985521",
          "name": "Beecher",
          "country_code": "US",
          "slug": "beecher",
          "canonical_path": "/cities/us/beecher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4807192",
          "name": "Beeville",
          "country_code": "US",
          "slug": "beeville",
          "canonical_path": "/cities/us/beeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2405550",
          "name": "Bel Air",
          "country_code": "US",
          "slug": "bel-air",
          "canonical_path": "/cities/us/bel-air/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257991",
          "name": "Bel Air North",
          "country_code": "US",
          "slug": "bel-air-north",
          "canonical_path": "/cities/us/bel-air-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257992",
          "name": "Bel Air South",
          "country_code": "US",
          "slug": "bel-air-south",
          "canonical_path": "/cities/us/bel-air-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2005337",
          "name": "Bel Aire",
          "country_code": "US",
          "slug": "bel-aire",
          "canonical_path": "/cities/us/bel-aire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2606900",
          "name": "Belding",
          "country_code": "US",
          "slug": "belding",
          "canonical_path": "/cities/us/belding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3506480",
          "name": "Belen",
          "country_code": "US",
          "slug": "belen",
          "canonical_path": "/cities/us/belen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2303950",
          "name": "Belfast",
          "country_code": "US",
          "slug": "belfast",
          "canonical_path": "/cities/us/belfast/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3004975",
          "name": "Belgrade",
          "country_code": "US",
          "slug": "belgrade",
          "canonical_path": "/cities/us/belgrade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0604870",
          "name": "Bell",
          "country_code": "US",
          "slug": "bell",
          "canonical_path": "/cities/us/bell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0604996",
          "name": "Bell Gardens",
          "country_code": "US",
          "slug": "bell-gardens",
          "canonical_path": "/cities/us/bell-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0504840",
          "name": "Bella Vista",
          "country_code": "US",
          "slug": "bella-vista",
          "canonical_path": "/cities/us/bella-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259949",
          "name": "Bellair-Meadowbrook Terrace",
          "country_code": "US",
          "slug": "bellair-meadowbrook-terrace",
          "canonical_path": "/cities/us/bellair-meadowbrook-terrace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4807300",
          "name": "Bellaire",
          "country_code": "US",
          "slug": "bellaire",
          "canonical_path": "/cities/us/bellaire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3905102",
          "name": "Bellbrook",
          "country_code": "US",
          "slug": "bellbrook",
          "canonical_path": "/cities/us/bellbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4316329",
          "name": "Belle Chasse",
          "country_code": "US",
          "slug": "belle-chasse",
          "canonical_path": "/cities/us/belle-chasse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4604380",
          "name": "Belle Fourche",
          "country_code": "US",
          "slug": "belle-fourche",
          "canonical_path": "/cities/us/belle-fourche/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1205200",
          "name": "Belle Glade",
          "country_code": "US",
          "slug": "belle-glade",
          "canonical_path": "/cities/us/belle-glade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4746457",
          "name": "Belle Haven",
          "country_code": "US",
          "slug": "belle-haven",
          "canonical_path": "/cities/us/belle-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1205300",
          "name": "Belle Isle",
          "country_code": "US",
          "slug": "belle-isle",
          "canonical_path": "/cities/us/belle-isle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2704834",
          "name": "Belle Plaine",
          "country_code": "US",
          "slug": "belle-plaine",
          "canonical_path": "/cities/us/belle-plaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3905130",
          "name": "Bellefontaine",
          "country_code": "US",
          "slug": "bellefontaine",
          "canonical_path": "/cities/us/bellefontaine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2904222",
          "name": "Bellefontaine Neighbors",
          "country_code": "US",
          "slug": "bellefontaine-neighbors",
          "canonical_path": "/cities/us/bellefontaine-neighbors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5179799",
          "name": "Bellefonte",
          "country_code": "US",
          "slug": "bellefonte",
          "canonical_path": "/cities/us/bellefonte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4205256",
          "name": "Bellefonte borough",
          "country_code": "US",
          "slug": "bellefonte-borough",
          "canonical_path": "/cities/us/bellefonte-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1205375",
          "name": "Belleview",
          "country_code": "US",
          "slug": "belleview",
          "canonical_path": "/cities/us/belleview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1704845",
          "name": "Belleville",
          "country_code": "US",
          "slug": "belleville",
          "canonical_path": "/cities/us/belleville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4137715",
          "name": "Bellevue",
          "country_code": "US",
          "slug": "bellevue",
          "canonical_path": "/cities/us/bellevue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5179811",
          "name": "Bellevue",
          "country_code": "US",
          "slug": "bellevue-pa-003",
          "canonical_path": "/cities/us/bellevue-pa-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2105446",
          "name": "Bellevue",
          "country_code": "US",
          "slug": "bellevue-ky",
          "canonical_path": "/cities/us/bellevue-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3103950",
          "name": "Bellevue",
          "country_code": "US",
          "slug": "bellevue-ne",
          "canonical_path": "/cities/us/bellevue-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3905228",
          "name": "Bellevue",
          "country_code": "US",
          "slug": "bellevue-oh",
          "canonical_path": "/cities/us/bellevue-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5305210",
          "name": "Bellevue",
          "country_code": "US",
          "slug": "bellevue-wa",
          "canonical_path": "/cities/us/bellevue-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5506350",
          "name": "Bellevue",
          "country_code": "US",
          "slug": "bellevue-wi",
          "canonical_path": "/cities/us/bellevue-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4205312",
          "name": "Bellevue borough",
          "country_code": "US",
          "slug": "bellevue-borough",
          "canonical_path": "/cities/us/bellevue-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0604982",
          "name": "Bellflower",
          "country_code": "US",
          "slug": "bellflower",
          "canonical_path": "/cities/us/bellflower/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5305280",
          "name": "Bellingham",
          "country_code": "US",
          "slug": "bellingham",
          "canonical_path": "/cities/us/bellingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4500750",
          "name": "Bellmawr",
          "country_code": "US",
          "slug": "bellmawr",
          "canonical_path": "/cities/us/bellmawr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3404750",
          "name": "Bellmawr borough",
          "country_code": "US",
          "slug": "bellmawr-borough",
          "canonical_path": "/cities/us/bellmawr-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4807408",
          "name": "Bellmead",
          "country_code": "US",
          "slug": "bellmead",
          "canonical_path": "/cities/us/bellmead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5108707",
          "name": "Bellmore",
          "country_code": "US",
          "slug": "bellmore",
          "canonical_path": "/cities/us/bellmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4147290",
          "name": "Bellview",
          "country_code": "US",
          "slug": "bellview",
          "canonical_path": "/cities/us/bellview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1704975",
          "name": "Bellwood",
          "country_code": "US",
          "slug": "bellwood",
          "canonical_path": "/cities/us/bellwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095561",
          "name": "Belmar",
          "country_code": "US",
          "slug": "belmar",
          "canonical_path": "/cities/us/belmar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3404930",
          "name": "Belmar borough",
          "country_code": "US",
          "slug": "belmar-borough",
          "canonical_path": "/cities/us/belmar-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4746535",
          "name": "Belmont",
          "country_code": "US",
          "slug": "belmont",
          "canonical_path": "/cities/us/belmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4930282",
          "name": "Belmont",
          "country_code": "US",
          "slug": "belmont-ma-017",
          "canonical_path": "/cities/us/belmont-ma-017/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0605108",
          "name": "Belmont",
          "country_code": "US",
          "slug": "belmont-ca",
          "canonical_path": "/cities/us/belmont-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3704840",
          "name": "Belmont",
          "country_code": "US",
          "slug": "belmont-nc",
          "canonical_path": "/cities/us/belmont-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5506500",
          "name": "Beloit",
          "country_code": "US",
          "slug": "beloit",
          "canonical_path": "/cities/us/beloit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3905424",
          "name": "Belpre",
          "country_code": "US",
          "slug": "belpre",
          "canonical_path": "/cities/us/belpre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2904384",
          "name": "Belton",
          "country_code": "US",
          "slug": "belton-mo",
          "canonical_path": "/cities/us/belton-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4807492",
          "name": "Belton",
          "country_code": "US",
          "slug": "belton-tx",
          "canonical_path": "/cities/us/belton-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4348353",
          "name": "Beltsville",
          "country_code": "US",
          "slug": "beltsville",
          "canonical_path": "/cities/us/beltsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4570590",
          "name": "Belvedere",
          "country_code": "US",
          "slug": "belvedere",
          "canonical_path": "/cities/us/belvedere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4181936",
          "name": "Belvedere Park",
          "country_code": "US",
          "slug": "belvedere-park",
          "canonical_path": "/cities/us/belvedere-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1705092",
          "name": "Belvidere",
          "country_code": "US",
          "slug": "belvidere",
          "canonical_path": "/cities/us/belvidere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2705068",
          "name": "Bemidji",
          "country_code": "US",
          "slug": "bemidji",
          "canonical_path": "/cities/us/bemidji/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4930308",
          "name": "Bemis",
          "country_code": "US",
          "slug": "bemis",
          "canonical_path": "/cities/us/bemis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5327522",
          "name": "Ben Lomond",
          "country_code": "US",
          "slug": "ben-lomond",
          "canonical_path": "/cities/us/ben-lomond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4807552",
          "name": "Benbrook",
          "country_code": "US",
          "slug": "benbrook",
          "canonical_path": "/cities/us/benbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4105800",
          "name": "Bend",
          "country_code": "US",
          "slug": "bend",
          "canonical_path": "/cities/us/bend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0605290",
          "name": "Benicia",
          "country_code": "US",
          "slug": "benicia",
          "canonical_path": "/cities/us/benicia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4505680",
          "name": "Bennettsville",
          "country_code": "US",
          "slug": "bennettsville",
          "canonical_path": "/cities/us/bennettsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4137724",
          "name": "Benning",
          "country_code": "US",
          "slug": "benning",
          "canonical_path": "/cities/us/benning/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526884",
          "name": "Benning Road",
          "country_code": "US",
          "slug": "benning-road",
          "canonical_path": "/cities/us/benning-road/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5233742",
          "name": "Bennington",
          "country_code": "US",
          "slug": "bennington",
          "canonical_path": "/cities/us/bennington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4348418",
          "name": "Bennsville",
          "country_code": "US",
          "slug": "bennsville",
          "canonical_path": "/cities/us/bennsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1705248",
          "name": "Bensenville",
          "country_code": "US",
          "slug": "bensenville",
          "canonical_path": "/cities/us/bensenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4746664",
          "name": "Bensley",
          "country_code": "US",
          "slug": "bensley",
          "canonical_path": "/cities/us/bensley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0405770",
          "name": "Benson",
          "country_code": "US",
          "slug": "benson",
          "canonical_path": "/cities/us/benson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0505290",
          "name": "Benton",
          "country_code": "US",
          "slug": "benton-ar",
          "canonical_path": "/cities/us/benton-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1705300",
          "name": "Benton",
          "country_code": "US",
          "slug": "benton-il",
          "canonical_path": "/cities/us/benton-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2607520",
          "name": "Benton Harbor",
          "country_code": "US",
          "slug": "benton-harbor",
          "canonical_path": "/cities/us/benton-harbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0505320",
          "name": "Bentonville",
          "country_code": "US",
          "slug": "bentonville",
          "canonical_path": "/cities/us/bentonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4570664",
          "name": "Berea",
          "country_code": "US",
          "slug": "berea",
          "canonical_path": "/cities/us/berea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2105842",
          "name": "Berea",
          "country_code": "US",
          "slug": "berea-ky",
          "canonical_path": "/cities/us/berea-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3905690",
          "name": "Berea",
          "country_code": "US",
          "slug": "berea-oh",
          "canonical_path": "/cities/us/berea-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095611",
          "name": "Bergenfield",
          "country_code": "US",
          "slug": "bergenfield",
          "canonical_path": "/cities/us/bergenfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3405170",
          "name": "Bergenfield borough",
          "country_code": "US",
          "slug": "bergenfield-borough",
          "canonical_path": "/cities/us/bergenfield-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0606000",
          "name": "Berkeley",
          "country_code": "US",
          "slug": "berkeley-ca",
          "canonical_path": "/cities/us/berkeley-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1705404",
          "name": "Berkeley",
          "country_code": "US",
          "slug": "berkeley-il",
          "canonical_path": "/cities/us/berkeley-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2904906",
          "name": "Berkeley",
          "country_code": "US",
          "slug": "berkeley-mo",
          "canonical_path": "/cities/us/berkeley-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2607660",
          "name": "Berkley",
          "country_code": "US",
          "slug": "berkley",
          "canonical_path": "/cities/us/berkley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4500771",
          "name": "Berlin",
          "country_code": "US",
          "slug": "berlin",
          "canonical_path": "/cities/us/berlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2406800",
          "name": "Berlin",
          "country_code": "US",
          "slug": "berlin-md",
          "canonical_path": "/cities/us/berlin-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3305140",
          "name": "Berlin",
          "country_code": "US",
          "slug": "berlin-nh",
          "canonical_path": "/cities/us/berlin-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5506925",
          "name": "Berlin",
          "country_code": "US",
          "slug": "berlin-wi",
          "canonical_path": "/cities/us/berlin-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3405440",
          "name": "Berlin borough",
          "country_code": "US",
          "slug": "berlin-borough",
          "canonical_path": "/cities/us/berlin-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5327717",
          "name": "Bermuda Dunes",
          "country_code": "US",
          "slug": "bermuda-dunes",
          "canonical_path": "/cities/us/bermuda-dunes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3506970",
          "name": "Bernalillo",
          "country_code": "US",
          "slug": "bernalillo",
          "canonical_path": "/cities/us/bernalillo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095626",
          "name": "Bernardsville",
          "country_code": "US",
          "slug": "bernardsville",
          "canonical_path": "/cities/us/bernardsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3405590",
          "name": "Bernardsville borough",
          "country_code": "US",
          "slug": "bernardsville-borough",
          "canonical_path": "/cities/us/bernardsville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0505560",
          "name": "Berryville",
          "country_code": "US",
          "slug": "berryville",
          "canonical_path": "/cities/us/berryville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0806255",
          "name": "Berthoud",
          "country_code": "US",
          "slug": "berthoud",
          "canonical_path": "/cities/us/berthoud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5180119",
          "name": "Berwick",
          "country_code": "US",
          "slug": "berwick",
          "canonical_path": "/cities/us/berwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4205888",
          "name": "Berwick borough",
          "country_code": "US",
          "slug": "berwick-borough",
          "canonical_path": "/cities/us/berwick-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1705573",
          "name": "Berwyn",
          "country_code": "US",
          "slug": "berwyn",
          "canonical_path": "/cities/us/berwyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0105980",
          "name": "Bessemer",
          "country_code": "US",
          "slug": "bessemer",
          "canonical_path": "/cities/us/bessemer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3705220",
          "name": "Bessemer City",
          "country_code": "US",
          "slug": "bessemer-city",
          "canonical_path": "/cities/us/bessemer-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1705599",
          "name": "Bethalto",
          "country_code": "US",
          "slug": "bethalto",
          "canonical_path": "/cities/us/bethalto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4005700",
          "name": "Bethany",
          "country_code": "US",
          "slug": "bethany",
          "canonical_path": "/cities/us/bethany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0206520",
          "name": "Bethel",
          "country_code": "US",
          "slug": "bethel",
          "canonical_path": "/cities/us/bethel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5180199",
          "name": "Bethel Park",
          "country_code": "US",
          "slug": "bethel-park",
          "canonical_path": "/cities/us/bethel-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4206064",
          "name": "Bethel Park municipality",
          "country_code": "US",
          "slug": "bethel-park-municipality",
          "canonical_path": "/cities/us/bethel-park-municipality/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4348599",
          "name": "Bethesda",
          "country_code": "US",
          "slug": "bethesda",
          "canonical_path": "/cities/us/bethesda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4206088",
          "name": "Bethlehem",
          "country_code": "US",
          "slug": "bethlehem",
          "canonical_path": "/cities/us/bethlehem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5108955",
          "name": "Bethpage",
          "country_code": "US",
          "slug": "bethpage",
          "canonical_path": "/cities/us/bethpage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1906355",
          "name": "Bettendorf",
          "country_code": "US",
          "slug": "bettendorf",
          "canonical_path": "/cities/us/bettendorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2505595",
          "name": "Beverly",
          "country_code": "US",
          "slug": "beverly",
          "canonical_path": "/cities/us/beverly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4147581",
          "name": "Beverly Hills",
          "country_code": "US",
          "slug": "beverly-hills",
          "canonical_path": "/cities/us/beverly-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0606308",
          "name": "Beverly Hills",
          "country_code": "US",
          "slug": "beverly-hills-ca",
          "canonical_path": "/cities/us/beverly-hills-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2608160",
          "name": "Beverly Hills",
          "country_code": "US",
          "slug": "beverly-hills-mi",
          "canonical_path": "/cities/us/beverly-hills-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3906278",
          "name": "Bexley",
          "country_code": "US",
          "slug": "bexley",
          "canonical_path": "/cities/us/bexley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2304860",
          "name": "Biddeford",
          "country_code": "US",
          "slug": "biddeford",
          "canonical_path": "/cities/us/biddeford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5328152",
          "name": "Big Bear City",
          "country_code": "US",
          "slug": "big-bear-city",
          "canonical_path": "/cities/us/big-bear-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0606434",
          "name": "Big Bear Lake",
          "country_code": "US",
          "slug": "big-bear-lake",
          "canonical_path": "/cities/us/big-bear-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5109053",
          "name": "Big Flats",
          "country_code": "US",
          "slug": "big-flats",
          "canonical_path": "/cities/us/big-flats/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258009",
          "name": "Big Flats Airport",
          "country_code": "US",
          "slug": "big-flats-airport",
          "canonical_path": "/cities/us/big-flats-airport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2705752",
          "name": "Big Lake",
          "country_code": "US",
          "slug": "big-lake",
          "canonical_path": "/cities/us/big-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5553533",
          "name": "Big Park",
          "country_code": "US",
          "slug": "big-park",
          "canonical_path": "/cities/us/big-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2608300",
          "name": "Big Rapids",
          "country_code": "US",
          "slug": "big-rapids",
          "canonical_path": "/cities/us/big-rapids/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4808236",
          "name": "Big Spring",
          "country_code": "US",
          "slug": "big-spring",
          "canonical_path": "/cities/us/big-spring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5107480",
          "name": "Big Stone Gap",
          "country_code": "US",
          "slug": "big-stone-gap",
          "canonical_path": "/cities/us/big-stone-gap/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4930577",
          "name": "Billerica",
          "country_code": "US",
          "slug": "billerica",
          "canonical_path": "/cities/us/billerica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3006550",
          "name": "Billings",
          "country_code": "US",
          "slug": "billings",
          "canonical_path": "/cities/us/billings/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2806220",
          "name": "Biloxi",
          "country_code": "US",
          "slug": "biloxi",
          "canonical_path": "/cities/us/biloxi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3606607",
          "name": "Binghamton",
          "country_code": "US",
          "slug": "binghamton",
          "canonical_path": "/cities/us/binghamton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5787316",
          "name": "Birch Bay",
          "country_code": "US",
          "slug": "birch-bay",
          "canonical_path": "/cities/us/birch-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5180620",
          "name": "Birdsboro",
          "country_code": "US",
          "slug": "birdsboro",
          "canonical_path": "/cities/us/birdsboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4206504",
          "name": "Birdsboro borough",
          "country_code": "US",
          "slug": "birdsboro-borough",
          "canonical_path": "/cities/us/birdsboro-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0107000",
          "name": "Birmingham",
          "country_code": "US",
          "slug": "birmingham-al",
          "canonical_path": "/cities/us/birmingham-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2608640",
          "name": "Birmingham",
          "country_code": "US",
          "slug": "birmingham-mi",
          "canonical_path": "/cities/us/birmingham-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5284905",
          "name": "Bisbee",
          "country_code": "US",
          "slug": "bisbee",
          "canonical_path": "/cities/us/bisbee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3807200",
          "name": "Bismarck",
          "country_code": "US",
          "slug": "bismarck",
          "canonical_path": "/cities/us/bismarck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4148012",
          "name": "Bithlo",
          "country_code": "US",
          "slug": "bithlo",
          "canonical_path": "/cities/us/bithlo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4006400",
          "name": "Bixby",
          "country_code": "US",
          "slug": "bixby",
          "canonical_path": "/cities/us/bixby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5306330",
          "name": "Black Diamond",
          "country_code": "US",
          "slug": "black-diamond",
          "canonical_path": "/cities/us/black-diamond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5414069",
          "name": "Black Forest",
          "country_code": "US",
          "slug": "black-forest",
          "canonical_path": "/cities/us/black-forest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2906004",
          "name": "Black Jack",
          "country_code": "US",
          "slug": "black-jack",
          "canonical_path": "/cities/us/black-jack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3706140",
          "name": "Black Mountain",
          "country_code": "US",
          "slug": "black-mountain",
          "canonical_path": "/cities/us/black-mountain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1607840",
          "name": "Blackfoot",
          "country_code": "US",
          "slug": "blackfoot",
          "canonical_path": "/cities/us/blackfoot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5329204",
          "name": "Blackhawk",
          "country_code": "US",
          "slug": "blackhawk",
          "canonical_path": "/cities/us/blackhawk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4506666",
          "name": "Blacklick Estates",
          "country_code": "US",
          "slug": "blacklick-estates",
          "canonical_path": "/cities/us/blacklick-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5107784",
          "name": "Blacksburg",
          "country_code": "US",
          "slug": "blacksburg",
          "canonical_path": "/cities/us/blacksburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4930738",
          "name": "Blackstone",
          "country_code": "US",
          "slug": "blackstone",
          "canonical_path": "/cities/us/blackstone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4006600",
          "name": "Blackwell",
          "country_code": "US",
          "slug": "blackwell",
          "canonical_path": "/cities/us/blackwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2407850",
          "name": "Bladensburg",
          "country_code": "US",
          "slug": "bladensburg",
          "canonical_path": "/cities/us/bladensburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2706382",
          "name": "Blaine",
          "country_code": "US",
          "slug": "blaine-mn",
          "canonical_path": "/cities/us/blaine-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5306505",
          "name": "Blaine",
          "country_code": "US",
          "slug": "blaine-wa",
          "canonical_path": "/cities/us/blaine-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3105350",
          "name": "Blair",
          "country_code": "US",
          "slug": "blair",
          "canonical_path": "/cities/us/blair/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1308536",
          "name": "Blakely",
          "country_code": "US",
          "slug": "blakely",
          "canonical_path": "/cities/us/blakely/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4206928",
          "name": "Blakely borough",
          "country_code": "US",
          "slug": "blakely-borough",
          "canonical_path": "/cities/us/blakely-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4006700",
          "name": "Blanchard",
          "country_code": "US",
          "slug": "blanchard",
          "canonical_path": "/cities/us/blanchard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5180859",
          "name": "Blandon",
          "country_code": "US",
          "slug": "blandon",
          "canonical_path": "/cities/us/blandon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5109479",
          "name": "Blauvelt",
          "country_code": "US",
          "slug": "blauvelt",
          "canonical_path": "/cities/us/blauvelt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4930804",
          "name": "Bliss Corner",
          "country_code": "US",
          "slug": "bliss-corner",
          "canonical_path": "/cities/us/bliss-corner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095779",
          "name": "Bloomfield",
          "country_code": "US",
          "slug": "bloomfield",
          "canonical_path": "/cities/us/bloomfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5282526",
          "name": "Bloomfield",
          "country_code": "US",
          "slug": "bloomfield-ct-110",
          "canonical_path": "/cities/us/bloomfield-ct-110/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3507880",
          "name": "Bloomfield",
          "country_code": "US",
          "slug": "bloomfield-nm",
          "canonical_path": "/cities/us/bloomfield-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5508265",
          "name": "Bloomfield",
          "country_code": "US",
          "slug": "bloomfield-wi",
          "canonical_path": "/cities/us/bloomfield-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1706587",
          "name": "Bloomingdale",
          "country_code": "US",
          "slug": "bloomingdale",
          "canonical_path": "/cities/us/bloomingdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3406340",
          "name": "Bloomingdale borough",
          "country_code": "US",
          "slug": "bloomingdale-borough",
          "canonical_path": "/cities/us/bloomingdale-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5329408",
          "name": "Bloomington",
          "country_code": "US",
          "slug": "bloomington",
          "canonical_path": "/cities/us/bloomington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1706613",
          "name": "Bloomington",
          "country_code": "US",
          "slug": "bloomington-il",
          "canonical_path": "/cities/us/bloomington-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1805860",
          "name": "Bloomington",
          "country_code": "US",
          "slug": "bloomington-in",
          "canonical_path": "/cities/us/bloomington-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2706616",
          "name": "Bloomington",
          "country_code": "US",
          "slug": "bloomington-mn",
          "canonical_path": "/cities/us/bloomington-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4207128",
          "name": "Bloomsburg",
          "country_code": "US",
          "slug": "bloomsburg",
          "canonical_path": "/cities/us/bloomsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3907300",
          "name": "Blue Ash",
          "country_code": "US",
          "slug": "blue-ash",
          "canonical_path": "/cities/us/blue-ash/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5180961",
          "name": "Blue Bell",
          "country_code": "US",
          "slug": "blue-bell",
          "canonical_path": "/cities/us/blue-bell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1706704",
          "name": "Blue Island",
          "country_code": "US",
          "slug": "blue-island",
          "canonical_path": "/cities/us/blue-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2906652",
          "name": "Blue Springs",
          "country_code": "US",
          "slug": "blue-springs",
          "canonical_path": "/cities/us/blue-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5408524",
          "name": "Bluefield",
          "country_code": "US",
          "slug": "bluefield",
          "canonical_path": "/cities/us/bluefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4906810",
          "name": "Bluffdale",
          "country_code": "US",
          "slug": "bluffdale",
          "canonical_path": "/cities/us/bluffdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1806220",
          "name": "Bluffton",
          "country_code": "US",
          "slug": "bluffton-in",
          "canonical_path": "/cities/us/bluffton-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4507210",
          "name": "Bluffton",
          "country_code": "US",
          "slug": "bluffton-sc",
          "canonical_path": "/cities/us/bluffton-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0607218",
          "name": "Blythe",
          "country_code": "US",
          "slug": "blythe",
          "canonical_path": "/cities/us/blythe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0507330",
          "name": "Blytheville",
          "country_code": "US",
          "slug": "blytheville",
          "canonical_path": "/cities/us/blytheville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4507255",
          "name": "Blythewood",
          "country_code": "US",
          "slug": "blythewood",
          "canonical_path": "/cities/us/blythewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5147784",
          "name": "Boardman",
          "country_code": "US",
          "slug": "boardman",
          "canonical_path": "/cities/us/boardman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0107912",
          "name": "Boaz",
          "country_code": "US",
          "slug": "boaz",
          "canonical_path": "/cities/us/boaz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1207300",
          "name": "Boca Raton",
          "country_code": "US",
          "slug": "boca-raton",
          "canonical_path": "/cities/us/boca-raton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4809160",
          "name": "Boerne",
          "country_code": "US",
          "slug": "boerne",
          "canonical_path": "/cities/us/boerne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2208150",
          "name": "Bogalusa",
          "country_code": "US",
          "slug": "bogalusa",
          "canonical_path": "/cities/us/bogalusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095808",
          "name": "Bogota",
          "country_code": "US",
          "slug": "bogota",
          "canonical_path": "/cities/us/bogota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3406490",
          "name": "Bogota borough",
          "country_code": "US",
          "slug": "bogota-borough",
          "canonical_path": "/cities/us/bogota-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5109694",
          "name": "Bohemia",
          "country_code": "US",
          "slug": "bohemia",
          "canonical_path": "/cities/us/bohemia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3706760",
          "name": "Boiling Spring Lakes",
          "country_code": "US",
          "slug": "boiling-spring-lakes",
          "canonical_path": "/cities/us/boiling-spring-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4571805",
          "name": "Boiling Springs",
          "country_code": "US",
          "slug": "boiling-springs-sc-083",
          "canonical_path": "/cities/us/boiling-springs-sc-083/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5586437",
          "name": "Boise",
          "country_code": "US",
          "slug": "boise",
          "canonical_path": "/cities/us/boise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1608830",
          "name": "Boise City",
          "country_code": "US",
          "slug": "boise-city",
          "canonical_path": "/cities/us/boise-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1707133",
          "name": "Bolingbrook",
          "country_code": "US",
          "slug": "bolingbrook",
          "canonical_path": "/cities/us/bolingbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2906976",
          "name": "Bolivar",
          "country_code": "US",
          "slug": "bolivar-mo",
          "canonical_path": "/cities/us/bolivar-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4707180",
          "name": "Bolivar",
          "country_code": "US",
          "slug": "bolivar-tn",
          "canonical_path": "/cities/us/bolivar-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4748305",
          "name": "Bon Air",
          "country_code": "US",
          "slug": "bon-air",
          "canonical_path": "/cities/us/bon-air/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260929",
          "name": "Bonadelle Ranchos-Madera Ranchos",
          "country_code": "US",
          "slug": "bonadelle-ranchos-madera-ranchos",
          "canonical_path": "/cities/us/bonadelle-ranchos-madera-ranchos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1907390",
          "name": "Bondurant",
          "country_code": "US",
          "slug": "bondurant",
          "canonical_path": "/cities/us/bondurant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4809328",
          "name": "Bonham",
          "country_code": "US",
          "slug": "bonham",
          "canonical_path": "/cities/us/bonham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5329954",
          "name": "Bonita",
          "country_code": "US",
          "slug": "bonita",
          "canonical_path": "/cities/us/bonita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1207525",
          "name": "Bonita Springs",
          "country_code": "US",
          "slug": "bonita-springs",
          "canonical_path": "/cities/us/bonita-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2907102",
          "name": "Bonne Terre",
          "country_code": "US",
          "slug": "bonne-terre",
          "canonical_path": "/cities/us/bonne-terre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2007975",
          "name": "Bonner Springs",
          "country_code": "US",
          "slug": "bonner-springs",
          "canonical_path": "/cities/us/bonner-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5307170",
          "name": "Bonney Lake",
          "country_code": "US",
          "slug": "bonney-lake",
          "canonical_path": "/cities/us/bonney-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1907480",
          "name": "Boone",
          "country_code": "US",
          "slug": "boone-ia",
          "canonical_path": "/cities/us/boone-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3707080",
          "name": "Boone",
          "country_code": "US",
          "slug": "boone-nc",
          "canonical_path": "/cities/us/boone-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2807780",
          "name": "Booneville",
          "country_code": "US",
          "slug": "booneville",
          "canonical_path": "/cities/us/booneville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3406610",
          "name": "Boonton",
          "country_code": "US",
          "slug": "boonton",
          "canonical_path": "/cities/us/boonton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1806616",
          "name": "Boonville",
          "country_code": "US",
          "slug": "boonville-in",
          "canonical_path": "/cities/us/boonville-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2907318",
          "name": "Boonville",
          "country_code": "US",
          "slug": "boonville-mo",
          "canonical_path": "/cities/us/boonville-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4809556",
          "name": "Borger",
          "country_code": "US",
          "slug": "borger",
          "canonical_path": "/cities/us/borger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2208920",
          "name": "Bossier City",
          "country_code": "US",
          "slug": "bossier-city",
          "canonical_path": "/cities/us/bossier-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2507000",
          "name": "Boston",
          "country_code": "US",
          "slug": "boston",
          "canonical_path": "/cities/us/boston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5330167",
          "name": "Bostonia",
          "country_code": "US",
          "slug": "bostonia",
          "canonical_path": "/cities/us/bostonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5307380",
          "name": "Bothell",
          "country_code": "US",
          "slug": "bothell",
          "canonical_path": "/cities/us/bothell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315408",
          "name": "Bothell East",
          "country_code": "US",
          "slug": "bothell-east",
          "canonical_path": "/cities/us/bothell-east/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315409",
          "name": "Bothell West",
          "country_code": "US",
          "slug": "bothell-west",
          "canonical_path": "/cities/us/bothell-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0807850",
          "name": "Boulder",
          "country_code": "US",
          "slug": "boulder",
          "canonical_path": "/cities/us/boulder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3206500",
          "name": "Boulder City",
          "country_code": "US",
          "slug": "boulder-city",
          "canonical_path": "/cities/us/boulder-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4885336",
          "name": "Boulder Hill",
          "country_code": "US",
          "slug": "boulder-hill",
          "canonical_path": "/cities/us/boulder-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5787893",
          "name": "Boulevard Park",
          "country_code": "US",
          "slug": "boulevard-park",
          "canonical_path": "/cities/us/boulevard-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095860",
          "name": "Bound Brook",
          "country_code": "US",
          "slug": "bound-brook",
          "canonical_path": "/cities/us/bound-brook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3406790",
          "name": "Bound Brook borough",
          "country_code": "US",
          "slug": "bound-brook-borough",
          "canonical_path": "/cities/us/bound-brook-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4907690",
          "name": "Bountiful",
          "country_code": "US",
          "slug": "bountiful",
          "canonical_path": "/cities/us/bountiful/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1707471",
          "name": "Bourbonnais",
          "country_code": "US",
          "slug": "bourbonnais",
          "canonical_path": "/cities/us/bourbonnais/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2408775",
          "name": "Bowie",
          "country_code": "US",
          "slug": "bowie-md",
          "canonical_path": "/cities/us/bowie-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4809640",
          "name": "Bowie",
          "country_code": "US",
          "slug": "bowie-tx",
          "canonical_path": "/cities/us/bowie-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4349175",
          "name": "Bowleys Quarters",
          "country_code": "US",
          "slug": "bowleys-quarters",
          "canonical_path": "/cities/us/bowleys-quarters/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4378070",
          "name": "Bowling Green",
          "country_code": "US",
          "slug": "bowling-green",
          "canonical_path": "/cities/us/bowling-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2108902",
          "name": "Bowling Green",
          "country_code": "US",
          "slug": "bowling-green-ky",
          "canonical_path": "/cities/us/bowling-green-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3907972",
          "name": "Bowling Green",
          "country_code": "US",
          "slug": "bowling-green-oh",
          "canonical_path": "/cities/us/bowling-green-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4606620",
          "name": "Box Elder",
          "country_code": "US",
          "slug": "box-elder",
          "canonical_path": "/cities/us/box-elder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5330427",
          "name": "Boyes Hot Springs",
          "country_code": "US",
          "slug": "boyes-hot-springs",
          "canonical_path": "/cities/us/boyes-hot-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1207875",
          "name": "Boynton Beach",
          "country_code": "US",
          "slug": "boynton-beach",
          "canonical_path": "/cities/us/boynton-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3008950",
          "name": "Bozeman",
          "country_code": "US",
          "slug": "bozeman",
          "canonical_path": "/cities/us/bozeman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1207950",
          "name": "Bradenton",
          "country_code": "US",
          "slug": "bradenton",
          "canonical_path": "/cities/us/bradenton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4208040",
          "name": "Bradford",
          "country_code": "US",
          "slug": "bradford",
          "canonical_path": "/cities/us/bradford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1707744",
          "name": "Bradley",
          "country_code": "US",
          "slug": "bradley",
          "canonical_path": "/cities/us/bradley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5095887",
          "name": "Bradley Gardens",
          "country_code": "US",
          "slug": "bradley-gardens",
          "canonical_path": "/cities/us/bradley-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4676032",
          "name": "Brady",
          "country_code": "US",
          "slug": "brady",
          "canonical_path": "/cities/us/brady/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1707770",
          "name": "Braidwood",
          "country_code": "US",
          "slug": "braidwood",
          "canonical_path": "/cities/us/braidwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2707300",
          "name": "Brainerd",
          "country_code": "US",
          "slug": "brainerd",
          "canonical_path": "/cities/us/brainerd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257540",
          "name": "Braintree",
          "country_code": "US",
          "slug": "braintree",
          "canonical_path": "/cities/us/braintree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2507740",
          "name": "Braintree Town",
          "country_code": "US",
          "slug": "braintree-town",
          "canonical_path": "/cities/us/braintree-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4748703",
          "name": "Brambleton",
          "country_code": "US",
          "slug": "brambleton",
          "canonical_path": "/cities/us/brambleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4748726",
          "name": "Brandermill",
          "country_code": "US",
          "slug": "brandermill",
          "canonical_path": "/cities/us/brandermill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4148757",
          "name": "Brandon",
          "country_code": "US",
          "slug": "brandon",
          "canonical_path": "/cities/us/brandon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2808300",
          "name": "Brandon",
          "country_code": "US",
          "slug": "brandon-ms",
          "canonical_path": "/cities/us/brandon-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4606840",
          "name": "Brandon",
          "country_code": "US",
          "slug": "brandon-sd",
          "canonical_path": "/cities/us/brandon-sd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4349283",
          "name": "Brandywine",
          "country_code": "US",
          "slug": "brandywine",
          "canonical_path": "/cities/us/brandywine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5283054",
          "name": "Branford",
          "country_code": "US",
          "slug": "branford",
          "canonical_path": "/cities/us/branford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257798",
          "name": "Branford Center",
          "country_code": "US",
          "slug": "branford-center",
          "canonical_path": "/cities/us/branford-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2907966",
          "name": "Branson",
          "country_code": "US",
          "slug": "branson",
          "canonical_path": "/cities/us/branson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1310076",
          "name": "Braselton",
          "country_code": "US",
          "slug": "braselton",
          "canonical_path": "/cities/us/braselton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5234141",
          "name": "Brattleboro",
          "country_code": "US",
          "slug": "brattleboro",
          "canonical_path": "/cities/us/brattleboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0608058",
          "name": "Brawley",
          "country_code": "US",
          "slug": "brawley",
          "canonical_path": "/cities/us/brawley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1807174",
          "name": "Brazil",
          "country_code": "US",
          "slug": "brazil",
          "canonical_path": "/cities/us/brazil/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0608100",
          "name": "Brea",
          "country_code": "US",
          "slug": "brea",
          "canonical_path": "/cities/us/brea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2209340",
          "name": "Breaux Bridge",
          "country_code": "US",
          "slug": "breaux-bridge",
          "canonical_path": "/cities/us/breaux-bridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0808400",
          "name": "Breckenridge",
          "country_code": "US",
          "slug": "breckenridge-co",
          "canonical_path": "/cities/us/breckenridge-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4810132",
          "name": "Breckenridge",
          "country_code": "US",
          "slug": "breckenridge-tx",
          "canonical_path": "/cities/us/breckenridge-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3908364",
          "name": "Brecksville",
          "country_code": "US",
          "slug": "brecksville",
          "canonical_path": "/cities/us/brecksville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1310132",
          "name": "Bremen",
          "country_code": "US",
          "slug": "bremen",
          "canonical_path": "/cities/us/bremen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5307695",
          "name": "Bremerton",
          "country_code": "US",
          "slug": "bremerton",
          "canonical_path": "/cities/us/bremerton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4810156",
          "name": "Brenham",
          "country_code": "US",
          "slug": "brenham",
          "canonical_path": "/cities/us/brenham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4148803",
          "name": "Brent",
          "country_code": "US",
          "slug": "brent",
          "canonical_path": "/cities/us/brent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5110077",
          "name": "Brentwood",
          "country_code": "US",
          "slug": "brentwood",
          "canonical_path": "/cities/us/brentwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5181553",
          "name": "Brentwood",
          "country_code": "US",
          "slug": "brentwood-pa-003",
          "canonical_path": "/cities/us/brentwood-pa-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0608142",
          "name": "Brentwood",
          "country_code": "US",
          "slug": "brentwood-ca",
          "canonical_path": "/cities/us/brentwood-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2908236",
          "name": "Brentwood",
          "country_code": "US",
          "slug": "brentwood-mo",
          "canonical_path": "/cities/us/brentwood-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4708280",
          "name": "Brentwood",
          "country_code": "US",
          "slug": "brentwood-tn",
          "canonical_path": "/cities/us/brentwood-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4208416",
          "name": "Brentwood borough",
          "country_code": "US",
          "slug": "brentwood-borough",
          "canonical_path": "/cities/us/brentwood-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4137801",
          "name": "Brentwood Village",
          "country_code": "US",
          "slug": "brentwood-village",
          "canonical_path": "/cities/us/brentwood-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3707720",
          "name": "Brevard",
          "country_code": "US",
          "slug": "brevard",
          "canonical_path": "/cities/us/brevard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2306925",
          "name": "Brewer",
          "country_code": "US",
          "slug": "brewer",
          "canonical_path": "/cities/us/brewer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0109208",
          "name": "Brewton",
          "country_code": "US",
          "slug": "brewton",
          "canonical_path": "/cities/us/brewton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4676266",
          "name": "Briar",
          "country_code": "US",
          "slug": "briar",
          "canonical_path": "/cities/us/briar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526829",
          "name": "Briar Chapel",
          "country_code": "US",
          "slug": "briar-chapel",
          "canonical_path": "/cities/us/briar-chapel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3608103",
          "name": "Briarcliff Manor",
          "country_code": "US",
          "slug": "briarcliff-manor",
          "canonical_path": "/cities/us/briarcliff-manor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4810252",
          "name": "Bridge City",
          "country_code": "US",
          "slug": "bridge-city",
          "canonical_path": "/cities/us/bridge-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4986963",
          "name": "Bridgeport",
          "country_code": "US",
          "slug": "bridgeport",
          "canonical_path": "/cities/us/bridgeport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0908000",
          "name": "Bridgeport",
          "country_code": "US",
          "slug": "bridgeport-ct",
          "canonical_path": "/cities/us/bridgeport-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4810264",
          "name": "Bridgeport",
          "country_code": "US",
          "slug": "bridgeport-tx",
          "canonical_path": "/cities/us/bridgeport-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5410180",
          "name": "Bridgeport",
          "country_code": "US",
          "slug": "bridgeport-wv",
          "canonical_path": "/cities/us/bridgeport-wv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4208568",
          "name": "Bridgeport borough",
          "country_code": "US",
          "slug": "bridgeport-borough",
          "canonical_path": "/cities/us/bridgeport-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2908398",
          "name": "Bridgeton",
          "country_code": "US",
          "slug": "bridgeton-mo",
          "canonical_path": "/cities/us/bridgeton-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3407600",
          "name": "Bridgeton",
          "country_code": "US",
          "slug": "bridgeton-nj",
          "canonical_path": "/cities/us/bridgeton-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4507067",
          "name": "Bridgetown",
          "country_code": "US",
          "slug": "bridgetown",
          "canonical_path": "/cities/us/bridgetown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1708225",
          "name": "Bridgeview",
          "country_code": "US",
          "slug": "bridgeview",
          "canonical_path": "/cities/us/bridgeview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5181636",
          "name": "Bridgeville",
          "country_code": "US",
          "slug": "bridgeville",
          "canonical_path": "/cities/us/bridgeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5109656",
          "name": "Bridgewater",
          "country_code": "US",
          "slug": "bridgewater",
          "canonical_path": "/cities/us/bridgewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2508130",
          "name": "Bridgewater Town",
          "country_code": "US",
          "slug": "bridgewater-town",
          "canonical_path": "/cities/us/bridgewater-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5307940",
          "name": "Brier",
          "country_code": "US",
          "slug": "brier",
          "canonical_path": "/cities/us/brier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3407810",
          "name": "Brigantine",
          "country_code": "US",
          "slug": "brigantine",
          "canonical_path": "/cities/us/brigantine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4908460",
          "name": "Brigham City",
          "country_code": "US",
          "slug": "brigham-city",
          "canonical_path": "/cities/us/brigham-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4254944",
          "name": "Bright",
          "country_code": "US",
          "slug": "bright",
          "canonical_path": "/cities/us/bright/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5110159",
          "name": "Brighton",
          "country_code": "US",
          "slug": "brighton-ny-055",
          "canonical_path": "/cities/us/brighton-ny-055/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0808675",
          "name": "Brighton",
          "country_code": "US",
          "slug": "brighton-co",
          "canonical_path": "/cities/us/brighton-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2610620",
          "name": "Brighton",
          "country_code": "US",
          "slug": "brighton-mi",
          "canonical_path": "/cities/us/brighton-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4137810",
          "name": "Brightwood",
          "country_code": "US",
          "slug": "brightwood",
          "canonical_path": "/cities/us/brightwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5181688",
          "name": "Bristol",
          "country_code": "US",
          "slug": "bristol",
          "canonical_path": "/cities/us/bristol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5221077",
          "name": "Bristol",
          "country_code": "US",
          "slug": "bristol-ri-001",
          "canonical_path": "/cities/us/bristol-ri-001/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0908420",
          "name": "Bristol",
          "country_code": "US",
          "slug": "bristol-ct",
          "canonical_path": "/cities/us/bristol-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4708540",
          "name": "Bristol",
          "country_code": "US",
          "slug": "bristol-tn",
          "canonical_path": "/cities/us/bristol-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5109816",
          "name": "Bristol",
          "country_code": "US",
          "slug": "bristol-va",
          "canonical_path": "/cities/us/bristol-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5509800",
          "name": "Bristol",
          "country_code": "US",
          "slug": "bristol-wi",
          "canonical_path": "/cities/us/bristol-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4208760",
          "name": "Bristol borough",
          "country_code": "US",
          "slug": "bristol-borough",
          "canonical_path": "/cities/us/bristol-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4749103",
          "name": "Broadlands",
          "country_code": "US",
          "slug": "broadlands",
          "canonical_path": "/cities/us/broadlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1708446",
          "name": "Broadview",
          "country_code": "US",
          "slug": "broadview",
          "canonical_path": "/cities/us/broadview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3909064",
          "name": "Broadview Heights",
          "country_code": "US",
          "slug": "broadview-heights",
          "canonical_path": "/cities/us/broadview-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4148944",
          "name": "Broadview Park",
          "country_code": "US",
          "slug": "broadview-park",
          "canonical_path": "/cities/us/broadview-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4349551",
          "name": "Brock Hall",
          "country_code": "US",
          "slug": "brock-hall",
          "canonical_path": "/cities/us/brock-hall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3608466",
          "name": "Brockport",
          "country_code": "US",
          "slug": "brockport",
          "canonical_path": "/cities/us/brockport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2509000",
          "name": "Brockton",
          "country_code": "US",
          "slug": "brockton",
          "canonical_path": "/cities/us/brockton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4009050",
          "name": "Broken Arrow",
          "country_code": "US",
          "slug": "broken-arrow",
          "canonical_path": "/cities/us/broken-arrow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3608532",
          "name": "Bronxville",
          "country_code": "US",
          "slug": "bronxville",
          "canonical_path": "/cities/us/bronxville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4051894",
          "name": "Brook Highland",
          "country_code": "US",
          "slug": "brook-highland",
          "canonical_path": "/cities/us/brook-highland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3909288",
          "name": "Brook Park",
          "country_code": "US",
          "slug": "brook-park",
          "canonical_path": "/cities/us/brook-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5096049",
          "name": "Brookdale",
          "country_code": "US",
          "slug": "brookdale",
          "canonical_path": "/cities/us/brookdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1708576",
          "name": "Brookfield",
          "country_code": "US",
          "slug": "brookfield-il",
          "canonical_path": "/cities/us/brookfield-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5510025",
          "name": "Brookfield",
          "country_code": "US",
          "slug": "brookfield-wi",
          "canonical_path": "/cities/us/brookfield-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4556793",
          "name": "Brookhaven",
          "country_code": "US",
          "slug": "brookhaven",
          "canonical_path": "/cities/us/brookhaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4800195",
          "name": "Brookhaven",
          "country_code": "US",
          "slug": "brookhaven-wv-061",
          "canonical_path": "/cities/us/brookhaven-wv-061/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1310944",
          "name": "Brookhaven",
          "country_code": "US",
          "slug": "brookhaven-ga",
          "canonical_path": "/cities/us/brookhaven-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2808820",
          "name": "Brookhaven",
          "country_code": "US",
          "slug": "brookhaven-ms",
          "canonical_path": "/cities/us/brookhaven-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4209080",
          "name": "Brookhaven borough",
          "country_code": "US",
          "slug": "brookhaven-borough",
          "canonical_path": "/cities/us/brookhaven-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4108650",
          "name": "Brookings",
          "country_code": "US",
          "slug": "brookings-or",
          "canonical_path": "/cities/us/brookings-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4607580",
          "name": "Brookings",
          "country_code": "US",
          "slug": "brookings-sd",
          "canonical_path": "/cities/us/brookings-sd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4137828",
          "name": "Brookland",
          "country_code": "US",
          "slug": "brookland",
          "canonical_path": "/cities/us/brookland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4931482",
          "name": "Brookline",
          "country_code": "US",
          "slug": "brookline",
          "canonical_path": "/cities/us/brookline/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3909246",
          "name": "Brooklyn",
          "country_code": "US",
          "slug": "brooklyn",
          "canonical_path": "/cities/us/brooklyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2707948",
          "name": "Brooklyn Center",
          "country_code": "US",
          "slug": "brooklyn-center",
          "canonical_path": "/cities/us/brooklyn-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2707966",
          "name": "Brooklyn Park",
          "country_code": "US",
          "slug": "brooklyn-park",
          "canonical_path": "/cities/us/brooklyn-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4810636",
          "name": "Brookshire",
          "country_code": "US",
          "slug": "brookshire",
          "canonical_path": "/cities/us/brookshire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4141674",
          "name": "Brookside",
          "country_code": "US",
          "slug": "brookside",
          "canonical_path": "/cities/us/brookside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1208800",
          "name": "Brooksville",
          "country_code": "US",
          "slug": "brooksville",
          "canonical_path": "/cities/us/brooksville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3909358",
          "name": "Brookville",
          "country_code": "US",
          "slug": "brookville",
          "canonical_path": "/cities/us/brookville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4556802",
          "name": "Broomall",
          "country_code": "US",
          "slug": "broomall",
          "canonical_path": "/cities/us/broomall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0809280",
          "name": "Broomfield",
          "country_code": "US",
          "slug": "broomfield",
          "canonical_path": "/cities/us/broomfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2210075",
          "name": "Broussard",
          "country_code": "US",
          "slug": "broussard",
          "canonical_path": "/cities/us/broussard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5510375",
          "name": "Brown Deer",
          "country_code": "US",
          "slug": "brown-deer",
          "canonical_path": "/cities/us/brown-deer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4810720",
          "name": "Brownfield",
          "country_code": "US",
          "slug": "brownfield",
          "canonical_path": "/cities/us/brownfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4500959",
          "name": "Browns Mills",
          "country_code": "US",
          "slug": "browns-mills",
          "canonical_path": "/cities/us/browns-mills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1808416",
          "name": "Brownsburg",
          "country_code": "US",
          "slug": "brownsburg",
          "canonical_path": "/cities/us/brownsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4318037",
          "name": "Brownsfield",
          "country_code": "US",
          "slug": "brownsfield",
          "canonical_path": "/cities/us/brownsfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4149077",
          "name": "Brownsville",
          "country_code": "US",
          "slug": "brownsville",
          "canonical_path": "/cities/us/brownsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4708920",
          "name": "Brownsville",
          "country_code": "US",
          "slug": "brownsville-tn",
          "canonical_path": "/cities/us/brownsville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4810768",
          "name": "Brownsville",
          "country_code": "US",
          "slug": "brownsville-tx",
          "canonical_path": "/cities/us/brownsville-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4810780",
          "name": "Brownwood",
          "country_code": "US",
          "slug": "brownwood",
          "canonical_path": "/cities/us/brownwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4959473",
          "name": "Brunswick",
          "country_code": "US",
          "slug": "brunswick",
          "canonical_path": "/cities/us/brunswick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1311560",
          "name": "Brunswick",
          "country_code": "US",
          "slug": "brunswick-ga",
          "canonical_path": "/cities/us/brunswick-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2410900",
          "name": "Brunswick",
          "country_code": "US",
          "slug": "brunswick-md",
          "canonical_path": "/cities/us/brunswick-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3909680",
          "name": "Brunswick",
          "country_code": "US",
          "slug": "brunswick-oh",
          "canonical_path": "/cities/us/brunswick-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0809555",
          "name": "Brush",
          "country_code": "US",
          "slug": "brush",
          "canonical_path": "/cities/us/brush/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4676920",
          "name": "Brushy Creek",
          "country_code": "US",
          "slug": "brushy-creek",
          "canonical_path": "/cities/us/brushy-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3909792",
          "name": "Bryan",
          "country_code": "US",
          "slug": "bryan-oh",
          "canonical_path": "/cities/us/bryan-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4810912",
          "name": "Bryan",
          "country_code": "US",
          "slug": "bryan-tx",
          "canonical_path": "/cities/us/bryan-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4349727",
          "name": "Bryans Road",
          "country_code": "US",
          "slug": "bryans-road",
          "canonical_path": "/cities/us/bryans-road/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0509460",
          "name": "Bryant",
          "country_code": "US",
          "slug": "bryant",
          "canonical_path": "/cities/us/bryant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5182063",
          "name": "Bryn Mawr",
          "country_code": "US",
          "slug": "bryn-mawr",
          "canonical_path": "/cities/us/bryn-mawr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260966",
          "name": "Bryn Mawr-Skyway",
          "country_code": "US",
          "slug": "bryn-mawr-skyway",
          "canonical_path": "/cities/us/bryn-mawr-skyway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0407940",
          "name": "Buckeye",
          "country_code": "US",
          "slug": "buckeye",
          "canonical_path": "/cities/us/buckeye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4749627",
          "name": "Buckhall",
          "country_code": "US",
          "slug": "buckhall",
          "canonical_path": "/cities/us/buckhall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5411188",
          "name": "Buckhannon",
          "country_code": "US",
          "slug": "buckhannon",
          "canonical_path": "/cities/us/buckhannon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5308570",
          "name": "Buckley",
          "country_code": "US",
          "slug": "buckley",
          "canonical_path": "/cities/us/buckley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4286037",
          "name": "Buckner",
          "country_code": "US",
          "slug": "buckner",
          "canonical_path": "/cities/us/buckner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3910030",
          "name": "Bucyrus",
          "country_code": "US",
          "slug": "bucyrus",
          "canonical_path": "/cities/us/bucyrus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4811080",
          "name": "Buda",
          "country_code": "US",
          "slug": "buda",
          "canonical_path": "/cities/us/buda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5096057",
          "name": "Budd Lake",
          "country_code": "US",
          "slug": "budd-lake",
          "canonical_path": "/cities/us/budd-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0608758",
          "name": "Buellton",
          "country_code": "US",
          "slug": "buellton",
          "canonical_path": "/cities/us/buellton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0608786",
          "name": "Buena Park",
          "country_code": "US",
          "slug": "buena-park",
          "canonical_path": "/cities/us/buena-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5111032",
          "name": "Buena Vista",
          "country_code": "US",
          "slug": "buena-vista",
          "canonical_path": "/cities/us/buena-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4149269",
          "name": "Buenaventura Lakes",
          "country_code": "US",
          "slug": "buenaventura-lakes",
          "canonical_path": "/cities/us/buenaventura-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2708452",
          "name": "Buffalo",
          "country_code": "US",
          "slug": "buffalo-mn",
          "canonical_path": "/cities/us/buffalo-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3611000",
          "name": "Buffalo",
          "country_code": "US",
          "slug": "buffalo-ny",
          "canonical_path": "/cities/us/buffalo-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1709447",
          "name": "Buffalo Grove",
          "country_code": "US",
          "slug": "buffalo-grove",
          "canonical_path": "/cities/us/buffalo-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1311784",
          "name": "Buford",
          "country_code": "US",
          "slug": "buford",
          "canonical_path": "/cities/us/buford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4749854",
          "name": "Bull Run",
          "country_code": "US",
          "slug": "bull-run",
          "canonical_path": "/cities/us/bull-run/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4811212",
          "name": "Bullard",
          "country_code": "US",
          "slug": "bullard",
          "canonical_path": "/cities/us/bullard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0408220",
          "name": "Bullhead City",
          "country_code": "US",
          "slug": "bullhead-city",
          "canonical_path": "/cities/us/bullhead-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4811224",
          "name": "Bulverde",
          "country_code": "US",
          "slug": "bulverde",
          "canonical_path": "/cities/us/bulverde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0608954",
          "name": "Burbank",
          "country_code": "US",
          "slug": "burbank-ca",
          "canonical_path": "/cities/us/burbank-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1709642",
          "name": "Burbank",
          "country_code": "US",
          "slug": "burbank-il",
          "canonical_path": "/cities/us/burbank-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5308850",
          "name": "Burien",
          "country_code": "US",
          "slug": "burien",
          "canonical_path": "/cities/us/burien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4811368",
          "name": "Burkburnett",
          "country_code": "US",
          "slug": "burkburnett",
          "canonical_path": "/cities/us/burkburnett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4749950",
          "name": "Burke",
          "country_code": "US",
          "slug": "burke",
          "canonical_path": "/cities/us/burke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4811428",
          "name": "Burleson",
          "country_code": "US",
          "slug": "burleson",
          "canonical_path": "/cities/us/burleson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1611260",
          "name": "Burley",
          "country_code": "US",
          "slug": "burley",
          "canonical_path": "/cities/us/burley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0609066",
          "name": "Burlingame",
          "country_code": "US",
          "slug": "burlingame",
          "canonical_path": "/cities/us/burlingame/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4286281",
          "name": "Burlington",
          "country_code": "US",
          "slug": "burlington",
          "canonical_path": "/cities/us/burlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4931737",
          "name": "Burlington",
          "country_code": "US",
          "slug": "burlington-ma-017",
          "canonical_path": "/cities/us/burlington-ma-017/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1909550",
          "name": "Burlington",
          "country_code": "US",
          "slug": "burlington-ia",
          "canonical_path": "/cities/us/burlington-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3408920",
          "name": "Burlington",
          "country_code": "US",
          "slug": "burlington-nj",
          "canonical_path": "/cities/us/burlington-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3709060",
          "name": "Burlington",
          "country_code": "US",
          "slug": "burlington-nc",
          "canonical_path": "/cities/us/burlington-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5010675",
          "name": "Burlington",
          "country_code": "US",
          "slug": "burlington-vt",
          "canonical_path": "/cities/us/burlington-vt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5308920",
          "name": "Burlington",
          "country_code": "US",
          "slug": "burlington-wa",
          "canonical_path": "/cities/us/burlington-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5511200",
          "name": "Burlington",
          "country_code": "US",
          "slug": "burlington-wi",
          "canonical_path": "/cities/us/burlington-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4811464",
          "name": "Burnet",
          "country_code": "US",
          "slug": "burnet",
          "canonical_path": "/cities/us/burnet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2708794",
          "name": "Burnsville",
          "country_code": "US",
          "slug": "burnsville",
          "canonical_path": "/cities/us/burnsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1709980",
          "name": "Burr Ridge",
          "country_code": "US",
          "slug": "burr-ridge",
          "canonical_path": "/cities/us/burr-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2612060",
          "name": "Burton",
          "country_code": "US",
          "slug": "burton",
          "canonical_path": "/cities/us/burton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4349903",
          "name": "Burtonsville",
          "country_code": "US",
          "slug": "burtonsville",
          "canonical_path": "/cities/us/burtonsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4210464",
          "name": "Butler",
          "country_code": "US",
          "slug": "butler",
          "canonical_path": "/cities/us/butler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3409040",
          "name": "Butler borough",
          "country_code": "US",
          "slug": "butler-borough",
          "canonical_path": "/cities/us/butler-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3709360",
          "name": "Butner",
          "country_code": "US",
          "slug": "butner",
          "canonical_path": "/cities/us/butner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5642934",
          "name": "Butte",
          "country_code": "US",
          "slug": "butte",
          "canonical_path": "/cities/us/butte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4959799",
          "name": "Buxton",
          "country_code": "US",
          "slug": "buxton",
          "canonical_path": "/cities/us/buxton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2810140",
          "name": "Byram",
          "country_code": "US",
          "slug": "byram",
          "canonical_path": "/cities/us/byram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1312260",
          "name": "Byron",
          "country_code": "US",
          "slug": "byron-ga",
          "canonical_path": "/cities/us/byron-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2709154",
          "name": "Byron",
          "country_code": "US",
          "slug": "byron-mn",
          "canonical_path": "/cities/us/byron-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4987587",
          "name": "Byron Center",
          "country_code": "US",
          "slug": "byron-center",
          "canonical_path": "/cities/us/byron-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0510300",
          "name": "Cabot",
          "country_code": "US",
          "slug": "cabot",
          "canonical_path": "/cities/us/cabot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4811716",
          "name": "Caddo Mills",
          "country_code": "US",
          "slug": "caddo-mills",
          "canonical_path": "/cities/us/caddo-mills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2612320",
          "name": "Cadillac",
          "country_code": "US",
          "slug": "cadillac",
          "canonical_path": "/cities/us/cadillac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1710373",
          "name": "Cahokia Heights",
          "country_code": "US",
          "slug": "cahokia-heights",
          "canonical_path": "/cities/us/cahokia-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1312400",
          "name": "Cairo",
          "country_code": "US",
          "slug": "cairo",
          "canonical_path": "/cities/us/cairo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0609598",
          "name": "Calabasas",
          "country_code": "US",
          "slug": "calabasas",
          "canonical_path": "/cities/us/calabasas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1612250",
          "name": "Caldwell",
          "country_code": "US",
          "slug": "caldwell",
          "canonical_path": "/cities/us/caldwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3409250",
          "name": "Caldwell borough",
          "country_code": "US",
          "slug": "caldwell-borough",
          "canonical_path": "/cities/us/caldwell-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5511950",
          "name": "Caledonia",
          "country_code": "US",
          "slug": "caledonia",
          "canonical_path": "/cities/us/caledonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0111416",
          "name": "Calera",
          "country_code": "US",
          "slug": "calera",
          "canonical_path": "/cities/us/calera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0609710",
          "name": "Calexico",
          "country_code": "US",
          "slug": "calexico",
          "canonical_path": "/cities/us/calexico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1312456",
          "name": "Calhoun",
          "country_code": "US",
          "slug": "calhoun",
          "canonical_path": "/cities/us/calhoun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4350049",
          "name": "California",
          "country_code": "US",
          "slug": "california",
          "canonical_path": "/cities/us/california/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5182733",
          "name": "California",
          "country_code": "US",
          "slug": "california-pa-125",
          "canonical_path": "/cities/us/california-pa-125/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0609780",
          "name": "California City",
          "country_code": "US",
          "slug": "california-city",
          "canonical_path": "/cities/us/california-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0609864",
          "name": "Calimesa",
          "country_code": "US",
          "slug": "calimesa",
          "canonical_path": "/cities/us/calimesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0609878",
          "name": "Calipatria",
          "country_code": "US",
          "slug": "calipatria",
          "canonical_path": "/cities/us/calipatria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5332937",
          "name": "Calistoga",
          "country_code": "US",
          "slug": "calistoga",
          "canonical_path": "/cities/us/calistoga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1209725",
          "name": "Callaway",
          "country_code": "US",
          "slug": "callaway",
          "canonical_path": "/cities/us/callaway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1710487",
          "name": "Calumet City",
          "country_code": "US",
          "slug": "calumet-city",
          "canonical_path": "/cities/us/calumet-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1710513",
          "name": "Calumet Park",
          "country_code": "US",
          "slug": "calumet-park",
          "canonical_path": "/cities/us/calumet-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4350160",
          "name": "Calverton",
          "country_code": "US",
          "slug": "calverton",
          "canonical_path": "/cities/us/calverton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5111137",
          "name": "Calverton",
          "country_code": "US",
          "slug": "calverton-ny-103",
          "canonical_path": "/cities/us/calverton-ny-103/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5788816",
          "name": "Camano",
          "country_code": "US",
          "slug": "camano",
          "canonical_path": "/cities/us/camano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0610046",
          "name": "Camarillo",
          "country_code": "US",
          "slug": "camarillo",
          "canonical_path": "/cities/us/camarillo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5309480",
          "name": "Camas",
          "country_code": "US",
          "slug": "camas",
          "canonical_path": "/cities/us/camas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5333207",
          "name": "Cambria",
          "country_code": "US",
          "slug": "cambria",
          "canonical_path": "/cities/us/cambria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2412400",
          "name": "Cambridge",
          "country_code": "US",
          "slug": "cambridge-md",
          "canonical_path": "/cities/us/cambridge-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2511000",
          "name": "Cambridge",
          "country_code": "US",
          "slug": "cambridge-ma",
          "canonical_path": "/cities/us/cambridge-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2709370",
          "name": "Cambridge",
          "country_code": "US",
          "slug": "cambridge-mn",
          "canonical_path": "/cities/us/cambridge-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3910996",
          "name": "Cambridge",
          "country_code": "US",
          "slug": "cambridge-oh",
          "canonical_path": "/cities/us/cambridge-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0510720",
          "name": "Camden",
          "country_code": "US",
          "slug": "camden-ar",
          "canonical_path": "/cities/us/camden-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3410000",
          "name": "Camden",
          "country_code": "US",
          "slug": "camden-nj",
          "canonical_path": "/cities/us/camden-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4510855",
          "name": "Camden",
          "country_code": "US",
          "slug": "camden-sc",
          "canonical_path": "/cities/us/camden-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2910828",
          "name": "Cameron",
          "country_code": "US",
          "slug": "cameron-mo",
          "canonical_path": "/cities/us/cameron-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4812040",
          "name": "Cameron",
          "country_code": "US",
          "slug": "cameron-tx",
          "canonical_path": "/cities/us/cameron-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4678379",
          "name": "Cameron Park",
          "country_code": "US",
          "slug": "cameron-park",
          "canonical_path": "/cities/us/cameron-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5333282",
          "name": "Cameron Park",
          "country_code": "US",
          "slug": "cameron-park-ca-017",
          "canonical_path": "/cities/us/cameron-park-ca-017/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4678381",
          "name": "Cameron Park Colonia",
          "country_code": "US",
          "slug": "cameron-park-colonia",
          "canonical_path": "/cities/us/cameron-park-colonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4185863",
          "name": "Camilla",
          "country_code": "US",
          "slug": "camilla",
          "canonical_path": "/cities/us/camilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5182928",
          "name": "Camp Hill",
          "country_code": "US",
          "slug": "camp-hill",
          "canonical_path": "/cities/us/camp-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4211000",
          "name": "Camp Hill borough",
          "country_code": "US",
          "slug": "camp-hill-borough",
          "canonical_path": "/cities/us/camp-hill-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260996",
          "name": "Camp Pendleton North",
          "country_code": "US",
          "slug": "camp-pendleton-north",
          "canonical_path": "/cities/us/camp-pendleton-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260997",
          "name": "Camp Pendleton South",
          "country_code": "US",
          "slug": "camp-pendleton-south",
          "canonical_path": "/cities/us/camp-pendleton-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4350288",
          "name": "Camp Springs",
          "country_code": "US",
          "slug": "camp-springs",
          "canonical_path": "/cities/us/camp-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4678565",
          "name": "Camp Swift",
          "country_code": "US",
          "slug": "camp-swift",
          "canonical_path": "/cities/us/camp-swift/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0409690",
          "name": "Camp Verde",
          "country_code": "US",
          "slug": "camp-verde",
          "canonical_path": "/cities/us/camp-verde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0610345",
          "name": "Campbell",
          "country_code": "US",
          "slug": "campbell-ca",
          "canonical_path": "/cities/us/campbell-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3911066",
          "name": "Campbell",
          "country_code": "US",
          "slug": "campbell-oh",
          "canonical_path": "/cities/us/campbell-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2112160",
          "name": "Campbellsville",
          "country_code": "US",
          "slug": "campbellsville",
          "canonical_path": "/cities/us/campbellsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1710906",
          "name": "Campton Hills",
          "country_code": "US",
          "slug": "campton-hills",
          "canonical_path": "/cities/us/campton-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3911304",
          "name": "Canal Fulton",
          "country_code": "US",
          "slug": "canal-fulton",
          "canonical_path": "/cities/us/canal-fulton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3911332",
          "name": "Canal Winchester",
          "country_code": "US",
          "slug": "canal-winchester",
          "canonical_path": "/cities/us/canal-winchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3612144",
          "name": "Canandaigua",
          "country_code": "US",
          "slug": "canandaigua",
          "canonical_path": "/cities/us/canandaigua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4110750",
          "name": "Canby",
          "country_code": "US",
          "slug": "canby",
          "canonical_path": "/cities/us/canby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260019",
          "name": "Candler-McAfee",
          "country_code": "US",
          "slug": "candler-mcafee",
          "canonical_path": "/cities/us/candler-mcafee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3911360",
          "name": "Canfield",
          "country_code": "US",
          "slug": "canfield",
          "canonical_path": "/cities/us/canfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0811810",
          "name": "Cañon City",
          "country_code": "US",
          "slug": "canon-city",
          "canonical_path": "/cities/us/canon-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5183161",
          "name": "Canonsburg",
          "country_code": "US",
          "slug": "canonsburg",
          "canonical_path": "/cities/us/canonsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4211152",
          "name": "Canonsburg borough",
          "country_code": "US",
          "slug": "canonsburg-borough",
          "canonical_path": "/cities/us/canonsburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4932214",
          "name": "Canton",
          "country_code": "US",
          "slug": "canton-ma-021",
          "canonical_path": "/cities/us/canton-ma-021/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1312988",
          "name": "Canton",
          "country_code": "US",
          "slug": "canton-ga",
          "canonical_path": "/cities/us/canton-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1711007",
          "name": "Canton",
          "country_code": "US",
          "slug": "canton-il",
          "canonical_path": "/cities/us/canton-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2811100",
          "name": "Canton",
          "country_code": "US",
          "slug": "canton-ms",
          "canonical_path": "/cities/us/canton-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3612331",
          "name": "Canton",
          "country_code": "US",
          "slug": "canton-ny",
          "canonical_path": "/cities/us/canton-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3912000",
          "name": "Canton",
          "country_code": "US",
          "slug": "canton-oh",
          "canonical_path": "/cities/us/canton-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4812496",
          "name": "Canton",
          "country_code": "US",
          "slug": "canton-tx",
          "canonical_path": "/cities/us/canton-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5518232",
          "name": "Canutillo",
          "country_code": "US",
          "slug": "canutillo",
          "canonical_path": "/cities/us/canutillo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4812532",
          "name": "Canyon",
          "country_code": "US",
          "slug": "canyon",
          "canonical_path": "/cities/us/canyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0610928",
          "name": "Canyon Lake",
          "country_code": "US",
          "slug": "canyon-lake",
          "canonical_path": "/cities/us/canyon-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1210250",
          "name": "Cape Canaveral",
          "country_code": "US",
          "slug": "cape-canaveral",
          "canonical_path": "/cities/us/cape-canaveral/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1210275",
          "name": "Cape Coral",
          "country_code": "US",
          "slug": "cape-coral",
          "canonical_path": "/cities/us/cape-coral/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2911242",
          "name": "Cape Girardeau",
          "country_code": "US",
          "slug": "cape-girardeau",
          "canonical_path": "/cities/us/cape-girardeau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501057",
          "name": "Cape May Court House",
          "country_code": "US",
          "slug": "cape-may-court-house",
          "canonical_path": "/cities/us/cape-may-court-house/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4350348",
          "name": "Cape Saint Claire",
          "country_code": "US",
          "slug": "cape-saint-claire",
          "canonical_path": "/cities/us/cape-saint-claire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526891",
          "name": "Capitol Gateway",
          "country_code": "US",
          "slug": "capitol-gateway",
          "canonical_path": "/cities/us/capitol-gateway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526886",
          "name": "Capitol Riverfront",
          "country_code": "US",
          "slug": "capitol-riverfront",
          "canonical_path": "/cities/us/capitol-riverfront/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0611040",
          "name": "Capitola",
          "country_code": "US",
          "slug": "capitola",
          "canonical_path": "/cities/us/capitola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0812045",
          "name": "Carbondale",
          "country_code": "US",
          "slug": "carbondale-co",
          "canonical_path": "/cities/us/carbondale-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1711163",
          "name": "Carbondale",
          "country_code": "US",
          "slug": "carbondale-il",
          "canonical_path": "/cities/us/carbondale-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4211232",
          "name": "Carbondale",
          "country_code": "US",
          "slug": "carbondale-pa",
          "canonical_path": "/cities/us/carbondale-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2212665",
          "name": "Carencro",
          "country_code": "US",
          "slug": "carencro",
          "canonical_path": "/cities/us/carencro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2310565",
          "name": "Caribou",
          "country_code": "US",
          "slug": "caribou",
          "canonical_path": "/cities/us/caribou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2911368",
          "name": "Carl Junction",
          "country_code": "US",
          "slug": "carl-junction",
          "canonical_path": "/cities/us/carl-junction/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1711202",
          "name": "Carlinville",
          "country_code": "US",
          "slug": "carlinville",
          "canonical_path": "/cities/us/carlinville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3912168",
          "name": "Carlisle",
          "country_code": "US",
          "slug": "carlisle",
          "canonical_path": "/cities/us/carlisle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4211272",
          "name": "Carlisle borough",
          "country_code": "US",
          "slug": "carlisle-borough",
          "canonical_path": "/cities/us/carlisle-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0611194",
          "name": "Carlsbad",
          "country_code": "US",
          "slug": "carlsbad-ca",
          "canonical_path": "/cities/us/carlsbad-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3512150",
          "name": "Carlsbad",
          "country_code": "US",
          "slug": "carlsbad-nm",
          "canonical_path": "/cities/us/carlsbad-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5096289",
          "name": "Carlstadt",
          "country_code": "US",
          "slug": "carlstadt",
          "canonical_path": "/cities/us/carlstadt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3410480",
          "name": "Carlstadt borough",
          "country_code": "US",
          "slug": "carlstadt-borough",
          "canonical_path": "/cities/us/carlstadt-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1810342",
          "name": "Carmel",
          "country_code": "US",
          "slug": "carmel",
          "canonical_path": "/cities/us/carmel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258078",
          "name": "Carmel Hamlet",
          "country_code": "US",
          "slug": "carmel-hamlet",
          "canonical_path": "/cities/us/carmel-hamlet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4235246",
          "name": "Carmi",
          "country_code": "US",
          "slug": "carmi",
          "canonical_path": "/cities/us/carmi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5334336",
          "name": "Carmichael",
          "country_code": "US",
          "slug": "carmichael",
          "canonical_path": "/cities/us/carmichael/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4833478",
          "name": "Carnegie",
          "country_code": "US",
          "slug": "carnegie",
          "canonical_path": "/cities/us/carnegie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4211336",
          "name": "Carnegie borough",
          "country_code": "US",
          "slug": "carnegie-borough",
          "canonical_path": "/cities/us/carnegie-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4350413",
          "name": "Carney",
          "country_code": "US",
          "slug": "carney",
          "canonical_path": "/cities/us/carney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501073",
          "name": "Carneys Point",
          "country_code": "US",
          "slug": "carneys-point",
          "canonical_path": "/cities/us/carneys-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258082",
          "name": "Carnot-Moon",
          "country_code": "US",
          "slug": "carnot-moon",
          "canonical_path": "/cities/us/carnot-moon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1711332",
          "name": "Carol Stream",
          "country_code": "US",
          "slug": "carol-stream",
          "canonical_path": "/cities/us/carol-stream/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3710500",
          "name": "Carolina Beach",
          "country_code": "US",
          "slug": "carolina-beach",
          "canonical_path": "/cities/us/carolina-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3710550",
          "name": "Carolina Shores",
          "country_code": "US",
          "slug": "carolina-shores",
          "canonical_path": "/cities/us/carolina-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1711358",
          "name": "Carpentersville",
          "country_code": "US",
          "slug": "carpentersville",
          "canonical_path": "/cities/us/carpentersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0611446",
          "name": "Carpinteria",
          "country_code": "US",
          "slug": "carpinteria",
          "canonical_path": "/cities/us/carpinteria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3710620",
          "name": "Carrboro",
          "country_code": "US",
          "slug": "carrboro",
          "canonical_path": "/cities/us/carrboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4679148",
          "name": "Carrizo Springs",
          "country_code": "US",
          "slug": "carrizo-springs",
          "canonical_path": "/cities/us/carrizo-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1911080",
          "name": "Carroll",
          "country_code": "US",
          "slug": "carroll",
          "canonical_path": "/cities/us/carroll/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1313492",
          "name": "Carrollton",
          "country_code": "US",
          "slug": "carrollton-ga",
          "canonical_path": "/cities/us/carrollton-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4813024",
          "name": "Carrollton",
          "country_code": "US",
          "slug": "carrollton-tx",
          "canonical_path": "/cities/us/carrollton-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4150115",
          "name": "Carrollwood",
          "country_code": "US",
          "slug": "carrollwood",
          "canonical_path": "/cities/us/carrollwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4150118",
          "name": "Carrollwood Village",
          "country_code": "US",
          "slug": "carrollwood-village",
          "canonical_path": "/cities/us/carrollwood-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0611530",
          "name": "Carson",
          "country_code": "US",
          "slug": "carson",
          "canonical_path": "/cities/us/carson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3209700",
          "name": "Carson City",
          "country_code": "US",
          "slug": "carson-city",
          "canonical_path": "/cities/us/carson-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5096316",
          "name": "Carteret",
          "country_code": "US",
          "slug": "carteret",
          "canonical_path": "/cities/us/carteret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3410750",
          "name": "Carteret borough",
          "country_code": "US",
          "slug": "carteret-borough",
          "canonical_path": "/cities/us/carteret-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1313688",
          "name": "Cartersville",
          "country_code": "US",
          "slug": "cartersville",
          "canonical_path": "/cities/us/cartersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1711514",
          "name": "Carterville",
          "country_code": "US",
          "slug": "carterville",
          "canonical_path": "/cities/us/carterville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2911656",
          "name": "Carthage",
          "country_code": "US",
          "slug": "carthage-mo",
          "canonical_path": "/cities/us/carthage-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4813108",
          "name": "Carthage",
          "country_code": "US",
          "slug": "carthage-tx",
          "canonical_path": "/cities/us/carthage-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2911692",
          "name": "Caruthersville",
          "country_code": "US",
          "slug": "caruthersville",
          "canonical_path": "/cities/us/caruthersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2710144",
          "name": "Carver",
          "country_code": "US",
          "slug": "carver",
          "canonical_path": "/cities/us/carver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1711592",
          "name": "Cary",
          "country_code": "US",
          "slug": "cary-il",
          "canonical_path": "/cities/us/cary-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3710740",
          "name": "Cary",
          "country_code": "US",
          "slug": "cary-nc",
          "canonical_path": "/cities/us/cary-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261029",
          "name": "Casa de Oro-Mount Helix",
          "country_code": "US",
          "slug": "casa-de-oro-mount-helix",
          "canonical_path": "/cities/us/casa-de-oro-mount-helix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0410530",
          "name": "Casa Grande",
          "country_code": "US",
          "slug": "casa-grande",
          "canonical_path": "/cities/us/casa-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5288661",
          "name": "Casas Adobes",
          "country_code": "US",
          "slug": "casas-adobes",
          "canonical_path": "/cities/us/casas-adobes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5613150",
          "name": "Casper",
          "country_code": "US",
          "slug": "casper",
          "canonical_path": "/cities/us/casper/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1211050",
          "name": "Casselberry",
          "country_code": "US",
          "slug": "casselberry",
          "canonical_path": "/cities/us/casselberry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5334799",
          "name": "Castaic",
          "country_code": "US",
          "slug": "castaic",
          "canonical_path": "/cities/us/castaic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0812387",
          "name": "Castle Pines",
          "country_code": "US",
          "slug": "castle-pines",
          "canonical_path": "/cities/us/castle-pines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0812415",
          "name": "Castle Rock",
          "country_code": "US",
          "slug": "castle-rock",
          "canonical_path": "/cities/us/castle-rock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5183428",
          "name": "Castle Shannon",
          "country_code": "US",
          "slug": "castle-shannon",
          "canonical_path": "/cities/us/castle-shannon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4211680",
          "name": "Castle Shannon borough",
          "country_code": "US",
          "slug": "castle-shannon-borough",
          "canonical_path": "/cities/us/castle-shannon-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5334928",
          "name": "Castro Valley",
          "country_code": "US",
          "slug": "castro-valley",
          "canonical_path": "/cities/us/castro-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5334937",
          "name": "Castroville",
          "country_code": "US",
          "slug": "castroville",
          "canonical_path": "/cities/us/castroville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5288784",
          "name": "Catalina",
          "country_code": "US",
          "slug": "catalina",
          "canonical_path": "/cities/us/catalina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5288786",
          "name": "Catalina Foothills",
          "country_code": "US",
          "slug": "catalina-foothills",
          "canonical_path": "/cities/us/catalina-foothills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5183438",
          "name": "Catasauqua",
          "country_code": "US",
          "slug": "catasauqua",
          "canonical_path": "/cities/us/catasauqua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4211720",
          "name": "Catasauqua borough",
          "country_code": "US",
          "slug": "catasauqua-borough",
          "canonical_path": "/cities/us/catasauqua-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0612048",
          "name": "Cathedral City",
          "country_code": "US",
          "slug": "cathedral-city",
          "canonical_path": "/cities/us/cathedral-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4350635",
          "name": "Catonsville",
          "country_code": "US",
          "slug": "catonsville",
          "canonical_path": "/cities/us/catonsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4012900",
          "name": "Catoosa",
          "country_code": "US",
          "slug": "catoosa",
          "canonical_path": "/cities/us/catoosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0411300",
          "name": "Cave Creek",
          "country_code": "US",
          "slug": "cave-creek",
          "canonical_path": "/cities/us/cave-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4751421",
          "name": "Cave Spring",
          "country_code": "US",
          "slug": "cave-spring",
          "canonical_path": "/cities/us/cave-spring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0512340",
          "name": "Cave Springs",
          "country_code": "US",
          "slug": "cave-springs",
          "canonical_path": "/cities/us/cave-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4512655",
          "name": "Cayce",
          "country_code": "US",
          "slug": "cayce",
          "canonical_path": "/cities/us/cayce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4911320",
          "name": "Cedar City",
          "country_code": "US",
          "slug": "cedar-city",
          "canonical_path": "/cities/us/cedar-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1911755",
          "name": "Cedar Falls",
          "country_code": "US",
          "slug": "cedar-falls",
          "canonical_path": "/cities/us/cedar-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4813492",
          "name": "Cedar Hill",
          "country_code": "US",
          "slug": "cedar-hill",
          "canonical_path": "/cities/us/cedar-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4911440",
          "name": "Cedar Hills",
          "country_code": "US",
          "slug": "cedar-hills",
          "canonical_path": "/cities/us/cedar-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1811062",
          "name": "Cedar Lake",
          "country_code": "US",
          "slug": "cedar-lake",
          "canonical_path": "/cities/us/cedar-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5718492",
          "name": "Cedar Mill",
          "country_code": "US",
          "slug": "cedar-mill",
          "canonical_path": "/cities/us/cedar-mill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4813552",
          "name": "Cedar Park",
          "country_code": "US",
          "slug": "cedar-park",
          "canonical_path": "/cities/us/cedar-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1912000",
          "name": "Cedar Rapids",
          "country_code": "US",
          "slug": "cedar-rapids",
          "canonical_path": "/cities/us/cedar-rapids/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5513375",
          "name": "Cedarburg",
          "country_code": "US",
          "slug": "cedarburg",
          "canonical_path": "/cities/us/cedarburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3613233",
          "name": "Cedarhurst",
          "country_code": "US",
          "slug": "cedarhurst",
          "canonical_path": "/cities/us/cedarhurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1314500",
          "name": "Cedartown",
          "country_code": "US",
          "slug": "cedartown",
          "canonical_path": "/cities/us/cedartown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4150394",
          "name": "Celebration",
          "country_code": "US",
          "slug": "celebration",
          "canonical_path": "/cities/us/celebration/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3912868",
          "name": "Celina",
          "country_code": "US",
          "slug": "celina-oh",
          "canonical_path": "/cities/us/celina-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4813684",
          "name": "Celina",
          "country_code": "US",
          "slug": "celina-tx",
          "canonical_path": "/cities/us/celina-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0812815",
          "name": "Centennial",
          "country_code": "US",
          "slug": "centennial",
          "canonical_path": "/cities/us/centennial/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4813732",
          "name": "Center",
          "country_code": "US",
          "slug": "center",
          "canonical_path": "/cities/us/center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2614320",
          "name": "Center Line",
          "country_code": "US",
          "slug": "center-line",
          "canonical_path": "/cities/us/center-line/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5112020",
          "name": "Center Moriches",
          "country_code": "US",
          "slug": "center-moriches",
          "canonical_path": "/cities/us/center-moriches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0113264",
          "name": "Center Point",
          "country_code": "US",
          "slug": "center-point",
          "canonical_path": "/cities/us/center-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5112035",
          "name": "Centereach",
          "country_code": "US",
          "slug": "centereach",
          "canonical_path": "/cities/us/centereach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5112037",
          "name": "Centerport",
          "country_code": "US",
          "slug": "centerport",
          "canonical_path": "/cities/us/centerport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5112038",
          "name": "Centerport",
          "country_code": "US",
          "slug": "centerport-ny-103",
          "canonical_path": "/cities/us/centerport-ny-103/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0512820",
          "name": "Centerton",
          "country_code": "US",
          "slug": "centerton",
          "canonical_path": "/cities/us/centerton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4574140",
          "name": "Centerville",
          "country_code": "US",
          "slug": "centerville",
          "canonical_path": "/cities/us/centerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1314920",
          "name": "Centerville",
          "country_code": "US",
          "slug": "centerville-ga",
          "canonical_path": "/cities/us/centerville-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1912315",
          "name": "Centerville",
          "country_code": "US",
          "slug": "centerville-ia",
          "canonical_path": "/cities/us/centerville-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3913190",
          "name": "Centerville",
          "country_code": "US",
          "slug": "centerville-oh",
          "canonical_path": "/cities/us/centerville-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4911980",
          "name": "Centerville",
          "country_code": "US",
          "slug": "centerville-ut",
          "canonical_path": "/cities/us/centerville-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2213960",
          "name": "Central",
          "country_code": "US",
          "slug": "central-la",
          "canonical_path": "/cities/us/central-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4513015",
          "name": "Central",
          "country_code": "US",
          "slug": "central-sc",
          "canonical_path": "/cities/us/central-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526888",
          "name": "Central 14th Street / Spring Road",
          "country_code": "US",
          "slug": "central-14th-street-spring-road",
          "canonical_path": "/cities/us/central-14th-street-spring-road/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526889",
          "name": "Central 14th Street / WMATA Northern Bus Barn",
          "country_code": "US",
          "slug": "central-14th-street-wmata-northern-bus-barn",
          "canonical_path": "/cities/us/central-14th-street-wmata-northern-bus-barn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2113978",
          "name": "Central City",
          "country_code": "US",
          "slug": "central-city",
          "canonical_path": "/cities/us/central-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4414140",
          "name": "Central Falls",
          "country_code": "US",
          "slug": "central-falls",
          "canonical_path": "/cities/us/central-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5112078",
          "name": "Central Islip",
          "country_code": "US",
          "slug": "central-islip",
          "canonical_path": "/cities/us/central-islip/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4112400",
          "name": "Central Point",
          "country_code": "US",
          "slug": "central-point",
          "canonical_path": "/cities/us/central-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1712164",
          "name": "Centralia",
          "country_code": "US",
          "slug": "centralia-il",
          "canonical_path": "/cities/us/centralia-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5311160",
          "name": "Centralia",
          "country_code": "US",
          "slug": "centralia-wa",
          "canonical_path": "/cities/us/centralia-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4751839",
          "name": "Centreville",
          "country_code": "US",
          "slug": "centreville-va-059",
          "canonical_path": "/cities/us/centreville-va-059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0612524",
          "name": "Ceres",
          "country_code": "US",
          "slug": "ceres",
          "canonical_path": "/cities/us/ceres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0612552",
          "name": "Cerritos",
          "country_code": "US",
          "slug": "cerritos",
          "canonical_path": "/cities/us/cerritos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4319507",
          "name": "Chackbay",
          "country_code": "US",
          "slug": "chackbay",
          "canonical_path": "/cities/us/chackbay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5694163",
          "name": "Chadron",
          "country_code": "US",
          "slug": "chadron",
          "canonical_path": "/cities/us/chadron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5065495",
          "name": "Chalco",
          "country_code": "US",
          "slug": "chalco",
          "canonical_path": "/cities/us/chalco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4319518",
          "name": "Chalmette",
          "country_code": "US",
          "slug": "chalmette",
          "canonical_path": "/cities/us/chalmette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4751886",
          "name": "Chamberlayne",
          "country_code": "US",
          "slug": "chamberlayne",
          "canonical_path": "/cities/us/chamberlayne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4557109",
          "name": "Chambersburg",
          "country_code": "US",
          "slug": "chambersburg",
          "canonical_path": "/cities/us/chambersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4212536",
          "name": "Chambersburg borough",
          "country_code": "US",
          "slug": "chambersburg-borough",
          "canonical_path": "/cities/us/chambersburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1315172",
          "name": "Chamblee",
          "country_code": "US",
          "slug": "chamblee",
          "canonical_path": "/cities/us/chamblee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1712385",
          "name": "Champaign",
          "country_code": "US",
          "slug": "champaign",
          "canonical_path": "/cities/us/champaign/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259582",
          "name": "Champion Heights",
          "country_code": "US",
          "slug": "champion-heights",
          "canonical_path": "/cities/us/champion-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2710846",
          "name": "Champlin",
          "country_code": "US",
          "slug": "champlin",
          "canonical_path": "/cities/us/champlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0412000",
          "name": "Chandler",
          "country_code": "US",
          "slug": "chandler",
          "canonical_path": "/cities/us/chandler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2710918",
          "name": "Chanhassen",
          "country_code": "US",
          "slug": "chanhassen",
          "canonical_path": "/cities/us/chanhassen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1712476",
          "name": "Channahon",
          "country_code": "US",
          "slug": "channahon",
          "canonical_path": "/cities/us/channahon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4680388",
          "name": "Channelview",
          "country_code": "US",
          "slug": "channelview",
          "canonical_path": "/cities/us/channelview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4751935",
          "name": "Chantilly",
          "country_code": "US",
          "slug": "chantilly",
          "canonical_path": "/cities/us/chantilly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2012500",
          "name": "Chanute",
          "country_code": "US",
          "slug": "chanute",
          "canonical_path": "/cities/us/chanute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5461353",
          "name": "Chaparral",
          "country_code": "US",
          "slug": "chaparral",
          "canonical_path": "/cities/us/chaparral/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3711800",
          "name": "Chapel Hill",
          "country_code": "US",
          "slug": "chapel-hill",
          "canonical_path": "/cities/us/chapel-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3913554",
          "name": "Chardon",
          "country_code": "US",
          "slug": "chardon",
          "canonical_path": "/cities/us/chardon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1912765",
          "name": "Charles City",
          "country_code": "US",
          "slug": "charles-city",
          "canonical_path": "/cities/us/charles-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5414610",
          "name": "Charles Town",
          "country_code": "US",
          "slug": "charles-town",
          "canonical_path": "/cities/us/charles-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4380997",
          "name": "Charleston",
          "country_code": "US",
          "slug": "charleston",
          "canonical_path": "/cities/us/charleston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1712567",
          "name": "Charleston",
          "country_code": "US",
          "slug": "charleston-il",
          "canonical_path": "/cities/us/charleston-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4513330",
          "name": "Charleston",
          "country_code": "US",
          "slug": "charleston-sc",
          "canonical_path": "/cities/us/charleston-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5414600",
          "name": "Charleston",
          "country_code": "US",
          "slug": "charleston-wv",
          "canonical_path": "/cities/us/charleston-wv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5221384",
          "name": "Charlestown",
          "country_code": "US",
          "slug": "charlestown-ri-009",
          "canonical_path": "/cities/us/charlestown-ri-009/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1812124",
          "name": "Charlestown",
          "country_code": "US",
          "slug": "charlestown",
          "canonical_path": "/cities/us/charlestown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2614820",
          "name": "Charlotte",
          "country_code": "US",
          "slug": "charlotte-mi",
          "canonical_path": "/cities/us/charlotte-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3712000",
          "name": "Charlotte",
          "country_code": "US",
          "slug": "charlotte-nc",
          "canonical_path": "/cities/us/charlotte-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5114968",
          "name": "Charlottesville",
          "country_code": "US",
          "slug": "charlottesville",
          "canonical_path": "/cities/us/charlottesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4932823",
          "name": "Charlton",
          "country_code": "US",
          "slug": "charlton",
          "canonical_path": "/cities/us/charlton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5336017",
          "name": "Charter Oak",
          "country_code": "US",
          "slug": "charter-oak",
          "canonical_path": "/cities/us/charter-oak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2710972",
          "name": "Chaska",
          "country_code": "US",
          "slug": "chaska",
          "canonical_path": "/cities/us/chaska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1712684",
          "name": "Chatham",
          "country_code": "US",
          "slug": "chatham",
          "canonical_path": "/cities/us/chatham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3412100",
          "name": "Chatham borough",
          "country_code": "US",
          "slug": "chatham-borough",
          "canonical_path": "/cities/us/chatham-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1315508",
          "name": "Chatsworth",
          "country_code": "US",
          "slug": "chatsworth",
          "canonical_path": "/cities/us/chatsworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4714000",
          "name": "Chattanooga",
          "country_code": "US",
          "slug": "chattanooga",
          "canonical_path": "/cities/us/chattanooga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4801895",
          "name": "Cheat Lake",
          "country_code": "US",
          "slug": "cheat-lake",
          "canonical_path": "/cities/us/cheat-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5112375",
          "name": "Cheektowaga",
          "country_code": "US",
          "slug": "cheektowaga",
          "canonical_path": "/cities/us/cheektowaga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5311475",
          "name": "Chehalis",
          "country_code": "US",
          "slug": "chehalis",
          "canonical_path": "/cities/us/chehalis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4932869",
          "name": "Chelmsford",
          "country_code": "US",
          "slug": "chelmsford",
          "canonical_path": "/cities/us/chelmsford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0114104",
          "name": "Chelsea",
          "country_code": "US",
          "slug": "chelsea-al",
          "canonical_path": "/cities/us/chelsea-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2513205",
          "name": "Chelsea",
          "country_code": "US",
          "slug": "chelsea-ma",
          "canonical_path": "/cities/us/chelsea-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2615020",
          "name": "Chelsea",
          "country_code": "US",
          "slug": "chelsea-mi",
          "canonical_path": "/cities/us/chelsea-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5311825",
          "name": "Cheney",
          "country_code": "US",
          "slug": "cheney",
          "canonical_path": "/cities/us/cheney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4574434",
          "name": "Cheraw",
          "country_code": "US",
          "slug": "cheraw",
          "canonical_path": "/cities/us/cheraw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1913080",
          "name": "Cherokee",
          "country_code": "US",
          "slug": "cherokee",
          "canonical_path": "/cities/us/cherokee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8480048",
          "name": "Cherry Creek",
          "country_code": "US",
          "slug": "cherry-creek",
          "canonical_path": "/cities/us/cherry-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501198",
          "name": "Cherry Hill",
          "country_code": "US",
          "slug": "cherry-hill-nj-007",
          "canonical_path": "/cities/us/cherry-hill-nj-007/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4752136",
          "name": "Cherry Hill",
          "country_code": "US",
          "slug": "cherry-hill-va-153",
          "canonical_path": "/cities/us/cherry-hill-va-153/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501204",
          "name": "Cherry Hill Mall",
          "country_code": "US",
          "slug": "cherry-hill-mall",
          "canonical_path": "/cities/us/cherry-hill-mall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0813845",
          "name": "Cherry Hills Village",
          "country_code": "US",
          "slug": "cherry-hills-village",
          "canonical_path": "/cities/us/cherry-hills-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5336185",
          "name": "Cherry Valley",
          "country_code": "US",
          "slug": "cherry-valley",
          "canonical_path": "/cities/us/cherry-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5336190",
          "name": "Cherryland",
          "country_code": "US",
          "slug": "cherryland",
          "canonical_path": "/cities/us/cherryland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3712340",
          "name": "Cherryville",
          "country_code": "US",
          "slug": "cherryville",
          "canonical_path": "/cities/us/cherryville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5116000",
          "name": "Chesapeake",
          "country_code": "US",
          "slug": "chesapeake",
          "canonical_path": "/cities/us/chesapeake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2415925",
          "name": "Chesapeake Beach",
          "country_code": "US",
          "slug": "chesapeake-beach",
          "canonical_path": "/cities/us/chesapeake-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4351228",
          "name": "Chesapeake Ranch Estates",
          "country_code": "US",
          "slug": "chesapeake-ranch-estates",
          "canonical_path": "/cities/us/chesapeake-ranch-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258110",
          "name": "Chesapeake Ranch Estates-Drum Point",
          "country_code": "US",
          "slug": "chesapeake-ranch-estates-drum-point",
          "canonical_path": "/cities/us/chesapeake-ranch-estates-drum-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5283837",
          "name": "Cheshire",
          "country_code": "US",
          "slug": "cheshire",
          "canonical_path": "/cities/us/cheshire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257805",
          "name": "Cheshire Village",
          "country_code": "US",
          "slug": "cheshire-village",
          "canonical_path": "/cities/us/cheshire-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4752229",
          "name": "Chester",
          "country_code": "US",
          "slug": "chester",
          "canonical_path": "/cities/us/chester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5084518",
          "name": "Chester",
          "country_code": "US",
          "slug": "chester-nh-015",
          "canonical_path": "/cities/us/chester-nh-015/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1713139",
          "name": "Chester",
          "country_code": "US",
          "slug": "chester-il",
          "canonical_path": "/cities/us/chester-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4213208",
          "name": "Chester",
          "country_code": "US",
          "slug": "chester-pa",
          "canonical_path": "/cities/us/chester-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4514095",
          "name": "Chester",
          "country_code": "US",
          "slug": "chester-sc",
          "canonical_path": "/cities/us/chester-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2913600",
          "name": "Chesterfield",
          "country_code": "US",
          "slug": "chesterfield",
          "canonical_path": "/cities/us/chesterfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1812412",
          "name": "Chesterton",
          "country_code": "US",
          "slug": "chesterton",
          "canonical_path": "/cities/us/chesterton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2416225",
          "name": "Chestertown",
          "country_code": "US",
          "slug": "chestertown",
          "canonical_path": "/cities/us/chestertown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4932957",
          "name": "Chestnut Hill",
          "country_code": "US",
          "slug": "chestnut-hill",
          "canonical_path": "/cities/us/chestnut-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3615400",
          "name": "Chestnut Ridge",
          "country_code": "US",
          "slug": "chestnut-ridge",
          "canonical_path": "/cities/us/chestnut-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4150727",
          "name": "Cheval",
          "country_code": "US",
          "slug": "cheval",
          "canonical_path": "/cities/us/cheval/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2416550",
          "name": "Cheverly",
          "country_code": "US",
          "slug": "cheverly",
          "canonical_path": "/cities/us/cheverly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3914128",
          "name": "Cheviot",
          "country_code": "US",
          "slug": "cheviot",
          "canonical_path": "/cities/us/cheviot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4138011",
          "name": "Chevy Chase",
          "country_code": "US",
          "slug": "chevy-chase",
          "canonical_path": "/cities/us/chevy-chase/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4351335",
          "name": "Chevy Chase",
          "country_code": "US",
          "slug": "chevy-chase-md-031",
          "canonical_path": "/cities/us/chevy-chase-md-031/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5613900",
          "name": "Cheyenne",
          "country_code": "US",
          "slug": "cheyenne",
          "canonical_path": "/cities/us/cheyenne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1714000",
          "name": "Chicago",
          "country_code": "US",
          "slug": "chicago",
          "canonical_path": "/cities/us/chicago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1714026",
          "name": "Chicago Heights",
          "country_code": "US",
          "slug": "chicago-heights",
          "canonical_path": "/cities/us/chicago-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1714065",
          "name": "Chicago Ridge",
          "country_code": "US",
          "slug": "chicago-ridge",
          "canonical_path": "/cities/us/chicago-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0114392",
          "name": "Chickasaw",
          "country_code": "US",
          "slug": "chickasaw",
          "canonical_path": "/cities/us/chickasaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4013950",
          "name": "Chickasha",
          "country_code": "US",
          "slug": "chickasha",
          "canonical_path": "/cities/us/chickasha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0613014",
          "name": "Chico",
          "country_code": "US",
          "slug": "chico",
          "canonical_path": "/cities/us/chico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2513660",
          "name": "Chicopee",
          "country_code": "US",
          "slug": "chicopee",
          "canonical_path": "/cities/us/chicopee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4055045",
          "name": "Childersburg",
          "country_code": "US",
          "slug": "childersburg",
          "canonical_path": "/cities/us/childersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4814668",
          "name": "Childress",
          "country_code": "US",
          "slug": "childress",
          "canonical_path": "/cities/us/childress/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1714117",
          "name": "Chillicothe",
          "country_code": "US",
          "slug": "chillicothe-il",
          "canonical_path": "/cities/us/chillicothe-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2913690",
          "name": "Chillicothe",
          "country_code": "US",
          "slug": "chillicothe-mo",
          "canonical_path": "/cities/us/chillicothe-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3914184",
          "name": "Chillicothe",
          "country_code": "US",
          "slug": "chillicothe-oh",
          "canonical_path": "/cities/us/chillicothe-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4351383",
          "name": "Chillum",
          "country_code": "US",
          "slug": "chillum",
          "canonical_path": "/cities/us/chillum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0613210",
          "name": "Chino",
          "country_code": "US",
          "slug": "chino",
          "canonical_path": "/cities/us/chino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0613214",
          "name": "Chino Hills",
          "country_code": "US",
          "slug": "chino-hills",
          "canonical_path": "/cities/us/chino-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0412840",
          "name": "Chino Valley",
          "country_code": "US",
          "slug": "chino-valley",
          "canonical_path": "/cities/us/chino-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5514575",
          "name": "Chippewa Falls",
          "country_code": "US",
          "slug": "chippewa-falls",
          "canonical_path": "/cities/us/chippewa-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2711350",
          "name": "Chisago City",
          "country_code": "US",
          "slug": "chisago-city",
          "canonical_path": "/cities/us/chisago-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4014200",
          "name": "Choctaw",
          "country_code": "US",
          "slug": "choctaw",
          "canonical_path": "/cities/us/choctaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0613294",
          "name": "Chowchilla",
          "country_code": "US",
          "slug": "chowchilla",
          "canonical_path": "/cities/us/chowchilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4613501",
          "name": "Christiana",
          "country_code": "US",
          "slug": "christiana",
          "canonical_path": "/cities/us/christiana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5116608",
          "name": "Christiansburg",
          "country_code": "US",
          "slug": "christiansburg",
          "canonical_path": "/cities/us/christiansburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1614680",
          "name": "Chubbuck",
          "country_code": "US",
          "slug": "chubbuck",
          "canonical_path": "/cities/us/chubbuck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0613392",
          "name": "Chula Vista",
          "country_code": "US",
          "slug": "chula-vista",
          "canonical_path": "/cities/us/chula-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4714980",
          "name": "Church Hill",
          "country_code": "US",
          "slug": "church-hill",
          "canonical_path": "/cities/us/church-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4814920",
          "name": "Cibolo",
          "country_code": "US",
          "slug": "cibolo",
          "canonical_path": "/cities/us/cibolo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1714351",
          "name": "Cicero",
          "country_code": "US",
          "slug": "cicero-il",
          "canonical_path": "/cities/us/cicero-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1812628",
          "name": "Cicero",
          "country_code": "US",
          "slug": "cicero-in",
          "canonical_path": "/cities/us/cicero-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3915000",
          "name": "Cincinnati",
          "country_code": "US",
          "slug": "cincinnati",
          "canonical_path": "/cities/us/cincinnati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4681485",
          "name": "Cinco Ranch",
          "country_code": "US",
          "slug": "cinco-ranch",
          "canonical_path": "/cities/us/cinco-ranch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3915070",
          "name": "Circleville",
          "country_code": "US",
          "slug": "circleville",
          "canonical_path": "/cities/us/circleville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5337551",
          "name": "Citrus",
          "country_code": "US",
          "slug": "citrus",
          "canonical_path": "/cities/us/citrus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0613588",
          "name": "Citrus Heights",
          "country_code": "US",
          "slug": "citrus-heights",
          "canonical_path": "/cities/us/citrus-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4151153",
          "name": "Citrus Hills",
          "country_code": "US",
          "slug": "citrus-hills",
          "canonical_path": "/cities/us/citrus-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4151157",
          "name": "Citrus Park",
          "country_code": "US",
          "slug": "citrus-park",
          "canonical_path": "/cities/us/citrus-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4151162",
          "name": "Citrus Ridge",
          "country_code": "US",
          "slug": "citrus-ridge",
          "canonical_path": "/cities/us/citrus-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4151163",
          "name": "Citrus Springs",
          "country_code": "US",
          "slug": "citrus-springs",
          "canonical_path": "/cities/us/citrus-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7174365",
          "name": "City of Sammamish",
          "country_code": "US",
          "slug": "city-of-sammamish",
          "canonical_path": "/cities/us/city-of-sammamish/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4320107",
          "name": "Claiborne",
          "country_code": "US",
          "slug": "claiborne",
          "canonical_path": "/cities/us/claiborne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4213704",
          "name": "Clairton",
          "country_code": "US",
          "slug": "clairton",
          "canonical_path": "/cities/us/clairton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0115136",
          "name": "Clanton",
          "country_code": "US",
          "slug": "clanton",
          "canonical_path": "/cities/us/clanton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0613756",
          "name": "Claremont",
          "country_code": "US",
          "slug": "claremont-ca",
          "canonical_path": "/cities/us/claremont-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3312900",
          "name": "Claremont",
          "country_code": "US",
          "slug": "claremont-nh",
          "canonical_path": "/cities/us/claremont-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4014700",
          "name": "Claremore",
          "country_code": "US",
          "slug": "claremore",
          "canonical_path": "/cities/us/claremore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1714572",
          "name": "Clarendon Hills",
          "country_code": "US",
          "slug": "clarendon-hills",
          "canonical_path": "/cities/us/clarendon-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1913575",
          "name": "Clarinda",
          "country_code": "US",
          "slug": "clarinda",
          "canonical_path": "/cities/us/clarinda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5184422",
          "name": "Clarion",
          "country_code": "US",
          "slug": "clarion",
          "canonical_path": "/cities/us/clarion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4213880",
          "name": "Clarks Summit borough",
          "country_code": "US",
          "slug": "clarks-summit-borough",
          "canonical_path": "/cities/us/clarks-summit-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5415628",
          "name": "Clarksburg",
          "country_code": "US",
          "slug": "clarksburg",
          "canonical_path": "/cities/us/clarksburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2813820",
          "name": "Clarksdale",
          "country_code": "US",
          "slug": "clarksdale",
          "canonical_path": "/cities/us/clarksdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1316544",
          "name": "Clarkston",
          "country_code": "US",
          "slug": "clarkston-ga",
          "canonical_path": "/cities/us/clarkston-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5312630",
          "name": "Clarkston",
          "country_code": "US",
          "slug": "clarkston-wa",
          "canonical_path": "/cities/us/clarkston-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260679",
          "name": "Clarkston Heights-Vineland",
          "country_code": "US",
          "slug": "clarkston-heights-vineland",
          "canonical_path": "/cities/us/clarkston-heights-vineland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0514140",
          "name": "Clarksville",
          "country_code": "US",
          "slug": "clarksville-ar",
          "canonical_path": "/cities/us/clarksville-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1812934",
          "name": "Clarksville",
          "country_code": "US",
          "slug": "clarksville-in",
          "canonical_path": "/cities/us/clarksville-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4715160",
          "name": "Clarksville",
          "country_code": "US",
          "slug": "clarksville-tn",
          "canonical_path": "/cities/us/clarksville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2616160",
          "name": "Clawson",
          "country_code": "US",
          "slug": "clawson",
          "canonical_path": "/cities/us/clawson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0115256",
          "name": "Clay",
          "country_code": "US",
          "slug": "clay",
          "canonical_path": "/cities/us/clay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4141974",
          "name": "Claymont",
          "country_code": "US",
          "slug": "claymont",
          "canonical_path": "/cities/us/claymont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501265",
          "name": "Clayton",
          "country_code": "US",
          "slug": "clayton",
          "canonical_path": "/cities/us/clayton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0613882",
          "name": "Clayton",
          "country_code": "US",
          "slug": "clayton-ca",
          "canonical_path": "/cities/us/clayton-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2914572",
          "name": "Clayton",
          "country_code": "US",
          "slug": "clayton-mo",
          "canonical_path": "/cities/us/clayton-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3712860",
          "name": "Clayton",
          "country_code": "US",
          "slug": "clayton-nc",
          "canonical_path": "/cities/us/clayton-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3915644",
          "name": "Clayton",
          "country_code": "US",
          "slug": "clayton-oh",
          "canonical_path": "/cities/us/clayton-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3413360",
          "name": "Clayton borough",
          "country_code": "US",
          "slug": "clayton-borough",
          "canonical_path": "/cities/us/clayton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1914025",
          "name": "Clear Lake",
          "country_code": "US",
          "slug": "clear-lake",
          "canonical_path": "/cities/us/clear-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4913850",
          "name": "Clearfield",
          "country_code": "US",
          "slug": "clearfield",
          "canonical_path": "/cities/us/clearfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4214064",
          "name": "Clearfield borough",
          "country_code": "US",
          "slug": "clearfield-borough",
          "canonical_path": "/cities/us/clearfield-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0613945",
          "name": "Clearlake",
          "country_code": "US",
          "slug": "clearlake",
          "canonical_path": "/cities/us/clearlake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1212875",
          "name": "Clearwater",
          "country_code": "US",
          "slug": "clearwater",
          "canonical_path": "/cities/us/clearwater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4815364",
          "name": "Cleburne",
          "country_code": "US",
          "slug": "cleburne",
          "canonical_path": "/cities/us/cleburne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3413420",
          "name": "Clementon borough",
          "country_code": "US",
          "slug": "clementon-borough",
          "canonical_path": "/cities/us/clementon-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3712960",
          "name": "Clemmons",
          "country_code": "US",
          "slug": "clemmons",
          "canonical_path": "/cities/us/clemmons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4514950",
          "name": "Clemson",
          "country_code": "US",
          "slug": "clemson",
          "canonical_path": "/cities/us/clemson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1212925",
          "name": "Clermont",
          "country_code": "US",
          "slug": "clermont",
          "canonical_path": "/cities/us/clermont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2814260",
          "name": "Cleveland",
          "country_code": "US",
          "slug": "cleveland-ms",
          "canonical_path": "/cities/us/cleveland-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3916000",
          "name": "Cleveland",
          "country_code": "US",
          "slug": "cleveland-oh",
          "canonical_path": "/cities/us/cleveland-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4715400",
          "name": "Cleveland",
          "country_code": "US",
          "slug": "cleveland-tn",
          "canonical_path": "/cities/us/cleveland-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4815436",
          "name": "Cleveland",
          "country_code": "US",
          "slug": "cleveland-tx",
          "canonical_path": "/cities/us/cleveland-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3916014",
          "name": "Cleveland Heights",
          "country_code": "US",
          "slug": "cleveland-heights",
          "canonical_path": "/cities/us/cleveland-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4138070",
          "name": "Cleveland Park",
          "country_code": "US",
          "slug": "cleveland-park",
          "canonical_path": "/cities/us/cleveland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1213000",
          "name": "Clewiston",
          "country_code": "US",
          "slug": "clewiston",
          "canonical_path": "/cities/us/clewiston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5096686",
          "name": "Cliffside Park",
          "country_code": "US",
          "slug": "cliffside-park",
          "canonical_path": "/cities/us/cliffside-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3413570",
          "name": "Cliffside Park borough",
          "country_code": "US",
          "slug": "cliffside-park-borough",
          "canonical_path": "/cities/us/cliffside-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3413690",
          "name": "Clifton",
          "country_code": "US",
          "slug": "clifton",
          "canonical_path": "/cities/us/clifton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4557228",
          "name": "Clifton Heights",
          "country_code": "US",
          "slug": "clifton-heights",
          "canonical_path": "/cities/us/clifton-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4214264",
          "name": "Clifton Heights borough",
          "country_code": "US",
          "slug": "clifton-heights-borough",
          "canonical_path": "/cities/us/clifton-heights-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4351871",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton",
          "canonical_path": "/cities/us/clinton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4933426",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-ma-027",
          "canonical_path": "/cities/us/clinton-ma-027/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1715001",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-il",
          "canonical_path": "/cities/us/clinton-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1914430",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-ia",
          "canonical_path": "/cities/us/clinton-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2814420",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-ms",
          "canonical_path": "/cities/us/clinton-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2914986",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-mo",
          "canonical_path": "/cities/us/clinton-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3713240",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-nc",
          "canonical_path": "/cities/us/clinton-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4015400",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-ok",
          "canonical_path": "/cities/us/clinton-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4515295",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-sc",
          "canonical_path": "/cities/us/clinton-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4715580",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-tn",
          "canonical_path": "/cities/us/clinton-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4914290",
          "name": "Clinton",
          "country_code": "US",
          "slug": "clinton-ut",
          "canonical_path": "/cities/us/clinton-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4989133",
          "name": "Clinton Township",
          "country_code": "US",
          "slug": "clinton-township",
          "canonical_path": "/cities/us/clinton-township/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1914520",
          "name": "Clive",
          "country_code": "US",
          "slug": "clive",
          "canonical_path": "/cities/us/clive/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2712160",
          "name": "Cloquet",
          "country_code": "US",
          "slug": "cloquet",
          "canonical_path": "/cities/us/cloquet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5096742",
          "name": "Closter",
          "country_code": "US",
          "slug": "closter",
          "canonical_path": "/cities/us/closter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3413810",
          "name": "Closter borough",
          "country_code": "US",
          "slug": "closter-borough",
          "canonical_path": "/cities/us/closter-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4515355",
          "name": "Clover",
          "country_code": "US",
          "slug": "clover",
          "canonical_path": "/cities/us/clover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0614190",
          "name": "Cloverdale",
          "country_code": "US",
          "slug": "cloverdale",
          "canonical_path": "/cities/us/cloverdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4351851",
          "name": "Cloverly",
          "country_code": "US",
          "slug": "cloverly",
          "canonical_path": "/cities/us/cloverly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0614218",
          "name": "Clovis",
          "country_code": "US",
          "slug": "clovis-ca",
          "canonical_path": "/cities/us/clovis-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3516420",
          "name": "Clovis",
          "country_code": "US",
          "slug": "clovis-nm",
          "canonical_path": "/cities/us/clovis-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4815652",
          "name": "Clute",
          "country_code": "US",
          "slug": "clute",
          "canonical_path": "/cities/us/clute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3916308",
          "name": "Clyde",
          "country_code": "US",
          "slug": "clyde",
          "canonical_path": "/cities/us/clyde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0614260",
          "name": "Coachella",
          "country_code": "US",
          "slug": "coachella",
          "canonical_path": "/cities/us/coachella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1715170",
          "name": "Coal City",
          "country_code": "US",
          "slug": "coal-city",
          "canonical_path": "/cities/us/coal-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0614274",
          "name": "Coalinga",
          "country_code": "US",
          "slug": "coalinga",
          "canonical_path": "/cities/us/coalinga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4214712",
          "name": "Coatesville",
          "country_code": "US",
          "slug": "coatesville",
          "canonical_path": "/cities/us/coatesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4933493",
          "name": "Cochituate",
          "country_code": "US",
          "slug": "cochituate",
          "canonical_path": "/cities/us/cochituate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4351887",
          "name": "Cockeysville",
          "country_code": "US",
          "slug": "cockeysville",
          "canonical_path": "/cities/us/cockeysville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1213150",
          "name": "Cocoa",
          "country_code": "US",
          "slug": "cocoa",
          "canonical_path": "/cities/us/cocoa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1213175",
          "name": "Cocoa Beach",
          "country_code": "US",
          "slug": "cocoa-beach",
          "canonical_path": "/cities/us/cocoa-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260057",
          "name": "Cocoa West",
          "country_code": "US",
          "slug": "cocoa-west",
          "canonical_path": "/cities/us/cocoa-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1213275",
          "name": "Coconut Creek",
          "country_code": "US",
          "slug": "coconut-creek",
          "canonical_path": "/cities/us/coconut-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5615760",
          "name": "Cody",
          "country_code": "US",
          "slug": "cody",
          "canonical_path": "/cities/us/cody/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1616750",
          "name": "Coeur d'Alene",
          "country_code": "US",
          "slug": "coeur-d-alene",
          "canonical_path": "/cities/us/coeur-d-alene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2014600",
          "name": "Coffeyville",
          "country_code": "US",
          "slug": "coffeyville",
          "canonical_path": "/cities/us/coffeyville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4933533",
          "name": "Cohasset",
          "country_code": "US",
          "slug": "cohasset",
          "canonical_path": "/cities/us/cohasset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3616749",
          "name": "Cohoes",
          "country_code": "US",
          "slug": "cohoes",
          "canonical_path": "/cities/us/cohoes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2014650",
          "name": "Colby",
          "country_code": "US",
          "slug": "colby",
          "canonical_path": "/cities/us/colby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5235024",
          "name": "Colchester",
          "country_code": "US",
          "slug": "colchester",
          "canonical_path": "/cities/us/colchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2116372",
          "name": "Cold Spring",
          "country_code": "US",
          "slug": "cold-spring",
          "canonical_path": "/cities/us/cold-spring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5113223",
          "name": "Cold Spring Harbor",
          "country_code": "US",
          "slug": "cold-spring-harbor",
          "canonical_path": "/cities/us/cold-spring-harbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5502015",
          "name": "Cold Springs",
          "country_code": "US",
          "slug": "cold-springs",
          "canonical_path": "/cities/us/cold-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2617020",
          "name": "Coldwater",
          "country_code": "US",
          "slug": "coldwater",
          "canonical_path": "/cities/us/coldwater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4351951",
          "name": "Colesville",
          "country_code": "US",
          "slug": "colesville",
          "canonical_path": "/cities/us/colesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5859699",
          "name": "College",
          "country_code": "US",
          "slug": "college",
          "canonical_path": "/cities/us/college/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1317776",
          "name": "College Park",
          "country_code": "US",
          "slug": "college-park-ga",
          "canonical_path": "/cities/us/college-park-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2418750",
          "name": "College Park",
          "country_code": "US",
          "slug": "college-park-md",
          "canonical_path": "/cities/us/college-park-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5313855",
          "name": "College Place",
          "country_code": "US",
          "slug": "college-place",
          "canonical_path": "/cities/us/college-place/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4815976",
          "name": "College Station",
          "country_code": "US",
          "slug": "college-station",
          "canonical_path": "/cities/us/college-station/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4716300",
          "name": "Collegedale",
          "country_code": "US",
          "slug": "collegedale",
          "canonical_path": "/cities/us/collegedale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5184966",
          "name": "Collegeville",
          "country_code": "US",
          "slug": "collegeville",
          "canonical_path": "/cities/us/collegeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4215192",
          "name": "Collegeville borough",
          "country_code": "US",
          "slug": "collegeville-borough",
          "canonical_path": "/cities/us/collegeville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4815988",
          "name": "Colleyville",
          "country_code": "US",
          "slug": "colleyville",
          "canonical_path": "/cities/us/colleyville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4716420",
          "name": "Collierville",
          "country_code": "US",
          "slug": "collierville",
          "canonical_path": "/cities/us/collierville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4557287",
          "name": "Collingdale",
          "country_code": "US",
          "slug": "collingdale",
          "canonical_path": "/cities/us/collingdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4215232",
          "name": "Collingdale borough",
          "country_code": "US",
          "slug": "collingdale-borough",
          "canonical_path": "/cities/us/collingdale-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501306",
          "name": "Collingswood",
          "country_code": "US",
          "slug": "collingswood",
          "canonical_path": "/cities/us/collingswood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3414260",
          "name": "Collingswood borough",
          "country_code": "US",
          "slug": "collingswood-borough",
          "canonical_path": "/cities/us/collingswood-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4753635",
          "name": "Collinsville",
          "country_code": "US",
          "slug": "collinsville",
          "canonical_path": "/cities/us/collinsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1715599",
          "name": "Collinsville",
          "country_code": "US",
          "slug": "collinsville-il",
          "canonical_path": "/cities/us/collinsville-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4016350",
          "name": "Collinsville",
          "country_code": "US",
          "slug": "collinsville-ok",
          "canonical_path": "/cities/us/collinsville-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4888432",
          "name": "Colona",
          "country_code": "US",
          "slug": "colona",
          "canonical_path": "/cities/us/colona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5096798",
          "name": "Colonia",
          "country_code": "US",
          "slug": "colonia",
          "canonical_path": "/cities/us/colonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5118448",
          "name": "Colonial Heights",
          "country_code": "US",
          "slug": "colonial-heights",
          "canonical_path": "/cities/us/colonial-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5185006",
          "name": "Colonial Park",
          "country_code": "US",
          "slug": "colonial-park",
          "canonical_path": "/cities/us/colonial-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3617332",
          "name": "Colonie",
          "country_code": "US",
          "slug": "colonie",
          "canonical_path": "/cities/us/colonie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0816000",
          "name": "Colorado Springs",
          "country_code": "US",
          "slug": "colorado-springs",
          "canonical_path": "/cities/us/colorado-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526887",
          "name": "Colorado Triangle",
          "country_code": "US",
          "slug": "colorado-triangle",
          "canonical_path": "/cities/us/colorado-triangle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0614890",
          "name": "Colton",
          "country_code": "US",
          "slug": "colton",
          "canonical_path": "/cities/us/colton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4352053",
          "name": "Columbia",
          "country_code": "US",
          "slug": "columbia",
          "canonical_path": "/cities/us/columbia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5185029",
          "name": "Columbia",
          "country_code": "US",
          "slug": "columbia-pa-071",
          "canonical_path": "/cities/us/columbia-pa-071/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1715833",
          "name": "Columbia",
          "country_code": "US",
          "slug": "columbia-il",
          "canonical_path": "/cities/us/columbia-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2815340",
          "name": "Columbia",
          "country_code": "US",
          "slug": "columbia-ms",
          "canonical_path": "/cities/us/columbia-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2915670",
          "name": "Columbia",
          "country_code": "US",
          "slug": "columbia-mo",
          "canonical_path": "/cities/us/columbia-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4516000",
          "name": "Columbia",
          "country_code": "US",
          "slug": "columbia-sc",
          "canonical_path": "/cities/us/columbia-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4716540",
          "name": "Columbia",
          "country_code": "US",
          "slug": "columbia-tn",
          "canonical_path": "/cities/us/columbia-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4215384",
          "name": "Columbia borough",
          "country_code": "US",
          "slug": "columbia-borough",
          "canonical_path": "/cities/us/columbia-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1814716",
          "name": "Columbia City",
          "country_code": "US",
          "slug": "columbia-city",
          "canonical_path": "/cities/us/columbia-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3016600",
          "name": "Columbia Falls",
          "country_code": "US",
          "slug": "columbia-falls",
          "canonical_path": "/cities/us/columbia-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2712700",
          "name": "Columbia Heights",
          "country_code": "US",
          "slug": "columbia-heights",
          "canonical_path": "/cities/us/columbia-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0116768",
          "name": "Columbiana",
          "country_code": "US",
          "slug": "columbiana-al",
          "canonical_path": "/cities/us/columbiana-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3917036",
          "name": "Columbiana",
          "country_code": "US",
          "slug": "columbiana-oh",
          "canonical_path": "/cities/us/columbiana-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5417657",
          "name": "Columbine",
          "country_code": "US",
          "slug": "columbine",
          "canonical_path": "/cities/us/columbine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1319000",
          "name": "Columbus",
          "country_code": "US",
          "slug": "columbus-ga",
          "canonical_path": "/cities/us/columbus-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1814734",
          "name": "Columbus",
          "country_code": "US",
          "slug": "columbus-in",
          "canonical_path": "/cities/us/columbus-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2815380",
          "name": "Columbus",
          "country_code": "US",
          "slug": "columbus-ms",
          "canonical_path": "/cities/us/columbus-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3110110",
          "name": "Columbus",
          "country_code": "US",
          "slug": "columbus-ne",
          "canonical_path": "/cities/us/columbus-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3918000",
          "name": "Columbus",
          "country_code": "US",
          "slug": "columbus-oh",
          "canonical_path": "/cities/us/columbus-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5516450",
          "name": "Columbus",
          "country_code": "US",
          "slug": "columbus-wi",
          "canonical_path": "/cities/us/columbus-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0614946",
          "name": "Colusa",
          "country_code": "US",
          "slug": "colusa",
          "canonical_path": "/cities/us/colusa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5314170",
          "name": "Colville",
          "country_code": "US",
          "slug": "colville",
          "canonical_path": "/cities/us/colville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4151607",
          "name": "Combee Settlement",
          "country_code": "US",
          "slug": "combee-settlement",
          "canonical_path": "/cities/us/combee-settlement/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5113412",
          "name": "Commack",
          "country_code": "US",
          "slug": "commack",
          "canonical_path": "/cities/us/commack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0614974",
          "name": "Commerce",
          "country_code": "US",
          "slug": "commerce-ca",
          "canonical_path": "/cities/us/commerce-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1319112",
          "name": "Commerce",
          "country_code": "US",
          "slug": "commerce-ga",
          "canonical_path": "/cities/us/commerce-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4816240",
          "name": "Commerce",
          "country_code": "US",
          "slug": "commerce-tx",
          "canonical_path": "/cities/us/commerce-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0816495",
          "name": "Commerce City",
          "country_code": "US",
          "slug": "commerce-city",
          "canonical_path": "/cities/us/commerce-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0615044",
          "name": "Compton",
          "country_code": "US",
          "slug": "compton",
          "canonical_path": "/cities/us/compton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259593",
          "name": "Comstock Northwest",
          "country_code": "US",
          "slug": "comstock-northwest",
          "canonical_path": "/cities/us/comstock-northwest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4989432",
          "name": "Comstock Park",
          "country_code": "US",
          "slug": "comstock-park",
          "canonical_path": "/cities/us/comstock-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4382072",
          "name": "Concord",
          "country_code": "US",
          "slug": "concord",
          "canonical_path": "/cities/us/concord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4933743",
          "name": "Concord",
          "country_code": "US",
          "slug": "concord-ma-017",
          "canonical_path": "/cities/us/concord-ma-017/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0616000",
          "name": "Concord",
          "country_code": "US",
          "slug": "concord-ca",
          "canonical_path": "/cities/us/concord-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3314200",
          "name": "Concord",
          "country_code": "US",
          "slug": "concord-nh",
          "canonical_path": "/cities/us/concord-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3714100",
          "name": "Concord",
          "country_code": "US",
          "slug": "concord-nc",
          "canonical_path": "/cities/us/concord-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4269872",
          "name": "Concordia",
          "country_code": "US",
          "slug": "concordia",
          "canonical_path": "/cities/us/concordia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5113500",
          "name": "Congers",
          "country_code": "US",
          "slug": "congers",
          "canonical_path": "/cities/us/congers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4138120",
          "name": "Congress Heights",
          "country_code": "US",
          "slug": "congress-heights",
          "canonical_path": "/cities/us/congress-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4189157",
          "name": "Conley",
          "country_code": "US",
          "slug": "conley",
          "canonical_path": "/cities/us/conley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3918350",
          "name": "Conneaut",
          "country_code": "US",
          "slug": "conneaut",
          "canonical_path": "/cities/us/conneaut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5314485",
          "name": "Connell",
          "country_code": "US",
          "slug": "connell",
          "canonical_path": "/cities/us/connell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4215776",
          "name": "Connellsville",
          "country_code": "US",
          "slug": "connellsville",
          "canonical_path": "/cities/us/connellsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1814932",
          "name": "Connersville",
          "country_code": "US",
          "slug": "connersville",
          "canonical_path": "/cities/us/connersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257357",
          "name": "Conning Towers-Nautilus Park",
          "country_code": "US",
          "slug": "conning-towers-nautilus-park",
          "canonical_path": "/cities/us/conning-towers-nautilus-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3714340",
          "name": "Conover",
          "country_code": "US",
          "slug": "conover",
          "canonical_path": "/cities/us/conover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4816432",
          "name": "Conroe",
          "country_code": "US",
          "slug": "conroe",
          "canonical_path": "/cities/us/conroe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5185267",
          "name": "Conshohocken",
          "country_code": "US",
          "slug": "conshohocken",
          "canonical_path": "/cities/us/conshohocken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4215848",
          "name": "Conshohocken borough",
          "country_code": "US",
          "slug": "conshohocken-borough",
          "canonical_path": "/cities/us/conshohocken-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8097232",
          "name": "Contra Costa Centre",
          "country_code": "US",
          "slug": "contra-costa-centre",
          "canonical_path": "/cities/us/contra-costa-centre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4816468",
          "name": "Converse",
          "country_code": "US",
          "slug": "converse",
          "canonical_path": "/cities/us/converse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4151745",
          "name": "Conway",
          "country_code": "US",
          "slug": "conway",
          "canonical_path": "/cities/us/conway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0515190",
          "name": "Conway",
          "country_code": "US",
          "slug": "conway-ar",
          "canonical_path": "/cities/us/conway-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4516405",
          "name": "Conway",
          "country_code": "US",
          "slug": "conway-sc",
          "canonical_path": "/cities/us/conway-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1319336",
          "name": "Conyers",
          "country_code": "US",
          "slug": "conyers",
          "canonical_path": "/cities/us/conyers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4716920",
          "name": "Cookeville",
          "country_code": "US",
          "slug": "cookeville",
          "canonical_path": "/cities/us/cookeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0415500",
          "name": "Coolidge",
          "country_code": "US",
          "slug": "coolidge",
          "canonical_path": "/cities/us/coolidge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4933885",
          "name": "Coolidge Corner",
          "country_code": "US",
          "slug": "coolidge-corner",
          "canonical_path": "/cities/us/coolidge-corner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2713114",
          "name": "Coon Rapids",
          "country_code": "US",
          "slug": "coon-rapids",
          "canonical_path": "/cities/us/coon-rapids/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1214125",
          "name": "Cooper City",
          "country_code": "US",
          "slug": "cooper-city",
          "canonical_path": "/cities/us/cooper-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4115250",
          "name": "Coos Bay",
          "country_code": "US",
          "slug": "coos-bay",
          "canonical_path": "/cities/us/coos-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5113683",
          "name": "Copiague",
          "country_code": "US",
          "slug": "copiague",
          "canonical_path": "/cities/us/copiague/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4816612",
          "name": "Coppell",
          "country_code": "US",
          "slug": "coppell",
          "canonical_path": "/cities/us/coppell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4816624",
          "name": "Copperas Cove",
          "country_code": "US",
          "slug": "copperas-cove",
          "canonical_path": "/cities/us/copperas-cove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1214250",
          "name": "Coral Gables",
          "country_code": "US",
          "slug": "coral-gables",
          "canonical_path": "/cities/us/coral-gables/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4352247",
          "name": "Coral Hills",
          "country_code": "US",
          "slug": "coral-hills",
          "canonical_path": "/cities/us/coral-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1214400",
          "name": "Coral Springs",
          "country_code": "US",
          "slug": "coral-springs",
          "canonical_path": "/cities/us/coral-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4151921",
          "name": "Coral Terrace",
          "country_code": "US",
          "slug": "coral-terrace",
          "canonical_path": "/cities/us/coral-terrace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1916230",
          "name": "Coralville",
          "country_code": "US",
          "slug": "coralville",
          "canonical_path": "/cities/us/coralville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5113694",
          "name": "Coram",
          "country_code": "US",
          "slug": "coram",
          "canonical_path": "/cities/us/coram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5185408",
          "name": "Coraopolis",
          "country_code": "US",
          "slug": "coraopolis",
          "canonical_path": "/cities/us/coraopolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4216144",
          "name": "Coraopolis borough",
          "country_code": "US",
          "slug": "coraopolis-borough",
          "canonical_path": "/cities/us/coraopolis-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2117362",
          "name": "Corbin",
          "country_code": "US",
          "slug": "corbin",
          "canonical_path": "/cities/us/corbin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0616224",
          "name": "Corcoran",
          "country_code": "US",
          "slug": "corcoran-ca",
          "canonical_path": "/cities/us/corcoran-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2713168",
          "name": "Corcoran",
          "country_code": "US",
          "slug": "corcoran-mn",
          "canonical_path": "/cities/us/corcoran-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1319616",
          "name": "Cordele",
          "country_code": "US",
          "slug": "cordele",
          "canonical_path": "/cities/us/cordele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2815700",
          "name": "Corinth",
          "country_code": "US",
          "slug": "corinth-ms",
          "canonical_path": "/cities/us/corinth-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4816696",
          "name": "Corinth",
          "country_code": "US",
          "slug": "corinth-tx",
          "canonical_path": "/cities/us/corinth-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1319728",
          "name": "Cornelia",
          "country_code": "US",
          "slug": "cornelia",
          "canonical_path": "/cities/us/cornelia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3714700",
          "name": "Cornelius",
          "country_code": "US",
          "slug": "cornelius-nc",
          "canonical_path": "/cities/us/cornelius-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4115550",
          "name": "Cornelius",
          "country_code": "US",
          "slug": "cornelius-or",
          "canonical_path": "/cities/us/cornelius-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0616322",
          "name": "Corning",
          "country_code": "US",
          "slug": "corning-ca",
          "canonical_path": "/cities/us/corning-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3618256",
          "name": "Corning",
          "country_code": "US",
          "slug": "corning-ny",
          "canonical_path": "/cities/us/corning-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0616350",
          "name": "Corona",
          "country_code": "US",
          "slug": "corona",
          "canonical_path": "/cities/us/corona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5290925",
          "name": "Corona de Tucson",
          "country_code": "US",
          "slug": "corona-de-tucson",
          "canonical_path": "/cities/us/corona-de-tucson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0616378",
          "name": "Coronado",
          "country_code": "US",
          "slug": "coronado",
          "canonical_path": "/cities/us/coronado/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4817000",
          "name": "Corpus Christi",
          "country_code": "US",
          "slug": "corpus-christi",
          "canonical_path": "/cities/us/corpus-christi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3517960",
          "name": "Corrales",
          "country_code": "US",
          "slug": "corrales",
          "canonical_path": "/cities/us/corrales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4216296",
          "name": "Corry",
          "country_code": "US",
          "slug": "corry",
          "canonical_path": "/cities/us/corry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4817060",
          "name": "Corsicana",
          "country_code": "US",
          "slug": "corsicana",
          "canonical_path": "/cities/us/corsicana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0616462",
          "name": "Corte Madera",
          "country_code": "US",
          "slug": "corte-madera",
          "canonical_path": "/cities/us/corte-madera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0817375",
          "name": "Cortez",
          "country_code": "US",
          "slug": "cortez",
          "canonical_path": "/cities/us/cortez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3618388",
          "name": "Cortland",
          "country_code": "US",
          "slug": "cortland-ny",
          "canonical_path": "/cities/us/cortland-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3918812",
          "name": "Cortland",
          "country_code": "US",
          "slug": "cortland-oh",
          "canonical_path": "/cities/us/cortland-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4115800",
          "name": "Corvallis",
          "country_code": "US",
          "slug": "corvallis",
          "canonical_path": "/cities/us/corvallis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4831969",
          "name": "Cos Cob",
          "country_code": "US",
          "slug": "cos-cob",
          "canonical_path": "/cities/us/cos-cob/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3918868",
          "name": "Coshocton",
          "country_code": "US",
          "slug": "coshocton",
          "canonical_path": "/cities/us/coshocton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0616532",
          "name": "Costa Mesa",
          "country_code": "US",
          "slug": "costa-mesa",
          "canonical_path": "/cities/us/costa-mesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0616560",
          "name": "Cotati",
          "country_code": "US",
          "slug": "cotati",
          "canonical_path": "/cities/us/cotati/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5339873",
          "name": "Coto De Caza",
          "country_code": "US",
          "slug": "coto-de-caza",
          "canonical_path": "/cities/us/coto-de-caza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2713456",
          "name": "Cottage Grove",
          "country_code": "US",
          "slug": "cottage-grove-mn",
          "canonical_path": "/cities/us/cottage-grove-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4115950",
          "name": "Cottage Grove",
          "country_code": "US",
          "slug": "cottage-grove-or",
          "canonical_path": "/cities/us/cottage-grove-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5517175",
          "name": "Cottage Grove",
          "country_code": "US",
          "slug": "cottage-grove-wi",
          "canonical_path": "/cities/us/cottage-grove-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5790971",
          "name": "Cottage Lake",
          "country_code": "US",
          "slug": "cottage-lake",
          "canonical_path": "/cities/us/cottage-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2916678",
          "name": "Cottleville",
          "country_code": "US",
          "slug": "cottleville",
          "canonical_path": "/cities/us/cottleville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0416410",
          "name": "Cottonwood",
          "country_code": "US",
          "slug": "cottonwood",
          "canonical_path": "/cities/us/cottonwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4916270",
          "name": "Cottonwood Heights",
          "country_code": "US",
          "slug": "cottonwood-heights",
          "canonical_path": "/cities/us/cottonwood-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1916860",
          "name": "Council Bluffs",
          "country_code": "US",
          "slug": "council-bluffs",
          "canonical_path": "/cities/us/council-bluffs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4152093",
          "name": "Country Club",
          "country_code": "US",
          "slug": "country-club",
          "canonical_path": "/cities/us/country-club/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4189613",
          "name": "Country Club Estates",
          "country_code": "US",
          "slug": "country-club-estates-ga-127",
          "canonical_path": "/cities/us/country-club-estates-ga-127/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1716691",
          "name": "Country Club Hills",
          "country_code": "US",
          "slug": "country-club-hills",
          "canonical_path": "/cities/us/country-club-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5791127",
          "name": "Country Homes",
          "country_code": "US",
          "slug": "country-homes",
          "canonical_path": "/cities/us/country-homes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4152064",
          "name": "Country Walk",
          "country_code": "US",
          "slug": "country-walk",
          "canonical_path": "/cities/us/country-walk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1716873",
          "name": "Countryside",
          "country_code": "US",
          "slug": "countryside",
          "canonical_path": "/cities/us/countryside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4509506",
          "name": "Covedale",
          "country_code": "US",
          "slug": "covedale",
          "canonical_path": "/cities/us/covedale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5221637",
          "name": "Coventry",
          "country_code": "US",
          "slug": "coventry",
          "canonical_path": "/cities/us/coventry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0616742",
          "name": "Covina",
          "country_code": "US",
          "slug": "covina",
          "canonical_path": "/cities/us/covina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1320064",
          "name": "Covington",
          "country_code": "US",
          "slug": "covington-ga",
          "canonical_path": "/cities/us/covington-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2117848",
          "name": "Covington",
          "country_code": "US",
          "slug": "covington-ky",
          "canonical_path": "/cities/us/covington-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2218125",
          "name": "Covington",
          "country_code": "US",
          "slug": "covington-la",
          "canonical_path": "/cities/us/covington-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4717680",
          "name": "Covington",
          "country_code": "US",
          "slug": "covington-tn",
          "canonical_path": "/cities/us/covington-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5119728",
          "name": "Covington",
          "country_code": "US",
          "slug": "covington-va",
          "canonical_path": "/cities/us/covington-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5315290",
          "name": "Covington",
          "country_code": "US",
          "slug": "covington-wa",
          "canonical_path": "/cities/us/covington-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4017800",
          "name": "Coweta",
          "country_code": "US",
          "slug": "coweta",
          "canonical_path": "/cities/us/coweta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5185721",
          "name": "Crafton",
          "country_code": "US",
          "slug": "crafton",
          "canonical_path": "/cities/us/crafton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4216848",
          "name": "Crafton borough",
          "country_code": "US",
          "slug": "crafton-borough",
          "canonical_path": "/cities/us/crafton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0817760",
          "name": "Craig",
          "country_code": "US",
          "slug": "craig",
          "canonical_path": "/cities/us/craig/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3715260",
          "name": "Cramerton",
          "country_code": "US",
          "slug": "cramerton",
          "canonical_path": "/cities/us/cramerton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8643098",
          "name": "Cranberry Township",
          "country_code": "US",
          "slug": "cranberry-township",
          "canonical_path": "/cities/us/cranberry-township/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4817504",
          "name": "Crandall",
          "country_code": "US",
          "slug": "crandall",
          "canonical_path": "/cities/us/crandall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097017",
          "name": "Cranford",
          "country_code": "US",
          "slug": "cranford",
          "canonical_path": "/cities/us/cranford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4419180",
          "name": "Cranston",
          "country_code": "US",
          "slug": "cranston",
          "canonical_path": "/cities/us/cranston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1815742",
          "name": "Crawfordsville",
          "country_code": "US",
          "slug": "crawfordsville",
          "canonical_path": "/cities/us/crawfordsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2713708",
          "name": "Credit River",
          "country_code": "US",
          "slug": "credit-river",
          "canonical_path": "/cities/us/credit-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3715320",
          "name": "Creedmoor",
          "country_code": "US",
          "slug": "creedmoor",
          "canonical_path": "/cities/us/creedmoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0617022",
          "name": "Crescent City",
          "country_code": "US",
          "slug": "crescent-city",
          "canonical_path": "/cities/us/crescent-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097035",
          "name": "Cresskill",
          "country_code": "US",
          "slug": "cresskill",
          "canonical_path": "/cities/us/cresskill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3415820",
          "name": "Cresskill borough",
          "country_code": "US",
          "slug": "cresskill-borough",
          "canonical_path": "/cities/us/cresskill-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1717458",
          "name": "Crest Hill",
          "country_code": "US",
          "slug": "crest-hill",
          "canonical_path": "/cities/us/crest-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5340674",
          "name": "Crestline",
          "country_code": "US",
          "slug": "crestline",
          "canonical_path": "/cities/us/crestline/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1917265",
          "name": "Creston",
          "country_code": "US",
          "slug": "creston",
          "canonical_path": "/cities/us/creston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1215475",
          "name": "Crestview",
          "country_code": "US",
          "slug": "crestview",
          "canonical_path": "/cities/us/crestview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1717497",
          "name": "Crestwood",
          "country_code": "US",
          "slug": "crestwood-il",
          "canonical_path": "/cities/us/crestwood-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2118496",
          "name": "Crestwood",
          "country_code": "US",
          "slug": "crestwood-ky",
          "canonical_path": "/cities/us/crestwood-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2917218",
          "name": "Crestwood",
          "country_code": "US",
          "slug": "crestwood-mo",
          "canonical_path": "/cities/us/crestwood-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501393",
          "name": "Crestwood Village",
          "country_code": "US",
          "slug": "crestwood-village",
          "canonical_path": "/cities/us/crestwood-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4116950",
          "name": "Creswell",
          "country_code": "US",
          "slug": "creswell",
          "canonical_path": "/cities/us/creswell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1717523",
          "name": "Crete",
          "country_code": "US",
          "slug": "crete-il",
          "canonical_path": "/cities/us/crete-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3111370",
          "name": "Crete",
          "country_code": "US",
          "slug": "crete-ne",
          "canonical_path": "/cities/us/crete-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2917272",
          "name": "Creve Coeur",
          "country_code": "US",
          "slug": "creve-coeur",
          "canonical_path": "/cities/us/creve-coeur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4817744",
          "name": "Crockett",
          "country_code": "US",
          "slug": "crockett",
          "canonical_path": "/cities/us/crockett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4352539",
          "name": "Crofton",
          "country_code": "US",
          "slug": "crofton",
          "canonical_path": "/cities/us/crofton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4832121",
          "name": "Cromwell",
          "country_code": "US",
          "slug": "cromwell",
          "canonical_path": "/cities/us/cromwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2713870",
          "name": "Crookston",
          "country_code": "US",
          "slug": "crookston",
          "canonical_path": "/cities/us/crookston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4803372",
          "name": "Cross Lanes",
          "country_code": "US",
          "slug": "cross-lanes",
          "canonical_path": "/cities/us/cross-lanes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4107198",
          "name": "Crossett",
          "country_code": "US",
          "slug": "crossett",
          "canonical_path": "/cities/us/crossett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4718540",
          "name": "Crossville",
          "country_code": "US",
          "slug": "crossville",
          "canonical_path": "/cities/us/crossville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3619213",
          "name": "Croton-on-Hudson",
          "country_code": "US",
          "slug": "croton-on-hudson",
          "canonical_path": "/cities/us/croton-on-hudson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2218650",
          "name": "Crowley",
          "country_code": "US",
          "slug": "crowley-la",
          "canonical_path": "/cities/us/crowley-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4817960",
          "name": "Crowley",
          "country_code": "US",
          "slug": "crowley-tx",
          "canonical_path": "/cities/us/crowley-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1816138",
          "name": "Crown Point",
          "country_code": "US",
          "slug": "crown-point",
          "canonical_path": "/cities/us/crown-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5186053",
          "name": "Croydon",
          "country_code": "US",
          "slug": "croydon",
          "canonical_path": "/cities/us/croydon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4754901",
          "name": "Crozet",
          "country_code": "US",
          "slug": "crozet",
          "canonical_path": "/cities/us/crozet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2714158",
          "name": "Crystal",
          "country_code": "US",
          "slug": "crystal",
          "canonical_path": "/cities/us/crystal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4818020",
          "name": "Crystal City",
          "country_code": "US",
          "slug": "crystal-city",
          "canonical_path": "/cities/us/crystal-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1717887",
          "name": "Crystal Lake",
          "country_code": "US",
          "slug": "crystal-lake",
          "canonical_path": "/cities/us/crystal-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0617498",
          "name": "Cudahy",
          "country_code": "US",
          "slug": "cudahy-ca",
          "canonical_path": "/cities/us/cudahy-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5517975",
          "name": "Cudahy",
          "country_code": "US",
          "slug": "cudahy-wi",
          "canonical_path": "/cities/us/cudahy-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4818092",
          "name": "Cuero",
          "country_code": "US",
          "slug": "cuero",
          "canonical_path": "/cities/us/cuero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0118976",
          "name": "Cullman",
          "country_code": "US",
          "slug": "cullman",
          "canonical_path": "/cities/us/cullman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4462701",
          "name": "Cullowhee",
          "country_code": "US",
          "slug": "cullowhee",
          "canonical_path": "/cities/us/cullowhee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5120752",
          "name": "Culpeper",
          "country_code": "US",
          "slug": "culpeper",
          "canonical_path": "/cities/us/culpeper/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0617568",
          "name": "Culver City",
          "country_code": "US",
          "slug": "culver-city",
          "canonical_path": "/cities/us/culver-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5221703",
          "name": "Cumberland",
          "country_code": "US",
          "slug": "cumberland",
          "canonical_path": "/cities/us/cumberland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1816336",
          "name": "Cumberland",
          "country_code": "US",
          "slug": "cumberland-in",
          "canonical_path": "/cities/us/cumberland-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2421325",
          "name": "Cumberland",
          "country_code": "US",
          "slug": "cumberland-md",
          "canonical_path": "/cities/us/cumberland-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5221705",
          "name": "Cumberland Hill",
          "country_code": "US",
          "slug": "cumberland-hill",
          "canonical_path": "/cities/us/cumberland-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1320932",
          "name": "Cumming",
          "country_code": "US",
          "slug": "cumming",
          "canonical_path": "/cities/us/cumming/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0617610",
          "name": "Cupertino",
          "country_code": "US",
          "slug": "cupertino",
          "canonical_path": "/cities/us/cupertino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4018850",
          "name": "Cushing",
          "country_code": "US",
          "slug": "cushing",
          "canonical_path": "/cities/us/cushing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1321017",
          "name": "Cusseta-Chattahoochee County unified government",
          "country_code": "US",
          "slug": "cusseta-chattahoochee-county-unified-government",
          "canonical_path": "/cities/us/cusseta-chattahoochee-county-unified-government/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4321399",
          "name": "Cut Off",
          "country_code": "US",
          "slug": "cut-off",
          "canonical_path": "/cities/us/cut-off/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1215968",
          "name": "Cutler Bay",
          "country_code": "US",
          "slug": "cutler-bay",
          "canonical_path": "/cities/us/cutler-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4990242",
          "name": "Cutlerville",
          "country_code": "US",
          "slug": "cutlerville",
          "canonical_path": "/cities/us/cutlerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3919778",
          "name": "Cuyahoga Falls",
          "country_code": "US",
          "slug": "cuyahoga-falls",
          "canonical_path": "/cities/us/cuyahoga-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2119432",
          "name": "Cynthiana",
          "country_code": "US",
          "slug": "cynthiana",
          "canonical_path": "/cities/us/cynthiana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0617750",
          "name": "Cypress",
          "country_code": "US",
          "slug": "cypress",
          "canonical_path": "/cities/us/cypress/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4152628",
          "name": "Cypress Gardens",
          "country_code": "US",
          "slug": "cypress-gardens",
          "canonical_path": "/cities/us/cypress-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4152639",
          "name": "Cypress Lake",
          "country_code": "US",
          "slug": "cypress-lake",
          "canonical_path": "/cities/us/cypress-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2819180",
          "name": "D'Iberville",
          "country_code": "US",
          "slug": "d-iberville",
          "canonical_path": "/cities/us/d-iberville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0819080",
          "name": "Dacono",
          "country_code": "US",
          "slug": "dacono",
          "canonical_path": "/cities/us/dacono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1321184",
          "name": "Dacula",
          "country_code": "US",
          "slug": "dacula",
          "canonical_path": "/cities/us/dacula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216125",
          "name": "Dade City",
          "country_code": "US",
          "slug": "dade-city",
          "canonical_path": "/cities/us/dade-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1321240",
          "name": "Dahlonega",
          "country_code": "US",
          "slug": "dahlonega",
          "canonical_path": "/cities/us/dahlonega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13607888",
          "name": "Dakota Ridge",
          "country_code": "US",
          "slug": "dakota-ridge",
          "canonical_path": "/cities/us/dakota-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4755158",
          "name": "Dale City",
          "country_code": "US",
          "slug": "dale-city",
          "canonical_path": "/cities/us/dale-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4058061",
          "name": "Daleville",
          "country_code": "US",
          "slug": "daleville",
          "canonical_path": "/cities/us/daleville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4818524",
          "name": "Dalhart",
          "country_code": "US",
          "slug": "dalhart",
          "canonical_path": "/cities/us/dalhart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1321324",
          "name": "Dallas",
          "country_code": "US",
          "slug": "dallas-ga",
          "canonical_path": "/cities/us/dallas-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3716180",
          "name": "Dallas",
          "country_code": "US",
          "slug": "dallas-nc",
          "canonical_path": "/cities/us/dallas-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4117700",
          "name": "Dallas",
          "country_code": "US",
          "slug": "dallas-or",
          "canonical_path": "/cities/us/dallas-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4819000",
          "name": "Dallas",
          "country_code": "US",
          "slug": "dallas-tx",
          "canonical_path": "/cities/us/dallas-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1321380",
          "name": "Dalton",
          "country_code": "US",
          "slug": "dalton",
          "canonical_path": "/cities/us/dalton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0617918",
          "name": "Daly City",
          "country_code": "US",
          "slug": "daly-city",
          "canonical_path": "/cities/us/daly-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4352728",
          "name": "Damascus",
          "country_code": "US",
          "slug": "damascus",
          "canonical_path": "/cities/us/damascus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5722088",
          "name": "Damascus",
          "country_code": "US",
          "slug": "damascus-or-005",
          "canonical_path": "/cities/us/damascus-or-005/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0617946",
          "name": "Dana Point",
          "country_code": "US",
          "slug": "dana-point",
          "canonical_path": "/cities/us/dana-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0918430",
          "name": "Danbury",
          "country_code": "US",
          "slug": "danbury",
          "canonical_path": "/cities/us/danbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216335",
          "name": "Dania Beach",
          "country_code": "US",
          "slug": "dania-beach",
          "canonical_path": "/cities/us/dania-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4934500",
          "name": "Danvers",
          "country_code": "US",
          "slug": "danvers",
          "canonical_path": "/cities/us/danvers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0617988",
          "name": "Danville",
          "country_code": "US",
          "slug": "danville-ca",
          "canonical_path": "/cities/us/danville-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1718563",
          "name": "Danville",
          "country_code": "US",
          "slug": "danville-il",
          "canonical_path": "/cities/us/danville-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1816804",
          "name": "Danville",
          "country_code": "US",
          "slug": "danville-in",
          "canonical_path": "/cities/us/danville-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2119882",
          "name": "Danville",
          "country_code": "US",
          "slug": "danville-ky",
          "canonical_path": "/cities/us/danville-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5121344",
          "name": "Danville",
          "country_code": "US",
          "slug": "danville-va",
          "canonical_path": "/cities/us/danville-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0119648",
          "name": "Daphne",
          "country_code": "US",
          "slug": "daphne",
          "canonical_path": "/cities/us/daphne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4557485",
          "name": "Darby",
          "country_code": "US",
          "slug": "darby",
          "canonical_path": "/cities/us/darby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4218152",
          "name": "Darby borough",
          "country_code": "US",
          "slug": "darby-borough",
          "canonical_path": "/cities/us/darby-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2918253",
          "name": "Dardenne Prairie",
          "country_code": "US",
          "slug": "dardenne-prairie",
          "canonical_path": "/cities/us/dardenne-prairie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1718628",
          "name": "Darien",
          "country_code": "US",
          "slug": "darien",
          "canonical_path": "/cities/us/darien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4518565",
          "name": "Darlington",
          "country_code": "US",
          "slug": "darlington",
          "canonical_path": "/cities/us/darlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4352795",
          "name": "Darnestown",
          "country_code": "US",
          "slug": "darnestown",
          "canonical_path": "/cities/us/darnestown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216450",
          "name": "Davenport",
          "country_code": "US",
          "slug": "davenport-fl",
          "canonical_path": "/cities/us/davenport-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1919000",
          "name": "Davenport",
          "country_code": "US",
          "slug": "davenport-ia",
          "canonical_path": "/cities/us/davenport-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3716400",
          "name": "Davidson",
          "country_code": "US",
          "slug": "davidson",
          "canonical_path": "/cities/us/davidson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216475",
          "name": "Davie",
          "country_code": "US",
          "slug": "davie",
          "canonical_path": "/cities/us/davie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0618100",
          "name": "Davis",
          "country_code": "US",
          "slug": "davis",
          "canonical_path": "/cities/us/davis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2619880",
          "name": "Davison",
          "country_code": "US",
          "slug": "davison",
          "canonical_path": "/cities/us/davison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097152",
          "name": "Dayton",
          "country_code": "US",
          "slug": "dayton",
          "canonical_path": "/cities/us/dayton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5502732",
          "name": "Dayton",
          "country_code": "US",
          "slug": "dayton-nv-019",
          "canonical_path": "/cities/us/dayton-nv-019/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2120350",
          "name": "Dayton",
          "country_code": "US",
          "slug": "dayton-ky",
          "canonical_path": "/cities/us/dayton-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2715022",
          "name": "Dayton",
          "country_code": "US",
          "slug": "dayton-mn",
          "canonical_path": "/cities/us/dayton-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3921000",
          "name": "Dayton",
          "country_code": "US",
          "slug": "dayton-oh",
          "canonical_path": "/cities/us/dayton-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4719700",
          "name": "Dayton",
          "country_code": "US",
          "slug": "dayton-tn",
          "canonical_path": "/cities/us/dayton-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4819432",
          "name": "Dayton",
          "country_code": "US",
          "slug": "dayton-tx",
          "canonical_path": "/cities/us/dayton-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216525",
          "name": "Daytona Beach",
          "country_code": "US",
          "slug": "daytona-beach",
          "canonical_path": "/cities/us/daytona-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216550",
          "name": "Daytona Beach Shores",
          "country_code": "US",
          "slug": "daytona-beach-shores",
          "canonical_path": "/cities/us/daytona-beach-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5519775",
          "name": "De Pere",
          "country_code": "US",
          "slug": "de-pere",
          "canonical_path": "/cities/us/de-pere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0518490",
          "name": "De Queen",
          "country_code": "US",
          "slug": "de-queen",
          "canonical_path": "/cities/us/de-queen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2017850",
          "name": "De Soto",
          "country_code": "US",
          "slug": "de-soto-ks",
          "canonical_path": "/cities/us/de-soto-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2919252",
          "name": "De Soto",
          "country_code": "US",
          "slug": "de-soto-mo",
          "canonical_path": "/cities/us/de-soto-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4138231",
          "name": "Deanwood",
          "country_code": "US",
          "slug": "deanwood",
          "canonical_path": "/cities/us/deanwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2621000",
          "name": "Dearborn",
          "country_code": "US",
          "slug": "dearborn",
          "canonical_path": "/cities/us/dearborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2621020",
          "name": "Dearborn Heights",
          "country_code": "US",
          "slug": "dearborn-heights",
          "canonical_path": "/cities/us/dearborn-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216675",
          "name": "DeBary",
          "country_code": "US",
          "slug": "debary",
          "canonical_path": "/cities/us/debary/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0120104",
          "name": "Decatur",
          "country_code": "US",
          "slug": "decatur-al",
          "canonical_path": "/cities/us/decatur-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1322052",
          "name": "Decatur",
          "country_code": "US",
          "slug": "decatur-ga",
          "canonical_path": "/cities/us/decatur-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1718823",
          "name": "Decatur",
          "country_code": "US",
          "slug": "decatur-il",
          "canonical_path": "/cities/us/decatur-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1817074",
          "name": "Decatur",
          "country_code": "US",
          "slug": "decatur-in",
          "canonical_path": "/cities/us/decatur-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4819528",
          "name": "Decatur",
          "country_code": "US",
          "slug": "decatur-tx",
          "canonical_path": "/cities/us/decatur-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1919405",
          "name": "Decorah",
          "country_code": "US",
          "slug": "decorah",
          "canonical_path": "/cities/us/decorah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4934664",
          "name": "Dedham",
          "country_code": "US",
          "slug": "dedham",
          "canonical_path": "/cities/us/dedham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5114731",
          "name": "Deer Park",
          "country_code": "US",
          "slug": "deer-park",
          "canonical_path": "/cities/us/deer-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3921266",
          "name": "Deer Park",
          "country_code": "US",
          "slug": "deer-park-oh",
          "canonical_path": "/cities/us/deer-park-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4819624",
          "name": "Deer Park",
          "country_code": "US",
          "slug": "deer-park-tx",
          "canonical_path": "/cities/us/deer-park-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5317320",
          "name": "Deer Park",
          "country_code": "US",
          "slug": "deer-park-wa",
          "canonical_path": "/cities/us/deer-park-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1718992",
          "name": "Deerfield",
          "country_code": "US",
          "slug": "deerfield",
          "canonical_path": "/cities/us/deerfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216725",
          "name": "Deerfield Beach",
          "country_code": "US",
          "slug": "deerfield-beach",
          "canonical_path": "/cities/us/deerfield-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3921308",
          "name": "Defiance",
          "country_code": "US",
          "slug": "defiance",
          "canonical_path": "/cities/us/defiance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5519350",
          "name": "DeForest",
          "country_code": "US",
          "slug": "deforest",
          "canonical_path": "/cities/us/deforest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216800",
          "name": "DeFuniak Springs",
          "country_code": "US",
          "slug": "defuniak-springs",
          "canonical_path": "/cities/us/defuniak-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1719161",
          "name": "DeKalb",
          "country_code": "US",
          "slug": "dekalb",
          "canonical_path": "/cities/us/dekalb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5342425",
          "name": "Del Aire",
          "country_code": "US",
          "slug": "del-aire",
          "canonical_path": "/cities/us/del-aire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4019900",
          "name": "Del City",
          "country_code": "US",
          "slug": "del-city",
          "canonical_path": "/cities/us/del-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4819792",
          "name": "Del Rio",
          "country_code": "US",
          "slug": "del-rio",
          "canonical_path": "/cities/us/del-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5519400",
          "name": "Delafield",
          "country_code": "US",
          "slug": "delafield",
          "canonical_path": "/cities/us/delafield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1216875",
          "name": "DeLand",
          "country_code": "US",
          "slug": "deland",
          "canonical_path": "/cities/us/deland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0618394",
          "name": "Delano",
          "country_code": "US",
          "slug": "delano-ca",
          "canonical_path": "/cities/us/delano-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2715454",
          "name": "Delano",
          "country_code": "US",
          "slug": "delano-mn",
          "canonical_path": "/cities/us/delano-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5519450",
          "name": "Delavan",
          "country_code": "US",
          "slug": "delavan",
          "canonical_path": "/cities/us/delavan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3921434",
          "name": "Delaware",
          "country_code": "US",
          "slug": "delaware",
          "canonical_path": "/cities/us/delaware/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5342522",
          "name": "Delhi",
          "country_code": "US",
          "slug": "delhi",
          "canonical_path": "/cities/us/delhi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4050006",
          "name": "Delhi Hills",
          "country_code": "US",
          "slug": "delhi-hills",
          "canonical_path": "/cities/us/delhi-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4383713",
          "name": "Dellwood",
          "country_code": "US",
          "slug": "dellwood",
          "canonical_path": "/cities/us/dellwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3921602",
          "name": "Delphos",
          "country_code": "US",
          "slug": "delphos",
          "canonical_path": "/cities/us/delphos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1217100",
          "name": "Delray Beach",
          "country_code": "US",
          "slug": "delray-beach",
          "canonical_path": "/cities/us/delray-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0819850",
          "name": "Delta",
          "country_code": "US",
          "slug": "delta",
          "canonical_path": "/cities/us/delta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1217200",
          "name": "Deltona",
          "country_code": "US",
          "slug": "deltona",
          "canonical_path": "/cities/us/deltona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097224",
          "name": "Demarest",
          "country_code": "US",
          "slug": "demarest",
          "canonical_path": "/cities/us/demarest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3520270",
          "name": "Deming",
          "country_code": "US",
          "slug": "deming",
          "canonical_path": "/cities/us/deming/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0120296",
          "name": "Demopolis",
          "country_code": "US",
          "slug": "demopolis",
          "canonical_path": "/cities/us/demopolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2220435",
          "name": "Denham Springs",
          "country_code": "US",
          "slug": "denham-springs",
          "canonical_path": "/cities/us/denham-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1919945",
          "name": "Denison",
          "country_code": "US",
          "slug": "denison-ia",
          "canonical_path": "/cities/us/denison-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4819900",
          "name": "Denison",
          "country_code": "US",
          "slug": "denison-tx",
          "canonical_path": "/cities/us/denison-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4510062",
          "name": "Dent",
          "country_code": "US",
          "slug": "dent",
          "canonical_path": "/cities/us/dent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2422725",
          "name": "Denton",
          "country_code": "US",
          "slug": "denton-md",
          "canonical_path": "/cities/us/denton-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4819972",
          "name": "Denton",
          "country_code": "US",
          "slug": "denton-tx",
          "canonical_path": "/cities/us/denton-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4576573",
          "name": "Dentsville",
          "country_code": "US",
          "slug": "dentsville",
          "canonical_path": "/cities/us/dentsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0820000",
          "name": "Denver",
          "country_code": "US",
          "slug": "denver",
          "canonical_path": "/cities/us/denver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3620313",
          "name": "Depew",
          "country_code": "US",
          "slug": "depew",
          "canonical_path": "/cities/us/depew/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5419431",
          "name": "Derby",
          "country_code": "US",
          "slug": "derby",
          "canonical_path": "/cities/us/derby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0919480",
          "name": "Derby",
          "country_code": "US",
          "slug": "derby-ct",
          "canonical_path": "/cities/us/derby-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2017800",
          "name": "Derby",
          "country_code": "US",
          "slug": "derby-ks",
          "canonical_path": "/cities/us/derby-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2220610",
          "name": "DeRidder",
          "country_code": "US",
          "slug": "deridder",
          "canonical_path": "/cities/us/deridder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5085374",
          "name": "Derry",
          "country_code": "US",
          "slug": "derry",
          "canonical_path": "/cities/us/derry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5085382",
          "name": "Derry Village",
          "country_code": "US",
          "slug": "derry-village",
          "canonical_path": "/cities/us/derry-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1921000",
          "name": "Des Moines",
          "country_code": "US",
          "slug": "des-moines-ia",
          "canonical_path": "/cities/us/des-moines-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5317635",
          "name": "Des Moines",
          "country_code": "US",
          "slug": "des-moines-wa",
          "canonical_path": "/cities/us/des-moines-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2919270",
          "name": "Des Peres",
          "country_code": "US",
          "slug": "des-peres",
          "canonical_path": "/cities/us/des-peres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1719642",
          "name": "Des Plaines",
          "country_code": "US",
          "slug": "des-plaines",
          "canonical_path": "/cities/us/des-plaines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5722960",
          "name": "Deschutes River Woods",
          "country_code": "US",
          "slug": "deschutes-river-woods",
          "canonical_path": "/cities/us/deschutes-river-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0618996",
          "name": "Desert Hot Springs",
          "country_code": "US",
          "slug": "desert-hot-springs",
          "canonical_path": "/cities/us/desert-hot-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4820092",
          "name": "DeSoto",
          "country_code": "US",
          "slug": "desoto",
          "canonical_path": "/cities/us/desoto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1217325",
          "name": "Destin",
          "country_code": "US",
          "slug": "destin",
          "canonical_path": "/cities/us/destin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4322034",
          "name": "Destrehan",
          "country_code": "US",
          "slug": "destrehan",
          "canonical_path": "/cities/us/destrehan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2622000",
          "name": "Detroit",
          "country_code": "US",
          "slug": "detroit",
          "canonical_path": "/cities/us/detroit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2715832",
          "name": "Detroit Lakes",
          "country_code": "US",
          "slug": "detroit-lakes",
          "canonical_path": "/cities/us/detroit-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3819420",
          "name": "Devils Lake",
          "country_code": "US",
          "slug": "devils-lake",
          "canonical_path": "/cities/us/devils-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1921180",
          "name": "DeWitt",
          "country_code": "US",
          "slug": "dewitt",
          "canonical_path": "/cities/us/dewitt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2919396",
          "name": "Dexter",
          "country_code": "US",
          "slug": "dexter",
          "canonical_path": "/cities/us/dexter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0619192",
          "name": "Diamond Bar",
          "country_code": "US",
          "slug": "diamond-bar",
          "canonical_path": "/cities/us/diamond-bar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5343038",
          "name": "Diamond Springs",
          "country_code": "US",
          "slug": "diamond-springs",
          "canonical_path": "/cities/us/diamond-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2819100",
          "name": "Diamondhead",
          "country_code": "US",
          "slug": "diamondhead",
          "canonical_path": "/cities/us/diamondhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4820308",
          "name": "Diboll",
          "country_code": "US",
          "slug": "diboll",
          "canonical_path": "/cities/us/diboll/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3819620",
          "name": "Dickinson",
          "country_code": "US",
          "slug": "dickinson-nd",
          "canonical_path": "/cities/us/dickinson-nd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4820344",
          "name": "Dickinson",
          "country_code": "US",
          "slug": "dickinson-tx",
          "canonical_path": "/cities/us/dickinson-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4720620",
          "name": "Dickson",
          "country_code": "US",
          "slug": "dickson",
          "canonical_path": "/cities/us/dickson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5186924",
          "name": "Dickson City",
          "country_code": "US",
          "slug": "dickson-city",
          "canonical_path": "/cities/us/dickson-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4219160",
          "name": "Dickson City borough",
          "country_code": "US",
          "slug": "dickson-city-borough",
          "canonical_path": "/cities/us/dickson-city-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4934827",
          "name": "Dighton",
          "country_code": "US",
          "slug": "dighton",
          "canonical_path": "/cities/us/dighton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4519420",
          "name": "Dillon",
          "country_code": "US",
          "slug": "dillon",
          "canonical_path": "/cities/us/dillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0619318",
          "name": "Dinuba",
          "country_code": "US",
          "slug": "dinuba",
          "canonical_path": "/cities/us/dinuba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5343202",
          "name": "Discovery Bay",
          "country_code": "US",
          "slug": "discovery-bay",
          "canonical_path": "/cities/us/discovery-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2423025",
          "name": "District Heights",
          "country_code": "US",
          "slug": "district-heights",
          "canonical_path": "/cities/us/district-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5115107",
          "name": "Dix Hills",
          "country_code": "US",
          "slug": "dix-hills",
          "canonical_path": "/cities/us/dix-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0619402",
          "name": "Dixon",
          "country_code": "US",
          "slug": "dixon-ca",
          "canonical_path": "/cities/us/dixon-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1720162",
          "name": "Dixon",
          "country_code": "US",
          "slug": "dixon-il",
          "canonical_path": "/cities/us/dixon-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3620698",
          "name": "Dobbs Ferry",
          "country_code": "US",
          "slug": "dobbs-ferry",
          "canonical_path": "/cities/us/dobbs-ferry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4191628",
          "name": "Dock Junction",
          "country_code": "US",
          "slug": "dock-junction",
          "canonical_path": "/cities/us/dock-junction/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4153367",
          "name": "Doctor Phillips",
          "country_code": "US",
          "slug": "doctor-phillips",
          "canonical_path": "/cities/us/doctor-phillips/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2018250",
          "name": "Dodge City",
          "country_code": "US",
          "slug": "dodge-city",
          "canonical_path": "/cities/us/dodge-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5520350",
          "name": "Dodgeville",
          "country_code": "US",
          "slug": "dodgeville",
          "canonical_path": "/cities/us/dodgeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4686472",
          "name": "Doffing",
          "country_code": "US",
          "slug": "doffing",
          "canonical_path": "/cities/us/doffing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1720292",
          "name": "Dolton",
          "country_code": "US",
          "slug": "dolton",
          "canonical_path": "/cities/us/dolton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2221240",
          "name": "Donaldsonville",
          "country_code": "US",
          "slug": "donaldsonville",
          "canonical_path": "/cities/us/donaldsonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4820884",
          "name": "Donna",
          "country_code": "US",
          "slug": "donna",
          "canonical_path": "/cities/us/donna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1217935",
          "name": "Doral",
          "country_code": "US",
          "slug": "doral",
          "canonical_path": "/cities/us/doral/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1323536",
          "name": "Doraville",
          "country_code": "US",
          "slug": "doraville",
          "canonical_path": "/cities/us/doraville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5187150",
          "name": "Dormont",
          "country_code": "US",
          "slug": "dormont",
          "canonical_path": "/cities/us/dormont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4219576",
          "name": "Dormont borough",
          "country_code": "US",
          "slug": "dormont-borough",
          "canonical_path": "/cities/us/dormont-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0619612",
          "name": "Dos Palos",
          "country_code": "US",
          "slug": "dos-palos",
          "canonical_path": "/cities/us/dos-palos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0121184",
          "name": "Dothan",
          "country_code": "US",
          "slug": "dothan",
          "canonical_path": "/cities/us/dothan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4934999",
          "name": "Douglas",
          "country_code": "US",
          "slug": "douglas",
          "canonical_path": "/cities/us/douglas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0420050",
          "name": "Douglas",
          "country_code": "US",
          "slug": "douglas-az",
          "canonical_path": "/cities/us/douglas-az/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1323872",
          "name": "Douglas",
          "country_code": "US",
          "slug": "douglas-ga",
          "canonical_path": "/cities/us/douglas-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5621125",
          "name": "Douglas",
          "country_code": "US",
          "slug": "douglas-wy",
          "canonical_path": "/cities/us/douglas-wy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2122204",
          "name": "Douglass Hills",
          "country_code": "US",
          "slug": "douglass-hills",
          "canonical_path": "/cities/us/douglass-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1323900",
          "name": "Douglasville",
          "country_code": "US",
          "slug": "douglasville",
          "canonical_path": "/cities/us/douglasville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7729501",
          "name": "Dove Valley",
          "country_code": "US",
          "slug": "dove-valley",
          "canonical_path": "/cities/us/dove-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1021200",
          "name": "Dover",
          "country_code": "US",
          "slug": "dover-de",
          "canonical_path": "/cities/us/dover-de/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3318820",
          "name": "Dover",
          "country_code": "US",
          "slug": "dover-nh",
          "canonical_path": "/cities/us/dover-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3418070",
          "name": "Dover",
          "country_code": "US",
          "slug": "dover-nj",
          "canonical_path": "/cities/us/dover-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3922456",
          "name": "Dover",
          "country_code": "US",
          "slug": "dover-oh",
          "canonical_path": "/cities/us/dover-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2622880",
          "name": "Dowagiac",
          "country_code": "US",
          "slug": "dowagiac",
          "canonical_path": "/cities/us/dowagiac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1720591",
          "name": "Downers Grove",
          "country_code": "US",
          "slug": "downers-grove",
          "canonical_path": "/cities/us/downers-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0619766",
          "name": "Downey",
          "country_code": "US",
          "slug": "downey",
          "canonical_path": "/cities/us/downey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5187232",
          "name": "Downingtown",
          "country_code": "US",
          "slug": "downingtown",
          "canonical_path": "/cities/us/downingtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4219752",
          "name": "Downingtown borough",
          "country_code": "US",
          "slug": "downingtown-borough",
          "canonical_path": "/cities/us/downingtown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526890",
          "name": "Downtown DC",
          "country_code": "US",
          "slug": "downtown",
          "canonical_path": "/cities/us/downtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5187247",
          "name": "Doylestown",
          "country_code": "US",
          "slug": "doylestown",
          "canonical_path": "/cities/us/doylestown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4219784",
          "name": "Doylestown borough",
          "country_code": "US",
          "slug": "doylestown-borough",
          "canonical_path": "/cities/us/doylestown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4935038",
          "name": "Dracut",
          "country_code": "US",
          "slug": "dracut",
          "canonical_path": "/cities/us/dracut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4756348",
          "name": "Dranesville",
          "country_code": "US",
          "slug": "dranesville",
          "canonical_path": "/cities/us/dranesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4920120",
          "name": "Draper",
          "country_code": "US",
          "slug": "draper",
          "canonical_path": "/cities/us/draper/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5293183",
          "name": "Drexel Heights",
          "country_code": "US",
          "slug": "drexel-heights",
          "canonical_path": "/cities/us/drexel-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4557606",
          "name": "Drexel Hill",
          "country_code": "US",
          "slug": "drexel-hill",
          "canonical_path": "/cities/us/drexel-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4821424",
          "name": "Dripping Springs",
          "country_code": "US",
          "slug": "dripping-springs",
          "canonical_path": "/cities/us/dripping-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4192088",
          "name": "Druid Hills",
          "country_code": "US",
          "slug": "druid-hills",
          "canonical_path": "/cities/us/druid-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4510342",
          "name": "Dry Run",
          "country_code": "US",
          "slug": "dry-run",
          "canonical_path": "/cities/us/dry-run/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1721267",
          "name": "Du Quoin",
          "country_code": "US",
          "slug": "du-quoin",
          "canonical_path": "/cities/us/du-quoin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0619990",
          "name": "Duarte",
          "country_code": "US",
          "slug": "duarte",
          "canonical_path": "/cities/us/duarte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0620018",
          "name": "Dublin",
          "country_code": "US",
          "slug": "dublin-ca",
          "canonical_path": "/cities/us/dublin-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1324376",
          "name": "Dublin",
          "country_code": "US",
          "slug": "dublin-ga",
          "canonical_path": "/cities/us/dublin-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3922694",
          "name": "Dublin",
          "country_code": "US",
          "slug": "dublin-oh",
          "canonical_path": "/cities/us/dublin-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4220136",
          "name": "DuBois",
          "country_code": "US",
          "slug": "dubois",
          "canonical_path": "/cities/us/dubois/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1922395",
          "name": "Dubuque",
          "country_code": "US",
          "slug": "dubuque",
          "canonical_path": "/cities/us/dubuque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1324600",
          "name": "Duluth",
          "country_code": "US",
          "slug": "duluth-ga",
          "canonical_path": "/cities/us/duluth-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2717000",
          "name": "Duluth",
          "country_code": "US",
          "slug": "duluth-mn",
          "canonical_path": "/cities/us/duluth-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4821556",
          "name": "Dumas",
          "country_code": "US",
          "slug": "dumas",
          "canonical_path": "/cities/us/dumas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4756653",
          "name": "Dumbarton",
          "country_code": "US",
          "slug": "dumbarton",
          "canonical_path": "/cities/us/dumbarton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5123760",
          "name": "Dumfries",
          "country_code": "US",
          "slug": "dumfries",
          "canonical_path": "/cities/us/dumfries/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097357",
          "name": "Dumont",
          "country_code": "US",
          "slug": "dumont",
          "canonical_path": "/cities/us/dumont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3418400",
          "name": "Dumont borough",
          "country_code": "US",
          "slug": "dumont-borough",
          "canonical_path": "/cities/us/dumont-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5422564",
          "name": "Dunbar",
          "country_code": "US",
          "slug": "dunbar",
          "canonical_path": "/cities/us/dunbar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4021900",
          "name": "Duncan",
          "country_code": "US",
          "slug": "duncan",
          "canonical_path": "/cities/us/duncan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4821628",
          "name": "Duncanville",
          "country_code": "US",
          "slug": "duncanville",
          "canonical_path": "/cities/us/duncanville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4353765",
          "name": "Dundalk",
          "country_code": "US",
          "slug": "dundalk",
          "canonical_path": "/cities/us/dundalk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1218550",
          "name": "Dundee",
          "country_code": "US",
          "slug": "dundee-fl",
          "canonical_path": "/cities/us/dundee-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2623380",
          "name": "Dundee",
          "country_code": "US",
          "slug": "dundee-mi",
          "canonical_path": "/cities/us/dundee-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1218575",
          "name": "Dunedin",
          "country_code": "US",
          "slug": "dunedin",
          "canonical_path": "/cities/us/dunedin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097349",
          "name": "Dunellen",
          "country_code": "US",
          "slug": "dunellen",
          "canonical_path": "/cities/us/dunellen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3418490",
          "name": "Dunellen borough",
          "country_code": "US",
          "slug": "dunellen-borough",
          "canonical_path": "/cities/us/dunellen-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3621105",
          "name": "Dunkirk",
          "country_code": "US",
          "slug": "dunkirk",
          "canonical_path": "/cities/us/dunkirk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4722000",
          "name": "Dunlap",
          "country_code": "US",
          "slug": "dunlap",
          "canonical_path": "/cities/us/dunlap/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5187542",
          "name": "Dunmore",
          "country_code": "US",
          "slug": "dunmore",
          "canonical_path": "/cities/us/dunmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4220352",
          "name": "Dunmore borough",
          "country_code": "US",
          "slug": "dunmore-borough",
          "canonical_path": "/cities/us/dunmore-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3718320",
          "name": "Dunn",
          "country_code": "US",
          "slug": "dunn",
          "canonical_path": "/cities/us/dunn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4756736",
          "name": "Dunn Loring",
          "country_code": "US",
          "slug": "dunn-loring",
          "canonical_path": "/cities/us/dunn-loring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1324768",
          "name": "Dunwoody",
          "country_code": "US",
          "slug": "dunwoody",
          "canonical_path": "/cities/us/dunwoody/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5318965",
          "name": "DuPont",
          "country_code": "US",
          "slug": "dupont",
          "canonical_path": "/cities/us/dupont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4220432",
          "name": "Duquesne",
          "country_code": "US",
          "slug": "duquesne",
          "canonical_path": "/cities/us/duquesne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0822035",
          "name": "Durango",
          "country_code": "US",
          "slug": "durango",
          "canonical_path": "/cities/us/durango/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4022050",
          "name": "Durant",
          "country_code": "US",
          "slug": "durant",
          "canonical_path": "/cities/us/durant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3719000",
          "name": "Durham",
          "country_code": "US",
          "slug": "durham",
          "canonical_path": "/cities/us/durham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4220512",
          "name": "Duryea borough",
          "country_code": "US",
          "slug": "duryea-borough",
          "canonical_path": "/cities/us/duryea-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5319035",
          "name": "Duvall",
          "country_code": "US",
          "slug": "duvall",
          "canonical_path": "/cities/us/duvall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4935211",
          "name": "Duxbury",
          "country_code": "US",
          "slug": "duxbury",
          "canonical_path": "/cities/us/duxbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1819270",
          "name": "Dyer",
          "country_code": "US",
          "slug": "dyer",
          "canonical_path": "/cities/us/dyer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4722200",
          "name": "Dyersburg",
          "country_code": "US",
          "slug": "dyersburg",
          "canonical_path": "/cities/us/dyersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2717288",
          "name": "Eagan",
          "country_code": "US",
          "slug": "eagan",
          "canonical_path": "/cities/us/eagan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0822200",
          "name": "Eagle",
          "country_code": "US",
          "slug": "eagle-co",
          "canonical_path": "/cities/us/eagle-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1623410",
          "name": "Eagle",
          "country_code": "US",
          "slug": "eagle-id",
          "canonical_path": "/cities/us/eagle-id/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1218875",
          "name": "Eagle Lake",
          "country_code": "US",
          "slug": "eagle-lake",
          "canonical_path": "/cities/us/eagle-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4920810",
          "name": "Eagle Mountain",
          "country_code": "US",
          "slug": "eagle-mountain",
          "canonical_path": "/cities/us/eagle-mountain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4821892",
          "name": "Eagle Pass",
          "country_code": "US",
          "slug": "eagle-pass",
          "canonical_path": "/cities/us/eagle-pass/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4121550",
          "name": "Eagle Point",
          "country_code": "US",
          "slug": "eagle-point",
          "canonical_path": "/cities/us/eagle-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4619893",
          "name": "Eagleton Village",
          "country_code": "US",
          "slug": "eagleton-village",
          "canonical_path": "/cities/us/eagleton-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5344702",
          "name": "Earlimart",
          "country_code": "US",
          "slug": "earlimart",
          "canonical_path": "/cities/us/earlimart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4521985",
          "name": "Easley",
          "country_code": "US",
          "slug": "easley",
          "canonical_path": "/cities/us/easley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1721553",
          "name": "East Alton",
          "country_code": "US",
          "slug": "east-alton",
          "canonical_path": "/cities/us/east-alton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3621589",
          "name": "East Aurora",
          "country_code": "US",
          "slug": "east-aurora",
          "canonical_path": "/cities/us/east-aurora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2717486",
          "name": "East Bethel",
          "country_code": "US",
          "slug": "east-bethel",
          "canonical_path": "/cities/us/east-bethel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4935330",
          "name": "East Bridgewater",
          "country_code": "US",
          "slug": "east-bridgewater",
          "canonical_path": "/cities/us/east-bridgewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1819486",
          "name": "East Chicago",
          "country_code": "US",
          "slug": "east-chicago",
          "canonical_path": "/cities/us/east-chicago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3923380",
          "name": "East Cleveland",
          "country_code": "US",
          "slug": "east-cleveland",
          "canonical_path": "/cities/us/east-cleveland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4109452",
          "name": "East End",
          "country_code": "US",
          "slug": "east-end",
          "canonical_path": "/cities/us/east-end/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4832176",
          "name": "East Falmouth",
          "country_code": "US",
          "slug": "east-falmouth",
          "canonical_path": "/cities/us/east-falmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5115838",
          "name": "East Farmingdale",
          "country_code": "US",
          "slug": "east-farmingdale",
          "canonical_path": "/cities/us/east-farmingdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5344844",
          "name": "East Foothills",
          "country_code": "US",
          "slug": "east-foothills",
          "canonical_path": "/cities/us/east-foothills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315293",
          "name": "East Franklin",
          "country_code": "US",
          "slug": "east-franklin",
          "canonical_path": "/cities/us/east-franklin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5115854",
          "name": "East Garden City",
          "country_code": "US",
          "slug": "east-garden-city",
          "canonical_path": "/cities/us/east-garden-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5115857",
          "name": "East Glenville",
          "country_code": "US",
          "slug": "east-glenville",
          "canonical_path": "/cities/us/east-glenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2717612",
          "name": "East Grand Forks",
          "country_code": "US",
          "slug": "east-grand-forks",
          "canonical_path": "/cities/us/east-grand-forks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2623980",
          "name": "East Grand Rapids",
          "country_code": "US",
          "slug": "east-grand-rapids",
          "canonical_path": "/cities/us/east-grand-rapids/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5221875",
          "name": "East Greenwich",
          "country_code": "US",
          "slug": "east-greenwich",
          "canonical_path": "/cities/us/east-greenwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4833403",
          "name": "East Hartford",
          "country_code": "US",
          "slug": "east-hartford",
          "canonical_path": "/cities/us/east-hartford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4833425",
          "name": "East Haven",
          "country_code": "US",
          "slug": "east-haven",
          "canonical_path": "/cities/us/east-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5344942",
          "name": "East Hemet",
          "country_code": "US",
          "slug": "east-hemet",
          "canonical_path": "/cities/us/east-hemet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4756972",
          "name": "East Highland Park",
          "country_code": "US",
          "slug": "east-highland-park",
          "canonical_path": "/cities/us/east-highland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3622260",
          "name": "East Hills",
          "country_code": "US",
          "slug": "east-hills",
          "canonical_path": "/cities/us/east-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315245",
          "name": "East Honolulu",
          "country_code": "US",
          "slug": "east-honolulu",
          "canonical_path": "/cities/us/east-honolulu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5115923",
          "name": "East Islip",
          "country_code": "US",
          "slug": "east-islip",
          "canonical_path": "/cities/us/east-islip/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13645939",
          "name": "East Kapolei",
          "country_code": "US",
          "slug": "east-kapolei",
          "canonical_path": "/cities/us/east-kapolei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5344987",
          "name": "East La Mirada",
          "country_code": "US",
          "slug": "east-la-mirada",
          "canonical_path": "/cities/us/east-la-mirada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259705",
          "name": "East Lake-Orient Park",
          "country_code": "US",
          "slug": "east-lake-orient-park",
          "canonical_path": "/cities/us/east-lake-orient-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2624120",
          "name": "East Lansing",
          "country_code": "US",
          "slug": "east-lansing",
          "canonical_path": "/cities/us/east-lansing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3923730",
          "name": "East Liverpool",
          "country_code": "US",
          "slug": "east-liverpool",
          "canonical_path": "/cities/us/east-liverpool/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4935434",
          "name": "East Longmeadow",
          "country_code": "US",
          "slug": "east-longmeadow",
          "canonical_path": "/cities/us/east-longmeadow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5344994",
          "name": "East Los Angeles",
          "country_code": "US",
          "slug": "east-los-angeles",
          "canonical_path": "/cities/us/east-los-angeles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5115962",
          "name": "East Massapequa",
          "country_code": "US",
          "slug": "east-massapequa",
          "canonical_path": "/cities/us/east-massapequa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5115960",
          "name": "East Meadow",
          "country_code": "US",
          "slug": "east-meadow",
          "canonical_path": "/cities/us/east-meadow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4154023",
          "name": "East Milton",
          "country_code": "US",
          "slug": "east-milton",
          "canonical_path": "/cities/us/east-milton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1722073",
          "name": "East Moline",
          "country_code": "US",
          "slug": "east-moline",
          "canonical_path": "/cities/us/east-moline/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5115974",
          "name": "East Moriches",
          "country_code": "US",
          "slug": "east-moriches",
          "canonical_path": "/cities/us/east-moriches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5115989",
          "name": "East Northport",
          "country_code": "US",
          "slug": "east-northport",
          "canonical_path": "/cities/us/east-northport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3419390",
          "name": "East Orange",
          "country_code": "US",
          "slug": "east-orange",
          "canonical_path": "/cities/us/east-orange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0620956",
          "name": "East Palo Alto",
          "country_code": "US",
          "slug": "east-palo-alto",
          "canonical_path": "/cities/us/east-palo-alto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5345038",
          "name": "East Pasadena",
          "country_code": "US",
          "slug": "east-pasadena",
          "canonical_path": "/cities/us/east-pasadena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116004",
          "name": "East Patchogue",
          "country_code": "US",
          "slug": "east-patchogue",
          "canonical_path": "/cities/us/east-patchogue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1722164",
          "name": "East Peoria",
          "country_code": "US",
          "slug": "east-peoria",
          "canonical_path": "/cities/us/east-peoria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1325720",
          "name": "East Point",
          "country_code": "US",
          "slug": "east-point",
          "canonical_path": "/cities/us/east-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5793237",
          "name": "East Port Orchard",
          "country_code": "US",
          "slug": "east-port-orchard",
          "canonical_path": "/cities/us/east-port-orchard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5345049",
          "name": "East Porterville",
          "country_code": "US",
          "slug": "east-porterville",
          "canonical_path": "/cities/us/east-porterville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4422960",
          "name": "East Providence",
          "country_code": "US",
          "slug": "east-providence",
          "canonical_path": "/cities/us/east-providence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5344817",
          "name": "East Rancho Dominguez",
          "country_code": "US",
          "slug": "east-rancho-dominguez",
          "canonical_path": "/cities/us/east-rancho-dominguez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5793242",
          "name": "East Renton Highlands",
          "country_code": "US",
          "slug": "east-renton-highlands",
          "canonical_path": "/cities/us/east-renton-highlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4722720",
          "name": "East Ridge",
          "country_code": "US",
          "slug": "east-ridge",
          "canonical_path": "/cities/us/east-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4353925",
          "name": "East Riverdale",
          "country_code": "US",
          "slug": "east-riverdale",
          "canonical_path": "/cities/us/east-riverdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3622865",
          "name": "East Rochester",
          "country_code": "US",
          "slug": "east-rochester",
          "canonical_path": "/cities/us/east-rochester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3622876",
          "name": "East Rockaway",
          "country_code": "US",
          "slug": "east-rockaway",
          "canonical_path": "/cities/us/east-rockaway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097459",
          "name": "East Rutherford",
          "country_code": "US",
          "slug": "east-rutherford",
          "canonical_path": "/cities/us/east-rutherford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3419510",
          "name": "East Rutherford borough",
          "country_code": "US",
          "slug": "east-rutherford-borough",
          "canonical_path": "/cities/us/east-rutherford-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4237579",
          "name": "East Saint Louis",
          "country_code": "US",
          "slug": "east-saint-louis",
          "canonical_path": "/cities/us/east-saint-louis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116060",
          "name": "East Setauket",
          "country_code": "US",
          "slug": "east-setauket",
          "canonical_path": "/cities/us/east-setauket/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116063",
          "name": "East Shoreham",
          "country_code": "US",
          "slug": "east-shoreham",
          "canonical_path": "/cities/us/east-shoreham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1722255",
          "name": "East St. Louis",
          "country_code": "US",
          "slug": "east-st-louis",
          "canonical_path": "/cities/us/east-st-louis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5188075",
          "name": "East Stroudsburg",
          "country_code": "US",
          "slug": "east-stroudsburg",
          "canonical_path": "/cities/us/east-stroudsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4221872",
          "name": "East Stroudsburg borough",
          "country_code": "US",
          "slug": "east-stroudsburg-borough",
          "canonical_path": "/cities/us/east-stroudsburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5320155",
          "name": "East Wenatchee",
          "country_code": "US",
          "slug": "east-wenatchee",
          "canonical_path": "/cities/us/east-wenatchee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4557717",
          "name": "East York",
          "country_code": "US",
          "slug": "east-york",
          "canonical_path": "/cities/us/east-york/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4935578",
          "name": "Eastham",
          "country_code": "US",
          "slug": "eastham",
          "canonical_path": "/cities/us/eastham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4935582",
          "name": "Easthampton",
          "country_code": "US",
          "slug": "easthampton",
          "canonical_path": "/cities/us/easthampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3923618",
          "name": "Eastlake",
          "country_code": "US",
          "slug": "eastlake",
          "canonical_path": "/cities/us/eastlake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1325552",
          "name": "Eastman",
          "country_code": "US",
          "slug": "eastman",
          "canonical_path": "/cities/us/eastman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315412",
          "name": "Eastmont",
          "country_code": "US",
          "slug": "eastmont",
          "canonical_path": "/cities/us/eastmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4833661",
          "name": "Easton",
          "country_code": "US",
          "slug": "easton",
          "canonical_path": "/cities/us/easton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4935623",
          "name": "Easton",
          "country_code": "US",
          "slug": "easton-ma-005",
          "canonical_path": "/cities/us/easton-ma-005/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2424475",
          "name": "Easton",
          "country_code": "US",
          "slug": "easton-md",
          "canonical_path": "/cities/us/easton-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4221648",
          "name": "Easton",
          "country_code": "US",
          "slug": "easton-pa",
          "canonical_path": "/cities/us/easton-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2624290",
          "name": "Eastpointe",
          "country_code": "US",
          "slug": "eastpointe",
          "canonical_path": "/cities/us/eastpointe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0621230",
          "name": "Eastvale",
          "country_code": "US",
          "slug": "eastvale",
          "canonical_path": "/cities/us/eastvale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4991740",
          "name": "Eastwood",
          "country_code": "US",
          "slug": "eastwood",
          "canonical_path": "/cities/us/eastwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0822860",
          "name": "Eaton",
          "country_code": "US",
          "slug": "eaton-co",
          "canonical_path": "/cities/us/eaton-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3924234",
          "name": "Eaton",
          "country_code": "US",
          "slug": "eaton-oh",
          "canonical_path": "/cities/us/eaton-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2624540",
          "name": "Eaton Rapids",
          "country_code": "US",
          "slug": "eaton-rapids",
          "canonical_path": "/cities/us/eaton-rapids/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1326084",
          "name": "Eatonton",
          "country_code": "US",
          "slug": "eatonton",
          "canonical_path": "/cities/us/eatonton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097482",
          "name": "Eatontown",
          "country_code": "US",
          "slug": "eatontown",
          "canonical_path": "/cities/us/eatontown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3419840",
          "name": "Eatontown borough",
          "country_code": "US",
          "slug": "eatontown-borough",
          "canonical_path": "/cities/us/eatontown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5522300",
          "name": "Eau Claire",
          "country_code": "US",
          "slug": "eau-claire",
          "canonical_path": "/cities/us/eau-claire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501632",
          "name": "Echelon",
          "country_code": "US",
          "slug": "echelon",
          "canonical_path": "/cities/us/echelon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5188236",
          "name": "Economy",
          "country_code": "US",
          "slug": "economy",
          "canonical_path": "/cities/us/economy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4222264",
          "name": "Economy borough",
          "country_code": "US",
          "slug": "economy-borough",
          "canonical_path": "/cities/us/economy-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2624740",
          "name": "Ecorse",
          "country_code": "US",
          "slug": "ecorse",
          "canonical_path": "/cities/us/ecorse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3720080",
          "name": "Eden",
          "country_code": "US",
          "slug": "eden",
          "canonical_path": "/cities/us/eden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4323546",
          "name": "Eden Isle",
          "country_code": "US",
          "slug": "eden-isle",
          "canonical_path": "/cities/us/eden-isle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2718116",
          "name": "Eden Prairie",
          "country_code": "US",
          "slug": "eden-prairie",
          "canonical_path": "/cities/us/eden-prairie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4354060",
          "name": "Edgemere",
          "country_code": "US",
          "slug": "edgemere",
          "canonical_path": "/cities/us/edgemere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4142398",
          "name": "Edgemoor",
          "country_code": "US",
          "slug": "edgemoor",
          "canonical_path": "/cities/us/edgemoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5522575",
          "name": "Edgerton",
          "country_code": "US",
          "slug": "edgerton",
          "canonical_path": "/cities/us/edgerton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1219825",
          "name": "Edgewater",
          "country_code": "US",
          "slug": "edgewater",
          "canonical_path": "/cities/us/edgewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3420020",
          "name": "Edgewater borough",
          "country_code": "US",
          "slug": "edgewater-borough",
          "canonical_path": "/cities/us/edgewater-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097521",
          "name": "Edgewater Park",
          "country_code": "US",
          "slug": "edgewater-park",
          "canonical_path": "/cities/us/edgewater-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4354087",
          "name": "Edgewood",
          "country_code": "US",
          "slug": "edgewood",
          "canonical_path": "/cities/us/edgewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2123932",
          "name": "Edgewood",
          "country_code": "US",
          "slug": "edgewood-ky",
          "canonical_path": "/cities/us/edgewood-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3522380",
          "name": "Edgewood",
          "country_code": "US",
          "slug": "edgewood-nm",
          "canonical_path": "/cities/us/edgewood-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5320645",
          "name": "Edgewood",
          "country_code": "US",
          "slug": "edgewood-wa",
          "canonical_path": "/cities/us/edgewood-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2718188",
          "name": "Edina",
          "country_code": "US",
          "slug": "edina",
          "canonical_path": "/cities/us/edina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5188306",
          "name": "Edinboro",
          "country_code": "US",
          "slug": "edinboro",
          "canonical_path": "/cities/us/edinboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4222608",
          "name": "Edinboro borough",
          "country_code": "US",
          "slug": "edinboro-borough",
          "canonical_path": "/cities/us/edinboro-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4822660",
          "name": "Edinburg",
          "country_code": "US",
          "slug": "edinburg",
          "canonical_path": "/cities/us/edinburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4023200",
          "name": "Edmond",
          "country_code": "US",
          "slug": "edmond",
          "canonical_path": "/cities/us/edmond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5320750",
          "name": "Edmonds",
          "country_code": "US",
          "slug": "edmonds",
          "canonical_path": "/cities/us/edmonds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4822720",
          "name": "Edna",
          "country_code": "US",
          "slug": "edna",
          "canonical_path": "/cities/us/edna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5420885",
          "name": "Edwards",
          "country_code": "US",
          "slug": "edwards",
          "canonical_path": "/cities/us/edwards/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1722697",
          "name": "Edwardsville",
          "country_code": "US",
          "slug": "edwardsville",
          "canonical_path": "/cities/us/edwardsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1722736",
          "name": "Effingham",
          "country_code": "US",
          "slug": "effingham",
          "canonical_path": "/cities/us/effingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116303",
          "name": "Eggertsville",
          "country_code": "US",
          "slug": "eggertsville",
          "canonical_path": "/cities/us/eggertsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4154270",
          "name": "Eglin Village",
          "country_code": "US",
          "slug": "eglin-village",
          "canonical_path": "/cities/us/eglin-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4154280",
          "name": "Egypt Lake-Leto",
          "country_code": "US",
          "slug": "egypt-lake-leto",
          "canonical_path": "/cities/us/egypt-lake-leto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5520953",
          "name": "Eidson Road",
          "country_code": "US",
          "slug": "eidson-road",
          "canonical_path": "/cities/us/eidson-road/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0621712",
          "name": "El Cajon",
          "country_code": "US",
          "slug": "el-cajon",
          "canonical_path": "/cities/us/el-cajon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4822864",
          "name": "El Campo",
          "country_code": "US",
          "slug": "el-campo",
          "canonical_path": "/cities/us/el-campo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0621782",
          "name": "El Centro",
          "country_code": "US",
          "slug": "el-centro",
          "canonical_path": "/cities/us/el-centro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0621796",
          "name": "El Cerrito",
          "country_code": "US",
          "slug": "el-cerrito",
          "canonical_path": "/cities/us/el-cerrito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5345624",
          "name": "El Cerrito Corona",
          "country_code": "US",
          "slug": "el-cerrito-corona",
          "canonical_path": "/cities/us/el-cerrito-corona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0521070",
          "name": "El Dorado",
          "country_code": "US",
          "slug": "el-dorado-ar",
          "canonical_path": "/cities/us/el-dorado-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2020075",
          "name": "El Dorado",
          "country_code": "US",
          "slug": "el-dorado-ks",
          "canonical_path": "/cities/us/el-dorado-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5345679",
          "name": "El Dorado Hills",
          "country_code": "US",
          "slug": "el-dorado-hills",
          "canonical_path": "/cities/us/el-dorado-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5345716",
          "name": "El Granada",
          "country_code": "US",
          "slug": "el-granada",
          "canonical_path": "/cities/us/el-granada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0422220",
          "name": "El Mirage",
          "country_code": "US",
          "slug": "el-mirage",
          "canonical_path": "/cities/us/el-mirage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0622230",
          "name": "El Monte",
          "country_code": "US",
          "slug": "el-monte",
          "canonical_path": "/cities/us/el-monte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4824000",
          "name": "El Paso",
          "country_code": "US",
          "slug": "el-paso",
          "canonical_path": "/cities/us/el-paso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0622300",
          "name": "El Paso de Robles (Paso Robles)",
          "country_code": "US",
          "slug": "el-paso-de-robles-paso-robles",
          "canonical_path": "/cities/us/el-paso-de-robles-paso-robles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4023700",
          "name": "El Reno",
          "country_code": "US",
          "slug": "el-reno",
          "canonical_path": "/cities/us/el-reno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5345844",
          "name": "El Rio",
          "country_code": "US",
          "slug": "el-rio",
          "canonical_path": "/cities/us/el-rio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0622412",
          "name": "El Segundo",
          "country_code": "US",
          "slug": "el-segundo",
          "canonical_path": "/cities/us/el-segundo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5345888",
          "name": "El Sobrante",
          "country_code": "US",
          "slug": "el-sobrante",
          "canonical_path": "/cities/us/el-sobrante/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1722931",
          "name": "Elburn",
          "country_code": "US",
          "slug": "elburn",
          "canonical_path": "/cities/us/elburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4354163",
          "name": "Eldersburg",
          "country_code": "US",
          "slug": "eldersburg",
          "canonical_path": "/cities/us/eldersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5466585",
          "name": "Eldorado at Santa Fe",
          "country_code": "US",
          "slug": "eldorado-at-santa",
          "canonical_path": "/cities/us/eldorado-at-santa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1924600",
          "name": "Eldridge",
          "country_code": "US",
          "slug": "eldridge",
          "canonical_path": "/cities/us/eldridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4154336",
          "name": "Elfers",
          "country_code": "US",
          "slug": "elfers",
          "canonical_path": "/cities/us/elfers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1723074",
          "name": "Elgin",
          "country_code": "US",
          "slug": "elgin-il",
          "canonical_path": "/cities/us/elgin-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4823044",
          "name": "Elgin",
          "country_code": "US",
          "slug": "elgin-tx",
          "canonical_path": "/cities/us/elgin-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4963642",
          "name": "Eliot",
          "country_code": "US",
          "slug": "eliot",
          "canonical_path": "/cities/us/eliot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3421000",
          "name": "Elizabeth",
          "country_code": "US",
          "slug": "elizabeth",
          "canonical_path": "/cities/us/elizabeth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3720580",
          "name": "Elizabeth City",
          "country_code": "US",
          "slug": "elizabeth-city",
          "canonical_path": "/cities/us/elizabeth-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4723500",
          "name": "Elizabethton",
          "country_code": "US",
          "slug": "elizabethton",
          "canonical_path": "/cities/us/elizabethton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2124274",
          "name": "Elizabethtown",
          "country_code": "US",
          "slug": "elizabethtown",
          "canonical_path": "/cities/us/elizabethtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4223016",
          "name": "Elizabethtown borough",
          "country_code": "US",
          "slug": "elizabethtown-borough",
          "canonical_path": "/cities/us/elizabethtown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4023500",
          "name": "Elk City",
          "country_code": "US",
          "slug": "elk-city",
          "canonical_path": "/cities/us/elk-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0622020",
          "name": "Elk Grove",
          "country_code": "US",
          "slug": "elk-grove",
          "canonical_path": "/cities/us/elk-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1723256",
          "name": "Elk Grove Village",
          "country_code": "US",
          "slug": "elk-grove-village",
          "canonical_path": "/cities/us/elk-grove-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5793609",
          "name": "Elk Plain",
          "country_code": "US",
          "slug": "elk-plain",
          "canonical_path": "/cities/us/elk-plain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2718674",
          "name": "Elk River",
          "country_code": "US",
          "slug": "elk-river",
          "canonical_path": "/cities/us/elk-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1820728",
          "name": "Elkhart",
          "country_code": "US",
          "slug": "elkhart",
          "canonical_path": "/cities/us/elkhart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5523300",
          "name": "Elkhorn",
          "country_code": "US",
          "slug": "elkhorn",
          "canonical_path": "/cities/us/elkhorn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5424580",
          "name": "Elkins",
          "country_code": "US",
          "slug": "elkins",
          "canonical_path": "/cities/us/elkins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5188546",
          "name": "Elkins Park",
          "country_code": "US",
          "slug": "elkins-park",
          "canonical_path": "/cities/us/elkins-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3222500",
          "name": "Elko",
          "country_code": "US",
          "slug": "elko",
          "canonical_path": "/cities/us/elko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2718662",
          "name": "Elko New Market",
          "country_code": "US",
          "slug": "elko-new-market",
          "canonical_path": "/cities/us/elko-new-market/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4354256",
          "name": "Elkridge",
          "country_code": "US",
          "slug": "elkridge",
          "canonical_path": "/cities/us/elkridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2425800",
          "name": "Elkton",
          "country_code": "US",
          "slug": "elkton",
          "canonical_path": "/cities/us/elkton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5321240",
          "name": "Ellensburg",
          "country_code": "US",
          "slug": "ellensburg",
          "canonical_path": "/cities/us/ellensburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1820800",
          "name": "Ellettsville",
          "country_code": "US",
          "slug": "ellettsville",
          "canonical_path": "/cities/us/ellettsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4354265",
          "name": "Ellicott City",
          "country_code": "US",
          "slug": "ellicott-city",
          "canonical_path": "/cities/us/ellicott-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4833883",
          "name": "Ellington",
          "country_code": "US",
          "slug": "ellington",
          "canonical_path": "/cities/us/ellington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2921898",
          "name": "Ellisville",
          "country_code": "US",
          "slug": "ellisville",
          "canonical_path": "/cities/us/ellisville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2323200",
          "name": "Ellsworth",
          "country_code": "US",
          "slug": "ellsworth",
          "canonical_path": "/cities/us/ellsworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5188609",
          "name": "Ellwood City",
          "country_code": "US",
          "slug": "ellwood-city",
          "canonical_path": "/cities/us/ellwood-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4223304",
          "name": "Ellwood City borough",
          "country_code": "US",
          "slug": "ellwood-city-borough",
          "canonical_path": "/cities/us/ellwood-city-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5523575",
          "name": "Elm Grove",
          "country_code": "US",
          "slug": "elm-grove",
          "canonical_path": "/cities/us/elm-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1723620",
          "name": "Elmhurst",
          "country_code": "US",
          "slug": "elmhurst",
          "canonical_path": "/cities/us/elmhurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3624229",
          "name": "Elmira",
          "country_code": "US",
          "slug": "elmira",
          "canonical_path": "/cities/us/elmira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116508",
          "name": "Elmont",
          "country_code": "US",
          "slug": "elmont",
          "canonical_path": "/cities/us/elmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3624295",
          "name": "Elmsford",
          "country_code": "US",
          "slug": "elmsford",
          "canonical_path": "/cities/us/elmsford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1723724",
          "name": "Elmwood Park",
          "country_code": "US",
          "slug": "elmwood-park",
          "canonical_path": "/cities/us/elmwood-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3421300",
          "name": "Elmwood Park borough",
          "country_code": "US",
          "slug": "elmwood-park-borough",
          "canonical_path": "/cities/us/elmwood-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3721095",
          "name": "Elon",
          "country_code": "US",
          "slug": "elon",
          "canonical_path": "/cities/us/elon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0422360",
          "name": "Eloy",
          "country_code": "US",
          "slug": "eloy",
          "canonical_path": "/cities/us/eloy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4824036",
          "name": "Elsa",
          "country_code": "US",
          "slug": "elsa",
          "canonical_path": "/cities/us/elsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1024540",
          "name": "Elsmere",
          "country_code": "US",
          "slug": "elsmere-de",
          "canonical_path": "/cities/us/elsmere-de/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2124778",
          "name": "Elsmere",
          "country_code": "US",
          "slug": "elsmere-ky",
          "canonical_path": "/cities/us/elsmere-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5346342",
          "name": "Elverta",
          "country_code": "US",
          "slug": "elverta",
          "canonical_path": "/cities/us/elverta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1821070",
          "name": "Elwood",
          "country_code": "US",
          "slug": "elwood",
          "canonical_path": "/cities/us/elwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3925256",
          "name": "Elyria",
          "country_code": "US",
          "slug": "elyria",
          "canonical_path": "/cities/us/elyria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097649",
          "name": "Emerson",
          "country_code": "US",
          "slug": "emerson",
          "canonical_path": "/cities/us/emerson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3421450",
          "name": "Emerson borough",
          "country_code": "US",
          "slug": "emerson-borough",
          "canonical_path": "/cities/us/emerson-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0622594",
          "name": "Emeryville",
          "country_code": "US",
          "slug": "emeryville",
          "canonical_path": "/cities/us/emeryville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5188726",
          "name": "Emmaus",
          "country_code": "US",
          "slug": "emmaus",
          "canonical_path": "/cities/us/emmaus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4223584",
          "name": "Emmaus borough",
          "country_code": "US",
          "slug": "emmaus-borough",
          "canonical_path": "/cities/us/emmaus-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1625570",
          "name": "Emmett",
          "country_code": "US",
          "slug": "emmett",
          "canonical_path": "/cities/us/emmett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2021275",
          "name": "Emporia",
          "country_code": "US",
          "slug": "emporia-ks",
          "canonical_path": "/cities/us/emporia-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5125808",
          "name": "Emporia",
          "country_code": "US",
          "slug": "emporia-va",
          "canonical_path": "/cities/us/emporia-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7839240",
          "name": "Enchanted Hills",
          "country_code": "US",
          "slug": "enchanted-hills",
          "canonical_path": "/cities/us/enchanted-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0622678",
          "name": "Encinitas",
          "country_code": "US",
          "slug": "encinitas",
          "canonical_path": "/cities/us/encinitas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3624515",
          "name": "Endicott",
          "country_code": "US",
          "slug": "endicott",
          "canonical_path": "/cities/us/endicott/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116603",
          "name": "Endwell",
          "country_code": "US",
          "slug": "endwell",
          "canonical_path": "/cities/us/endwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4834040",
          "name": "Enfield",
          "country_code": "US",
          "slug": "enfield",
          "canonical_path": "/cities/us/enfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4154465",
          "name": "Englewood",
          "country_code": "US",
          "slug": "englewood",
          "canonical_path": "/cities/us/englewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0824785",
          "name": "Englewood",
          "country_code": "US",
          "slug": "englewood-co",
          "canonical_path": "/cities/us/englewood-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3421480",
          "name": "Englewood",
          "country_code": "US",
          "slug": "englewood-nj",
          "canonical_path": "/cities/us/englewood-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3925396",
          "name": "Englewood",
          "country_code": "US",
          "slug": "englewood-oh",
          "canonical_path": "/cities/us/englewood-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097677",
          "name": "Englewood Cliffs",
          "country_code": "US",
          "slug": "englewood-cliffs",
          "canonical_path": "/cities/us/englewood-cliffs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3421510",
          "name": "Englewood Cliffs borough",
          "country_code": "US",
          "slug": "englewood-cliffs-borough",
          "canonical_path": "/cities/us/englewood-cliffs-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4023950",
          "name": "Enid",
          "country_code": "US",
          "slug": "enid",
          "canonical_path": "/cities/us/enid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4824348",
          "name": "Ennis",
          "country_code": "US",
          "slug": "ennis",
          "canonical_path": "/cities/us/ennis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4923200",
          "name": "Enoch",
          "country_code": "US",
          "slug": "enoch",
          "canonical_path": "/cities/us/enoch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5188793",
          "name": "Enola",
          "country_code": "US",
          "slug": "enola",
          "canonical_path": "/cities/us/enola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4154489",
          "name": "Ensley",
          "country_code": "US",
          "slug": "ensley",
          "canonical_path": "/cities/us/ensley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0124184",
          "name": "Enterprise",
          "country_code": "US",
          "slug": "enterprise",
          "canonical_path": "/cities/us/enterprise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5322045",
          "name": "Enumclaw",
          "country_code": "US",
          "slug": "enumclaw",
          "canonical_path": "/cities/us/enumclaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4923530",
          "name": "Ephraim",
          "country_code": "US",
          "slug": "ephraim",
          "canonical_path": "/cities/us/ephraim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5322080",
          "name": "Ephrata",
          "country_code": "US",
          "slug": "ephrata",
          "canonical_path": "/cities/us/ephrata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4223832",
          "name": "Ephrata borough",
          "country_code": "US",
          "slug": "ephrata-borough",
          "canonical_path": "/cities/us/ephrata-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0824950",
          "name": "Erie",
          "country_code": "US",
          "slug": "erie-co",
          "canonical_path": "/cities/us/erie-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4224000",
          "name": "Erie",
          "country_code": "US",
          "slug": "erie-pa",
          "canonical_path": "/cities/us/erie-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2125300",
          "name": "Erlanger",
          "country_code": "US",
          "slug": "erlanger",
          "canonical_path": "/cities/us/erlanger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4724360",
          "name": "Erwin",
          "country_code": "US",
          "slug": "erwin",
          "canonical_path": "/cities/us/erwin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0622790",
          "name": "Escalon",
          "country_code": "US",
          "slug": "escalon",
          "canonical_path": "/cities/us/escalon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2626360",
          "name": "Escanaba",
          "country_code": "US",
          "slug": "escanaba",
          "canonical_path": "/cities/us/escanaba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0622804",
          "name": "Escondido",
          "country_code": "US",
          "slug": "escondido",
          "canonical_path": "/cities/us/escondido/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3525170",
          "name": "Española",
          "country_code": "US",
          "slug": "espanola",
          "canonical_path": "/cities/us/espanola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4354428",
          "name": "Essex",
          "country_code": "US",
          "slug": "essex",
          "canonical_path": "/cities/us/essex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5024400",
          "name": "Essex Junction",
          "country_code": "US",
          "slug": "essex-junction",
          "canonical_path": "/cities/us/essex-junction/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4123800",
          "name": "Estacada",
          "country_code": "US",
          "slug": "estacada",
          "canonical_path": "/cities/us/estacada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4323873",
          "name": "Estelle",
          "country_code": "US",
          "slug": "estelle",
          "canonical_path": "/cities/us/estelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1221150",
          "name": "Estero",
          "country_code": "US",
          "slug": "estero",
          "canonical_path": "/cities/us/estero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0825115",
          "name": "Estes Park",
          "country_code": "US",
          "slug": "estes-park",
          "canonical_path": "/cities/us/estes-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1925860",
          "name": "Estherville",
          "country_code": "US",
          "slug": "estherville",
          "canonical_path": "/cities/us/estherville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4465507",
          "name": "Etowah",
          "country_code": "US",
          "slug": "etowah",
          "canonical_path": "/cities/us/etowah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4757863",
          "name": "Ettrick",
          "country_code": "US",
          "slug": "ettrick",
          "canonical_path": "/cities/us/ettrick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5346986",
          "name": "Eucalyptus Hills",
          "country_code": "US",
          "slug": "eucalyptus-hills",
          "canonical_path": "/cities/us/eucalyptus-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3925704",
          "name": "Euclid",
          "country_code": "US",
          "slug": "euclid",
          "canonical_path": "/cities/us/euclid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2021675",
          "name": "Eudora",
          "country_code": "US",
          "slug": "eudora",
          "canonical_path": "/cities/us/eudora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0124568",
          "name": "Eufaula",
          "country_code": "US",
          "slug": "eufaula",
          "canonical_path": "/cities/us/eufaula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4123850",
          "name": "Eugene",
          "country_code": "US",
          "slug": "eugene",
          "canonical_path": "/cities/us/eugene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4824768",
          "name": "Euless",
          "country_code": "US",
          "slug": "euless",
          "canonical_path": "/cities/us/euless/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2224565",
          "name": "Eunice",
          "country_code": "US",
          "slug": "eunice",
          "canonical_path": "/cities/us/eunice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0623042",
          "name": "Eureka",
          "country_code": "US",
          "slug": "eureka-ca",
          "canonical_path": "/cities/us/eureka-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1724543",
          "name": "Eureka",
          "country_code": "US",
          "slug": "eureka-il",
          "canonical_path": "/cities/us/eureka-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2922834",
          "name": "Eureka",
          "country_code": "US",
          "slug": "eureka-mo",
          "canonical_path": "/cities/us/eureka-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1221350",
          "name": "Eustis",
          "country_code": "US",
          "slug": "eustis",
          "canonical_path": "/cities/us/eustis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0825280",
          "name": "Evans",
          "country_code": "US",
          "slug": "evans",
          "canonical_path": "/cities/us/evans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1724582",
          "name": "Evanston",
          "country_code": "US",
          "slug": "evanston-il",
          "canonical_path": "/cities/us/evanston-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5625620",
          "name": "Evanston",
          "country_code": "US",
          "slug": "evanston-wy",
          "canonical_path": "/cities/us/evanston-wy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1822000",
          "name": "Evansville",
          "country_code": "US",
          "slug": "evansville-in",
          "canonical_path": "/cities/us/evansville-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5524550",
          "name": "Evansville",
          "country_code": "US",
          "slug": "evansville-wi",
          "canonical_path": "/cities/us/evansville-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2521990",
          "name": "Everett",
          "country_code": "US",
          "slug": "everett-ma",
          "canonical_path": "/cities/us/everett-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5322640",
          "name": "Everett",
          "country_code": "US",
          "slug": "everett-wa",
          "canonical_path": "/cities/us/everett-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5421418",
          "name": "Evergreen",
          "country_code": "US",
          "slug": "evergreen",
          "canonical_path": "/cities/us/evergreen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5651289",
          "name": "Evergreen",
          "country_code": "US",
          "slug": "evergreen-mt-029",
          "canonical_path": "/cities/us/evergreen-mt-029/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1724634",
          "name": "Evergreen Park",
          "country_code": "US",
          "slug": "evergreen-park",
          "canonical_path": "/cities/us/evergreen-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4824912",
          "name": "Everman",
          "country_code": "US",
          "slug": "everman",
          "canonical_path": "/cities/us/everman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2923086",
          "name": "Excelsior Springs",
          "country_code": "US",
          "slug": "excelsior-springs",
          "canonical_path": "/cities/us/excelsior-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0623126",
          "name": "Exeter",
          "country_code": "US",
          "slug": "exeter",
          "canonical_path": "/cities/us/exeter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4224392",
          "name": "Exeter borough",
          "country_code": "US",
          "slug": "exeter-borough",
          "canonical_path": "/cities/us/exeter-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5521233",
          "name": "Fabens",
          "country_code": "US",
          "slug": "fabens",
          "canonical_path": "/cities/us/fabens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097769",
          "name": "Fair Haven",
          "country_code": "US",
          "slug": "fair-haven",
          "canonical_path": "/cities/us/fair-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3422440",
          "name": "Fair Haven borough",
          "country_code": "US",
          "slug": "fair-haven-borough",
          "canonical_path": "/cities/us/fair-haven-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3422470",
          "name": "Fair Lawn borough",
          "country_code": "US",
          "slug": "fair-lawn-borough",
          "canonical_path": "/cities/us/fair-lawn-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4194111",
          "name": "Fair Oaks",
          "country_code": "US",
          "slug": "fair-oaks",
          "canonical_path": "/cities/us/fair-oaks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5347287",
          "name": "Fair Oaks",
          "country_code": "US",
          "slug": "fair-oaks-ca-067",
          "canonical_path": "/cities/us/fair-oaks-ca-067/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4825168",
          "name": "Fair Oaks Ranch",
          "country_code": "US",
          "slug": "fair-oaks-ranch",
          "canonical_path": "/cities/us/fair-oaks-ranch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4992394",
          "name": "Fair Plain",
          "country_code": "US",
          "slug": "fair-plain",
          "canonical_path": "/cities/us/fair-plain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0224230",
          "name": "Fairbanks",
          "country_code": "US",
          "slug": "fairbanks",
          "canonical_path": "/cities/us/fairbanks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3925914",
          "name": "Fairborn",
          "country_code": "US",
          "slug": "fairborn",
          "canonical_path": "/cities/us/fairborn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1328380",
          "name": "Fairburn",
          "country_code": "US",
          "slug": "fairburn",
          "canonical_path": "/cities/us/fairburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0623168",
          "name": "Fairfax",
          "country_code": "US",
          "slug": "fairfax-ca",
          "canonical_path": "/cities/us/fairfax-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5126496",
          "name": "Fairfax",
          "country_code": "US",
          "slug": "fairfax-va",
          "canonical_path": "/cities/us/fairfax-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4758102",
          "name": "Fairfax Station",
          "country_code": "US",
          "slug": "fairfax-station",
          "canonical_path": "/cities/us/fairfax-station/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4238081",
          "name": "Fairfield",
          "country_code": "US",
          "slug": "fairfield",
          "canonical_path": "/cities/us/fairfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4834157",
          "name": "Fairfield",
          "country_code": "US",
          "slug": "fairfield-ct-120",
          "canonical_path": "/cities/us/fairfield-ct-120/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4891534",
          "name": "Fairfield",
          "country_code": "US",
          "slug": "fairfield-il-097",
          "canonical_path": "/cities/us/fairfield-il-097/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0125120",
          "name": "Fairfield",
          "country_code": "US",
          "slug": "fairfield-al",
          "canonical_path": "/cities/us/fairfield-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0623182",
          "name": "Fairfield",
          "country_code": "US",
          "slug": "fairfield-ca",
          "canonical_path": "/cities/us/fairfield-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1926445",
          "name": "Fairfield",
          "country_code": "US",
          "slug": "fairfield-ia",
          "canonical_path": "/cities/us/fairfield-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3925970",
          "name": "Fairfield",
          "country_code": "US",
          "slug": "fairfield-oh",
          "canonical_path": "/cities/us/fairfield-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4621447",
          "name": "Fairfield Glade",
          "country_code": "US",
          "slug": "fairfield-glade",
          "canonical_path": "/cities/us/fairfield-glade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4936087",
          "name": "Fairhaven",
          "country_code": "US",
          "slug": "fairhaven",
          "canonical_path": "/cities/us/fairhaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0125240",
          "name": "Fairhope",
          "country_code": "US",
          "slug": "fairhope",
          "canonical_path": "/cities/us/fairhope/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4354573",
          "name": "Fairland",
          "country_code": "US",
          "slug": "fairland",
          "canonical_path": "/cities/us/fairland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3926166",
          "name": "Fairlawn",
          "country_code": "US",
          "slug": "fairlawn",
          "canonical_path": "/cities/us/fairlawn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5189091",
          "name": "Fairless Hills",
          "country_code": "US",
          "slug": "fairless-hills",
          "canonical_path": "/cities/us/fairless-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2720330",
          "name": "Fairmont",
          "country_code": "US",
          "slug": "fairmont-mn",
          "canonical_path": "/cities/us/fairmont-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5426452",
          "name": "Fairmont",
          "country_code": "US",
          "slug": "fairmont-wv",
          "canonical_path": "/cities/us/fairmont-wv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116811",
          "name": "Fairmount",
          "country_code": "US",
          "slug": "fairmount-ny-067",
          "canonical_path": "/cities/us/fairmount-ny-067/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3625076",
          "name": "Fairport",
          "country_code": "US",
          "slug": "fairport",
          "canonical_path": "/cities/us/fairport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4194202",
          "name": "Fairview",
          "country_code": "US",
          "slug": "fairview",
          "canonical_path": "/cities/us/fairview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097801",
          "name": "Fairview",
          "country_code": "US",
          "slug": "fairview-nj-003",
          "canonical_path": "/cities/us/fairview-nj-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116819",
          "name": "Fairview",
          "country_code": "US",
          "slug": "fairview-ny-027",
          "canonical_path": "/cities/us/fairview-ny-027/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5347397",
          "name": "Fairview",
          "country_code": "US",
          "slug": "fairview-ca-001",
          "canonical_path": "/cities/us/fairview-ca-001/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4124250",
          "name": "Fairview",
          "country_code": "US",
          "slug": "fairview-or",
          "canonical_path": "/cities/us/fairview-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4725440",
          "name": "Fairview",
          "country_code": "US",
          "slug": "fairview-tn",
          "canonical_path": "/cities/us/fairview-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4825224",
          "name": "Fairview",
          "country_code": "US",
          "slug": "fairview-tx",
          "canonical_path": "/cities/us/fairview-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3422560",
          "name": "Fairview borough",
          "country_code": "US",
          "slug": "fairview-borough",
          "canonical_path": "/cities/us/fairview-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1725141",
          "name": "Fairview Heights",
          "country_code": "US",
          "slug": "fairview-heights",
          "canonical_path": "/cities/us/fairview-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3926446",
          "name": "Fairview Park",
          "country_code": "US",
          "slug": "fairview-park",
          "canonical_path": "/cities/us/fairview-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4154769",
          "name": "Fairview Shores",
          "country_code": "US",
          "slug": "fairview-shores",
          "canonical_path": "/cities/us/fairview-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5794097",
          "name": "Fairwood",
          "country_code": "US",
          "slug": "fairwood",
          "canonical_path": "/cities/us/fairwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5794098",
          "name": "Fairwood",
          "country_code": "US",
          "slug": "fairwood-wa-063",
          "canonical_path": "/cities/us/fairwood-wa-063/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315258",
          "name": "Fairwood",
          "country_code": "US",
          "slug": "fairwood-md-033",
          "canonical_path": "/cities/us/fairwood-md-033/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2720420",
          "name": "Falcon Heights",
          "country_code": "US",
          "slug": "falcon-heights",
          "canonical_path": "/cities/us/falcon-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2523000",
          "name": "Fall River",
          "country_code": "US",
          "slug": "fall-river",
          "canonical_path": "/cities/us/fall-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5347578",
          "name": "Fallbrook",
          "country_code": "US",
          "slug": "fallbrook",
          "canonical_path": "/cities/us/fallbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3224100",
          "name": "Fallon",
          "country_code": "US",
          "slug": "fallon",
          "canonical_path": "/cities/us/fallon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5127200",
          "name": "Falls Church",
          "country_code": "US",
          "slug": "falls-church",
          "canonical_path": "/cities/us/falls-church/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116900",
          "name": "Fallsburg",
          "country_code": "US",
          "slug": "fallsburg",
          "canonical_path": "/cities/us/fallsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4354708",
          "name": "Fallston",
          "country_code": "US",
          "slug": "fallston",
          "canonical_path": "/cities/us/fallston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097830",
          "name": "Fanwood",
          "country_code": "US",
          "slug": "fanwood",
          "canonical_path": "/cities/us/fanwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3422860",
          "name": "Fanwood borough",
          "country_code": "US",
          "slug": "fanwood-borough",
          "canonical_path": "/cities/us/fanwood-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3825700",
          "name": "Fargo",
          "country_code": "US",
          "slug": "fargo",
          "canonical_path": "/cities/us/fargo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2720546",
          "name": "Faribault",
          "country_code": "US",
          "slug": "faribault",
          "canonical_path": "/cities/us/faribault/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4825452",
          "name": "Farmers Branch",
          "country_code": "US",
          "slug": "farmers-branch",
          "canonical_path": "/cities/us/farmers-branch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0623616",
          "name": "Farmersville",
          "country_code": "US",
          "slug": "farmersville-ca",
          "canonical_path": "/cities/us/farmersville-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4825488",
          "name": "Farmersville",
          "country_code": "US",
          "slug": "farmersville-tx",
          "canonical_path": "/cities/us/farmersville-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3625384",
          "name": "Farmingdale",
          "country_code": "US",
          "slug": "farmingdale",
          "canonical_path": "/cities/us/farmingdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4834272",
          "name": "Farmington",
          "country_code": "US",
          "slug": "farmington",
          "canonical_path": "/cities/us/farmington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0523170",
          "name": "Farmington",
          "country_code": "US",
          "slug": "farmington-ar",
          "canonical_path": "/cities/us/farmington-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2627380",
          "name": "Farmington",
          "country_code": "US",
          "slug": "farmington-mi",
          "canonical_path": "/cities/us/farmington-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2720618",
          "name": "Farmington",
          "country_code": "US",
          "slug": "farmington-mn",
          "canonical_path": "/cities/us/farmington-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2923752",
          "name": "Farmington",
          "country_code": "US",
          "slug": "farmington-mo",
          "canonical_path": "/cities/us/farmington-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3525800",
          "name": "Farmington",
          "country_code": "US",
          "slug": "farmington-nm",
          "canonical_path": "/cities/us/farmington-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4924740",
          "name": "Farmington",
          "country_code": "US",
          "slug": "farmington-ut",
          "canonical_path": "/cities/us/farmington-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2627440",
          "name": "Farmington Hills",
          "country_code": "US",
          "slug": "farmington-hills",
          "canonical_path": "/cities/us/farmington-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5116937",
          "name": "Farmingville",
          "country_code": "US",
          "slug": "farmingville",
          "canonical_path": "/cities/us/farmingville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5127440",
          "name": "Farmville",
          "country_code": "US",
          "slug": "farmville",
          "canonical_path": "/cities/us/farmville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4924850",
          "name": "Farr West",
          "country_code": "US",
          "slug": "farr-west",
          "canonical_path": "/cities/us/farr-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4725760",
          "name": "Farragut",
          "country_code": "US",
          "slug": "farragut",
          "canonical_path": "/cities/us/farragut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4825572",
          "name": "Fate",
          "country_code": "US",
          "slug": "fate",
          "canonical_path": "/cities/us/fate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0523290",
          "name": "Fayetteville",
          "country_code": "US",
          "slug": "fayetteville-ar",
          "canonical_path": "/cities/us/fayetteville-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1328968",
          "name": "Fayetteville",
          "country_code": "US",
          "slug": "fayetteville-ga",
          "canonical_path": "/cities/us/fayetteville-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3722920",
          "name": "Fayetteville",
          "country_code": "US",
          "slug": "fayetteville-nc",
          "canonical_path": "/cities/us/fayetteville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4725920",
          "name": "Fayetteville",
          "country_code": "US",
          "slug": "fayetteville-tn",
          "canonical_path": "/cities/us/fayetteville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0826270",
          "name": "Federal Heights",
          "country_code": "US",
          "slug": "federal-heights",
          "canonical_path": "/cities/us/federal-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5323515",
          "name": "Federal Way",
          "country_code": "US",
          "slug": "federal-way",
          "canonical_path": "/cities/us/federal-way/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5794242",
          "name": "Felida",
          "country_code": "US",
          "slug": "felida",
          "canonical_path": "/cities/us/felida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1222100",
          "name": "Fellsmere",
          "country_code": "US",
          "slug": "fellsmere",
          "canonical_path": "/cities/us/fellsmere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2627760",
          "name": "Fenton",
          "country_code": "US",
          "slug": "fenton",
          "canonical_path": "/cities/us/fenton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2720906",
          "name": "Fergus Falls",
          "country_code": "US",
          "slug": "fergus-falls",
          "canonical_path": "/cities/us/fergus-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2923986",
          "name": "Ferguson",
          "country_code": "US",
          "slug": "ferguson",
          "canonical_path": "/cities/us/ferguson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4155000",
          "name": "Fern Park",
          "country_code": "US",
          "slug": "fern-park",
          "canonical_path": "/cities/us/fern-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1222175",
          "name": "Fernandina Beach",
          "country_code": "US",
          "slug": "fernandina-beach",
          "canonical_path": "/cities/us/fernandina-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4354821",
          "name": "Ferndale",
          "country_code": "US",
          "slug": "ferndale",
          "canonical_path": "/cities/us/ferndale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2627880",
          "name": "Ferndale",
          "country_code": "US",
          "slug": "ferndale-mi",
          "canonical_path": "/cities/us/ferndale-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5323620",
          "name": "Ferndale",
          "country_code": "US",
          "slug": "ferndale-wa",
          "canonical_path": "/cities/us/ferndale-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3224900",
          "name": "Fernley",
          "country_code": "US",
          "slug": "fernley",
          "canonical_path": "/cities/us/fernley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4155017",
          "name": "Ferry Pass",
          "country_code": "US",
          "slug": "ferry-pass",
          "canonical_path": "/cities/us/ferry-pass/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2924094",
          "name": "Festus",
          "country_code": "US",
          "slug": "festus",
          "canonical_path": "/cities/us/festus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5323795",
          "name": "Fife",
          "country_code": "US",
          "slug": "fife",
          "canonical_path": "/cities/us/fife/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0624092",
          "name": "Fillmore",
          "country_code": "US",
          "slug": "fillmore",
          "canonical_path": "/cities/us/fillmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5097900",
          "name": "Finderne",
          "country_code": "US",
          "slug": "finderne",
          "canonical_path": "/cities/us/finderne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3927048",
          "name": "Findlay",
          "country_code": "US",
          "slug": "findlay",
          "canonical_path": "/cities/us/findlay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5794369",
          "name": "Finley",
          "country_code": "US",
          "slug": "finley",
          "canonical_path": "/cities/us/finley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4511642",
          "name": "Finneytown",
          "country_code": "US",
          "slug": "finneytown",
          "canonical_path": "/cities/us/finneytown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5323970",
          "name": "Fircrest",
          "country_code": "US",
          "slug": "fircrest",
          "canonical_path": "/cities/us/fircrest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0624134",
          "name": "Firebaugh",
          "country_code": "US",
          "slug": "firebaugh",
          "canonical_path": "/cities/us/firebaugh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0826600",
          "name": "Firestone",
          "country_code": "US",
          "slug": "firestone",
          "canonical_path": "/cities/us/firestone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4155430",
          "name": "Fish Hawk",
          "country_code": "US",
          "slug": "fish-hawk",
          "canonical_path": "/cities/us/fish-hawk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1823278",
          "name": "Fishers",
          "country_code": "US",
          "slug": "fishers",
          "canonical_path": "/cities/us/fishers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4759120",
          "name": "Fishersville",
          "country_code": "US",
          "slug": "fishersville",
          "canonical_path": "/cities/us/fishersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2523875",
          "name": "Fitchburg",
          "country_code": "US",
          "slug": "fitchburg-ma",
          "canonical_path": "/cities/us/fitchburg-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5525950",
          "name": "Fitchburg",
          "country_code": "US",
          "slug": "fitchburg-wi",
          "canonical_path": "/cities/us/fitchburg-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1329528",
          "name": "Fitzgerald",
          "country_code": "US",
          "slug": "fitzgerald",
          "canonical_path": "/cities/us/fitzgerald/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5794559",
          "name": "Five Corners",
          "country_code": "US",
          "slug": "five-corners",
          "canonical_path": "/cities/us/five-corners/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4578602",
          "name": "Five Forks",
          "country_code": "US",
          "slug": "five-forks",
          "canonical_path": "/cities/us/five-forks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4155529",
          "name": "Flagami",
          "country_code": "US",
          "slug": "flagami",
          "canonical_path": "/cities/us/flagami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1222550",
          "name": "Flagler Beach",
          "country_code": "US",
          "slug": "flagler-beach",
          "canonical_path": "/cities/us/flagler-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0423620",
          "name": "Flagstaff",
          "country_code": "US",
          "slug": "flagstaff",
          "canonical_path": "/cities/us/flagstaff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2628360",
          "name": "Flat Rock",
          "country_code": "US",
          "slug": "flat-rock",
          "canonical_path": "/cities/us/flat-rock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2127802",
          "name": "Flatwoods",
          "country_code": "US",
          "slug": "flatwoods",
          "canonical_path": "/cities/us/flatwoods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4155594",
          "name": "Fleming Island",
          "country_code": "US",
          "slug": "fleming-island",
          "canonical_path": "/cities/us/fleming-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3723760",
          "name": "Fletcher",
          "country_code": "US",
          "slug": "fletcher",
          "canonical_path": "/cities/us/fletcher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2629000",
          "name": "Flint",
          "country_code": "US",
          "slug": "flint",
          "canonical_path": "/cities/us/flint/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4155623",
          "name": "Floral City",
          "country_code": "US",
          "slug": "floral-city",
          "canonical_path": "/cities/us/floral-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3626264",
          "name": "Floral Park",
          "country_code": "US",
          "slug": "floral-park",
          "canonical_path": "/cities/us/floral-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0126896",
          "name": "Florence",
          "country_code": "US",
          "slug": "florence-al",
          "canonical_path": "/cities/us/florence-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0423760",
          "name": "Florence",
          "country_code": "US",
          "slug": "florence-az",
          "canonical_path": "/cities/us/florence-az/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2127982",
          "name": "Florence",
          "country_code": "US",
          "slug": "florence-ky",
          "canonical_path": "/cities/us/florence-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4126050",
          "name": "Florence",
          "country_code": "US",
          "slug": "florence-or",
          "canonical_path": "/cities/us/florence-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4525810",
          "name": "Florence",
          "country_code": "US",
          "slug": "florence-sc",
          "canonical_path": "/cities/us/florence-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261268",
          "name": "Florence-Graham",
          "country_code": "US",
          "slug": "florence-graham",
          "canonical_path": "/cities/us/florence-graham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4826160",
          "name": "Floresville",
          "country_code": "US",
          "slug": "floresville",
          "canonical_path": "/cities/us/floresville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098095",
          "name": "Florham Park",
          "country_code": "US",
          "slug": "florham-park",
          "canonical_path": "/cities/us/florham-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3423910",
          "name": "Florham Park borough",
          "country_code": "US",
          "slug": "florham-park-borough",
          "canonical_path": "/cities/us/florham-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1222975",
          "name": "Florida City",
          "country_code": "US",
          "slug": "florida-city",
          "canonical_path": "/cities/us/florida-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4155726",
          "name": "Florida Ridge",
          "country_code": "US",
          "slug": "florida-ridge",
          "canonical_path": "/cities/us/florida-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5349613",
          "name": "Florin",
          "country_code": "US",
          "slug": "florin",
          "canonical_path": "/cities/us/florin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4759430",
          "name": "Floris",
          "country_code": "US",
          "slug": "floris",
          "canonical_path": "/cities/us/floris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2924778",
          "name": "Florissant",
          "country_code": "US",
          "slug": "florissant",
          "canonical_path": "/cities/us/florissant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1726571",
          "name": "Flossmoor",
          "country_code": "US",
          "slug": "flossmoor",
          "canonical_path": "/cities/us/flossmoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4826232",
          "name": "Flower Mound",
          "country_code": "US",
          "slug": "flower-mound",
          "canonical_path": "/cities/us/flower-mound/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1330340",
          "name": "Flowery Branch",
          "country_code": "US",
          "slug": "flowery-branch",
          "canonical_path": "/cities/us/flowery-branch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5294937",
          "name": "Flowing Wells",
          "country_code": "US",
          "slug": "flowing-wells",
          "canonical_path": "/cities/us/flowing-wells/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2825100",
          "name": "Flowood",
          "country_code": "US",
          "slug": "flowood",
          "canonical_path": "/cities/us/flowood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2629200",
          "name": "Flushing",
          "country_code": "US",
          "slug": "flushing",
          "canonical_path": "/cities/us/flushing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4138666",
          "name": "Foggy Bottom",
          "country_code": "US",
          "slug": "foggy-bottom",
          "canonical_path": "/cities/us/foggy-bottom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4558004",
          "name": "Folcroft",
          "country_code": "US",
          "slug": "folcroft",
          "canonical_path": "/cities/us/folcroft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4226408",
          "name": "Folcroft borough",
          "country_code": "US",
          "slug": "folcroft-borough",
          "canonical_path": "/cities/us/folcroft-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0126992",
          "name": "Foley",
          "country_code": "US",
          "slug": "foley",
          "canonical_path": "/cities/us/foley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4195600",
          "name": "Folkston",
          "country_code": "US",
          "slug": "folkston",
          "canonical_path": "/cities/us/folkston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0624638",
          "name": "Folsom",
          "country_code": "US",
          "slug": "folsom",
          "canonical_path": "/cities/us/folsom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5526275",
          "name": "Fond du Lac",
          "country_code": "US",
          "slug": "fond-du-lac",
          "canonical_path": "/cities/us/fond-du-lac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0624680",
          "name": "Fontana",
          "country_code": "US",
          "slug": "fontana",
          "canonical_path": "/cities/us/fontana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5349803",
          "name": "Foothill Farms",
          "country_code": "US",
          "slug": "foothill-farms",
          "canonical_path": "/cities/us/foothill-farms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098109",
          "name": "Fords",
          "country_code": "US",
          "slug": "fords",
          "canonical_path": "/cities/us/fords/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2825340",
          "name": "Forest",
          "country_code": "US",
          "slug": "forest",
          "canonical_path": "/cities/us/forest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4526305",
          "name": "Forest Acres",
          "country_code": "US",
          "slug": "forest-acres",
          "canonical_path": "/cities/us/forest-acres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3724080",
          "name": "Forest City",
          "country_code": "US",
          "slug": "forest-city",
          "canonical_path": "/cities/us/forest-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4355214",
          "name": "Forest Glen",
          "country_code": "US",
          "slug": "forest-glen",
          "canonical_path": "/cities/us/forest-glen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4126200",
          "name": "Forest Grove",
          "country_code": "US",
          "slug": "forest-grove",
          "canonical_path": "/cities/us/forest-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4826544",
          "name": "Forest Hill",
          "country_code": "US",
          "slug": "forest-hill",
          "canonical_path": "/cities/us/forest-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4623039",
          "name": "Forest Hills",
          "country_code": "US",
          "slug": "forest-hills",
          "canonical_path": "/cities/us/forest-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4993125",
          "name": "Forest Hills",
          "country_code": "US",
          "slug": "forest-hills-mi-081",
          "canonical_path": "/cities/us/forest-hills-mi-081/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5189981",
          "name": "Forest Hills",
          "country_code": "US",
          "slug": "forest-hills-pa-003",
          "canonical_path": "/cities/us/forest-hills-pa-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4226592",
          "name": "Forest Hills borough",
          "country_code": "US",
          "slug": "forest-hills-borough",
          "canonical_path": "/cities/us/forest-hills-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2721770",
          "name": "Forest Lake",
          "country_code": "US",
          "slug": "forest-lake",
          "canonical_path": "/cities/us/forest-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1330536",
          "name": "Forest Park",
          "country_code": "US",
          "slug": "forest-park-ga",
          "canonical_path": "/cities/us/forest-park-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1726935",
          "name": "Forest Park",
          "country_code": "US",
          "slug": "forest-park-il",
          "canonical_path": "/cities/us/forest-park-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3927706",
          "name": "Forest Park",
          "country_code": "US",
          "slug": "forest-park-oh",
          "canonical_path": "/cities/us/forest-park-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4062774",
          "name": "Forestdale",
          "country_code": "US",
          "slug": "forestdale",
          "canonical_path": "/cities/us/forestdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4355274",
          "name": "Forestville",
          "country_code": "US",
          "slug": "forestville",
          "canonical_path": "/cities/us/forestville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4512083",
          "name": "Forestville",
          "country_code": "US",
          "slug": "forestville-oh-061",
          "canonical_path": "/cities/us/forestville-oh-061/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501818",
          "name": "Forked River",
          "country_code": "US",
          "slug": "forked-river",
          "canonical_path": "/cities/us/forked-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4826604",
          "name": "Forney",
          "country_code": "US",
          "slug": "forney",
          "canonical_path": "/cities/us/forney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0524430",
          "name": "Forrest City",
          "country_code": "US",
          "slug": "forrest-city",
          "canonical_path": "/cities/us/forrest-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5526675",
          "name": "Fort Atkinson",
          "country_code": "US",
          "slug": "fort-atkinson",
          "canonical_path": "/cities/us/fort-atkinson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257902",
          "name": "Fort Belvoir",
          "country_code": "US",
          "slug": "fort-belvoir",
          "canonical_path": "/cities/us/fort-belvoir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261282",
          "name": "Fort Bliss",
          "country_code": "US",
          "slug": "fort-bliss",
          "canonical_path": "/cities/us/fort-bliss/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0625058",
          "name": "Fort Bragg",
          "country_code": "US",
          "slug": "fort-bragg",
          "canonical_path": "/cities/us/fort-bragg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259770",
          "name": "Fort Campbell North",
          "country_code": "US",
          "slug": "fort-campbell-north",
          "canonical_path": "/cities/us/fort-campbell-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5422140",
          "name": "Fort Carson",
          "country_code": "US",
          "slug": "fort-carson",
          "canonical_path": "/cities/us/fort-carson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0827425",
          "name": "Fort Collins",
          "country_code": "US",
          "slug": "fort-collins",
          "canonical_path": "/cities/us/fort-collins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098132",
          "name": "Fort Dix",
          "country_code": "US",
          "slug": "fort-dix",
          "canonical_path": "/cities/us/fort-dix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1928515",
          "name": "Fort Dodge",
          "country_code": "US",
          "slug": "fort-dodge",
          "canonical_path": "/cities/us/fort-dodge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257905",
          "name": "Fort Drum",
          "country_code": "US",
          "slug": "fort-drum",
          "canonical_path": "/cities/us/fort-drum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4355322",
          "name": "Fort George G Mead Junction",
          "country_code": "US",
          "slug": "fort-george-g-mead-junction",
          "canonical_path": "/cities/us/fort-george-g-mead-junction/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4046704",
          "name": "Fort Hunt",
          "country_code": "US",
          "slug": "fort-hunt",
          "canonical_path": "/cities/us/fort-hunt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5350057",
          "name": "Fort Irwin",
          "country_code": "US",
          "slug": "fort-irwin",
          "canonical_path": "/cities/us/fort-irwin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259771",
          "name": "Fort Knox",
          "country_code": "US",
          "slug": "fort-knox",
          "canonical_path": "/cities/us/fort-knox/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1224000",
          "name": "Fort Lauderdale",
          "country_code": "US",
          "slug": "fort-lauderdale",
          "canonical_path": "/cities/us/fort-lauderdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098135",
          "name": "Fort Lee",
          "country_code": "US",
          "slug": "fort-lee-nj-003",
          "canonical_path": "/cities/us/fort-lee-nj-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3424420",
          "name": "Fort Lee borough",
          "country_code": "US",
          "slug": "fort-lee-borough",
          "canonical_path": "/cities/us/fort-lee-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259265",
          "name": "Fort Leonard Wood",
          "country_code": "US",
          "slug": "fort-leonard-wood",
          "canonical_path": "/cities/us/fort-leonard-wood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4138715",
          "name": "Fort Lincoln",
          "country_code": "US",
          "slug": "fort-lincoln",
          "canonical_path": "/cities/us/fort-lincoln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0827700",
          "name": "Fort Lupton",
          "country_code": "US",
          "slug": "fort-lupton",
          "canonical_path": "/cities/us/fort-lupton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1928605",
          "name": "Fort Madison",
          "country_code": "US",
          "slug": "fort-madison",
          "canonical_path": "/cities/us/fort-madison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1224100",
          "name": "Fort Meade",
          "country_code": "US",
          "slug": "fort-meade",
          "canonical_path": "/cities/us/fort-meade/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4526890",
          "name": "Fort Mill",
          "country_code": "US",
          "slug": "fort-mill",
          "canonical_path": "/cities/us/fort-mill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2128558",
          "name": "Fort Mitchell",
          "country_code": "US",
          "slug": "fort-mitchell",
          "canonical_path": "/cities/us/fort-mitchell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0827810",
          "name": "Fort Morgan",
          "country_code": "US",
          "slug": "fort-morgan",
          "canonical_path": "/cities/us/fort-morgan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1224125",
          "name": "Fort Myers",
          "country_code": "US",
          "slug": "fort-myers",
          "canonical_path": "/cities/us/fort-myers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1224150",
          "name": "Fort Myers Beach",
          "country_code": "US",
          "slug": "fort-myers-beach",
          "canonical_path": "/cities/us/fort-myers-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156006",
          "name": "Fort Myers Shores",
          "country_code": "US",
          "slug": "fort-myers-shores",
          "canonical_path": "/cities/us/fort-myers-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1330956",
          "name": "Fort Oglethorpe",
          "country_code": "US",
          "slug": "fort-oglethorpe",
          "canonical_path": "/cities/us/fort-oglethorpe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0127616",
          "name": "Fort Payne",
          "country_code": "US",
          "slug": "fort-payne",
          "canonical_path": "/cities/us/fort-payne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1224300",
          "name": "Fort Pierce",
          "country_code": "US",
          "slug": "fort-pierce",
          "canonical_path": "/cities/us/fort-pierce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259773",
          "name": "Fort Pierce North",
          "country_code": "US",
          "slug": "fort-pierce-north",
          "canonical_path": "/cities/us/fort-pierce-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259774",
          "name": "Fort Pierce South",
          "country_code": "US",
          "slug": "fort-pierce-south",
          "canonical_path": "/cities/us/fort-pierce-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259267",
          "name": "Fort Riley North",
          "country_code": "US",
          "slug": "fort-riley-north",
          "canonical_path": "/cities/us/fort-riley-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5117703",
          "name": "Fort Salonga",
          "country_code": "US",
          "slug": "fort-salonga",
          "canonical_path": "/cities/us/fort-salonga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2024000",
          "name": "Fort Scott",
          "country_code": "US",
          "slug": "fort-scott",
          "canonical_path": "/cities/us/fort-scott/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0524550",
          "name": "Fort Smith",
          "country_code": "US",
          "slug": "fort-smith",
          "canonical_path": "/cities/us/fort-smith/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4826808",
          "name": "Fort Stockton",
          "country_code": "US",
          "slug": "fort-stockton",
          "canonical_path": "/cities/us/fort-stockton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2128594",
          "name": "Fort Thomas",
          "country_code": "US",
          "slug": "fort-thomas",
          "canonical_path": "/cities/us/fort-thomas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1331096",
          "name": "Fort Valley",
          "country_code": "US",
          "slug": "fort-valley",
          "canonical_path": "/cities/us/fort-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1224475",
          "name": "Fort Walton Beach",
          "country_code": "US",
          "slug": "fort-walton-beach",
          "canonical_path": "/cities/us/fort-walton-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4355355",
          "name": "Fort Washington",
          "country_code": "US",
          "slug": "fort-washington",
          "canonical_path": "/cities/us/fort-washington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5190089",
          "name": "Fort Washington",
          "country_code": "US",
          "slug": "fort-washington-pa-091",
          "canonical_path": "/cities/us/fort-washington-pa-091/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1825000",
          "name": "Fort Wayne",
          "country_code": "US",
          "slug": "fort-wayne",
          "canonical_path": "/cities/us/fort-wayne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4827000",
          "name": "Fort Worth",
          "country_code": "US",
          "slug": "fort-worth",
          "canonical_path": "/cities/us/fort-worth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2128612",
          "name": "Fort Wright",
          "country_code": "US",
          "slug": "fort-wright",
          "canonical_path": "/cities/us/fort-wright/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0625296",
          "name": "Fortuna",
          "country_code": "US",
          "slug": "fortuna",
          "canonical_path": "/cities/us/fortuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5295143",
          "name": "Fortuna Foothills",
          "country_code": "US",
          "slug": "fortuna-foothills",
          "canonical_path": "/cities/us/fortuna-foothills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0625338",
          "name": "Foster City",
          "country_code": "US",
          "slug": "foster-city",
          "canonical_path": "/cities/us/foster-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3928014",
          "name": "Fostoria",
          "country_code": "US",
          "slug": "fostoria",
          "canonical_path": "/cities/us/fostoria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0827865",
          "name": "Fountain",
          "country_code": "US",
          "slug": "fountain",
          "canonical_path": "/cities/us/fountain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0425300",
          "name": "Fountain Hills",
          "country_code": "US",
          "slug": "fountain-hills",
          "canonical_path": "/cities/us/fountain-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4527070",
          "name": "Fountain Inn",
          "country_code": "US",
          "slug": "fountain-inn",
          "canonical_path": "/cities/us/fountain-inn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0625380",
          "name": "Fountain Valley",
          "country_code": "US",
          "slug": "fountain-valley",
          "canonical_path": "/cities/us/fountain-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156091",
          "name": "Fountainebleau",
          "country_code": "US",
          "slug": "fountainebleau",
          "canonical_path": "/cities/us/fountainebleau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258606",
          "name": "Fountainhead-Orchard Hills",
          "country_code": "US",
          "slug": "fountainhead-orchard-hills",
          "canonical_path": "/cities/us/fountainhead-orchard-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4355400",
          "name": "Four Corners",
          "country_code": "US",
          "slug": "four-corners",
          "canonical_path": "/cities/us/four-corners/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4692051",
          "name": "Four Corners",
          "country_code": "US",
          "slug": "four-corners-tx-157",
          "canonical_path": "/cities/us/four-corners-tx-157/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5727382",
          "name": "Four Corners",
          "country_code": "US",
          "slug": "four-corners-or-047",
          "canonical_path": "/cities/us/four-corners-or-047/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259780",
          "name": "Four Corners",
          "country_code": "US",
          "slug": "four-corners-fl-069",
          "canonical_path": "/cities/us/four-corners-fl-069/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0625436",
          "name": "Fowler",
          "country_code": "US",
          "slug": "fowler",
          "canonical_path": "/cities/us/fowler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5190213",
          "name": "Fox Chapel",
          "country_code": "US",
          "slug": "fox-chapel",
          "canonical_path": "/cities/us/fox-chapel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4227120",
          "name": "Fox Chapel borough",
          "country_code": "US",
          "slug": "fox-chapel-borough",
          "canonical_path": "/cities/us/fox-chapel-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5526982",
          "name": "Fox Crossing",
          "country_code": "US",
          "slug": "fox-crossing",
          "canonical_path": "/cities/us/fox-crossing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1727442",
          "name": "Fox Lake",
          "country_code": "US",
          "slug": "fox-lake",
          "canonical_path": "/cities/us/fox-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5527075",
          "name": "Fox Point",
          "country_code": "US",
          "slug": "fox-point",
          "canonical_path": "/cities/us/fox-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4937222",
          "name": "Foxborough",
          "country_code": "US",
          "slug": "foxborough",
          "canonical_path": "/cities/us/foxborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2524960",
          "name": "Framingham",
          "country_code": "US",
          "slug": "framingham",
          "canonical_path": "/cities/us/framingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4292182",
          "name": "Francisville",
          "country_code": "US",
          "slug": "francisville",
          "canonical_path": "/cities/us/francisville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4759968",
          "name": "Franconia",
          "country_code": "US",
          "slug": "franconia",
          "canonical_path": "/cities/us/franconia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2630200",
          "name": "Frankenmuth",
          "country_code": "US",
          "slug": "frankenmuth",
          "canonical_path": "/cities/us/frankenmuth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1727624",
          "name": "Frankfort",
          "country_code": "US",
          "slug": "frankfort-il",
          "canonical_path": "/cities/us/frankfort-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1825324",
          "name": "Frankfort",
          "country_code": "US",
          "slug": "frankfort-in",
          "canonical_path": "/cities/us/frankfort-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2128900",
          "name": "Frankfort",
          "country_code": "US",
          "slug": "frankfort-ky",
          "canonical_path": "/cities/us/frankfort-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4893043",
          "name": "Frankfort Square",
          "country_code": "US",
          "slug": "frankfort-square",
          "canonical_path": "/cities/us/frankfort-square/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4937276",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin",
          "canonical_path": "/cities/us/franklin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1825450",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin-in",
          "canonical_path": "/cities/us/franklin-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2128918",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin-ky",
          "canonical_path": "/cities/us/franklin-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2227155",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin-la",
          "canonical_path": "/cities/us/franklin-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3327380",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin-nh",
          "canonical_path": "/cities/us/franklin-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3928476",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin-oh",
          "canonical_path": "/cities/us/franklin-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4227456",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin-pa",
          "canonical_path": "/cities/us/franklin-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4727740",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin-tn",
          "canonical_path": "/cities/us/franklin-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5129600",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin-va",
          "canonical_path": "/cities/us/franklin-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5527300",
          "name": "Franklin",
          "country_code": "US",
          "slug": "franklin-wi",
          "canonical_path": "/cities/us/franklin-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3424930",
          "name": "Franklin borough",
          "country_code": "US",
          "slug": "franklin-borough",
          "canonical_path": "/cities/us/franklin-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098242",
          "name": "Franklin Lakes",
          "country_code": "US",
          "slug": "franklin-lakes",
          "canonical_path": "/cities/us/franklin-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3424990",
          "name": "Franklin Lakes borough",
          "country_code": "US",
          "slug": "franklin-lakes-borough",
          "canonical_path": "/cities/us/franklin-lakes-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1727702",
          "name": "Franklin Park",
          "country_code": "US",
          "slug": "franklin-park",
          "canonical_path": "/cities/us/franklin-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4227552",
          "name": "Franklin Park borough",
          "country_code": "US",
          "slug": "franklin-park-borough",
          "canonical_path": "/cities/us/franklin-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5117891",
          "name": "Franklin Square",
          "country_code": "US",
          "slug": "franklin-square",
          "canonical_path": "/cities/us/franklin-square/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2525172",
          "name": "Franklin Town",
          "country_code": "US",
          "slug": "franklin-town",
          "canonical_path": "/cities/us/franklin-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2630420",
          "name": "Fraser",
          "country_code": "US",
          "slug": "fraser",
          "canonical_path": "/cities/us/fraser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0828360",
          "name": "Frederick",
          "country_code": "US",
          "slug": "frederick-co",
          "canonical_path": "/cities/us/frederick-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2430325",
          "name": "Frederick",
          "country_code": "US",
          "slug": "frederick-md",
          "canonical_path": "/cities/us/frederick-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4827348",
          "name": "Fredericksburg",
          "country_code": "US",
          "slug": "fredericksburg-tx",
          "canonical_path": "/cities/us/fredericksburg-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5129744",
          "name": "Fredericksburg",
          "country_code": "US",
          "slug": "fredericksburg-va",
          "canonical_path": "/cities/us/fredericksburg-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5795011",
          "name": "Frederickson",
          "country_code": "US",
          "slug": "frederickson",
          "canonical_path": "/cities/us/frederickson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3627419",
          "name": "Fredonia",
          "country_code": "US",
          "slug": "fredonia",
          "canonical_path": "/cities/us/fredonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098278",
          "name": "Freehold",
          "country_code": "US",
          "slug": "freehold",
          "canonical_path": "/cities/us/freehold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3425200",
          "name": "Freehold borough",
          "country_code": "US",
          "slug": "freehold-borough",
          "canonical_path": "/cities/us/freehold-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4993402",
          "name": "Freeland",
          "country_code": "US",
          "slug": "freeland",
          "canonical_path": "/cities/us/freeland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1224825",
          "name": "Freeport",
          "country_code": "US",
          "slug": "freeport-fl",
          "canonical_path": "/cities/us/freeport-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1727884",
          "name": "Freeport",
          "country_code": "US",
          "slug": "freeport-il",
          "canonical_path": "/cities/us/freeport-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3627485",
          "name": "Freeport",
          "country_code": "US",
          "slug": "freeport-ny",
          "canonical_path": "/cities/us/freeport-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4827420",
          "name": "Freeport",
          "country_code": "US",
          "slug": "freeport-tx",
          "canonical_path": "/cities/us/freeport-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4937355",
          "name": "Freetown",
          "country_code": "US",
          "slug": "freetown",
          "canonical_path": "/cities/us/freetown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0626000",
          "name": "Fremont",
          "country_code": "US",
          "slug": "fremont-ca",
          "canonical_path": "/cities/us/fremont-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3117670",
          "name": "Fremont",
          "country_code": "US",
          "slug": "fremont-ne",
          "canonical_path": "/cities/us/fremont-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3928826",
          "name": "Fremont",
          "country_code": "US",
          "slug": "fremont-oh",
          "canonical_path": "/cities/us/fremont-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0627000",
          "name": "Fresno",
          "country_code": "US",
          "slug": "fresno",
          "canonical_path": "/cities/us/fresno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2722814",
          "name": "Fridley",
          "country_code": "US",
          "slug": "fridley",
          "canonical_path": "/cities/us/fridley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4355670",
          "name": "Friendly",
          "country_code": "US",
          "slug": "friendly",
          "canonical_path": "/cities/us/friendly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4827648",
          "name": "Friendswood",
          "country_code": "US",
          "slug": "friendswood",
          "canonical_path": "/cities/us/friendswood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4827684",
          "name": "Frisco",
          "country_code": "US",
          "slug": "frisco",
          "canonical_path": "/cities/us/frisco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5129968",
          "name": "Front Royal",
          "country_code": "US",
          "slug": "front-royal",
          "canonical_path": "/cities/us/front-royal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2430900",
          "name": "Frostburg",
          "country_code": "US",
          "slug": "frostburg",
          "canonical_path": "/cities/us/frostburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156331",
          "name": "Fruit Cove",
          "country_code": "US",
          "slug": "fruit-cove",
          "canonical_path": "/cities/us/fruit-cove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4927490",
          "name": "Fruit Heights",
          "country_code": "US",
          "slug": "fruit-heights",
          "canonical_path": "/cities/us/fruit-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0828745",
          "name": "Fruita",
          "country_code": "US",
          "slug": "fruita",
          "canonical_path": "/cities/us/fruita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1628990",
          "name": "Fruitland",
          "country_code": "US",
          "slug": "fruitland-id",
          "canonical_path": "/cities/us/fruitland-id/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2430950",
          "name": "Fruitland",
          "country_code": "US",
          "slug": "fruitland-md",
          "canonical_path": "/cities/us/fruitland-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1224975",
          "name": "Fruitland Park",
          "country_code": "US",
          "slug": "fruitland-park",
          "canonical_path": "/cities/us/fruitland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315196",
          "name": "Fruitridge Pocket",
          "country_code": "US",
          "slug": "fruitridge-pocket",
          "canonical_path": "/cities/us/fruitridge-pocket/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5422557",
          "name": "Fruitvale",
          "country_code": "US",
          "slug": "fruitvale",
          "canonical_path": "/cities/us/fruitvale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156340",
          "name": "Fruitville",
          "country_code": "US",
          "slug": "fruitville",
          "canonical_path": "/cities/us/fruitville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156367",
          "name": "Fuller Heights",
          "country_code": "US",
          "slug": "fuller-heights",
          "canonical_path": "/cities/us/fuller-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0628000",
          "name": "Fullerton",
          "country_code": "US",
          "slug": "fullerton",
          "canonical_path": "/cities/us/fullerton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4827876",
          "name": "Fulshear",
          "country_code": "US",
          "slug": "fulshear",
          "canonical_path": "/cities/us/fulshear/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2926182",
          "name": "Fulton",
          "country_code": "US",
          "slug": "fulton-mo",
          "canonical_path": "/cities/us/fulton-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3627815",
          "name": "Fulton",
          "country_code": "US",
          "slug": "fulton-ny",
          "canonical_path": "/cities/us/fulton-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0128552",
          "name": "Fultondale",
          "country_code": "US",
          "slug": "fultondale",
          "canonical_path": "/cities/us/fultondale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3725300",
          "name": "Fuquay-Varina",
          "country_code": "US",
          "slug": "fuquay-varina",
          "canonical_path": "/cities/us/fuquay-varina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156370",
          "name": "Fussels Corner",
          "country_code": "US",
          "slug": "fussels-corner",
          "canonical_path": "/cities/us/fussels-corner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0128696",
          "name": "Gadsden",
          "country_code": "US",
          "slug": "gadsden",
          "canonical_path": "/cities/us/gadsden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4528060",
          "name": "Gaffney",
          "country_code": "US",
          "slug": "gaffney",
          "canonical_path": "/cities/us/gaffney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4893371",
          "name": "Gages Lake",
          "country_code": "US",
          "slug": "gages-lake",
          "canonical_path": "/cities/us/gages-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3929106",
          "name": "Gahanna",
          "country_code": "US",
          "slug": "gahanna",
          "canonical_path": "/cities/us/gahanna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4760363",
          "name": "Gainesville",
          "country_code": "US",
          "slug": "gainesville",
          "canonical_path": "/cities/us/gainesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1225175",
          "name": "Gainesville",
          "country_code": "US",
          "slug": "gainesville-fl",
          "canonical_path": "/cities/us/gainesville-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1331908",
          "name": "Gainesville",
          "country_code": "US",
          "slug": "gainesville-ga",
          "canonical_path": "/cities/us/gainesville-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4827984",
          "name": "Gainesville",
          "country_code": "US",
          "slug": "gainesville-tx",
          "canonical_path": "/cities/us/gainesville-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2431175",
          "name": "Gaithersburg",
          "country_code": "US",
          "slug": "gaithersburg",
          "canonical_path": "/cities/us/gaithersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5130208",
          "name": "Galax",
          "country_code": "US",
          "slug": "galax",
          "canonical_path": "/cities/us/galax/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4827996",
          "name": "Galena Park",
          "country_code": "US",
          "slug": "galena-park",
          "canonical_path": "/cities/us/galena-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1728326",
          "name": "Galesburg",
          "country_code": "US",
          "slug": "galesburg",
          "canonical_path": "/cities/us/galesburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3929162",
          "name": "Galion",
          "country_code": "US",
          "slug": "galion",
          "canonical_path": "/cities/us/galion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4728540",
          "name": "Gallatin",
          "country_code": "US",
          "slug": "gallatin",
          "canonical_path": "/cities/us/gallatin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4325424",
          "name": "Galliano",
          "country_code": "US",
          "slug": "galliano",
          "canonical_path": "/cities/us/galliano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3528460",
          "name": "Gallup",
          "country_code": "US",
          "slug": "gallup",
          "canonical_path": "/cities/us/gallup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0628112",
          "name": "Galt",
          "country_code": "US",
          "slug": "galt",
          "canonical_path": "/cities/us/galt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4828068",
          "name": "Galveston",
          "country_code": "US",
          "slug": "galveston",
          "canonical_path": "/cities/us/galveston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4579484",
          "name": "Gantt",
          "country_code": "US",
          "slug": "gantt",
          "canonical_path": "/cities/us/gantt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5351496",
          "name": "Garden Acres",
          "country_code": "US",
          "slug": "garden-acres",
          "canonical_path": "/cities/us/garden-acres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4579503",
          "name": "Garden City",
          "country_code": "US",
          "slug": "garden-city",
          "canonical_path": "/cities/us/garden-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1332048",
          "name": "Garden City",
          "country_code": "US",
          "slug": "garden-city-ga",
          "canonical_path": "/cities/us/garden-city-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1629620",
          "name": "Garden City",
          "country_code": "US",
          "slug": "garden-city-id",
          "canonical_path": "/cities/us/garden-city-id/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2025325",
          "name": "Garden City",
          "country_code": "US",
          "slug": "garden-city-ks",
          "canonical_path": "/cities/us/garden-city-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2631420",
          "name": "Garden City",
          "country_code": "US",
          "slug": "garden-city-mi",
          "canonical_path": "/cities/us/garden-city-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3628178",
          "name": "Garden City",
          "country_code": "US",
          "slug": "garden-city-ny",
          "canonical_path": "/cities/us/garden-city-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5118228",
          "name": "Garden City Park",
          "country_code": "US",
          "slug": "garden-city-park",
          "canonical_path": "/cities/us/garden-city-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0629000",
          "name": "Garden Grove",
          "country_code": "US",
          "slug": "garden-grove",
          "canonical_path": "/cities/us/garden-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261327",
          "name": "Garden Home-Whitford",
          "country_code": "US",
          "slug": "garden-home-whitford",
          "canonical_path": "/cities/us/garden-home-whitford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0628168",
          "name": "Gardena",
          "country_code": "US",
          "slug": "gardena",
          "canonical_path": "/cities/us/gardena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0129056",
          "name": "Gardendale",
          "country_code": "US",
          "slug": "gardendale",
          "canonical_path": "/cities/us/gardendale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4325507",
          "name": "Gardere",
          "country_code": "US",
          "slug": "gardere",
          "canonical_path": "/cities/us/gardere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2327085",
          "name": "Gardiner",
          "country_code": "US",
          "slug": "gardiner",
          "canonical_path": "/cities/us/gardiner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2025425",
          "name": "Gardner",
          "country_code": "US",
          "slug": "gardner-ks",
          "canonical_path": "/cities/us/gardner-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2525485",
          "name": "Gardner",
          "country_code": "US",
          "slug": "gardner-ma",
          "canonical_path": "/cities/us/gardner-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5504468",
          "name": "Gardnerville",
          "country_code": "US",
          "slug": "gardnerville",
          "canonical_path": "/cities/us/gardnerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5504473",
          "name": "Gardnerville Ranchos",
          "country_code": "US",
          "slug": "gardnerville-ranchos",
          "canonical_path": "/cities/us/gardnerville-ranchos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3425770",
          "name": "Garfield",
          "country_code": "US",
          "slug": "garfield",
          "canonical_path": "/cities/us/garfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3929428",
          "name": "Garfield Heights",
          "country_code": "US",
          "slug": "garfield-heights",
          "canonical_path": "/cities/us/garfield-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4829000",
          "name": "Garland",
          "country_code": "US",
          "slug": "garland",
          "canonical_path": "/cities/us/garland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3725480",
          "name": "Garner",
          "country_code": "US",
          "slug": "garner",
          "canonical_path": "/cities/us/garner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5351654",
          "name": "Garnet",
          "country_code": "US",
          "slug": "garnet",
          "canonical_path": "/cities/us/garnet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1826386",
          "name": "Garrett",
          "country_code": "US",
          "slug": "garrett",
          "canonical_path": "/cities/us/garrett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4355958",
          "name": "Garrison",
          "country_code": "US",
          "slug": "garrison",
          "canonical_path": "/cities/us/garrison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3425800",
          "name": "Garwood borough",
          "country_code": "US",
          "slug": "garwood-borough",
          "canonical_path": "/cities/us/garwood-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1827000",
          "name": "Gary",
          "country_code": "US",
          "slug": "gary",
          "canonical_path": "/cities/us/gary/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1827054",
          "name": "Gas City",
          "country_code": "US",
          "slug": "gas-city",
          "canonical_path": "/cities/us/gas-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3725580",
          "name": "Gastonia",
          "country_code": "US",
          "slug": "gastonia",
          "canonical_path": "/cities/us/gastonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258633",
          "name": "Gates-North Gates",
          "country_code": "US",
          "slug": "gates-north-gates",
          "canonical_path": "/cities/us/gates-north-gates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4829168",
          "name": "Gatesville",
          "country_code": "US",
          "slug": "gatesville",
          "canonical_path": "/cities/us/gatesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156601",
          "name": "Gateway",
          "country_code": "US",
          "slug": "gateway",
          "canonical_path": "/cities/us/gateway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5862727",
          "name": "Gateway",
          "country_code": "US",
          "slug": "gateway-ak-170",
          "canonical_path": "/cities/us/gateway-ak-170/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2826860",
          "name": "Gautier",
          "country_code": "US",
          "slug": "gautier",
          "canonical_path": "/cities/us/gautier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1728846",
          "name": "Geneseo",
          "country_code": "US",
          "slug": "geneseo-il",
          "canonical_path": "/cities/us/geneseo-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3628618",
          "name": "Geneseo",
          "country_code": "US",
          "slug": "geneseo-ny",
          "canonical_path": "/cities/us/geneseo-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1728872",
          "name": "Geneva",
          "country_code": "US",
          "slug": "geneva-il",
          "canonical_path": "/cities/us/geneva-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3628640",
          "name": "Geneva",
          "country_code": "US",
          "slug": "geneva-ny",
          "canonical_path": "/cities/us/geneva-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3929610",
          "name": "Geneva",
          "country_code": "US",
          "slug": "geneva-oh",
          "canonical_path": "/cities/us/geneva-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1728898",
          "name": "Genoa",
          "country_code": "US",
          "slug": "genoa",
          "canonical_path": "/cities/us/genoa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4196917",
          "name": "Georgetown",
          "country_code": "US",
          "slug": "georgetown",
          "canonical_path": "/cities/us/georgetown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1029090",
          "name": "Georgetown",
          "country_code": "US",
          "slug": "georgetown-de",
          "canonical_path": "/cities/us/georgetown-de/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2130700",
          "name": "Georgetown",
          "country_code": "US",
          "slug": "georgetown-ky",
          "canonical_path": "/cities/us/georgetown-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4528870",
          "name": "Georgetown",
          "country_code": "US",
          "slug": "georgetown-sc",
          "canonical_path": "/cities/us/georgetown-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4829336",
          "name": "Georgetown",
          "country_code": "US",
          "slug": "georgetown-tx",
          "canonical_path": "/cities/us/georgetown-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3118580",
          "name": "Gering",
          "country_code": "US",
          "slug": "gering",
          "canonical_path": "/cities/us/gering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4356050",
          "name": "Germantown",
          "country_code": "US",
          "slug": "germantown",
          "canonical_path": "/cities/us/germantown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3929932",
          "name": "Germantown",
          "country_code": "US",
          "slug": "germantown-oh",
          "canonical_path": "/cities/us/germantown-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4728960",
          "name": "Germantown",
          "country_code": "US",
          "slug": "germantown-tn",
          "canonical_path": "/cities/us/germantown-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5528875",
          "name": "Germantown",
          "country_code": "US",
          "slug": "germantown-wi",
          "canonical_path": "/cities/us/germantown-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4558183",
          "name": "Gettysburg",
          "country_code": "US",
          "slug": "gettysburg",
          "canonical_path": "/cities/us/gettysburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4228960",
          "name": "Gettysburg borough",
          "country_code": "US",
          "slug": "gettysburg-borough",
          "canonical_path": "/cities/us/gettysburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156748",
          "name": "Gibsonton",
          "country_code": "US",
          "slug": "gibsonton",
          "canonical_path": "/cities/us/gibsonton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3725980",
          "name": "Gibsonville",
          "country_code": "US",
          "slug": "gibsonville",
          "canonical_path": "/cities/us/gibsonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4829432",
          "name": "Giddings",
          "country_code": "US",
          "slug": "giddings",
          "canonical_path": "/cities/us/giddings/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156752",
          "name": "Gifford",
          "country_code": "US",
          "slug": "gifford",
          "canonical_path": "/cities/us/gifford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5326735",
          "name": "Gig Harbor",
          "country_code": "US",
          "slug": "gig-harbor",
          "canonical_path": "/cities/us/gig-harbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0427400",
          "name": "Gilbert",
          "country_code": "US",
          "slug": "gilbert",
          "canonical_path": "/cities/us/gilbert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1729171",
          "name": "Gilberts",
          "country_code": "US",
          "slug": "gilberts",
          "canonical_path": "/cities/us/gilberts/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5086544",
          "name": "Gilford",
          "country_code": "US",
          "slug": "gilford",
          "canonical_path": "/cities/us/gilford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5631855",
          "name": "Gillette",
          "country_code": "US",
          "slug": "gillette",
          "canonical_path": "/cities/us/gillette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4829564",
          "name": "Gilmer",
          "country_code": "US",
          "slug": "gilmer",
          "canonical_path": "/cities/us/gilmer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0629504",
          "name": "Gilroy",
          "country_code": "US",
          "slug": "gilroy",
          "canonical_path": "/cities/us/gilroy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3930198",
          "name": "Girard",
          "country_code": "US",
          "slug": "girard",
          "canonical_path": "/cities/us/girard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156824",
          "name": "Gladeview",
          "country_code": "US",
          "slug": "gladeview",
          "canonical_path": "/cities/us/gladeview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4829660",
          "name": "Gladewater",
          "country_code": "US",
          "slug": "gladewater",
          "canonical_path": "/cities/us/gladewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2632300",
          "name": "Gladstone",
          "country_code": "US",
          "slug": "gladstone-mi",
          "canonical_path": "/cities/us/gladstone-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2927190",
          "name": "Gladstone",
          "country_code": "US",
          "slug": "gladstone-mo",
          "canonical_path": "/cities/us/gladstone-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4129000",
          "name": "Gladstone",
          "country_code": "US",
          "slug": "gladstone-or",
          "canonical_path": "/cities/us/gladstone-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2131114",
          "name": "Glasgow",
          "country_code": "US",
          "slug": "glasgow",
          "canonical_path": "/cities/us/glasgow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4388005",
          "name": "Glasgow Village",
          "country_code": "US",
          "slug": "glasgow-village",
          "canonical_path": "/cities/us/glasgow-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4501931",
          "name": "Glassboro",
          "country_code": "US",
          "slug": "glassboro",
          "canonical_path": "/cities/us/glassboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3426340",
          "name": "Glassboro borough",
          "country_code": "US",
          "slug": "glassboro-borough",
          "canonical_path": "/cities/us/glassboro-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4356165",
          "name": "Glassmanor",
          "country_code": "US",
          "slug": "glassmanor",
          "canonical_path": "/cities/us/glassmanor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4835003",
          "name": "Glastonbury",
          "country_code": "US",
          "slug": "glastonbury",
          "canonical_path": "/cities/us/glastonbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4835004",
          "name": "Glastonbury Center",
          "country_code": "US",
          "slug": "glastonbury-center",
          "canonical_path": "/cities/us/glastonbury-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4761054",
          "name": "Glen Allen",
          "country_code": "US",
          "slug": "glen-allen",
          "canonical_path": "/cities/us/glen-allen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4356188",
          "name": "Glen Burnie",
          "country_code": "US",
          "slug": "glen-burnie",
          "canonical_path": "/cities/us/glen-burnie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1729639",
          "name": "Glen Carbon",
          "country_code": "US",
          "slug": "glen-carbon",
          "canonical_path": "/cities/us/glen-carbon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3629113",
          "name": "Glen Cove",
          "country_code": "US",
          "slug": "glen-cove",
          "canonical_path": "/cities/us/glen-cove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1729756",
          "name": "Glen Ellyn",
          "country_code": "US",
          "slug": "glen-ellyn",
          "canonical_path": "/cities/us/glen-ellyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098430",
          "name": "Glen Ridge",
          "country_code": "US",
          "slug": "glen-ridge",
          "canonical_path": "/cities/us/glen-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3426610",
          "name": "Glen Ridge borough",
          "country_code": "US",
          "slug": "glen-ridge-borough",
          "canonical_path": "/cities/us/glen-ridge-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098436",
          "name": "Glen Rock",
          "country_code": "US",
          "slug": "glen-rock",
          "canonical_path": "/cities/us/glen-rock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3426640",
          "name": "Glen Rock borough",
          "country_code": "US",
          "slug": "glen-rock-borough",
          "canonical_path": "/cities/us/glen-rock-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2432500",
          "name": "Glenarden",
          "country_code": "US",
          "slug": "glenarden",
          "canonical_path": "/cities/us/glenarden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0129992",
          "name": "Glencoe",
          "country_code": "US",
          "slug": "glencoe-al",
          "canonical_path": "/cities/us/glencoe-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1729652",
          "name": "Glencoe",
          "country_code": "US",
          "slug": "glencoe-il",
          "canonical_path": "/cities/us/glencoe-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2723948",
          "name": "Glencoe",
          "country_code": "US",
          "slug": "glencoe-mn",
          "canonical_path": "/cities/us/glencoe-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5423075",
          "name": "Glendale",
          "country_code": "US",
          "slug": "glendale",
          "canonical_path": "/cities/us/glendale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0427820",
          "name": "Glendale",
          "country_code": "US",
          "slug": "glendale-az",
          "canonical_path": "/cities/us/glendale-az/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0630000",
          "name": "Glendale",
          "country_code": "US",
          "slug": "glendale-ca",
          "canonical_path": "/cities/us/glendale-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2927334",
          "name": "Glendale",
          "country_code": "US",
          "slug": "glendale-mo",
          "canonical_path": "/cities/us/glendale-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5529400",
          "name": "Glendale",
          "country_code": "US",
          "slug": "glendale-wi",
          "canonical_path": "/cities/us/glendale-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1729730",
          "name": "Glendale Heights",
          "country_code": "US",
          "slug": "glendale-heights",
          "canonical_path": "/cities/us/glendale-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5654391",
          "name": "Glendive",
          "country_code": "US",
          "slug": "glendive",
          "canonical_path": "/cities/us/glendive/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0630014",
          "name": "Glendora",
          "country_code": "US",
          "slug": "glendora",
          "canonical_path": "/cities/us/glendora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5423078",
          "name": "Gleneagle",
          "country_code": "US",
          "slug": "gleneagle",
          "canonical_path": "/cities/us/gleneagle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4356280",
          "name": "Glenmont",
          "country_code": "US",
          "slug": "glenmont",
          "canonical_path": "/cities/us/glenmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4356289",
          "name": "Glenn Dale",
          "country_code": "US",
          "slug": "glenn-dale",
          "canonical_path": "/cities/us/glenn-dale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4829840",
          "name": "Glenn Heights",
          "country_code": "US",
          "slug": "glenn-heights",
          "canonical_path": "/cities/us/glenn-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1333336",
          "name": "Glennville",
          "country_code": "US",
          "slug": "glennville",
          "canonical_path": "/cities/us/glennville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4558247",
          "name": "Glenolden",
          "country_code": "US",
          "slug": "glenolden",
          "canonical_path": "/cities/us/glenolden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4229720",
          "name": "Glenolden borough",
          "country_code": "US",
          "slug": "glenolden-borough",
          "canonical_path": "/cities/us/glenolden-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4029600",
          "name": "Glenpool",
          "country_code": "US",
          "slug": "glenpool",
          "canonical_path": "/cities/us/glenpool/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3629333",
          "name": "Glens Falls",
          "country_code": "US",
          "slug": "glens-falls",
          "canonical_path": "/cities/us/glens-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258652",
          "name": "Glens Falls North",
          "country_code": "US",
          "slug": "glens-falls-north",
          "canonical_path": "/cities/us/glens-falls-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5191335",
          "name": "Glenshaw",
          "country_code": "US",
          "slug": "glenshaw",
          "canonical_path": "/cities/us/glenshaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5191327",
          "name": "Glenside",
          "country_code": "US",
          "slug": "glenside",
          "canonical_path": "/cities/us/glenside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156857",
          "name": "Glenvar Heights",
          "country_code": "US",
          "slug": "glenvar-heights",
          "canonical_path": "/cities/us/glenvar-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1729938",
          "name": "Glenview",
          "country_code": "US",
          "slug": "glenview",
          "canonical_path": "/cities/us/glenview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1730029",
          "name": "Glenwood",
          "country_code": "US",
          "slug": "glenwood-il",
          "canonical_path": "/cities/us/glenwood-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1931350",
          "name": "Glenwood",
          "country_code": "US",
          "slug": "glenwood-ia",
          "canonical_path": "/cities/us/glenwood-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0830780",
          "name": "Glenwood Springs",
          "country_code": "US",
          "slug": "glenwood-springs",
          "canonical_path": "/cities/us/glenwood-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0428030",
          "name": "Globe",
          "country_code": "US",
          "slug": "globe",
          "canonical_path": "/cities/us/globe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2526150",
          "name": "Gloucester",
          "country_code": "US",
          "slug": "gloucester",
          "canonical_path": "/cities/us/gloucester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3426820",
          "name": "Gloucester City",
          "country_code": "US",
          "slug": "gloucester-city",
          "canonical_path": "/cities/us/gloucester-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4761171",
          "name": "Gloucester Point",
          "country_code": "US",
          "slug": "gloucester-point",
          "canonical_path": "/cities/us/gloucester-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4138926",
          "name": "Glover Park",
          "country_code": "US",
          "slug": "glover-park",
          "canonical_path": "/cities/us/glover-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3629443",
          "name": "Gloversville",
          "country_code": "US",
          "slug": "gloversville",
          "canonical_path": "/cities/us/gloversville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2026725",
          "name": "Goddard",
          "country_code": "US",
          "slug": "goddard",
          "canonical_path": "/cities/us/goddard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1730094",
          "name": "Godfrey",
          "country_code": "US",
          "slug": "godfrey",
          "canonical_path": "/cities/us/godfrey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4829972",
          "name": "Godley",
          "country_code": "US",
          "slug": "godley",
          "canonical_path": "/cities/us/godley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5296106",
          "name": "Gold Camp",
          "country_code": "US",
          "slug": "gold-camp",
          "canonical_path": "/cities/us/gold-camp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261353",
          "name": "Gold Canyon",
          "country_code": "US",
          "slug": "gold-canyon",
          "canonical_path": "/cities/us/gold-canyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5352771",
          "name": "Gold River",
          "country_code": "US",
          "slug": "gold-river",
          "canonical_path": "/cities/us/gold-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0830835",
          "name": "Golden",
          "country_code": "US",
          "slug": "golden",
          "canonical_path": "/cities/us/golden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156920",
          "name": "Golden Gate",
          "country_code": "US",
          "slug": "golden-gate",
          "canonical_path": "/cities/us/golden-gate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156931",
          "name": "Golden Glades",
          "country_code": "US",
          "slug": "golden-glades",
          "canonical_path": "/cities/us/golden-glades/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5352875",
          "name": "Golden Hills",
          "country_code": "US",
          "slug": "golden-hills",
          "canonical_path": "/cities/us/golden-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526893",
          "name": "Golden Triangle",
          "country_code": "US",
          "slug": "golden-triangle",
          "canonical_path": "/cities/us/golden-triangle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2724308",
          "name": "Golden Valley",
          "country_code": "US",
          "slug": "golden-valley",
          "canonical_path": "/cities/us/golden-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156959",
          "name": "Goldenrod",
          "country_code": "US",
          "slug": "goldenrod",
          "canonical_path": "/cities/us/goldenrod/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3726880",
          "name": "Goldsboro",
          "country_code": "US",
          "slug": "goldsboro",
          "canonical_path": "/cities/us/goldsboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0630378",
          "name": "Goleta",
          "country_code": "US",
          "slug": "goleta",
          "canonical_path": "/cities/us/goleta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0630392",
          "name": "Gonzales",
          "country_code": "US",
          "slug": "gonzales-ca",
          "canonical_path": "/cities/us/gonzales-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2229850",
          "name": "Gonzales",
          "country_code": "US",
          "slug": "gonzales-la",
          "canonical_path": "/cities/us/gonzales-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4830116",
          "name": "Gonzales",
          "country_code": "US",
          "slug": "gonzales-tx",
          "canonical_path": "/cities/us/gonzales-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4156975",
          "name": "Gonzalez",
          "country_code": "US",
          "slug": "gonzalez",
          "canonical_path": "/cities/us/gonzalez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5353058",
          "name": "Good Hope",
          "country_code": "US",
          "slug": "good-hope",
          "canonical_path": "/cities/us/good-hope/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4729920",
          "name": "Goodlettsville",
          "country_code": "US",
          "slug": "goodlettsville",
          "canonical_path": "/cities/us/goodlettsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0428380",
          "name": "Goodyear",
          "country_code": "US",
          "slug": "goodyear",
          "canonical_path": "/cities/us/goodyear/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4529815",
          "name": "Goose Creek",
          "country_code": "US",
          "slug": "goose-creek",
          "canonical_path": "/cities/us/goose-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4965481",
          "name": "Gorham",
          "country_code": "US",
          "slug": "gorham",
          "canonical_path": "/cities/us/gorham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4512940",
          "name": "Goshen",
          "country_code": "US",
          "slug": "goshen",
          "canonical_path": "/cities/us/goshen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1828386",
          "name": "Goshen",
          "country_code": "US",
          "slug": "goshen-in",
          "canonical_path": "/cities/us/goshen-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3629542",
          "name": "Goshen",
          "country_code": "US",
          "slug": "goshen-ny",
          "canonical_path": "/cities/us/goshen-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4157097",
          "name": "Goulds",
          "country_code": "US",
          "slug": "goulds",
          "canonical_path": "/cities/us/goulds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4807310",
          "name": "Grafton",
          "country_code": "US",
          "slug": "grafton",
          "canonical_path": "/cities/us/grafton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4938048",
          "name": "Grafton",
          "country_code": "US",
          "slug": "grafton-ma-027",
          "canonical_path": "/cities/us/grafton-ma-027/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3931150",
          "name": "Grafton",
          "country_code": "US",
          "slug": "grafton-oh",
          "canonical_path": "/cities/us/grafton-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5530000",
          "name": "Grafton",
          "country_code": "US",
          "slug": "grafton-wi",
          "canonical_path": "/cities/us/grafton-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5795906",
          "name": "Graham",
          "country_code": "US",
          "slug": "graham",
          "canonical_path": "/cities/us/graham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3727280",
          "name": "Graham",
          "country_code": "US",
          "slug": "graham-nc",
          "canonical_path": "/cities/us/graham-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4830392",
          "name": "Graham",
          "country_code": "US",
          "slug": "graham-tx",
          "canonical_path": "/cities/us/graham-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2928090",
          "name": "Grain Valley",
          "country_code": "US",
          "slug": "grain-valley",
          "canonical_path": "/cities/us/grain-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2230515",
          "name": "Grambling",
          "country_code": "US",
          "slug": "grambling",
          "canonical_path": "/cities/us/grambling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4830416",
          "name": "Granbury",
          "country_code": "US",
          "slug": "granbury",
          "canonical_path": "/cities/us/granbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7707961",
          "name": "Grand Bayou Mobile Home Park",
          "country_code": "US",
          "slug": "grand-bayou-mobile-home-park",
          "canonical_path": "/cities/us/grand-bayou-mobile-home-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2633280",
          "name": "Grand Blanc",
          "country_code": "US",
          "slug": "grand-blanc",
          "canonical_path": "/cities/us/grand-blanc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3832060",
          "name": "Grand Forks",
          "country_code": "US",
          "slug": "grand-forks",
          "canonical_path": "/cities/us/grand-forks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2633340",
          "name": "Grand Haven",
          "country_code": "US",
          "slug": "grand-haven",
          "canonical_path": "/cities/us/grand-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3119595",
          "name": "Grand Island",
          "country_code": "US",
          "slug": "grand-island",
          "canonical_path": "/cities/us/grand-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0831660",
          "name": "Grand Junction",
          "country_code": "US",
          "slug": "grand-junction",
          "canonical_path": "/cities/us/grand-junction/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2633420",
          "name": "Grand Ledge",
          "country_code": "US",
          "slug": "grand-ledge",
          "canonical_path": "/cities/us/grand-ledge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4830464",
          "name": "Grand Prairie",
          "country_code": "US",
          "slug": "grand-prairie",
          "canonical_path": "/cities/us/grand-prairie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2634000",
          "name": "Grand Rapids",
          "country_code": "US",
          "slug": "grand-rapids-mi",
          "canonical_path": "/cities/us/grand-rapids-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2725118",
          "name": "Grand Rapids",
          "country_code": "US",
          "slug": "grand-rapids-mn",
          "canonical_path": "/cities/us/grand-rapids-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0630658",
          "name": "Grand Terrace",
          "country_code": "US",
          "slug": "grand-terrace",
          "canonical_path": "/cities/us/grand-terrace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2928324",
          "name": "Grandview",
          "country_code": "US",
          "slug": "grandview-mo",
          "canonical_path": "/cities/us/grandview-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5327925",
          "name": "Grandview",
          "country_code": "US",
          "slug": "grandview-wa",
          "canonical_path": "/cities/us/grandview-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3931304",
          "name": "Grandview Heights",
          "country_code": "US",
          "slug": "grandview-heights",
          "canonical_path": "/cities/us/grandview-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2634160",
          "name": "Grandville",
          "country_code": "US",
          "slug": "grandville",
          "canonical_path": "/cities/us/grandville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4894360",
          "name": "Grandwood Park",
          "country_code": "US",
          "slug": "grandwood-park",
          "canonical_path": "/cities/us/grandwood-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4920869",
          "name": "Granger",
          "country_code": "US",
          "slug": "granger",
          "canonical_path": "/cities/us/granger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5353530",
          "name": "Granite Bay",
          "country_code": "US",
          "slug": "granite-bay",
          "canonical_path": "/cities/us/granite-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1730926",
          "name": "Granite City",
          "country_code": "US",
          "slug": "granite-city",
          "canonical_path": "/cities/us/granite-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4830584",
          "name": "Granite Shoals",
          "country_code": "US",
          "slug": "granite-shoals",
          "canonical_path": "/cities/us/granite-shoals/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1227256",
          "name": "Grant-Valkaria",
          "country_code": "US",
          "slug": "grant-valkaria",
          "canonical_path": "/cities/us/grant-valkaria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3530490",
          "name": "Grants",
          "country_code": "US",
          "slug": "grants",
          "canonical_path": "/cities/us/grants/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4130550",
          "name": "Grants Pass",
          "country_code": "US",
          "slug": "grants-pass",
          "canonical_path": "/cities/us/grants-pass/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4931120",
          "name": "Grantsville",
          "country_code": "US",
          "slug": "grantsville",
          "canonical_path": "/cities/us/grantsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3931402",
          "name": "Granville",
          "country_code": "US",
          "slug": "granville",
          "canonical_path": "/cities/us/granville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4830644",
          "name": "Grapevine",
          "country_code": "US",
          "slug": "grapevine",
          "canonical_path": "/cities/us/grapevine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0630798",
          "name": "Grass Valley",
          "country_code": "US",
          "slug": "grass-valley",
          "canonical_path": "/cities/us/grass-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4326320",
          "name": "Gray",
          "country_code": "US",
          "slug": "gray",
          "canonical_path": "/cities/us/gray/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1731121",
          "name": "Grayslake",
          "country_code": "US",
          "slug": "grayslake",
          "canonical_path": "/cities/us/grayslake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1334596",
          "name": "Grayson",
          "country_code": "US",
          "slug": "grayson",
          "canonical_path": "/cities/us/grayson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4065029",
          "name": "Grayson Valley",
          "country_code": "US",
          "slug": "grayson-valley",
          "canonical_path": "/cities/us/grayson-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4938157",
          "name": "Great Barrington",
          "country_code": "US",
          "slug": "great-barrington",
          "canonical_path": "/cities/us/great-barrington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2028300",
          "name": "Great Bend",
          "country_code": "US",
          "slug": "great-bend",
          "canonical_path": "/cities/us/great-bend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3032800",
          "name": "Great Falls",
          "country_code": "US",
          "slug": "great-falls",
          "canonical_path": "/cities/us/great-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3630169",
          "name": "Great Neck",
          "country_code": "US",
          "slug": "great-neck",
          "canonical_path": "/cities/us/great-neck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3630213",
          "name": "Great Neck Plaza",
          "country_code": "US",
          "slug": "great-neck-plaza",
          "canonical_path": "/cities/us/great-neck-plaza/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259823",
          "name": "Greater Northdale",
          "country_code": "US",
          "slug": "greater-northdale",
          "canonical_path": "/cities/us/greater-northdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258671",
          "name": "Greater Upper Marlboro",
          "country_code": "US",
          "slug": "greater-upper-marlboro",
          "canonical_path": "/cities/us/greater-upper-marlboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5119251",
          "name": "Greece",
          "country_code": "US",
          "slug": "greece",
          "canonical_path": "/cities/us/greece/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0832155",
          "name": "Greeley",
          "country_code": "US",
          "slug": "greeley",
          "canonical_path": "/cities/us/greeley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3931860",
          "name": "Green",
          "country_code": "US",
          "slug": "green",
          "canonical_path": "/cities/us/green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5531000",
          "name": "Green Bay",
          "country_code": "US",
          "slug": "green-bay",
          "canonical_path": "/cities/us/green-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1227400",
          "name": "Green Cove Springs",
          "country_code": "US",
          "slug": "green-cove-springs",
          "canonical_path": "/cities/us/green-cove-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4356783",
          "name": "Green Haven",
          "country_code": "US",
          "slug": "green-haven",
          "canonical_path": "/cities/us/green-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4626181",
          "name": "Green Hill",
          "country_code": "US",
          "slug": "green-hill",
          "canonical_path": "/cities/us/green-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098617",
          "name": "Green Knoll",
          "country_code": "US",
          "slug": "green-knoll",
          "canonical_path": "/cities/us/green-knoll/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5633740",
          "name": "Green River",
          "country_code": "US",
          "slug": "green-river",
          "canonical_path": "/cities/us/green-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4356836",
          "name": "Green Valley",
          "country_code": "US",
          "slug": "green-valley",
          "canonical_path": "/cities/us/green-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5296802",
          "name": "Green Valley",
          "country_code": "US",
          "slug": "green-valley-az-019",
          "canonical_path": "/cities/us/green-valley-az-019/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1227322",
          "name": "Greenacres",
          "country_code": "US",
          "slug": "greenacres",
          "canonical_path": "/cities/us/greenacres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4157467",
          "name": "Greenacres City",
          "country_code": "US",
          "slug": "greenacres-city",
          "canonical_path": "/cities/us/greenacres-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2434775",
          "name": "Greenbelt",
          "country_code": "US",
          "slug": "greenbelt",
          "canonical_path": "/cities/us/greenbelt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4762155",
          "name": "Greenbriar",
          "country_code": "US",
          "slug": "greenbriar",
          "canonical_path": "/cities/us/greenbriar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0528510",
          "name": "Greenbrier",
          "country_code": "US",
          "slug": "greenbrier-ar",
          "canonical_path": "/cities/us/greenbrier-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4730960",
          "name": "Greenbrier",
          "country_code": "US",
          "slug": "greenbrier-tn",
          "canonical_path": "/cities/us/greenbrier-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5119347",
          "name": "Greenburgh",
          "country_code": "US",
          "slug": "greenburgh",
          "canonical_path": "/cities/us/greenburgh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1829358",
          "name": "Greencastle",
          "country_code": "US",
          "slug": "greencastle",
          "canonical_path": "/cities/us/greencastle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5531125",
          "name": "Greendale",
          "country_code": "US",
          "slug": "greendale",
          "canonical_path": "/cities/us/greendale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4730980",
          "name": "Greeneville",
          "country_code": "US",
          "slug": "greeneville",
          "canonical_path": "/cities/us/greeneville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0630994",
          "name": "Greenfield",
          "country_code": "US",
          "slug": "greenfield-ca",
          "canonical_path": "/cities/us/greenfield-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1829520",
          "name": "Greenfield",
          "country_code": "US",
          "slug": "greenfield-in",
          "canonical_path": "/cities/us/greenfield-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2527060",
          "name": "Greenfield",
          "country_code": "US",
          "slug": "greenfield-ma",
          "canonical_path": "/cities/us/greenfield-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5531175",
          "name": "Greenfield",
          "country_code": "US",
          "slug": "greenfield-wi",
          "canonical_path": "/cities/us/greenfield-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5119377",
          "name": "Greenlawn",
          "country_code": "US",
          "slug": "greenlawn",
          "canonical_path": "/cities/us/greenlawn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3728000",
          "name": "Greensboro",
          "country_code": "US",
          "slug": "greensboro",
          "canonical_path": "/cities/us/greensboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1829718",
          "name": "Greensburg",
          "country_code": "US",
          "slug": "greensburg-in",
          "canonical_path": "/cities/us/greensburg-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4231200",
          "name": "Greensburg",
          "country_code": "US",
          "slug": "greensburg-pa",
          "canonical_path": "/cities/us/greensburg-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4502049",
          "name": "Greentree",
          "country_code": "US",
          "slug": "greentree",
          "canonical_path": "/cities/us/greentree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5119405",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville",
          "canonical_path": "/cities/us/greenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5192019",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-pa-085",
          "canonical_path": "/cities/us/greenville-pa-085/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5222476",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-ri-007",
          "canonical_path": "/cities/us/greenville-ri-007/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0131912",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-al",
          "canonical_path": "/cities/us/greenville-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1731589",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-il",
          "canonical_path": "/cities/us/greenville-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2635100",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-mi",
          "canonical_path": "/cities/us/greenville-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2829180",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-ms",
          "canonical_path": "/cities/us/greenville-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3728080",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-nc",
          "canonical_path": "/cities/us/greenville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3932340",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-oh",
          "canonical_path": "/cities/us/greenville-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4530850",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-sc",
          "canonical_path": "/cities/us/greenville-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4830920",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-tx",
          "canonical_path": "/cities/us/greenville-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5531525",
          "name": "Greenville",
          "country_code": "US",
          "slug": "greenville-wi",
          "canonical_path": "/cities/us/greenville-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4231328",
          "name": "Greenville borough",
          "country_code": "US",
          "slug": "greenville-borough",
          "canonical_path": "/cities/us/greenville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4835395",
          "name": "Greenwich",
          "country_code": "US",
          "slug": "greenwich",
          "canonical_path": "/cities/us/greenwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0528780",
          "name": "Greenwood",
          "country_code": "US",
          "slug": "greenwood-ar",
          "canonical_path": "/cities/us/greenwood-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1829898",
          "name": "Greenwood",
          "country_code": "US",
          "slug": "greenwood-in",
          "canonical_path": "/cities/us/greenwood-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2829340",
          "name": "Greenwood",
          "country_code": "US",
          "slug": "greenwood-ms",
          "canonical_path": "/cities/us/greenwood-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2929494",
          "name": "Greenwood",
          "country_code": "US",
          "slug": "greenwood-mo",
          "canonical_path": "/cities/us/greenwood-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4530895",
          "name": "Greenwood",
          "country_code": "US",
          "slug": "greenwood-sc",
          "canonical_path": "/cities/us/greenwood-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0833035",
          "name": "Greenwood Village",
          "country_code": "US",
          "slug": "greenwood-village",
          "canonical_path": "/cities/us/greenwood-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4530985",
          "name": "Greer",
          "country_code": "US",
          "slug": "greer",
          "canonical_path": "/cities/us/greer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2829460",
          "name": "Grenada",
          "country_code": "US",
          "slug": "grenada",
          "canonical_path": "/cities/us/grenada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4131250",
          "name": "Gresham",
          "country_code": "US",
          "slug": "gresham",
          "canonical_path": "/cities/us/gresham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4198298",
          "name": "Gresham Park",
          "country_code": "US",
          "slug": "gresham-park",
          "canonical_path": "/cities/us/gresham-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2231915",
          "name": "Gretna",
          "country_code": "US",
          "slug": "gretna-la",
          "canonical_path": "/cities/us/gretna-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3120260",
          "name": "Gretna",
          "country_code": "US",
          "slug": "gretna-ne",
          "canonical_path": "/cities/us/gretna-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0631260",
          "name": "Gridley",
          "country_code": "US",
          "slug": "gridley",
          "canonical_path": "/cities/us/gridley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1335324",
          "name": "Griffin",
          "country_code": "US",
          "slug": "griffin",
          "canonical_path": "/cities/us/griffin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1830042",
          "name": "Griffith",
          "country_code": "US",
          "slug": "griffith",
          "canonical_path": "/cities/us/griffith/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1933060",
          "name": "Grimes",
          "country_code": "US",
          "slug": "grimes",
          "canonical_path": "/cities/us/grimes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1933105",
          "name": "Grinnell",
          "country_code": "US",
          "slug": "grinnell",
          "canonical_path": "/cities/us/grinnell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259295",
          "name": "Grissom Air Force Base",
          "country_code": "US",
          "slug": "grissom-air-force-base",
          "canonical_path": "/cities/us/grissom-air-force-base/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4513394",
          "name": "Groesbeck",
          "country_code": "US",
          "slug": "groesbeck",
          "canonical_path": "/cities/us/groesbeck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2635480",
          "name": "Grosse Pointe",
          "country_code": "US",
          "slug": "grosse-pointe",
          "canonical_path": "/cities/us/grosse-pointe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2635520",
          "name": "Grosse Pointe Farms",
          "country_code": "US",
          "slug": "grosse-pointe-farms",
          "canonical_path": "/cities/us/grosse-pointe-farms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2635540",
          "name": "Grosse Pointe Park",
          "country_code": "US",
          "slug": "grosse-pointe-park",
          "canonical_path": "/cities/us/grosse-pointe-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2635580",
          "name": "Grosse Pointe Woods",
          "country_code": "US",
          "slug": "grosse-pointe-woods",
          "canonical_path": "/cities/us/grosse-pointe-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0934180",
          "name": "Groton",
          "country_code": "US",
          "slug": "groton",
          "canonical_path": "/cities/us/groton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4031600",
          "name": "Grove",
          "country_code": "US",
          "slug": "grove",
          "canonical_path": "/cities/us/grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3932592",
          "name": "Grove City",
          "country_code": "US",
          "slug": "grove-city",
          "canonical_path": "/cities/us/grove-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4231656",
          "name": "Grove City borough",
          "country_code": "US",
          "slug": "grove-city-borough",
          "canonical_path": "/cities/us/grove-city-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1227800",
          "name": "Groveland",
          "country_code": "US",
          "slug": "groveland",
          "canonical_path": "/cities/us/groveland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3932606",
          "name": "Groveport",
          "country_code": "US",
          "slug": "groveport",
          "canonical_path": "/cities/us/groveport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0631393",
          "name": "Grover Beach",
          "country_code": "US",
          "slug": "grover-beach",
          "canonical_path": "/cities/us/grover-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4831328",
          "name": "Groves",
          "country_code": "US",
          "slug": "groves",
          "canonical_path": "/cities/us/groves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4762493",
          "name": "Groveton",
          "country_code": "US",
          "slug": "groveton",
          "canonical_path": "/cities/us/groveton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1335716",
          "name": "Grovetown",
          "country_code": "US",
          "slug": "grovetown",
          "canonical_path": "/cities/us/grovetown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0430270",
          "name": "Guadalupe",
          "country_code": "US",
          "slug": "guadalupe-az",
          "canonical_path": "/cities/us/guadalupe-az/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0631414",
          "name": "Guadalupe",
          "country_code": "US",
          "slug": "guadalupe-ca",
          "canonical_path": "/cities/us/guadalupe-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4835512",
          "name": "Guilford",
          "country_code": "US",
          "slug": "guilford",
          "canonical_path": "/cities/us/guilford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1228000",
          "name": "Gulf Breeze",
          "country_code": "US",
          "slug": "gulf-breeze",
          "canonical_path": "/cities/us/gulf-breeze/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4428654",
          "name": "Gulf Hills",
          "country_code": "US",
          "slug": "gulf-hills",
          "canonical_path": "/cities/us/gulf-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4428663",
          "name": "Gulf Park Estates",
          "country_code": "US",
          "slug": "gulf-park-estates",
          "canonical_path": "/cities/us/gulf-park-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0132272",
          "name": "Gulf Shores",
          "country_code": "US",
          "slug": "gulf-shores",
          "canonical_path": "/cities/us/gulf-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1228175",
          "name": "Gulfport",
          "country_code": "US",
          "slug": "gulfport-fl",
          "canonical_path": "/cities/us/gulfport-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2829700",
          "name": "Gulfport",
          "country_code": "US",
          "slug": "gulfport-ms",
          "canonical_path": "/cities/us/gulfport-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4831592",
          "name": "Gun Barrel City",
          "country_code": "US",
          "slug": "gun-barrel-city",
          "canonical_path": "/cities/us/gun-barrel-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261393",
          "name": "Gunbarrel",
          "country_code": "US",
          "slug": "gunbarrel",
          "canonical_path": "/cities/us/gunbarrel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0833640",
          "name": "Gunnison",
          "country_code": "US",
          "slug": "gunnison",
          "canonical_path": "/cities/us/gunnison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0132416",
          "name": "Guntersville",
          "country_code": "US",
          "slug": "guntersville",
          "canonical_path": "/cities/us/guntersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1732018",
          "name": "Gurnee",
          "country_code": "US",
          "slug": "gurnee",
          "canonical_path": "/cities/us/gurnee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0631568",
          "name": "Gustine",
          "country_code": "US",
          "slug": "gustine",
          "canonical_path": "/cities/us/gustine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4031700",
          "name": "Guthrie",
          "country_code": "US",
          "slug": "guthrie",
          "canonical_path": "/cities/us/guthrie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3428650",
          "name": "Guttenberg",
          "country_code": "US",
          "slug": "guttenberg",
          "canonical_path": "/cities/us/guttenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4031750",
          "name": "Guymon",
          "country_code": "US",
          "slug": "guymon",
          "canonical_path": "/cities/us/guymon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0833695",
          "name": "Gypsum",
          "country_code": "US",
          "slug": "gypsum",
          "canonical_path": "/cities/us/gypsum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526894",
          "name": "H Street NE",
          "country_code": "US",
          "slug": "h-street",
          "canonical_path": "/cities/us/h-street/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5354819",
          "name": "Hacienda Heights",
          "country_code": "US",
          "slug": "hacienda-heights",
          "canonical_path": "/cities/us/hacienda-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3428680",
          "name": "Hackensack",
          "country_code": "US",
          "slug": "hackensack",
          "canonical_path": "/cities/us/hackensack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3428710",
          "name": "Hackettstown",
          "country_code": "US",
          "slug": "hackettstown",
          "canonical_path": "/cities/us/hackettstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4502093",
          "name": "Haddon Heights",
          "country_code": "US",
          "slug": "haddon-heights",
          "canonical_path": "/cities/us/haddon-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3428800",
          "name": "Haddon Heights borough",
          "country_code": "US",
          "slug": "haddon-heights-borough",
          "canonical_path": "/cities/us/haddon-heights-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4502103",
          "name": "Haddonfield",
          "country_code": "US",
          "slug": "haddonfield",
          "canonical_path": "/cities/us/haddonfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3428770",
          "name": "Haddonfield borough",
          "country_code": "US",
          "slug": "haddonfield-borough",
          "canonical_path": "/cities/us/haddonfield-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2436075",
          "name": "Hagerstown",
          "country_code": "US",
          "slug": "hagerstown",
          "canonical_path": "/cities/us/hagerstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5855252",
          "name": "Haʻikū",
          "country_code": "US",
          "slug": "ha-iku",
          "canonical_path": "/cities/us/ha-iku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262697",
          "name": "Haiku-Pauwela",
          "country_code": "US",
          "slug": "haiku-pauwela",
          "canonical_path": "/cities/us/haiku-pauwela/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1634390",
          "name": "Hailey",
          "country_code": "US",
          "slug": "hailey",
          "canonical_path": "/cities/us/hailey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1228400",
          "name": "Haines City",
          "country_code": "US",
          "slug": "haines-city",
          "canonical_path": "/cities/us/haines-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5855319",
          "name": "Hālawa",
          "country_code": "US",
          "slug": "halawa",
          "canonical_path": "/cities/us/halawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5855327",
          "name": "Hālawa Heights",
          "country_code": "US",
          "slug": "halawa-heights",
          "canonical_path": "/cities/us/halawa-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098794",
          "name": "Haledon",
          "country_code": "US",
          "slug": "haledon",
          "canonical_path": "/cities/us/haledon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3429070",
          "name": "Haledon borough",
          "country_code": "US",
          "slug": "haledon-borough",
          "canonical_path": "/cities/us/haledon-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5532075",
          "name": "Hales Corners",
          "country_code": "US",
          "slug": "hales-corners",
          "canonical_path": "/cities/us/hales-corners/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4469607",
          "name": "Half Moon",
          "country_code": "US",
          "slug": "half-moon",
          "canonical_path": "/cities/us/half-moon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0631708",
          "name": "Half Moon Bay",
          "country_code": "US",
          "slug": "half-moon-bay",
          "canonical_path": "/cities/us/half-moon-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4357176",
          "name": "Halfway",
          "country_code": "US",
          "slug": "halfway",
          "canonical_path": "/cities/us/halfway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4938652",
          "name": "Halifax",
          "country_code": "US",
          "slug": "halifax",
          "canonical_path": "/cities/us/halifax/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1228452",
          "name": "Hallandale Beach",
          "country_code": "US",
          "slug": "hallandale-beach",
          "canonical_path": "/cities/us/hallandale-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4831928",
          "name": "Haltom City",
          "country_code": "US",
          "slug": "haltom-city",
          "canonical_path": "/cities/us/haltom-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2726738",
          "name": "Ham Lake",
          "country_code": "US",
          "slug": "ham-lake",
          "canonical_path": "/cities/us/ham-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3631643",
          "name": "Hamburg",
          "country_code": "US",
          "slug": "hamburg",
          "canonical_path": "/cities/us/hamburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4835654",
          "name": "Hamden",
          "country_code": "US",
          "slug": "hamden",
          "canonical_path": "/cities/us/hamden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0132848",
          "name": "Hamilton",
          "country_code": "US",
          "slug": "hamilton-al",
          "canonical_path": "/cities/us/hamilton-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3033775",
          "name": "Hamilton",
          "country_code": "US",
          "slug": "hamilton-mt",
          "canonical_path": "/cities/us/hamilton-mt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3933012",
          "name": "Hamilton",
          "country_code": "US",
          "slug": "hamilton-oh",
          "canonical_path": "/cities/us/hamilton-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098781",
          "name": "Hamilton Square",
          "country_code": "US",
          "slug": "hamilton-square",
          "canonical_path": "/cities/us/hamilton-square/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3729160",
          "name": "Hamlet",
          "country_code": "US",
          "slug": "hamlet",
          "canonical_path": "/cities/us/hamlet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5119868",
          "name": "Hamlin",
          "country_code": "US",
          "slug": "hamlin",
          "canonical_path": "/cities/us/hamlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1831000",
          "name": "Hammond",
          "country_code": "US",
          "slug": "hammond-in",
          "canonical_path": "/cities/us/hammond-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2232755",
          "name": "Hammond",
          "country_code": "US",
          "slug": "hammond-la",
          "canonical_path": "/cities/us/hammond-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3429430",
          "name": "Hammonton",
          "country_code": "US",
          "slug": "hammonton",
          "canonical_path": "/cities/us/hammonton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4938738",
          "name": "Hampden",
          "country_code": "US",
          "slug": "hampden-ma-013",
          "canonical_path": "/cities/us/hampden-ma-013/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1732525",
          "name": "Hampshire",
          "country_code": "US",
          "slug": "hampshire",
          "canonical_path": "/cities/us/hampshire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2436500",
          "name": "Hampstead",
          "country_code": "US",
          "slug": "hampstead",
          "canonical_path": "/cities/us/hampstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4357289",
          "name": "Hampton",
          "country_code": "US",
          "slug": "hampton",
          "canonical_path": "/cities/us/hampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5087110",
          "name": "Hampton",
          "country_code": "US",
          "slug": "hampton-nh-015",
          "canonical_path": "/cities/us/hampton-nh-015/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1336276",
          "name": "Hampton",
          "country_code": "US",
          "slug": "hampton-ga",
          "canonical_path": "/cities/us/hampton-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5135000",
          "name": "Hampton",
          "country_code": "US",
          "slug": "hampton-va",
          "canonical_path": "/cities/us/hampton-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5119899",
          "name": "Hampton Bays",
          "country_code": "US",
          "slug": "hampton-bays",
          "canonical_path": "/cities/us/hampton-bays/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2636280",
          "name": "Hamtramck",
          "country_code": "US",
          "slug": "hamtramck",
          "canonical_path": "/cities/us/hamtramck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4532065",
          "name": "Hanahan",
          "country_code": "US",
          "slug": "hanahan",
          "canonical_path": "/cities/us/hanahan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0631960",
          "name": "Hanford",
          "country_code": "US",
          "slug": "hanford",
          "canonical_path": "/cities/us/hanford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2930214",
          "name": "Hannibal",
          "country_code": "US",
          "slug": "hannibal",
          "canonical_path": "/cities/us/hannibal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4357340",
          "name": "Hanover",
          "country_code": "US",
          "slug": "hanover",
          "canonical_path": "/cities/us/hanover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4558475",
          "name": "Hanover",
          "country_code": "US",
          "slug": "hanover-pa-133",
          "canonical_path": "/cities/us/hanover-pa-133/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4938836",
          "name": "Hanover",
          "country_code": "US",
          "slug": "hanover-ma-023",
          "canonical_path": "/cities/us/hanover-ma-023/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5087168",
          "name": "Hanover",
          "country_code": "US",
          "slug": "hanover-nh-009",
          "canonical_path": "/cities/us/hanover-nh-009/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4232448",
          "name": "Hanover borough",
          "country_code": "US",
          "slug": "hanover-borough",
          "canonical_path": "/cities/us/hanover-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1732746",
          "name": "Hanover Park",
          "country_code": "US",
          "slug": "hanover-park",
          "canonical_path": "/cities/us/hanover-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4938829",
          "name": "Hanson",
          "country_code": "US",
          "slug": "hanson",
          "canonical_path": "/cities/us/hanson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1336472",
          "name": "Hapeville",
          "country_code": "US",
          "slug": "hapeville",
          "canonical_path": "/cities/us/hapeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4132050",
          "name": "Happy Valley",
          "country_code": "US",
          "slug": "happy-valley",
          "canonical_path": "/cities/us/happy-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2232930",
          "name": "Harahan",
          "country_code": "US",
          "slug": "harahan",
          "canonical_path": "/cities/us/harahan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4532245",
          "name": "Hardeeville",
          "country_code": "US",
          "slug": "hardeeville",
          "canonical_path": "/cities/us/hardeeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4832312",
          "name": "Harker Heights",
          "country_code": "US",
          "slug": "harker-heights",
          "canonical_path": "/cities/us/harker-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4859802",
          "name": "Harlan",
          "country_code": "US",
          "slug": "harlan",
          "canonical_path": "/cities/us/harlan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5192662",
          "name": "Harleysville",
          "country_code": "US",
          "slug": "harleysville",
          "canonical_path": "/cities/us/harleysville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4832372",
          "name": "Harlingen",
          "country_code": "US",
          "slug": "harlingen",
          "canonical_path": "/cities/us/harlingen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2636700",
          "name": "Harper Woods",
          "country_code": "US",
          "slug": "harper-woods",
          "canonical_path": "/cities/us/harper-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4032750",
          "name": "Harrah",
          "country_code": "US",
          "slug": "harrah",
          "canonical_path": "/cities/us/harrah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4732520",
          "name": "Harriman",
          "country_code": "US",
          "slug": "harriman",
          "canonical_path": "/cities/us/harriman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3430150",
          "name": "Harrington Park borough",
          "country_code": "US",
          "slug": "harrington-park-borough",
          "canonical_path": "/cities/us/harrington-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5120074",
          "name": "Harris Hill",
          "country_code": "US",
          "slug": "harris-hill",
          "canonical_path": "/cities/us/harris-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1733136",
          "name": "Harrisburg",
          "country_code": "US",
          "slug": "harrisburg-il",
          "canonical_path": "/cities/us/harrisburg-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3729800",
          "name": "Harrisburg",
          "country_code": "US",
          "slug": "harrisburg-nc",
          "canonical_path": "/cities/us/harrisburg-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4232800",
          "name": "Harrisburg",
          "country_code": "US",
          "slug": "harrisburg-pa",
          "canonical_path": "/cities/us/harrisburg-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4627260",
          "name": "Harrisburg",
          "country_code": "US",
          "slug": "harrisburg-sd",
          "canonical_path": "/cities/us/harrisburg-sd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4627983",
          "name": "Harrison",
          "country_code": "US",
          "slug": "harrison",
          "canonical_path": "/cities/us/harrison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0530460",
          "name": "Harrison",
          "country_code": "US",
          "slug": "harrison-ar",
          "canonical_path": "/cities/us/harrison-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3430210",
          "name": "Harrison",
          "country_code": "US",
          "slug": "harrison-nj",
          "canonical_path": "/cities/us/harrison-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3632402",
          "name": "Harrison",
          "country_code": "US",
          "slug": "harrison-ny",
          "canonical_path": "/cities/us/harrison-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3933838",
          "name": "Harrison",
          "country_code": "US",
          "slug": "harrison-oh",
          "canonical_path": "/cities/us/harrison-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5532790",
          "name": "Harrison",
          "country_code": "US",
          "slug": "harrison-wi",
          "canonical_path": "/cities/us/harrison-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5135624",
          "name": "Harrisonburg",
          "country_code": "US",
          "slug": "harrisonburg",
          "canonical_path": "/cities/us/harrisonburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2930610",
          "name": "Harrisonville",
          "country_code": "US",
          "slug": "harrisonville",
          "canonical_path": "/cities/us/harrisonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4933540",
          "name": "Harrisville",
          "country_code": "US",
          "slug": "harrisville",
          "canonical_path": "/cities/us/harrisville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2134966",
          "name": "Harrodsburg",
          "country_code": "US",
          "slug": "harrodsburg",
          "canonical_path": "/cities/us/harrodsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5236879",
          "name": "Hartford",
          "country_code": "US",
          "slug": "hartford",
          "canonical_path": "/cities/us/hartford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0937000",
          "name": "Hartford",
          "country_code": "US",
          "slug": "hartford-ct",
          "canonical_path": "/cities/us/hartford-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5533000",
          "name": "Hartford",
          "country_code": "US",
          "slug": "hartford-wi",
          "canonical_path": "/cities/us/hartford-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1832242",
          "name": "Hartford City",
          "country_code": "US",
          "slug": "hartford-city",
          "canonical_path": "/cities/us/hartford-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5533100",
          "name": "Hartland",
          "country_code": "US",
          "slug": "hartland",
          "canonical_path": "/cities/us/hartland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5120141",
          "name": "Hartsdale",
          "country_code": "US",
          "slug": "hartsdale",
          "canonical_path": "/cities/us/hartsdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0133448",
          "name": "Hartselle",
          "country_code": "US",
          "slug": "hartselle",
          "canonical_path": "/cities/us/hartselle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4532560",
          "name": "Hartsville",
          "country_code": "US",
          "slug": "hartsville",
          "canonical_path": "/cities/us/hartsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4732742",
          "name": "Hartsville/Trousdale County",
          "country_code": "US",
          "slug": "hartsville-trousdale-county",
          "canonical_path": "/cities/us/hartsville-trousdale-county/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1733331",
          "name": "Harvard",
          "country_code": "US",
          "slug": "harvard",
          "canonical_path": "/cities/us/harvard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4066463",
          "name": "Harvest",
          "country_code": "US",
          "slug": "harvest",
          "canonical_path": "/cities/us/harvest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1733383",
          "name": "Harvey",
          "country_code": "US",
          "slug": "harvey",
          "canonical_path": "/cities/us/harvey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4939004",
          "name": "Harwich",
          "country_code": "US",
          "slug": "harwich",
          "canonical_path": "/cities/us/harwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1733435",
          "name": "Harwood Heights",
          "country_code": "US",
          "slug": "harwood-heights",
          "canonical_path": "/cities/us/harwood-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098878",
          "name": "Hasbrouck Heights",
          "country_code": "US",
          "slug": "hasbrouck-heights",
          "canonical_path": "/cities/us/hasbrouck-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3430420",
          "name": "Hasbrouck Heights borough",
          "country_code": "US",
          "slug": "hasbrouck-heights-borough",
          "canonical_path": "/cities/us/hasbrouck-heights-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4832720",
          "name": "Haslet",
          "country_code": "US",
          "slug": "haslet",
          "canonical_path": "/cities/us/haslet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4995514",
          "name": "Haslett",
          "country_code": "US",
          "slug": "haslett",
          "canonical_path": "/cities/us/haslett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2637120",
          "name": "Hastings",
          "country_code": "US",
          "slug": "hastings-mi",
          "canonical_path": "/cities/us/hastings-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2727530",
          "name": "Hastings",
          "country_code": "US",
          "slug": "hastings-mn",
          "canonical_path": "/cities/us/hastings-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3121415",
          "name": "Hastings",
          "country_code": "US",
          "slug": "hastings-ne",
          "canonical_path": "/cities/us/hastings-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3632710",
          "name": "Hastings-on-Hudson",
          "country_code": "US",
          "slug": "hastings-on-hudson",
          "canonical_path": "/cities/us/hastings-on-hudson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5192863",
          "name": "Hatboro",
          "country_code": "US",
          "slug": "hatboro",
          "canonical_path": "/cities/us/hatboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4233088",
          "name": "Hatboro borough",
          "country_code": "US",
          "slug": "hatboro-borough",
          "canonical_path": "/cities/us/hatboro-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2831020",
          "name": "Hattiesburg",
          "country_code": "US",
          "slug": "hattiesburg",
          "canonical_path": "/cities/us/hattiesburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5120228",
          "name": "Hauppauge",
          "country_code": "US",
          "slug": "hauppauge",
          "canonical_path": "/cities/us/hauppauge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3730120",
          "name": "Havelock",
          "country_code": "US",
          "slug": "havelock",
          "canonical_path": "/cities/us/havelock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2529405",
          "name": "Haverhill",
          "country_code": "US",
          "slug": "haverhill",
          "canonical_path": "/cities/us/haverhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3632754",
          "name": "Haverstraw",
          "country_code": "US",
          "slug": "haverstraw",
          "canonical_path": "/cities/us/haverstraw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3035050",
          "name": "Havre",
          "country_code": "US",
          "slug": "havre",
          "canonical_path": "/cities/us/havre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2437600",
          "name": "Havre de Grace",
          "country_code": "US",
          "slug": "havre-de-grace",
          "canonical_path": "/cities/us/havre-de-grace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0632506",
          "name": "Hawaiian Gardens",
          "country_code": "US",
          "slug": "hawaiian-gardens",
          "canonical_path": "/cities/us/hawaiian-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5855809",
          "name": "Hawaiian Paradise Park",
          "country_code": "US",
          "slug": "hawaiian-paradise-park",
          "canonical_path": "/cities/us/hawaiian-paradise-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4199694",
          "name": "Hawkinsville",
          "country_code": "US",
          "slug": "hawkinsville",
          "canonical_path": "/cities/us/hawkinsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1733630",
          "name": "Hawthorn Woods",
          "country_code": "US",
          "slug": "hawthorn-woods",
          "canonical_path": "/cities/us/hawthorn-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0632548",
          "name": "Hawthorne",
          "country_code": "US",
          "slug": "hawthorne",
          "canonical_path": "/cities/us/hawthorne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3430570",
          "name": "Hawthorne borough",
          "country_code": "US",
          "slug": "hawthorne-borough",
          "canonical_path": "/cities/us/hawthorne-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1636370",
          "name": "Hayden",
          "country_code": "US",
          "slug": "hayden",
          "canonical_path": "/cities/us/hayden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5730675",
          "name": "Hayesville",
          "country_code": "US",
          "slug": "hayesville",
          "canonical_path": "/cities/us/hayesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2031100",
          "name": "Hays",
          "country_code": "US",
          "slug": "hays",
          "canonical_path": "/cities/us/hays/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2031125",
          "name": "Haysville",
          "country_code": "US",
          "slug": "haysville",
          "canonical_path": "/cities/us/haysville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0633000",
          "name": "Hayward",
          "country_code": "US",
          "slug": "hayward",
          "canonical_path": "/cities/us/hayward/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4294349",
          "name": "Hazard",
          "country_code": "US",
          "slug": "hazard",
          "canonical_path": "/cities/us/hazard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1733695",
          "name": "Hazel Crest",
          "country_code": "US",
          "slug": "hazel-crest",
          "canonical_path": "/cities/us/hazel-crest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5796984",
          "name": "Hazel Dell",
          "country_code": "US",
          "slug": "hazel-dell",
          "canonical_path": "/cities/us/hazel-dell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2637420",
          "name": "Hazel Park",
          "country_code": "US",
          "slug": "hazel-park",
          "canonical_path": "/cities/us/hazel-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2931276",
          "name": "Hazelwood",
          "country_code": "US",
          "slug": "hazelwood",
          "canonical_path": "/cities/us/hazelwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4233408",
          "name": "Hazleton",
          "country_code": "US",
          "slug": "hazleton",
          "canonical_path": "/cities/us/hazleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0133856",
          "name": "Headland",
          "country_code": "US",
          "slug": "headland",
          "canonical_path": "/cities/us/headland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0633056",
          "name": "Healdsburg",
          "country_code": "US",
          "slug": "healdsburg",
          "canonical_path": "/cities/us/healdsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3934748",
          "name": "Heath",
          "country_code": "US",
          "slug": "heath-oh",
          "canonical_path": "/cities/us/heath-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4832984",
          "name": "Heath",
          "country_code": "US",
          "slug": "heath-tx",
          "canonical_path": "/cities/us/heath-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5098945",
          "name": "Heathcote",
          "country_code": "US",
          "slug": "heathcote",
          "canonical_path": "/cities/us/heathcote/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4158296",
          "name": "Heathrow",
          "country_code": "US",
          "slug": "heathrow",
          "canonical_path": "/cities/us/heathrow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4934200",
          "name": "Heber",
          "country_code": "US",
          "slug": "heber",
          "canonical_path": "/cities/us/heber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5775699",
          "name": "Heber City",
          "country_code": "US",
          "slug": "heber-city",
          "canonical_path": "/cities/us/heber-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0531090",
          "name": "Heber Springs",
          "country_code": "US",
          "slug": "heber-springs",
          "canonical_path": "/cities/us/heber-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4294425",
          "name": "Hebron",
          "country_code": "US",
          "slug": "hebron",
          "canonical_path": "/cities/us/hebron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0134024",
          "name": "Helena",
          "country_code": "US",
          "slug": "helena-al",
          "canonical_path": "/cities/us/helena-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3035600",
          "name": "Helena",
          "country_code": "US",
          "slug": "helena-mt",
          "canonical_path": "/cities/us/helena-mt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261423",
          "name": "Helena Valley Southeast",
          "country_code": "US",
          "slug": "helena-valley-southeast",
          "canonical_path": "/cities/us/helena-valley-southeast/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261424",
          "name": "Helena Valley West Central",
          "country_code": "US",
          "slug": "helena-valley-west-central",
          "canonical_path": "/cities/us/helena-valley-west-central/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0531190",
          "name": "Helena-West Helena",
          "country_code": "US",
          "slug": "helena-west-helena",
          "canonical_path": "/cities/us/helena-west-helena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5193149",
          "name": "Hellertown",
          "country_code": "US",
          "slug": "hellertown",
          "canonical_path": "/cities/us/hellertown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4233744",
          "name": "Hellertown borough",
          "country_code": "US",
          "slug": "hellertown-borough",
          "canonical_path": "/cities/us/hellertown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4833146",
          "name": "Helotes",
          "country_code": "US",
          "slug": "helotes",
          "canonical_path": "/cities/us/helotes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0633182",
          "name": "Hemet",
          "country_code": "US",
          "slug": "hemet",
          "canonical_path": "/cities/us/hemet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3633139",
          "name": "Hempstead",
          "country_code": "US",
          "slug": "hempstead-ny",
          "canonical_path": "/cities/us/hempstead-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4833200",
          "name": "Hempstead",
          "country_code": "US",
          "slug": "hempstead-tx",
          "canonical_path": "/cities/us/hempstead-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2135866",
          "name": "Henderson",
          "country_code": "US",
          "slug": "henderson-ky",
          "canonical_path": "/cities/us/henderson-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3231900",
          "name": "Henderson",
          "country_code": "US",
          "slug": "henderson-nv",
          "canonical_path": "/cities/us/henderson-nv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3730660",
          "name": "Henderson",
          "country_code": "US",
          "slug": "henderson-nc",
          "canonical_path": "/cities/us/henderson-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4733260",
          "name": "Henderson",
          "country_code": "US",
          "slug": "henderson-tn",
          "canonical_path": "/cities/us/henderson-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4833212",
          "name": "Henderson",
          "country_code": "US",
          "slug": "henderson-tx",
          "canonical_path": "/cities/us/henderson-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3730720",
          "name": "Hendersonville",
          "country_code": "US",
          "slug": "hendersonville-nc",
          "canonical_path": "/cities/us/hendersonville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4733280",
          "name": "Hendersonville",
          "country_code": "US",
          "slug": "hendersonville-tn",
          "canonical_path": "/cities/us/hendersonville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4033750",
          "name": "Henryetta",
          "country_code": "US",
          "slug": "henryetta",
          "canonical_path": "/cities/us/henryetta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2931708",
          "name": "Herculaneum",
          "country_code": "US",
          "slug": "herculaneum",
          "canonical_path": "/cities/us/herculaneum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0633308",
          "name": "Hercules",
          "country_code": "US",
          "slug": "hercules",
          "canonical_path": "/cities/us/hercules/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4833320",
          "name": "Hereford",
          "country_code": "US",
          "slug": "hereford",
          "canonical_path": "/cities/us/hereford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3634121",
          "name": "Herkimer",
          "country_code": "US",
          "slug": "herkimer",
          "canonical_path": "/cities/us/herkimer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2728682",
          "name": "Hermantown",
          "country_code": "US",
          "slug": "hermantown",
          "canonical_path": "/cities/us/hermantown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4133700",
          "name": "Hermiston",
          "country_code": "US",
          "slug": "hermiston",
          "canonical_path": "/cities/us/hermiston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4234064",
          "name": "Hermitage",
          "country_code": "US",
          "slug": "hermitage",
          "canonical_path": "/cities/us/hermitage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0633364",
          "name": "Hermosa Beach",
          "country_code": "US",
          "slug": "hermosa-beach",
          "canonical_path": "/cities/us/hermosa-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2831780",
          "name": "Hernando",
          "country_code": "US",
          "slug": "hernando",
          "canonical_path": "/cities/us/hernando/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5136648",
          "name": "Herndon",
          "country_code": "US",
          "slug": "herndon",
          "canonical_path": "/cities/us/herndon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4934970",
          "name": "Herriman",
          "country_code": "US",
          "slug": "herriman",
          "canonical_path": "/cities/us/herriman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1734358",
          "name": "Herrin",
          "country_code": "US",
          "slug": "herrin",
          "canonical_path": "/cities/us/herrin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5193342",
          "name": "Hershey",
          "country_code": "US",
          "slug": "hershey",
          "canonical_path": "/cities/us/hershey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0633434",
          "name": "Hesperia",
          "country_code": "US",
          "slug": "hesperia",
          "canonical_path": "/cities/us/hesperia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4833428",
          "name": "Hewitt",
          "country_code": "US",
          "slug": "hewitt",
          "canonical_path": "/cities/us/hewitt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5120598",
          "name": "Hewlett",
          "country_code": "US",
          "slug": "hewlett",
          "canonical_path": "/cities/us/hewlett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1230000",
          "name": "Hialeah",
          "country_code": "US",
          "slug": "hialeah",
          "canonical_path": "/cities/us/hialeah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1230025",
          "name": "Hialeah Gardens",
          "country_code": "US",
          "slug": "hialeah-gardens",
          "canonical_path": "/cities/us/hialeah-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1935940",
          "name": "Hiawatha",
          "country_code": "US",
          "slug": "hiawatha",
          "canonical_path": "/cities/us/hiawatha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2728790",
          "name": "Hibbing",
          "country_code": "US",
          "slug": "hibbing",
          "canonical_path": "/cities/us/hibbing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262713",
          "name": "Hickam Field",
          "country_code": "US",
          "slug": "hickam-field",
          "canonical_path": "/cities/us/hickam-field/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3731060",
          "name": "Hickory",
          "country_code": "US",
          "slug": "hickory",
          "canonical_path": "/cities/us/hickory/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4833476",
          "name": "Hickory Creek",
          "country_code": "US",
          "slug": "hickory-creek",
          "canonical_path": "/cities/us/hickory-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1734514",
          "name": "Hickory Hills",
          "country_code": "US",
          "slug": "hickory-hills",
          "canonical_path": "/cities/us/hickory-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5120656",
          "name": "Hicksville",
          "country_code": "US",
          "slug": "hicksville",
          "canonical_path": "/cities/us/hicksville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4833560",
          "name": "Hidalgo",
          "country_code": "US",
          "slug": "hidalgo",
          "canonical_path": "/cities/us/hidalgo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4258871",
          "name": "Hidden Valley",
          "country_code": "US",
          "slug": "hidden-valley",
          "canonical_path": "/cities/us/hidden-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5356767",
          "name": "Hidden Valley Lake",
          "country_code": "US",
          "slug": "hidden-valley-lake",
          "canonical_path": "/cities/us/hidden-valley-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3731400",
          "name": "High Point",
          "country_code": "US",
          "slug": "high-point",
          "canonical_path": "/cities/us/high-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1230525",
          "name": "High Springs",
          "country_code": "US",
          "slug": "high-springs",
          "canonical_path": "/cities/us/high-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5120741",
          "name": "Highland",
          "country_code": "US",
          "slug": "highland-ny-111",
          "canonical_path": "/cities/us/highland-ny-111/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0633588",
          "name": "Highland",
          "country_code": "US",
          "slug": "highland-ca",
          "canonical_path": "/cities/us/highland-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1734670",
          "name": "Highland",
          "country_code": "US",
          "slug": "highland-il",
          "canonical_path": "/cities/us/highland-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1833466",
          "name": "Highland",
          "country_code": "US",
          "slug": "highland-in",
          "canonical_path": "/cities/us/highland-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4935190",
          "name": "Highland",
          "country_code": "US",
          "slug": "highland-ut",
          "canonical_path": "/cities/us/highland-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4158604",
          "name": "Highland City",
          "country_code": "US",
          "slug": "highland-city",
          "canonical_path": "/cities/us/highland-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2136604",
          "name": "Highland Heights",
          "country_code": "US",
          "slug": "highland-heights-ky",
          "canonical_path": "/cities/us/highland-heights-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3935252",
          "name": "Highland Heights",
          "country_code": "US",
          "slug": "highland-heights-oh",
          "canonical_path": "/cities/us/highland-heights-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5099057",
          "name": "Highland Park",
          "country_code": "US",
          "slug": "highland-park",
          "canonical_path": "/cities/us/highland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1734722",
          "name": "Highland Park",
          "country_code": "US",
          "slug": "highland-park-il",
          "canonical_path": "/cities/us/highland-park-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2638180",
          "name": "Highland Park",
          "country_code": "US",
          "slug": "highland-park-mi",
          "canonical_path": "/cities/us/highland-park-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4833824",
          "name": "Highland Park",
          "country_code": "US",
          "slug": "highland-park-tx",
          "canonical_path": "/cities/us/highland-park-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3431470",
          "name": "Highland Park borough",
          "country_code": "US",
          "slug": "highland-park-borough",
          "canonical_path": "/cities/us/highland-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4764127",
          "name": "Highland Springs",
          "country_code": "US",
          "slug": "highland-springs",
          "canonical_path": "/cities/us/highland-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4833848",
          "name": "Highland Village",
          "country_code": "US",
          "slug": "highland-village",
          "canonical_path": "/cities/us/highland-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4697652",
          "name": "Highlands",
          "country_code": "US",
          "slug": "highlands",
          "canonical_path": "/cities/us/highlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5425043",
          "name": "Highlands Ranch",
          "country_code": "US",
          "slug": "highlands-ranch",
          "canonical_path": "/cities/us/highlands-ranch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5099067",
          "name": "Hightstown",
          "country_code": "US",
          "slug": "hightstown",
          "canonical_path": "/cities/us/hightstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3431620",
          "name": "Hightstown borough",
          "country_code": "US",
          "slug": "hightstown-borough",
          "canonical_path": "/cities/us/hightstown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1734865",
          "name": "Highwood",
          "country_code": "US",
          "slug": "highwood",
          "canonical_path": "/cities/us/highwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4358066",
          "name": "Hillandale",
          "country_code": "US",
          "slug": "hillandale",
          "canonical_path": "/cities/us/hillandale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4139077",
          "name": "Hillcrest",
          "country_code": "US",
          "slug": "hillcrest",
          "canonical_path": "/cities/us/hillcrest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5120797",
          "name": "Hillcrest",
          "country_code": "US",
          "slug": "hillcrest-ny-087",
          "canonical_path": "/cities/us/hillcrest-ny-087/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4358082",
          "name": "Hillcrest Heights",
          "country_code": "US",
          "slug": "hillcrest-heights",
          "canonical_path": "/cities/us/hillcrest-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3935476",
          "name": "Hilliard",
          "country_code": "US",
          "slug": "hilliard",
          "canonical_path": "/cities/us/hilliard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1735047",
          "name": "Hillsboro",
          "country_code": "US",
          "slug": "hillsboro-il",
          "canonical_path": "/cities/us/hillsboro-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3935560",
          "name": "Hillsboro",
          "country_code": "US",
          "slug": "hillsboro-oh",
          "canonical_path": "/cities/us/hillsboro-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4134100",
          "name": "Hillsboro",
          "country_code": "US",
          "slug": "hillsboro-or",
          "canonical_path": "/cities/us/hillsboro-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4834088",
          "name": "Hillsboro",
          "country_code": "US",
          "slug": "hillsboro-tx",
          "canonical_path": "/cities/us/hillsboro-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5099079",
          "name": "Hillsborough",
          "country_code": "US",
          "slug": "hillsborough",
          "canonical_path": "/cities/us/hillsborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0633798",
          "name": "Hillsborough",
          "country_code": "US",
          "slug": "hillsborough-ca",
          "canonical_path": "/cities/us/hillsborough-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3731620",
          "name": "Hillsborough",
          "country_code": "US",
          "slug": "hillsborough-nc",
          "canonical_path": "/cities/us/hillsborough-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2638460",
          "name": "Hillsdale",
          "country_code": "US",
          "slug": "hillsdale",
          "canonical_path": "/cities/us/hillsdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3431920",
          "name": "Hillsdale borough",
          "country_code": "US",
          "slug": "hillsdale-borough",
          "canonical_path": "/cities/us/hillsdale-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1735086",
          "name": "Hillside",
          "country_code": "US",
          "slug": "hillside",
          "canonical_path": "/cities/us/hillside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2136982",
          "name": "Hillview",
          "country_code": "US",
          "slug": "hillview",
          "canonical_path": "/cities/us/hillview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261441",
          "name": "Hilmar-Irwin",
          "country_code": "US",
          "slug": "hilmar-irwin",
          "canonical_path": "/cities/us/hilmar-irwin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5855927",
          "name": "Hilo",
          "country_code": "US",
          "slug": "hilo",
          "canonical_path": "/cities/us/hilo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3634847",
          "name": "Hilton",
          "country_code": "US",
          "slug": "hilton",
          "canonical_path": "/cities/us/hilton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4534045",
          "name": "Hilton Head Island",
          "country_code": "US",
          "slug": "hilton-head-island",
          "canonical_path": "/cities/us/hilton-head-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1338964",
          "name": "Hinesville",
          "country_code": "US",
          "slug": "hinesville",
          "canonical_path": "/cities/us/hinesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4939549",
          "name": "Hingham",
          "country_code": "US",
          "slug": "hingham",
          "canonical_path": "/cities/us/hingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1735307",
          "name": "Hinsdale",
          "country_code": "US",
          "slug": "hinsdale",
          "canonical_path": "/cities/us/hinsdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1339076",
          "name": "Hiram",
          "country_code": "US",
          "slug": "hiram",
          "canonical_path": "/cities/us/hiram/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4834220",
          "name": "Hitchcock",
          "country_code": "US",
          "slug": "hitchcock",
          "canonical_path": "/cities/us/hitchcock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5797430",
          "name": "Hobart",
          "country_code": "US",
          "slug": "hobart",
          "canonical_path": "/cities/us/hobart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1834114",
          "name": "Hobart",
          "country_code": "US",
          "slug": "hobart-in",
          "canonical_path": "/cities/us/hobart-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5535150",
          "name": "Hobart",
          "country_code": "US",
          "slug": "hobart-wi",
          "canonical_path": "/cities/us/hobart-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3532520",
          "name": "Hobbs",
          "country_code": "US",
          "slug": "hobbs",
          "canonical_path": "/cities/us/hobbs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4158758",
          "name": "Hobe Sound",
          "country_code": "US",
          "slug": "hobe-sound",
          "canonical_path": "/cities/us/hobe-sound/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3432250",
          "name": "Hoboken",
          "country_code": "US",
          "slug": "hoboken",
          "canonical_path": "/cities/us/hoboken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4142969",
          "name": "Hockessin",
          "country_code": "US",
          "slug": "hockessin",
          "canonical_path": "/cities/us/hockessin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1735411",
          "name": "Hoffman Estates",
          "country_code": "US",
          "slug": "hoffman-estates",
          "canonical_path": "/cities/us/hoffman-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4939637",
          "name": "Holbrook",
          "country_code": "US",
          "slug": "holbrook",
          "canonical_path": "/cities/us/holbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5120987",
          "name": "Holbrook",
          "country_code": "US",
          "slug": "holbrook-ny-103",
          "canonical_path": "/cities/us/holbrook-ny-103/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5284580",
          "name": "Holbrook",
          "country_code": "US",
          "slug": "holbrook-az-017",
          "canonical_path": "/cities/us/holbrook-az-017/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4939647",
          "name": "Holden",
          "country_code": "US",
          "slug": "holden",
          "canonical_path": "/cities/us/holden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4035400",
          "name": "Holdenville",
          "country_code": "US",
          "slug": "holdenville",
          "canonical_path": "/cities/us/holdenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3122640",
          "name": "Holdrege",
          "country_code": "US",
          "slug": "holdrege",
          "canonical_path": "/cities/us/holdrege/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4158865",
          "name": "Holiday",
          "country_code": "US",
          "slug": "holiday",
          "canonical_path": "/cities/us/holiday/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258741",
          "name": "Holiday City-Berkeley",
          "country_code": "US",
          "slug": "holiday-city-berkeley",
          "canonical_path": "/cities/us/holiday-city-berkeley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4936070",
          "name": "Holladay",
          "country_code": "US",
          "slug": "holladay",
          "canonical_path": "/cities/us/holladay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2638640",
          "name": "Holland",
          "country_code": "US",
          "slug": "holland",
          "canonical_path": "/cities/us/holland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5193920",
          "name": "Hollidaysburg",
          "country_code": "US",
          "slug": "hollidaysburg",
          "canonical_path": "/cities/us/hollidaysburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4235224",
          "name": "Hollidaysburg borough",
          "country_code": "US",
          "slug": "hollidaysburg-borough",
          "canonical_path": "/cities/us/hollidaysburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4764534",
          "name": "Hollins",
          "country_code": "US",
          "slug": "hollins",
          "canonical_path": "/cities/us/hollins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5087559",
          "name": "Hollis",
          "country_code": "US",
          "slug": "hollis",
          "canonical_path": "/cities/us/hollis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0634120",
          "name": "Hollister",
          "country_code": "US",
          "slug": "hollister",
          "canonical_path": "/cities/us/hollister/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2638700",
          "name": "Holly",
          "country_code": "US",
          "slug": "holly",
          "canonical_path": "/cities/us/holly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1231350",
          "name": "Holly Hill",
          "country_code": "US",
          "slug": "holly-hill",
          "canonical_path": "/cities/us/holly-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3732180",
          "name": "Holly Ridge",
          "country_code": "US",
          "slug": "holly-ridge",
          "canonical_path": "/cities/us/holly-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1339524",
          "name": "Holly Springs",
          "country_code": "US",
          "slug": "holly-springs-ga",
          "canonical_path": "/cities/us/holly-springs-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2833100",
          "name": "Holly Springs",
          "country_code": "US",
          "slug": "holly-springs-ms",
          "canonical_path": "/cities/us/holly-springs-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3732260",
          "name": "Holly Springs",
          "country_code": "US",
          "slug": "holly-springs-nc",
          "canonical_path": "/cities/us/holly-springs-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4764607",
          "name": "Hollymead",
          "country_code": "US",
          "slug": "hollymead",
          "canonical_path": "/cities/us/hollymead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1232000",
          "name": "Hollywood",
          "country_code": "US",
          "slug": "hollywood-fl",
          "canonical_path": "/cities/us/hollywood-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4534495",
          "name": "Hollywood",
          "country_code": "US",
          "slug": "hollywood-sc",
          "canonical_path": "/cities/us/hollywood-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5535450",
          "name": "Holmen",
          "country_code": "US",
          "slug": "holmen",
          "canonical_path": "/cities/us/holmen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4996306",
          "name": "Holt",
          "country_code": "US",
          "slug": "holt",
          "canonical_path": "/cities/us/holt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5121163",
          "name": "Holtsville",
          "country_code": "US",
          "slug": "holtsville",
          "canonical_path": "/cities/us/holtsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0634246",
          "name": "Holtville",
          "country_code": "US",
          "slug": "holtville",
          "canonical_path": "/cities/us/holtville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5856050",
          "name": "Hōlualoa",
          "country_code": "US",
          "slug": "holualoa",
          "canonical_path": "/cities/us/holualoa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2530840",
          "name": "Holyoke",
          "country_code": "US",
          "slug": "holyoke",
          "canonical_path": "/cities/us/holyoke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5357731",
          "name": "Home Gardens",
          "country_code": "US",
          "slug": "home-gardens",
          "canonical_path": "/cities/us/home-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258746",
          "name": "Homeacre-Lyndora",
          "country_code": "US",
          "slug": "homeacre-lyndora",
          "canonical_path": "/cities/us/homeacre-lyndora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5357755",
          "name": "Homeland",
          "country_code": "US",
          "slug": "homeland",
          "canonical_path": "/cities/us/homeland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4582142",
          "name": "Homeland Park",
          "country_code": "US",
          "slug": "homeland-park",
          "canonical_path": "/cities/us/homeland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0233140",
          "name": "Homer",
          "country_code": "US",
          "slug": "homer",
          "canonical_path": "/cities/us/homer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1735835",
          "name": "Homer Glen",
          "country_code": "US",
          "slug": "homer-glen",
          "canonical_path": "/cities/us/homer-glen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1232275",
          "name": "Homestead",
          "country_code": "US",
          "slug": "homestead",
          "canonical_path": "/cities/us/homestead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5523335",
          "name": "Homestead Meadows North",
          "country_code": "US",
          "slug": "homestead-meadows-north",
          "canonical_path": "/cities/us/homestead-meadows-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5523336",
          "name": "Homestead Meadows South",
          "country_code": "US",
          "slug": "homestead-meadows-south",
          "canonical_path": "/cities/us/homestead-meadows-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0135800",
          "name": "Homewood",
          "country_code": "US",
          "slug": "homewood-al",
          "canonical_path": "/cities/us/homewood-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1735879",
          "name": "Homewood",
          "country_code": "US",
          "slug": "homewood-il",
          "canonical_path": "/cities/us/homewood-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4159077",
          "name": "Homosassa Springs",
          "country_code": "US",
          "slug": "homosassa-springs",
          "canonical_path": "/cities/us/homosassa-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4834676",
          "name": "Hondo",
          "country_code": "US",
          "slug": "hondo",
          "canonical_path": "/cities/us/hondo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5856195",
          "name": "Honolulu",
          "country_code": "US",
          "slug": "honolulu",
          "canonical_path": "/cities/us/honolulu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4134900",
          "name": "Hood River",
          "country_code": "US",
          "slug": "hood-river",
          "canonical_path": "/cities/us/hood-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4936400",
          "name": "Hooper",
          "country_code": "US",
          "slug": "hooper",
          "canonical_path": "/cities/us/hooper/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4896390",
          "name": "Hoopeston",
          "country_code": "US",
          "slug": "hoopeston",
          "canonical_path": "/cities/us/hoopeston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0135896",
          "name": "Hoover",
          "country_code": "US",
          "slug": "hoover",
          "canonical_path": "/cities/us/hoover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5099289",
          "name": "Hopatcong",
          "country_code": "US",
          "slug": "hopatcong",
          "canonical_path": "/cities/us/hopatcong/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3432910",
          "name": "Hopatcong borough",
          "country_code": "US",
          "slug": "hopatcong-borough",
          "canonical_path": "/cities/us/hopatcong-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0533190",
          "name": "Hope",
          "country_code": "US",
          "slug": "hope",
          "canonical_path": "/cities/us/hope/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3732640",
          "name": "Hope Mills",
          "country_code": "US",
          "slug": "hope-mills",
          "canonical_path": "/cities/us/hope-mills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5138424",
          "name": "Hopewell",
          "country_code": "US",
          "slug": "hopewell",
          "canonical_path": "/cities/us/hopewell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2730140",
          "name": "Hopkins",
          "country_code": "US",
          "slug": "hopkins",
          "canonical_path": "/cities/us/hopkins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2137918",
          "name": "Hopkinsville",
          "country_code": "US",
          "slug": "hopkinsville",
          "canonical_path": "/cities/us/hopkinsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5087639",
          "name": "Hopkinton",
          "country_code": "US",
          "slug": "hopkinton",
          "canonical_path": "/cities/us/hopkinton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5222680",
          "name": "Hopkinton",
          "country_code": "US",
          "slug": "hopkinton-ri-009",
          "canonical_path": "/cities/us/hopkinton-ri-009/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5332300",
          "name": "Hoquiam",
          "country_code": "US",
          "slug": "hoquiam",
          "canonical_path": "/cities/us/hoquiam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3838900",
          "name": "Horace",
          "country_code": "US",
          "slug": "horace",
          "canonical_path": "/cities/us/horace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4834832",
          "name": "Horizon City",
          "country_code": "US",
          "slug": "horizon-city",
          "canonical_path": "/cities/us/horizon-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315230",
          "name": "Horizon West",
          "country_code": "US",
          "slug": "horizon-west",
          "canonical_path": "/cities/us/horizon-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2833700",
          "name": "Horn Lake",
          "country_code": "US",
          "slug": "horn-lake",
          "canonical_path": "/cities/us/horn-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3635672",
          "name": "Hornell",
          "country_code": "US",
          "slug": "hornell",
          "canonical_path": "/cities/us/hornell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4698809",
          "name": "Hornsby Bend",
          "country_code": "US",
          "slug": "hornsby-bend",
          "canonical_path": "/cities/us/hornsby-bend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3635694",
          "name": "Horseheads",
          "country_code": "US",
          "slug": "horseheads",
          "canonical_path": "/cities/us/horseheads/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4834862",
          "name": "Horseshoe Bay",
          "country_code": "US",
          "slug": "horseshoe-bay",
          "canonical_path": "/cities/us/horseshoe-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5194302",
          "name": "Horsham",
          "country_code": "US",
          "slug": "horsham",
          "canonical_path": "/cities/us/horsham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1340056",
          "name": "Hoschton",
          "country_code": "US",
          "slug": "hoschton",
          "canonical_path": "/cities/us/hoschton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0533400",
          "name": "Hot Springs",
          "country_code": "US",
          "slug": "hot-springs",
          "canonical_path": "/cities/us/hot-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4115429",
          "name": "Hot Springs Village",
          "country_code": "US",
          "slug": "hot-springs-village",
          "canonical_path": "/cities/us/hot-springs-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2639360",
          "name": "Houghton",
          "country_code": "US",
          "slug": "houghton",
          "canonical_path": "/cities/us/houghton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4967563",
          "name": "Houlton",
          "country_code": "US",
          "slug": "houlton",
          "canonical_path": "/cities/us/houlton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4328010",
          "name": "Houma",
          "country_code": "US",
          "slug": "houma",
          "canonical_path": "/cities/us/houma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4835000",
          "name": "Houston",
          "country_code": "US",
          "slug": "houston",
          "canonical_path": "/cities/us/houston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5535950",
          "name": "Howard",
          "country_code": "US",
          "slug": "howard",
          "canonical_path": "/cities/us/howard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2639540",
          "name": "Howell",
          "country_code": "US",
          "slug": "howell",
          "canonical_path": "/cities/us/howell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5158123",
          "name": "Howland Center",
          "country_code": "US",
          "slug": "howland-center",
          "canonical_path": "/cities/us/howland-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3936582",
          "name": "Hubbard",
          "country_code": "US",
          "slug": "hubbard",
          "canonical_path": "/cities/us/hubbard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3936610",
          "name": "Huber Heights",
          "country_code": "US",
          "slug": "huber-heights",
          "canonical_path": "/cities/us/huber-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4159335",
          "name": "Hudson",
          "country_code": "US",
          "slug": "hudson",
          "canonical_path": "/cities/us/hudson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4940094",
          "name": "Hudson",
          "country_code": "US",
          "slug": "hudson-ma-017",
          "canonical_path": "/cities/us/hudson-ma-017/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5087752",
          "name": "Hudson",
          "country_code": "US",
          "slug": "hudson-nh-011",
          "canonical_path": "/cities/us/hudson-nh-011/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3635969",
          "name": "Hudson",
          "country_code": "US",
          "slug": "hudson-ny",
          "canonical_path": "/cities/us/hudson-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3936651",
          "name": "Hudson",
          "country_code": "US",
          "slug": "hudson-oh",
          "canonical_path": "/cities/us/hudson-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4835228",
          "name": "Hudson",
          "country_code": "US",
          "slug": "hudson-tx",
          "canonical_path": "/cities/us/hudson-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5536250",
          "name": "Hudson",
          "country_code": "US",
          "slug": "hudson-wi",
          "canonical_path": "/cities/us/hudson-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3635980",
          "name": "Hudson Falls",
          "country_code": "US",
          "slug": "hudson-falls",
          "canonical_path": "/cities/us/hudson-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2639800",
          "name": "Hudsonville",
          "country_code": "US",
          "slug": "hudsonville",
          "canonical_path": "/cities/us/hudsonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0136448",
          "name": "Hueytown",
          "country_code": "US",
          "slug": "hueytown",
          "canonical_path": "/cities/us/hueytown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0634904",
          "name": "Hughson",
          "country_code": "US",
          "slug": "hughson",
          "canonical_path": "/cities/us/hughson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2730392",
          "name": "Hugo",
          "country_code": "US",
          "slug": "hugo-mn",
          "canonical_path": "/cities/us/hugo-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4036300",
          "name": "Hugo",
          "country_code": "US",
          "slug": "hugo-ok",
          "canonical_path": "/cities/us/hugo-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4940134",
          "name": "Hull",
          "country_code": "US",
          "slug": "hull",
          "canonical_path": "/cities/us/hull/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4835348",
          "name": "Humble",
          "country_code": "US",
          "slug": "humble",
          "canonical_path": "/cities/us/humble/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4736460",
          "name": "Humboldt",
          "country_code": "US",
          "slug": "humboldt",
          "canonical_path": "/cities/us/humboldt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4358701",
          "name": "Hunt Valley",
          "country_code": "US",
          "slug": "hunt-valley",
          "canonical_path": "/cities/us/hunt-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4159416",
          "name": "Hunters Creek",
          "country_code": "US",
          "slug": "hunters-creek",
          "canonical_path": "/cities/us/hunters-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3733120",
          "name": "Huntersville",
          "country_code": "US",
          "slug": "huntersville",
          "canonical_path": "/cities/us/huntersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1835266",
          "name": "Huntertown",
          "country_code": "US",
          "slug": "huntertown",
          "canonical_path": "/cities/us/huntertown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1835284",
          "name": "Huntingburg",
          "country_code": "US",
          "slug": "huntingburg",
          "canonical_path": "/cities/us/huntingburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5194590",
          "name": "Huntingdon",
          "country_code": "US",
          "slug": "huntingdon",
          "canonical_path": "/cities/us/huntingdon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4236368",
          "name": "Huntingdon borough",
          "country_code": "US",
          "slug": "huntingdon-borough",
          "canonical_path": "/cities/us/huntingdon-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4765392",
          "name": "Huntington",
          "country_code": "US",
          "slug": "huntington",
          "canonical_path": "/cities/us/huntington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5121636",
          "name": "Huntington",
          "country_code": "US",
          "slug": "huntington-ny-103",
          "canonical_path": "/cities/us/huntington-ny-103/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1835302",
          "name": "Huntington",
          "country_code": "US",
          "slug": "huntington-in",
          "canonical_path": "/cities/us/huntington-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5439460",
          "name": "Huntington",
          "country_code": "US",
          "slug": "huntington-wv",
          "canonical_path": "/cities/us/huntington-wv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636000",
          "name": "Huntington Beach",
          "country_code": "US",
          "slug": "huntington-beach",
          "canonical_path": "/cities/us/huntington-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636056",
          "name": "Huntington Park",
          "country_code": "US",
          "slug": "huntington-park",
          "canonical_path": "/cities/us/huntington-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5121650",
          "name": "Huntington Station",
          "country_code": "US",
          "slug": "huntington-station",
          "canonical_path": "/cities/us/huntington-station/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2640000",
          "name": "Huntington Woods",
          "country_code": "US",
          "slug": "huntington-woods",
          "canonical_path": "/cities/us/huntington-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1736750",
          "name": "Huntley",
          "country_code": "US",
          "slug": "huntley",
          "canonical_path": "/cities/us/huntley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0137000",
          "name": "Huntsville",
          "country_code": "US",
          "slug": "huntsville-al",
          "canonical_path": "/cities/us/huntsville-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4835528",
          "name": "Huntsville",
          "country_code": "US",
          "slug": "huntsville-tx",
          "canonical_path": "/cities/us/huntsville-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636084",
          "name": "Huron",
          "country_code": "US",
          "slug": "huron-ca",
          "canonical_path": "/cities/us/huron-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3937016",
          "name": "Huron",
          "country_code": "US",
          "slug": "huron-oh",
          "canonical_path": "/cities/us/huron-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4631060",
          "name": "Huron",
          "country_code": "US",
          "slug": "huron-sd",
          "canonical_path": "/cities/us/huron-sd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4937170",
          "name": "Hurricane",
          "country_code": "US",
          "slug": "hurricane-ut",
          "canonical_path": "/cities/us/hurricane-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5439532",
          "name": "Hurricane",
          "country_code": "US",
          "slug": "hurricane-wv",
          "canonical_path": "/cities/us/hurricane-wv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4835576",
          "name": "Hurst",
          "country_code": "US",
          "slug": "hurst",
          "canonical_path": "/cities/us/hurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4835612",
          "name": "Hutchins",
          "country_code": "US",
          "slug": "hutchins",
          "canonical_path": "/cities/us/hutchins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2033625",
          "name": "Hutchinson",
          "country_code": "US",
          "slug": "hutchinson-ks",
          "canonical_path": "/cities/us/hutchinson-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2730644",
          "name": "Hutchinson",
          "country_code": "US",
          "slug": "hutchinson-mn",
          "canonical_path": "/cities/us/hutchinson-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259881",
          "name": "Hutchinson Island South",
          "country_code": "US",
          "slug": "hutchinson-island-south",
          "canonical_path": "/cities/us/hutchinson-island-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4835624",
          "name": "Hutto",
          "country_code": "US",
          "slug": "hutto",
          "canonical_path": "/cities/us/hutto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2441250",
          "name": "Hyattsville",
          "country_code": "US",
          "slug": "hyattsville",
          "canonical_path": "/cities/us/hyattsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4765520",
          "name": "Hybla Valley",
          "country_code": "US",
          "slug": "hybla-valley",
          "canonical_path": "/cities/us/hybla-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4937390",
          "name": "Hyde Park",
          "country_code": "US",
          "slug": "hyde-park",
          "canonical_path": "/cities/us/hyde-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4937500",
          "name": "Hyrum",
          "country_code": "US",
          "slug": "hyrum",
          "canonical_path": "/cities/us/hyrum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4036750",
          "name": "Idabel",
          "country_code": "US",
          "slug": "idabel",
          "canonical_path": "/cities/us/idabel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1639700",
          "name": "Idaho Falls",
          "country_code": "US",
          "slug": "idaho-falls",
          "canonical_path": "/cities/us/idaho-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4765553",
          "name": "Idylwood",
          "country_code": "US",
          "slug": "idylwood",
          "canonical_path": "/cities/us/idylwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4358864",
          "name": "Ilchester",
          "country_code": "US",
          "slug": "ilchester",
          "canonical_path": "/cities/us/ilchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3637275",
          "name": "Ilion",
          "country_code": "US",
          "slug": "ilion",
          "canonical_path": "/cities/us/ilion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4159553",
          "name": "Immokalee",
          "country_code": "US",
          "slug": "immokalee",
          "canonical_path": "/cities/us/immokalee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636280",
          "name": "Imperial",
          "country_code": "US",
          "slug": "imperial",
          "canonical_path": "/cities/us/imperial/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636294",
          "name": "Imperial Beach",
          "country_code": "US",
          "slug": "imperial-beach",
          "canonical_path": "/cities/us/imperial-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5505963",
          "name": "Incline Village",
          "country_code": "US",
          "slug": "incline-village",
          "canonical_path": "/cities/us/incline-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1938100",
          "name": "Independence",
          "country_code": "US",
          "slug": "independence-ia",
          "canonical_path": "/cities/us/independence-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2033875",
          "name": "Independence",
          "country_code": "US",
          "slug": "independence-ks",
          "canonical_path": "/cities/us/independence-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2139142",
          "name": "Independence",
          "country_code": "US",
          "slug": "independence-ky",
          "canonical_path": "/cities/us/independence-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2935000",
          "name": "Independence",
          "country_code": "US",
          "slug": "independence-mo",
          "canonical_path": "/cities/us/independence-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3937240",
          "name": "Independence",
          "country_code": "US",
          "slug": "independence-oh",
          "canonical_path": "/cities/us/independence-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4136150",
          "name": "Independence",
          "country_code": "US",
          "slug": "independence-or",
          "canonical_path": "/cities/us/independence-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4765594",
          "name": "Independent Hill",
          "country_code": "US",
          "slug": "independent-hill",
          "canonical_path": "/cities/us/independent-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1233450",
          "name": "Indian Harbour Beach",
          "country_code": "US",
          "slug": "indian-harbour-beach",
          "canonical_path": "/cities/us/indian-harbour-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5550579",
          "name": "Indian Hills",
          "country_code": "US",
          "slug": "indian-hills",
          "canonical_path": "/cities/us/indian-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4159659",
          "name": "Indian River Estates",
          "country_code": "US",
          "slug": "indian-river-estates",
          "canonical_path": "/cities/us/indian-river-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3733560",
          "name": "Indian Trail",
          "country_code": "US",
          "slug": "indian-trail",
          "canonical_path": "/cities/us/indian-trail/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5359426",
          "name": "Indian Wells",
          "country_code": "US",
          "slug": "indian-wells",
          "canonical_path": "/cities/us/indian-wells/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5194868",
          "name": "Indiana",
          "country_code": "US",
          "slug": "indiana",
          "canonical_path": "/cities/us/indiana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4236816",
          "name": "Indiana borough",
          "country_code": "US",
          "slug": "indiana-borough",
          "canonical_path": "/cities/us/indiana-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4259418",
          "name": "Indianapolis",
          "country_code": "US",
          "slug": "indianapolis",
          "canonical_path": "/cities/us/indianapolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1938280",
          "name": "Indianola",
          "country_code": "US",
          "slug": "indianola-ia",
          "canonical_path": "/cities/us/indianola-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2834740",
          "name": "Indianola",
          "country_code": "US",
          "slug": "indianola-ms",
          "canonical_path": "/cities/us/indianola-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1233700",
          "name": "Indiantown",
          "country_code": "US",
          "slug": "indiantown",
          "canonical_path": "/cities/us/indiantown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636448",
          "name": "Indio",
          "country_code": "US",
          "slug": "indio",
          "canonical_path": "/cities/us/indio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4836008",
          "name": "Ingleside",
          "country_code": "US",
          "slug": "ingleside",
          "canonical_path": "/cities/us/ingleside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636546",
          "name": "Inglewood",
          "country_code": "US",
          "slug": "inglewood",
          "canonical_path": "/cities/us/inglewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2640680",
          "name": "Inkster",
          "country_code": "US",
          "slug": "inkster",
          "canonical_path": "/cities/us/inkster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5359577",
          "name": "Interlaken",
          "country_code": "US",
          "slug": "interlaken",
          "canonical_path": "/cities/us/interlaken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2731040",
          "name": "International Falls",
          "country_code": "US",
          "slug": "international-falls",
          "canonical_path": "/cities/us/international-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2731076",
          "name": "Inver Grove Heights",
          "country_code": "US",
          "slug": "inver-grove-heights",
          "canonical_path": "/cities/us/inver-grove-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1233950",
          "name": "Inverness",
          "country_code": "US",
          "slug": "inverness-fl",
          "canonical_path": "/cities/us/inverness-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1737608",
          "name": "Inverness",
          "country_code": "US",
          "slug": "inverness-il",
          "canonical_path": "/cities/us/inverness-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259892",
          "name": "Inverness Highlands South",
          "country_code": "US",
          "slug": "inverness-highlands-south",
          "canonical_path": "/cities/us/inverness-highlands-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4159796",
          "name": "Inwood",
          "country_code": "US",
          "slug": "inwood",
          "canonical_path": "/cities/us/inwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5122279",
          "name": "Inwood",
          "country_code": "US",
          "slug": "inwood-ny-059",
          "canonical_path": "/cities/us/inwood-ny-059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2034300",
          "name": "Iola",
          "country_code": "US",
          "slug": "iola",
          "canonical_path": "/cities/us/iola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4159805",
          "name": "Iona",
          "country_code": "US",
          "slug": "iona",
          "canonical_path": "/cities/us/iona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636672",
          "name": "Ione",
          "country_code": "US",
          "slug": "ione",
          "canonical_path": "/cities/us/ione/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2640860",
          "name": "Ionia",
          "country_code": "US",
          "slug": "ionia",
          "canonical_path": "/cities/us/ionia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1938595",
          "name": "Iowa City",
          "country_code": "US",
          "slug": "iowa-city",
          "canonical_path": "/cities/us/iowa-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4836092",
          "name": "Iowa Colony",
          "country_code": "US",
          "slug": "iowa-colony",
          "canonical_path": "/cities/us/iowa-colony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1938640",
          "name": "Iowa Falls",
          "country_code": "US",
          "slug": "iowa-falls",
          "canonical_path": "/cities/us/iowa-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4836104",
          "name": "Iowa Park",
          "country_code": "US",
          "slug": "iowa-park",
          "canonical_path": "/cities/us/iowa-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4535890",
          "name": "Irmo",
          "country_code": "US",
          "slug": "irmo",
          "canonical_path": "/cities/us/irmo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2640960",
          "name": "Iron Mountain",
          "country_code": "US",
          "slug": "iron-mountain",
          "canonical_path": "/cities/us/iron-mountain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0137864",
          "name": "Irondale",
          "country_code": "US",
          "slug": "irondale",
          "canonical_path": "/cities/us/irondale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5122331",
          "name": "Irondequoit",
          "country_code": "US",
          "slug": "irondequoit",
          "canonical_path": "/cities/us/irondequoit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3937464",
          "name": "Ironton",
          "country_code": "US",
          "slug": "ironton",
          "canonical_path": "/cities/us/ironton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4997249",
          "name": "Ironwood",
          "country_code": "US",
          "slug": "ironwood",
          "canonical_path": "/cities/us/ironwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636770",
          "name": "Irvine",
          "country_code": "US",
          "slug": "irvine",
          "canonical_path": "/cities/us/irvine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4837000",
          "name": "Irving",
          "country_code": "US",
          "slug": "irving",
          "canonical_path": "/cities/us/irving/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3637803",
          "name": "Irvington",
          "country_code": "US",
          "slug": "irvington",
          "canonical_path": "/cities/us/irvington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2731328",
          "name": "Isanti",
          "country_code": "US",
          "slug": "isanti",
          "canonical_path": "/cities/us/isanti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5099738",
          "name": "Iselin",
          "country_code": "US",
          "slug": "iselin",
          "canonical_path": "/cities/us/iselin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2641220",
          "name": "Ishpeming",
          "country_code": "US",
          "slug": "ishpeming",
          "canonical_path": "/cities/us/ishpeming/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5359864",
          "name": "Isla Vista",
          "country_code": "US",
          "slug": "isla-vista",
          "canonical_path": "/cities/us/isla-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1234132",
          "name": "Islamorada, Village of Islands",
          "country_code": "US",
          "slug": "islamorada-village-of-islands",
          "canonical_path": "/cities/us/islamorada-village-of-islands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1737894",
          "name": "Island Lake",
          "country_code": "US",
          "slug": "island-lake",
          "canonical_path": "/cities/us/island-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3637847",
          "name": "Island Park",
          "country_code": "US",
          "slug": "island-park",
          "canonical_path": "/cities/us/island-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5122413",
          "name": "Islip",
          "country_code": "US",
          "slug": "islip",
          "canonical_path": "/cities/us/islip/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5122417",
          "name": "Islip Terrace",
          "country_code": "US",
          "slug": "islip-terrace",
          "canonical_path": "/cities/us/islip-terrace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5333805",
          "name": "Issaquah",
          "country_code": "US",
          "slug": "issaquah",
          "canonical_path": "/cities/us/issaquah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1737907",
          "name": "Itasca",
          "country_code": "US",
          "slug": "itasca",
          "canonical_path": "/cities/us/itasca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3638077",
          "name": "Ithaca",
          "country_code": "US",
          "slug": "ithaca",
          "canonical_path": "/cities/us/ithaca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4159896",
          "name": "Ives Estates",
          "country_code": "US",
          "slug": "ives-estates",
          "canonical_path": "/cities/us/ives-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4938710",
          "name": "Ivins",
          "country_code": "US",
          "slug": "ivins",
          "canonical_path": "/cities/us/ivins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4139199",
          "name": "Ivy City",
          "country_code": "US",
          "slug": "ivy-city",
          "canonical_path": "/cities/us/ivy-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4837156",
          "name": "Jacinto City",
          "country_code": "US",
          "slug": "jacinto-city",
          "canonical_path": "/cities/us/jacinto-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4502434",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson",
          "canonical_path": "/cities/us/jackson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0636980",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson-ca",
          "canonical_path": "/cities/us/jackson-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1341596",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson-ga",
          "canonical_path": "/cities/us/jackson-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2641420",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson-mi",
          "canonical_path": "/cities/us/jackson-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2836000",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson-ms",
          "canonical_path": "/cities/us/jackson-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2935648",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson-mo",
          "canonical_path": "/cities/us/jackson-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3937842",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson-oh",
          "canonical_path": "/cities/us/jackson-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4737640",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson-tn",
          "canonical_path": "/cities/us/jackson-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5537675",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson-wi",
          "canonical_path": "/cities/us/jackson-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5640120",
          "name": "Jackson",
          "country_code": "US",
          "slug": "jackson-wy",
          "canonical_path": "/cities/us/jackson-wy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0138272",
          "name": "Jacksonville",
          "country_code": "US",
          "slug": "jacksonville-al",
          "canonical_path": "/cities/us/jacksonville-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0534750",
          "name": "Jacksonville",
          "country_code": "US",
          "slug": "jacksonville-ar",
          "canonical_path": "/cities/us/jacksonville-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1235000",
          "name": "Jacksonville",
          "country_code": "US",
          "slug": "jacksonville-fl",
          "canonical_path": "/cities/us/jacksonville-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1738115",
          "name": "Jacksonville",
          "country_code": "US",
          "slug": "jacksonville-il",
          "canonical_path": "/cities/us/jacksonville-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3734200",
          "name": "Jacksonville",
          "country_code": "US",
          "slug": "jacksonville-nc",
          "canonical_path": "/cities/us/jacksonville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4837216",
          "name": "Jacksonville",
          "country_code": "US",
          "slug": "jacksonville-tx",
          "canonical_path": "/cities/us/jacksonville-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1235050",
          "name": "Jacksonville Beach",
          "country_code": "US",
          "slug": "jacksonville-beach",
          "canonical_path": "/cities/us/jacksonville-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4473137",
          "name": "James City",
          "country_code": "US",
          "slug": "james-city",
          "canonical_path": "/cities/us/james-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4536430",
          "name": "James Island",
          "country_code": "US",
          "slug": "james-island",
          "canonical_path": "/cities/us/james-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5099795",
          "name": "Jamesburg",
          "country_code": "US",
          "slug": "jamesburg",
          "canonical_path": "/cities/us/jamesburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3434890",
          "name": "Jamesburg borough",
          "country_code": "US",
          "slug": "jamesburg-borough",
          "canonical_path": "/cities/us/jamesburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5222866",
          "name": "Jamestown",
          "country_code": "US",
          "slug": "jamestown",
          "canonical_path": "/cities/us/jamestown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3638264",
          "name": "Jamestown",
          "country_code": "US",
          "slug": "jamestown-ny",
          "canonical_path": "/cities/us/jamestown-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3840580",
          "name": "Jamestown",
          "country_code": "US",
          "slug": "jamestown-nd",
          "canonical_path": "/cities/us/jamestown-nd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5360403",
          "name": "Jamul",
          "country_code": "US",
          "slug": "jamul",
          "canonical_path": "/cities/us/jamul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5537825",
          "name": "Janesville",
          "country_code": "US",
          "slug": "janesville",
          "canonical_path": "/cities/us/janesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4837396",
          "name": "Jarrell",
          "country_code": "US",
          "slug": "jarrell",
          "canonical_path": "/cities/us/jarrell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4160100",
          "name": "Jasmine Estates",
          "country_code": "US",
          "slug": "jasmine-estates",
          "canonical_path": "/cities/us/jasmine-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0138416",
          "name": "Jasper",
          "country_code": "US",
          "slug": "jasper-al",
          "canonical_path": "/cities/us/jasper-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1341932",
          "name": "Jasper",
          "country_code": "US",
          "slug": "jasper-ga",
          "canonical_path": "/cities/us/jasper-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1837782",
          "name": "Jasper",
          "country_code": "US",
          "slug": "jasper-in",
          "canonical_path": "/cities/us/jasper-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4837420",
          "name": "Jasper",
          "country_code": "US",
          "slug": "jasper-tx",
          "canonical_path": "/cities/us/jasper-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4328952",
          "name": "Jeanerette",
          "country_code": "US",
          "slug": "jeanerette",
          "canonical_path": "/cities/us/jeanerette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4237784",
          "name": "Jeannette",
          "country_code": "US",
          "slug": "jeannette",
          "canonical_path": "/cities/us/jeannette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4328973",
          "name": "Jefferson",
          "country_code": "US",
          "slug": "jefferson",
          "canonical_path": "/cities/us/jefferson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1341988",
          "name": "Jefferson",
          "country_code": "US",
          "slug": "jefferson-ga",
          "canonical_path": "/cities/us/jefferson-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5537900",
          "name": "Jefferson",
          "country_code": "US",
          "slug": "jefferson-wi",
          "canonical_path": "/cities/us/jefferson-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2937000",
          "name": "Jefferson City",
          "country_code": "US",
          "slug": "jefferson-city-mo",
          "canonical_path": "/cities/us/jefferson-city-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4737960",
          "name": "Jefferson City",
          "country_code": "US",
          "slug": "jefferson-city-tn",
          "canonical_path": "/cities/us/jefferson-city-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5195297",
          "name": "Jefferson Hills",
          "country_code": "US",
          "slug": "jefferson-hills",
          "canonical_path": "/cities/us/jefferson-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4237955",
          "name": "Jefferson Hills borough",
          "country_code": "US",
          "slug": "jefferson-hills-borough",
          "canonical_path": "/cities/us/jefferson-hills-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258782",
          "name": "Jefferson Valley-Yorktown",
          "country_code": "US",
          "slug": "jefferson-valley-yorktown",
          "canonical_path": "/cities/us/jefferson-valley-yorktown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2140222",
          "name": "Jeffersontown",
          "country_code": "US",
          "slug": "jeffersontown",
          "canonical_path": "/cities/us/jeffersontown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1838358",
          "name": "Jeffersonville",
          "country_code": "US",
          "slug": "jeffersonville",
          "canonical_path": "/cities/us/jeffersonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4997500",
          "name": "Jenison",
          "country_code": "US",
          "slug": "jenison",
          "canonical_path": "/cities/us/jenison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4037800",
          "name": "Jenks",
          "country_code": "US",
          "slug": "jenks",
          "canonical_path": "/cities/us/jenks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2238355",
          "name": "Jennings",
          "country_code": "US",
          "slug": "jennings-la",
          "canonical_path": "/cities/us/jennings-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2937178",
          "name": "Jennings",
          "country_code": "US",
          "slug": "jennings-mo",
          "canonical_path": "/cities/us/jennings-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5733582",
          "name": "Jennings Lodge",
          "country_code": "US",
          "slug": "jennings-lodge",
          "canonical_path": "/cities/us/jennings-lodge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4160171",
          "name": "Jensen Beach",
          "country_code": "US",
          "slug": "jensen-beach",
          "canonical_path": "/cities/us/jensen-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5122638",
          "name": "Jericho",
          "country_code": "US",
          "slug": "jericho",
          "canonical_path": "/cities/us/jericho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1641320",
          "name": "Jerome",
          "country_code": "US",
          "slug": "jerome",
          "canonical_path": "/cities/us/jerome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3436000",
          "name": "Jersey City",
          "country_code": "US",
          "slug": "jersey-city",
          "canonical_path": "/cities/us/jersey-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4837612",
          "name": "Jersey Village",
          "country_code": "US",
          "slug": "jersey-village",
          "canonical_path": "/cities/us/jersey-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1738414",
          "name": "Jerseyville",
          "country_code": "US",
          "slug": "jerseyville",
          "canonical_path": "/cities/us/jerseyville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4049032",
          "name": "Jessup",
          "country_code": "US",
          "slug": "jessup",
          "canonical_path": "/cities/us/jessup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1342268",
          "name": "Jesup",
          "country_code": "US",
          "slug": "jesup",
          "canonical_path": "/cities/us/jesup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1342425",
          "name": "Johns Creek",
          "country_code": "US",
          "slug": "johns-creek",
          "canonical_path": "/cities/us/johns-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1738479",
          "name": "Johnsburg",
          "country_code": "US",
          "slug": "johnsburg",
          "canonical_path": "/cities/us/johnsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3638748",
          "name": "Johnson City",
          "country_code": "US",
          "slug": "johnson-city-ny",
          "canonical_path": "/cities/us/johnson-city-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4738320",
          "name": "Johnson City",
          "country_code": "US",
          "slug": "johnson-city-tn",
          "canonical_path": "/cities/us/johnson-city-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5506353",
          "name": "Johnson Lane",
          "country_code": "US",
          "slug": "johnson-lane",
          "canonical_path": "/cities/us/johnson-lane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1939765",
          "name": "Johnston",
          "country_code": "US",
          "slug": "johnston",
          "canonical_path": "/cities/us/johnston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0839855",
          "name": "Johnstown",
          "country_code": "US",
          "slug": "johnstown-co",
          "canonical_path": "/cities/us/johnstown-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3638781",
          "name": "Johnstown",
          "country_code": "US",
          "slug": "johnstown-ny",
          "canonical_path": "/cities/us/johnstown-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3939340",
          "name": "Johnstown",
          "country_code": "US",
          "slug": "johnstown-oh",
          "canonical_path": "/cities/us/johnstown-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4238288",
          "name": "Johnstown",
          "country_code": "US",
          "slug": "johnstown-pa",
          "canonical_path": "/cities/us/johnstown-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261292",
          "name": "Joint Base Lewis McChord",
          "country_code": "US",
          "slug": "joint-base-lewis-mcchord",
          "canonical_path": "/cities/us/joint-base-lewis-mcchord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1738570",
          "name": "Joliet",
          "country_code": "US",
          "slug": "joliet",
          "canonical_path": "/cities/us/joliet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0535710",
          "name": "Jonesboro",
          "country_code": "US",
          "slug": "jonesboro-ar",
          "canonical_path": "/cities/us/jonesboro-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1342604",
          "name": "Jonesboro",
          "country_code": "US",
          "slug": "jonesboro-ga",
          "canonical_path": "/cities/us/jonesboro-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4738540",
          "name": "Jonesborough",
          "country_code": "US",
          "slug": "jonesborough",
          "canonical_path": "/cities/us/jonesborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2937592",
          "name": "Joplin",
          "country_code": "US",
          "slug": "joplin",
          "canonical_path": "/cities/us/joplin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4359619",
          "name": "Joppatowne",
          "country_code": "US",
          "slug": "joppatowne",
          "canonical_path": "/cities/us/joppatowne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2732174",
          "name": "Jordan",
          "country_code": "US",
          "slug": "jordan",
          "canonical_path": "/cities/us/jordan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4838068",
          "name": "Josephine",
          "country_code": "US",
          "slug": "josephine",
          "canonical_path": "/cities/us/josephine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4838080",
          "name": "Joshua",
          "country_code": "US",
          "slug": "joshua",
          "canonical_path": "/cities/us/joshua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5361298",
          "name": "Joshua Tree",
          "country_code": "US",
          "slug": "joshua-tree",
          "canonical_path": "/cities/us/joshua-tree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2035750",
          "name": "Junction City",
          "country_code": "US",
          "slug": "junction-city-ks",
          "canonical_path": "/cities/us/junction-city-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4138000",
          "name": "Junction City",
          "country_code": "US",
          "slug": "junction-city-or",
          "canonical_path": "/cities/us/junction-city-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5554072",
          "name": "Juneau",
          "country_code": "US",
          "slug": "juneau",
          "canonical_path": "/cities/us/juneau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0236400",
          "name": "Juneau and borough",
          "country_code": "US",
          "slug": "juneau-and-borough",
          "canonical_path": "/cities/us/juneau-and-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1235875",
          "name": "Jupiter",
          "country_code": "US",
          "slug": "jupiter",
          "canonical_path": "/cities/us/jupiter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0637692",
          "name": "Jurupa Valley",
          "country_code": "US",
          "slug": "jurupa-valley",
          "canonical_path": "/cities/us/jurupa-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1738830",
          "name": "Justice",
          "country_code": "US",
          "slug": "justice",
          "canonical_path": "/cities/us/justice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4838332",
          "name": "Justin",
          "country_code": "US",
          "slug": "justin",
          "canonical_path": "/cities/us/justin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5847411",
          "name": "Kahului",
          "country_code": "US",
          "slug": "kahului",
          "canonical_path": "/cities/us/kahului/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5847486",
          "name": "Kailua",
          "country_code": "US",
          "slug": "kailua",
          "canonical_path": "/cities/us/kailua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5847504",
          "name": "Kailua-Kona",
          "country_code": "US",
          "slug": "kailua-kona",
          "canonical_path": "/cities/us/kailua-kona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2642160",
          "name": "Kalamazoo",
          "country_code": "US",
          "slug": "kalamazoo",
          "canonical_path": "/cities/us/kalamazoo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5847746",
          "name": "Kalaoa",
          "country_code": "US",
          "slug": "kalaoa",
          "canonical_path": "/cities/us/kalaoa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5865702",
          "name": "Kalifornsky",
          "country_code": "US",
          "slug": "kalifornsky",
          "canonical_path": "/cities/us/kalifornsky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3040075",
          "name": "Kalispell",
          "country_code": "US",
          "slug": "kalispell",
          "canonical_path": "/cities/us/kalispell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4939920",
          "name": "Kanab",
          "country_code": "US",
          "slug": "kanab",
          "canonical_path": "/cities/us/kanab/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5848189",
          "name": "Kaneohe",
          "country_code": "US",
          "slug": "kaneohe",
          "canonical_path": "/cities/us/kaneohe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1738934",
          "name": "Kankakee",
          "country_code": "US",
          "slug": "kankakee",
          "canonical_path": "/cities/us/kankakee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3735200",
          "name": "Kannapolis",
          "country_code": "US",
          "slug": "kannapolis",
          "canonical_path": "/cities/us/kannapolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2036000",
          "name": "Kansas City",
          "country_code": "US",
          "slug": "kansas-city-ks",
          "canonical_path": "/cities/us/kansas-city-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2938000",
          "name": "Kansas City",
          "country_code": "US",
          "slug": "kansas-city-mo",
          "canonical_path": "/cities/us/kansas-city-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5848280",
          "name": "Kapa‘a",
          "country_code": "US",
          "slug": "kapa-a",
          "canonical_path": "/cities/us/kapa-a/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:6957263",
          "name": "Kapolei",
          "country_code": "US",
          "slug": "kapolei",
          "canonical_path": "/cities/us/kapolei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13645938",
          "name": "Kapolei Villages",
          "country_code": "US",
          "slug": "kapolei-villages",
          "canonical_path": "/cities/us/kapolei-villages/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3638934",
          "name": "Kaser",
          "country_code": "US",
          "slug": "kaser",
          "canonical_path": "/cities/us/kaser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2732498",
          "name": "Kasson",
          "country_code": "US",
          "slug": "kasson",
          "canonical_path": "/cities/us/kasson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4160651",
          "name": "Kathleen",
          "country_code": "US",
          "slug": "kathleen",
          "canonical_path": "/cities/us/kathleen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4838476",
          "name": "Katy",
          "country_code": "US",
          "slug": "katy",
          "canonical_path": "/cities/us/katy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4838488",
          "name": "Kaufman",
          "country_code": "US",
          "slug": "kaufman",
          "canonical_path": "/cities/us/kaufman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5538800",
          "name": "Kaukauna",
          "country_code": "US",
          "slug": "kaukauna",
          "canonical_path": "/cities/us/kaukauna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5300830",
          "name": "Kayenta",
          "country_code": "US",
          "slug": "kayenta",
          "canonical_path": "/cities/us/kayenta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4940360",
          "name": "Kaysville",
          "country_code": "US",
          "slug": "kaysville",
          "canonical_path": "/cities/us/kaysville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5099961",
          "name": "Keansburg",
          "country_code": "US",
          "slug": "keansburg",
          "canonical_path": "/cities/us/keansburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3436480",
          "name": "Keansburg borough",
          "country_code": "US",
          "slug": "keansburg-borough",
          "canonical_path": "/cities/us/keansburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2938072",
          "name": "Kearney",
          "country_code": "US",
          "slug": "kearney-mo",
          "canonical_path": "/cities/us/kearney-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3125055",
          "name": "Kearney",
          "country_code": "US",
          "slug": "kearney-ne",
          "canonical_path": "/cities/us/kearney-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5776727",
          "name": "Kearns",
          "country_code": "US",
          "slug": "kearns",
          "canonical_path": "/cities/us/kearns/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4940470",
          "name": "Kearns metroship",
          "country_code": "US",
          "slug": "kearns-metroship",
          "canonical_path": "/cities/us/kearns-metroship/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3436510",
          "name": "Kearny",
          "country_code": "US",
          "slug": "kearny",
          "canonical_path": "/cities/us/kearny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3339300",
          "name": "Keene",
          "country_code": "US",
          "slug": "keene-nh",
          "canonical_path": "/cities/us/keene-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4838548",
          "name": "Keene",
          "country_code": "US",
          "slug": "keene-tx",
          "canonical_path": "/cities/us/keene-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4138500",
          "name": "Keizer",
          "country_code": "US",
          "slug": "keizer",
          "canonical_path": "/cities/us/keizer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4838632",
          "name": "Keller",
          "country_code": "US",
          "slug": "keller",
          "canonical_path": "/cities/us/keller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5335065",
          "name": "Kelso",
          "country_code": "US",
          "slug": "kelso",
          "canonical_path": "/cities/us/kelso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4359721",
          "name": "Kemp Mill",
          "country_code": "US",
          "slug": "kemp-mill",
          "canonical_path": "/cities/us/kemp-mill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5427207",
          "name": "Ken Caryl",
          "country_code": "US",
          "slug": "ken-caryl",
          "canonical_path": "/cities/us/ken-caryl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0238420",
          "name": "Kenai",
          "country_code": "US",
          "slug": "kenai",
          "canonical_path": "/cities/us/kenai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4160705",
          "name": "Kendale Lakes",
          "country_code": "US",
          "slug": "kendale-lakes",
          "canonical_path": "/cities/us/kendale-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4160711",
          "name": "Kendall",
          "country_code": "US",
          "slug": "kendall",
          "canonical_path": "/cities/us/kendall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5099988",
          "name": "Kendall Park",
          "country_code": "US",
          "slug": "kendall-park",
          "canonical_path": "/cities/us/kendall-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260327",
          "name": "Kendall West",
          "country_code": "US",
          "slug": "kendall-west",
          "canonical_path": "/cities/us/kendall-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1839402",
          "name": "Kendallville",
          "country_code": "US",
          "slug": "kendallville",
          "canonical_path": "/cities/us/kendallville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4139296",
          "name": "Kenilworth",
          "country_code": "US",
          "slug": "kenilworth",
          "canonical_path": "/cities/us/kenilworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100007",
          "name": "Kenilworth",
          "country_code": "US",
          "slug": "kenilworth-nj-039",
          "canonical_path": "/cities/us/kenilworth-nj-039/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3436690",
          "name": "Kenilworth borough",
          "country_code": "US",
          "slug": "kenilworth-borough",
          "canonical_path": "/cities/us/kenilworth-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3639232",
          "name": "Kenmore",
          "country_code": "US",
          "slug": "kenmore-ny",
          "canonical_path": "/cities/us/kenmore-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5335170",
          "name": "Kenmore",
          "country_code": "US",
          "slug": "kenmore-wa",
          "canonical_path": "/cities/us/kenmore-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4968729",
          "name": "Kennebunk",
          "country_code": "US",
          "slug": "kennebunk",
          "canonical_path": "/cities/us/kennebunk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4838896",
          "name": "Kennedale",
          "country_code": "US",
          "slug": "kennedale",
          "canonical_path": "/cities/us/kennedale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526895",
          "name": "Kennedy Street",
          "country_code": "US",
          "slug": "kennedy-street",
          "canonical_path": "/cities/us/kennedy-street/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258794",
          "name": "Kennedy Township",
          "country_code": "US",
          "slug": "kennedy-township",
          "canonical_path": "/cities/us/kennedy-township/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2239475",
          "name": "Kenner",
          "country_code": "US",
          "slug": "kenner",
          "canonical_path": "/cities/us/kenner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1343192",
          "name": "Kennesaw",
          "country_code": "US",
          "slug": "kennesaw",
          "canonical_path": "/cities/us/kennesaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4160749",
          "name": "Kenneth City",
          "country_code": "US",
          "slug": "kenneth-city",
          "canonical_path": "/cities/us/kenneth-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2938306",
          "name": "Kennett",
          "country_code": "US",
          "slug": "kennett",
          "canonical_path": "/cities/us/kennett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4558942",
          "name": "Kennett Square",
          "country_code": "US",
          "slug": "kennett-square",
          "canonical_path": "/cities/us/kennett-square/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4239352",
          "name": "Kennett Square borough",
          "country_code": "US",
          "slug": "kennett-square-borough",
          "canonical_path": "/cities/us/kennett-square-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5335275",
          "name": "Kennewick",
          "country_code": "US",
          "slug": "kennewick",
          "canonical_path": "/cities/us/kennewick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5539225",
          "name": "Kenosha",
          "country_code": "US",
          "slug": "kenosha",
          "canonical_path": "/cities/us/kenosha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4837222",
          "name": "Kensington",
          "country_code": "US",
          "slug": "kensington",
          "canonical_path": "/cities/us/kensington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5362849",
          "name": "Kensington",
          "country_code": "US",
          "slug": "kensington-ca-013",
          "canonical_path": "/cities/us/kensington-ca-013/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3939872",
          "name": "Kent",
          "country_code": "US",
          "slug": "kent-oh",
          "canonical_path": "/cities/us/kent-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5335415",
          "name": "Kent",
          "country_code": "US",
          "slug": "kent-wa",
          "canonical_path": "/cities/us/kent-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5362864",
          "name": "Kentfield",
          "country_code": "US",
          "slug": "kentfield",
          "canonical_path": "/cities/us/kentfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3939886",
          "name": "Kenton",
          "country_code": "US",
          "slug": "kenton",
          "canonical_path": "/cities/us/kenton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2642820",
          "name": "Kentwood",
          "country_code": "US",
          "slug": "kentwood",
          "canonical_path": "/cities/us/kentwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4515813",
          "name": "Kenwood",
          "country_code": "US",
          "slug": "kenwood",
          "canonical_path": "/cities/us/kenwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1940845",
          "name": "Keokuk",
          "country_code": "US",
          "slug": "keokuk",
          "canonical_path": "/cities/us/keokuk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5849217",
          "name": "Keolu Hills",
          "country_code": "US",
          "slug": "keolu-hills",
          "canonical_path": "/cities/us/keolu-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0638226",
          "name": "Kerman",
          "country_code": "US",
          "slug": "kerman",
          "canonical_path": "/cities/us/kerman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4839004",
          "name": "Kermit",
          "country_code": "US",
          "slug": "kermit",
          "canonical_path": "/cities/us/kermit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3735600",
          "name": "Kernersville",
          "country_code": "US",
          "slug": "kernersville",
          "canonical_path": "/cities/us/kernersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4839040",
          "name": "Kerrville",
          "country_code": "US",
          "slug": "kerrville",
          "canonical_path": "/cities/us/kerrville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0238970",
          "name": "Ketchikan",
          "country_code": "US",
          "slug": "ketchikan",
          "canonical_path": "/cities/us/ketchikan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3940040",
          "name": "Kettering",
          "country_code": "US",
          "slug": "kettering",
          "canonical_path": "/cities/us/kettering/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1739727",
          "name": "Kewanee",
          "country_code": "US",
          "slug": "kewanee",
          "canonical_path": "/cities/us/kewanee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1236300",
          "name": "Key Biscayne",
          "country_code": "US",
          "slug": "key-biscayne",
          "canonical_path": "/cities/us/key-biscayne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4160795",
          "name": "Key Largo",
          "country_code": "US",
          "slug": "key-largo",
          "canonical_path": "/cities/us/key-largo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1236550",
          "name": "Key West",
          "country_code": "US",
          "slug": "key-west",
          "canonical_path": "/cities/us/key-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5363058",
          "name": "Keyes",
          "country_code": "US",
          "slug": "keyes",
          "canonical_path": "/cities/us/keyes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100008",
          "name": "Keyport",
          "country_code": "US",
          "slug": "keyport",
          "canonical_path": "/cities/us/keyport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3436810",
          "name": "Keyport borough",
          "country_code": "US",
          "slug": "keyport-borough",
          "canonical_path": "/cities/us/keyport-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4810884",
          "name": "Keyser",
          "country_code": "US",
          "slug": "keyser",
          "canonical_path": "/cities/us/keyser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4160822",
          "name": "Keystone",
          "country_code": "US",
          "slug": "keystone",
          "canonical_path": "/cities/us/keystone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5849297",
          "name": "Kīhei",
          "country_code": "US",
          "slug": "kihei",
          "canonical_path": "/cities/us/kihei/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4839124",
          "name": "Kilgore",
          "country_code": "US",
          "slug": "kilgore",
          "canonical_path": "/cities/us/kilgore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3735720",
          "name": "Kill Devil Hills",
          "country_code": "US",
          "slug": "kill-devil-hills",
          "canonical_path": "/cities/us/kill-devil-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4839148",
          "name": "Killeen",
          "country_code": "US",
          "slug": "killeen",
          "canonical_path": "/cities/us/killeen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1643570",
          "name": "Kimberly",
          "country_code": "US",
          "slug": "kimberly-id",
          "canonical_path": "/cities/us/kimberly-id/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5539650",
          "name": "Kimberly",
          "country_code": "US",
          "slug": "kimberly-wi",
          "canonical_path": "/cities/us/kimberly-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3735760",
          "name": "King",
          "country_code": "US",
          "slug": "king",
          "canonical_path": "/cities/us/king/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0638520",
          "name": "King City",
          "country_code": "US",
          "slug": "king-city-ca",
          "canonical_path": "/cities/us/king-city-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4139150",
          "name": "King City",
          "country_code": "US",
          "slug": "king-city-or",
          "canonical_path": "/cities/us/king-city-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5196220",
          "name": "King of Prussia",
          "country_code": "US",
          "slug": "king-of-prussia",
          "canonical_path": "/cities/us/king-of-prussia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4039850",
          "name": "Kingfisher",
          "country_code": "US",
          "slug": "kingfisher",
          "canonical_path": "/cities/us/kingfisher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0437620",
          "name": "Kingman",
          "country_code": "US",
          "slug": "kingman",
          "canonical_path": "/cities/us/kingman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4474382",
          "name": "Kings Grant",
          "country_code": "US",
          "slug": "kings-grant",
          "canonical_path": "/cities/us/kings-grant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3735880",
          "name": "Kings Mountain",
          "country_code": "US",
          "slug": "kings-mountain",
          "canonical_path": "/cities/us/kings-mountain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5123456",
          "name": "Kings Park",
          "country_code": "US",
          "slug": "kings-park",
          "canonical_path": "/cities/us/kings-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315398",
          "name": "Kings Park West",
          "country_code": "US",
          "slug": "kings-park-west",
          "canonical_path": "/cities/us/kings-park-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3639694",
          "name": "Kings Point",
          "country_code": "US",
          "slug": "kings-point",
          "canonical_path": "/cities/us/kings-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0638562",
          "name": "Kingsburg",
          "country_code": "US",
          "slug": "kingsburg",
          "canonical_path": "/cities/us/kingsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2643300",
          "name": "Kingsford",
          "country_code": "US",
          "slug": "kingsford",
          "canonical_path": "/cities/us/kingsford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1343640",
          "name": "Kingsland",
          "country_code": "US",
          "slug": "kingsland",
          "canonical_path": "/cities/us/kingsland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4739560",
          "name": "Kingsport",
          "country_code": "US",
          "slug": "kingsport",
          "canonical_path": "/cities/us/kingsport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4941383",
          "name": "Kingston",
          "country_code": "US",
          "slug": "kingston",
          "canonical_path": "/cities/us/kingston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5088377",
          "name": "Kingston",
          "country_code": "US",
          "slug": "kingston-nh-015",
          "canonical_path": "/cities/us/kingston-nh-015/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5196245",
          "name": "Kingston",
          "country_code": "US",
          "slug": "kingston-pa-079",
          "canonical_path": "/cities/us/kingston-pa-079/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5223006",
          "name": "Kingston",
          "country_code": "US",
          "slug": "kingston-ri-009",
          "canonical_path": "/cities/us/kingston-ri-009/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3639727",
          "name": "Kingston",
          "country_code": "US",
          "slug": "kingston-ny",
          "canonical_path": "/cities/us/kingston-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4739620",
          "name": "Kingston",
          "country_code": "US",
          "slug": "kingston-tn",
          "canonical_path": "/cities/us/kingston-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4239784",
          "name": "Kingston borough",
          "country_code": "US",
          "slug": "kingston-borough",
          "canonical_path": "/cities/us/kingston-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4502543",
          "name": "Kingston Estates",
          "country_code": "US",
          "slug": "kingston-estates",
          "canonical_path": "/cities/us/kingston-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4839352",
          "name": "Kingsville",
          "country_code": "US",
          "slug": "kingsville",
          "canonical_path": "/cities/us/kingsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100062",
          "name": "Kinnelon",
          "country_code": "US",
          "slug": "kinnelon",
          "canonical_path": "/cities/us/kinnelon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3437110",
          "name": "Kinnelon borough",
          "country_code": "US",
          "slug": "kinnelon-borough",
          "canonical_path": "/cities/us/kinnelon-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3735920",
          "name": "Kinston",
          "country_code": "US",
          "slug": "kinston",
          "canonical_path": "/cities/us/kinston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4839448",
          "name": "Kirby",
          "country_code": "US",
          "slug": "kirby",
          "canonical_path": "/cities/us/kirby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5335940",
          "name": "Kirkland",
          "country_code": "US",
          "slug": "kirkland",
          "canonical_path": "/cities/us/kirkland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2939026",
          "name": "Kirksville",
          "country_code": "US",
          "slug": "kirksville",
          "canonical_path": "/cities/us/kirksville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2939044",
          "name": "Kirkwood",
          "country_code": "US",
          "slug": "kirkwood",
          "canonical_path": "/cities/us/kirkwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3940642",
          "name": "Kirtland",
          "country_code": "US",
          "slug": "kirtland",
          "canonical_path": "/cities/us/kirtland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3639853",
          "name": "Kiryas Joel",
          "country_code": "US",
          "slug": "kiryas-joel",
          "canonical_path": "/cities/us/kiryas-joel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1236950",
          "name": "Kissimmee",
          "country_code": "US",
          "slug": "kissimmee",
          "canonical_path": "/cities/us/kissimmee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4139700",
          "name": "Klamath Falls",
          "country_code": "US",
          "slug": "klamath-falls",
          "canonical_path": "/cities/us/klamath-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3736080",
          "name": "Knightdale",
          "country_code": "US",
          "slug": "knightdale",
          "canonical_path": "/cities/us/knightdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262897",
          "name": "Knik-Fairview",
          "country_code": "US",
          "slug": "knik-fairview",
          "canonical_path": "/cities/us/knik-fairview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4297184",
          "name": "Knottsville",
          "country_code": "US",
          "slug": "knottsville",
          "canonical_path": "/cities/us/knottsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1942015",
          "name": "Knoxville",
          "country_code": "US",
          "slug": "knoxville-ia",
          "canonical_path": "/cities/us/knoxville-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4740000",
          "name": "Knoxville",
          "country_code": "US",
          "slug": "knoxville-tn",
          "canonical_path": "/cities/us/knoxville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0240950",
          "name": "Kodiak",
          "country_code": "US",
          "slug": "kodiak",
          "canonical_path": "/cities/us/kodiak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1840392",
          "name": "Kokomo",
          "country_code": "US",
          "slug": "kokomo",
          "canonical_path": "/cities/us/kokomo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2838320",
          "name": "Kosciusko",
          "country_code": "US",
          "slug": "kosciusko",
          "canonical_path": "/cities/us/kosciusko/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5540550",
          "name": "Kronenwetter",
          "country_code": "US",
          "slug": "kronenwetter",
          "canonical_path": "/cities/us/kronenwetter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4839928",
          "name": "Krum",
          "country_code": "US",
          "slug": "krum",
          "canonical_path": "/cities/us/krum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8531961",
          "name": "Kula",
          "country_code": "US",
          "slug": "kula",
          "canonical_path": "/cities/us/kula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5849891",
          "name": "Kuli‘ou‘ou",
          "country_code": "US",
          "slug": "kuli-ou",
          "canonical_path": "/cities/us/kuli-ou/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:9403721",
          "name": "Kuliouou - Kalani Iki",
          "country_code": "US",
          "slug": "kuliouou-kalani-iki",
          "canonical_path": "/cities/us/kuliouou-kalani-iki/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5196605",
          "name": "Kulpsville",
          "country_code": "US",
          "slug": "kulpsville",
          "canonical_path": "/cities/us/kulpsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1644290",
          "name": "Kuna",
          "country_code": "US",
          "slug": "kuna",
          "canonical_path": "/cities/us/kuna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5196621",
          "name": "Kutztown",
          "country_code": "US",
          "slug": "kutztown",
          "canonical_path": "/cities/us/kutztown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4839952",
          "name": "Kyle",
          "country_code": "US",
          "slug": "kyle",
          "canonical_path": "/cities/us/kyle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639003",
          "name": "La Cañada Flintridge",
          "country_code": "US",
          "slug": "la-canada-flintridge",
          "canonical_path": "/cities/us/la-canada-flintridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2733866",
          "name": "La Crescent",
          "country_code": "US",
          "slug": "la-crescent",
          "canonical_path": "/cities/us/la-crescent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261553",
          "name": "La Crescenta-Montrose",
          "country_code": "US",
          "slug": "la-crescenta-montrose",
          "canonical_path": "/cities/us/la-crescenta-montrose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5540775",
          "name": "La Crosse",
          "country_code": "US",
          "slug": "la-crosse",
          "canonical_path": "/cities/us/la-crosse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4840204",
          "name": "La Feria",
          "country_code": "US",
          "slug": "la-feria",
          "canonical_path": "/cities/us/la-feria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4740180",
          "name": "La Follette",
          "country_code": "US",
          "slug": "la-follette",
          "canonical_path": "/cities/us/la-follette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4140350",
          "name": "La Grande",
          "country_code": "US",
          "slug": "la-grande",
          "canonical_path": "/cities/us/la-grande/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1740767",
          "name": "La Grange",
          "country_code": "US",
          "slug": "la-grange-il",
          "canonical_path": "/cities/us/la-grange-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2143480",
          "name": "La Grange",
          "country_code": "US",
          "slug": "la-grange-ky",
          "canonical_path": "/cities/us/la-grange-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1740793",
          "name": "La Grange Park",
          "country_code": "US",
          "slug": "la-grange-park",
          "canonical_path": "/cities/us/la-grange-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639290",
          "name": "La Habra",
          "country_code": "US",
          "slug": "la-habra",
          "canonical_path": "/cities/us/la-habra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639304",
          "name": "La Habra Heights",
          "country_code": "US",
          "slug": "la-habra-heights",
          "canonical_path": "/cities/us/la-habra-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4703972",
          "name": "La Homa",
          "country_code": "US",
          "slug": "la-homa",
          "canonical_path": "/cities/us/la-homa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4840384",
          "name": "La Joya",
          "country_code": "US",
          "slug": "la-joya",
          "canonical_path": "/cities/us/la-joya/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0842110",
          "name": "La Junta",
          "country_code": "US",
          "slug": "la-junta",
          "canonical_path": "/cities/us/la-junta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4841116",
          "name": "La Marque",
          "country_code": "US",
          "slug": "la-marque",
          "canonical_path": "/cities/us/la-marque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640004",
          "name": "La Mesa",
          "country_code": "US",
          "slug": "la-mesa",
          "canonical_path": "/cities/us/la-mesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640032",
          "name": "La Mirada",
          "country_code": "US",
          "slug": "la-mirada",
          "canonical_path": "/cities/us/la-mirada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640256",
          "name": "La Palma",
          "country_code": "US",
          "slug": "la-palma",
          "canonical_path": "/cities/us/la-palma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2445750",
          "name": "La Plata",
          "country_code": "US",
          "slug": "la-plata",
          "canonical_path": "/cities/us/la-plata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1842246",
          "name": "La Porte",
          "country_code": "US",
          "slug": "la-porte-in",
          "canonical_path": "/cities/us/la-porte-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4841440",
          "name": "La Porte",
          "country_code": "US",
          "slug": "la-porte-tx",
          "canonical_path": "/cities/us/la-porte-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5364059",
          "name": "La Presa",
          "country_code": "US",
          "slug": "la-presa",
          "canonical_path": "/cities/us/la-presa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640340",
          "name": "La Puente",
          "country_code": "US",
          "slug": "la-puente",
          "canonical_path": "/cities/us/la-puente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640354",
          "name": "La Quinta",
          "country_code": "US",
          "slug": "la-quinta",
          "canonical_path": "/cities/us/la-quinta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5364095",
          "name": "La Riviera",
          "country_code": "US",
          "slug": "la-riviera",
          "canonical_path": "/cities/us/la-riviera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4741200",
          "name": "La Vergne",
          "country_code": "US",
          "slug": "la-vergne",
          "canonical_path": "/cities/us/la-vergne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640830",
          "name": "La Verne",
          "country_code": "US",
          "slug": "la-verne",
          "canonical_path": "/cities/us/la-verne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3126385",
          "name": "La Vista",
          "country_code": "US",
          "slug": "la-vista",
          "canonical_path": "/cities/us/la-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5850027",
          "name": "Lā‘ie",
          "country_code": "US",
          "slug": "la",
          "canonical_path": "/cities/us/la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1237225",
          "name": "LaBelle",
          "country_code": "US",
          "slug": "labelle",
          "canonical_path": "/cities/us/labelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5336745",
          "name": "Lacey",
          "country_code": "US",
          "slug": "lacey",
          "canonical_path": "/cities/us/lacey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3640189",
          "name": "Lackawanna",
          "country_code": "US",
          "slug": "lackawanna",
          "canonical_path": "/cities/us/lackawanna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4330126",
          "name": "Lacombe",
          "country_code": "US",
          "slug": "lacombe",
          "canonical_path": "/cities/us/lacombe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3340180",
          "name": "Laconia",
          "country_code": "US",
          "slug": "laconia",
          "canonical_path": "/cities/us/laconia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4840168",
          "name": "Lacy-Lakeview",
          "country_code": "US",
          "slug": "lacy-lakeview",
          "canonical_path": "/cities/us/lacy-lakeview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5364199",
          "name": "Ladera Ranch",
          "country_code": "US",
          "slug": "ladera-ranch",
          "canonical_path": "/cities/us/ladera-ranch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4584277",
          "name": "Ladson",
          "country_code": "US",
          "slug": "ladson",
          "canonical_path": "/cities/us/ladson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2939656",
          "name": "Ladue",
          "country_code": "US",
          "slug": "ladue",
          "canonical_path": "/cities/us/ladue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1237375",
          "name": "Lady Lake",
          "country_code": "US",
          "slug": "lady-lake",
          "canonical_path": "/cities/us/lady-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4330145",
          "name": "Lafayette",
          "country_code": "US",
          "slug": "lafayette",
          "canonical_path": "/cities/us/lafayette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639122",
          "name": "Lafayette",
          "country_code": "US",
          "slug": "lafayette-ca",
          "canonical_path": "/cities/us/lafayette-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0841835",
          "name": "Lafayette",
          "country_code": "US",
          "slug": "lafayette-co",
          "canonical_path": "/cities/us/lafayette-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1840788",
          "name": "Lafayette",
          "country_code": "US",
          "slug": "lafayette-in",
          "canonical_path": "/cities/us/lafayette-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4740160",
          "name": "Lafayette",
          "country_code": "US",
          "slug": "lafayette-tn",
          "canonical_path": "/cities/us/lafayette-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1344312",
          "name": "LaFayette",
          "country_code": "US",
          "slug": "lafayette-ga",
          "canonical_path": "/cities/us/lafayette-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4840264",
          "name": "Lago Vista",
          "country_code": "US",
          "slug": "lago-vista",
          "canonical_path": "/cities/us/lago-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1344340",
          "name": "LaGrange",
          "country_code": "US",
          "slug": "lagrange",
          "canonical_path": "/cities/us/lagrange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639178",
          "name": "Laguna Beach",
          "country_code": "US",
          "slug": "laguna-beach",
          "canonical_path": "/cities/us/laguna-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639220",
          "name": "Laguna Hills",
          "country_code": "US",
          "slug": "laguna-hills",
          "canonical_path": "/cities/us/laguna-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639248",
          "name": "Laguna Niguel",
          "country_code": "US",
          "slug": "laguna-niguel",
          "canonical_path": "/cities/us/laguna-niguel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639259",
          "name": "Laguna Woods",
          "country_code": "US",
          "slug": "laguna-woods",
          "canonical_path": "/cities/us/laguna-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5849996",
          "name": "Lahaina",
          "country_code": "US",
          "slug": "lahaina",
          "canonical_path": "/cities/us/lahaina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1237525",
          "name": "Lake Alfred",
          "country_code": "US",
          "slug": "lake-alfred",
          "canonical_path": "/cities/us/lake-alfred/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360138",
          "name": "Lake Arbor",
          "country_code": "US",
          "slug": "lake-arbor",
          "canonical_path": "/cities/us/lake-arbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5364414",
          "name": "Lake Arrowhead",
          "country_code": "US",
          "slug": "lake-arrowhead",
          "canonical_path": "/cities/us/lake-arrowhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4768185",
          "name": "Lake Barcroft",
          "country_code": "US",
          "slug": "lake-barcroft",
          "canonical_path": "/cities/us/lake-barcroft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1740884",
          "name": "Lake Barrington",
          "country_code": "US",
          "slug": "lake-barrington",
          "canonical_path": "/cities/us/lake-barrington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1740910",
          "name": "Lake Bluff",
          "country_code": "US",
          "slug": "lake-bluff",
          "canonical_path": "/cities/us/lake-bluff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161178",
          "name": "Lake Butler",
          "country_code": "US",
          "slug": "lake-butler",
          "canonical_path": "/cities/us/lake-butler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5123777",
          "name": "Lake Carmel",
          "country_code": "US",
          "slug": "lake-carmel",
          "canonical_path": "/cities/us/lake-carmel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2241155",
          "name": "Lake Charles",
          "country_code": "US",
          "slug": "lake-charles",
          "canonical_path": "/cities/us/lake-charles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1237775",
          "name": "Lake City",
          "country_code": "US",
          "slug": "lake-city-fl",
          "canonical_path": "/cities/us/lake-city-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2734172",
          "name": "Lake City",
          "country_code": "US",
          "slug": "lake-city-mn",
          "canonical_path": "/cities/us/lake-city-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4539310",
          "name": "Lake City",
          "country_code": "US",
          "slug": "lake-city-sc",
          "canonical_path": "/cities/us/lake-city-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4840516",
          "name": "Lake Dallas",
          "country_code": "US",
          "slug": "lake-dallas",
          "canonical_path": "/cities/us/lake-dallas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2734244",
          "name": "Lake Elmo",
          "country_code": "US",
          "slug": "lake-elmo",
          "canonical_path": "/cities/us/lake-elmo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639486",
          "name": "Lake Elsinore",
          "country_code": "US",
          "slug": "lake-elsinore",
          "canonical_path": "/cities/us/lake-elsinore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4998543",
          "name": "Lake Fenton",
          "country_code": "US",
          "slug": "lake-fenton",
          "canonical_path": "/cities/us/lake-fenton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639496",
          "name": "Lake Forest",
          "country_code": "US",
          "slug": "lake-forest-ca",
          "canonical_path": "/cities/us/lake-forest-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1741105",
          "name": "Lake Forest",
          "country_code": "US",
          "slug": "lake-forest-il",
          "canonical_path": "/cities/us/lake-forest-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5337270",
          "name": "Lake Forest Park",
          "country_code": "US",
          "slug": "lake-forest-park",
          "canonical_path": "/cities/us/lake-forest-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5541450",
          "name": "Lake Geneva",
          "country_code": "US",
          "slug": "lake-geneva",
          "canonical_path": "/cities/us/lake-geneva/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3640530",
          "name": "Lake Grove",
          "country_code": "US",
          "slug": "lake-grove",
          "canonical_path": "/cities/us/lake-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5541525",
          "name": "Lake Hallie",
          "country_code": "US",
          "slug": "lake-hallie",
          "canonical_path": "/cities/us/lake-hallie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0439370",
          "name": "Lake Havasu City",
          "country_code": "US",
          "slug": "lake-havasu-city",
          "canonical_path": "/cities/us/lake-havasu-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100155",
          "name": "Lake Hiawatha",
          "country_code": "US",
          "slug": "lake-hiawatha",
          "canonical_path": "/cities/us/lake-hiawatha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100158",
          "name": "Lake Hopatcong",
          "country_code": "US",
          "slug": "lake-hopatcong",
          "canonical_path": "/cities/us/lake-hopatcong/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1741183",
          "name": "Lake in the Hills",
          "country_code": "US",
          "slug": "lake-in-the-hills",
          "canonical_path": "/cities/us/lake-in-the-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4840588",
          "name": "Lake Jackson",
          "country_code": "US",
          "slug": "lake-jackson",
          "canonical_path": "/cities/us/lake-jackson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161296",
          "name": "Lake Lorraine",
          "country_code": "US",
          "slug": "lake-lorraine",
          "canonical_path": "/cities/us/lake-lorraine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5364571",
          "name": "Lake Los Angeles",
          "country_code": "US",
          "slug": "lake-los-angeles",
          "canonical_path": "/cities/us/lake-los-angeles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161313",
          "name": "Lake Magdalene",
          "country_code": "US",
          "slug": "lake-magdalene",
          "canonical_path": "/cities/us/lake-magdalene/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1238425",
          "name": "Lake Mary",
          "country_code": "US",
          "slug": "lake-mary",
          "canonical_path": "/cities/us/lake-mary/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5541675",
          "name": "Lake Mills",
          "country_code": "US",
          "slug": "lake-mills",
          "canonical_path": "/cities/us/lake-mills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100190",
          "name": "Lake Mohawk",
          "country_code": "US",
          "slug": "lake-mohawk",
          "canonical_path": "/cities/us/lake-mohawk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5123823",
          "name": "Lake Mohegan",
          "country_code": "US",
          "slug": "lake-mohegan",
          "canonical_path": "/cities/us/lake-mohegan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4768313",
          "name": "Lake Monticello",
          "country_code": "US",
          "slug": "lake-monticello",
          "canonical_path": "/cities/us/lake-monticello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261595",
          "name": "Lake Morton-Berrydale",
          "country_code": "US",
          "slug": "lake-morton-berrydale",
          "canonical_path": "/cities/us/lake-morton-berrydale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260357",
          "name": "Lake Murray of Richland",
          "country_code": "US",
          "slug": "lake-murray-of-richland",
          "canonical_path": "/cities/us/lake-murray-of-richland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4474841",
          "name": "Lake Norman of Catawba",
          "country_code": "US",
          "slug": "lake-norman-of-catawba",
          "canonical_path": "/cities/us/lake-norman-of-catawba/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13236510",
          "name": "Lake of the Woods",
          "country_code": "US",
          "slug": "lake-of-the-woods",
          "canonical_path": "/cities/us/lake-of-the-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4140550",
          "name": "Lake Oswego",
          "country_code": "US",
          "slug": "lake-oswego",
          "canonical_path": "/cities/us/lake-oswego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1238600",
          "name": "Lake Park",
          "country_code": "US",
          "slug": "lake-park",
          "canonical_path": "/cities/us/lake-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4071488",
          "name": "Lake Purdy",
          "country_code": "US",
          "slug": "lake-purdy",
          "canonical_path": "/cities/us/lake-purdy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4768351",
          "name": "Lake Ridge",
          "country_code": "US",
          "slug": "lake-ridge",
          "canonical_path": "/cities/us/lake-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5123840",
          "name": "Lake Ronkonkoma",
          "country_code": "US",
          "slug": "lake-ronkonkoma",
          "canonical_path": "/cities/us/lake-ronkonkoma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4394302",
          "name": "Lake Saint Louis",
          "country_code": "US",
          "slug": "lake-saint-louis",
          "canonical_path": "/cities/us/lake-saint-louis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360201",
          "name": "Lake Shore",
          "country_code": "US",
          "slug": "lake-shore",
          "canonical_path": "/cities/us/lake-shore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5800314",
          "name": "Lake Shore",
          "country_code": "US",
          "slug": "lake-shore-wa-011",
          "canonical_path": "/cities/us/lake-shore-wa-011/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2940043",
          "name": "Lake St. Louis",
          "country_code": "US",
          "slug": "lake-st-louis",
          "canonical_path": "/cities/us/lake-st-louis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1841535",
          "name": "Lake Station",
          "country_code": "US",
          "slug": "lake-station",
          "canonical_path": "/cities/us/lake-station/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5337900",
          "name": "Lake Stevens",
          "country_code": "US",
          "slug": "lake-stevens",
          "canonical_path": "/cities/us/lake-stevens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8479422",
          "name": "Lake Stickney",
          "country_code": "US",
          "slug": "lake-stickney",
          "canonical_path": "/cities/us/lake-stickney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1741586",
          "name": "Lake Villa",
          "country_code": "US",
          "slug": "lake-villa",
          "canonical_path": "/cities/us/lake-villa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1238950",
          "name": "Lake Wales",
          "country_code": "US",
          "slug": "lake-wales",
          "canonical_path": "/cities/us/lake-wales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1239081",
          "name": "Lake Worth Beach",
          "country_code": "US",
          "slug": "lake-worth-beach",
          "canonical_path": "/cities/us/lake-worth-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4584474",
          "name": "Lake Wylie",
          "country_code": "US",
          "slug": "lake-wylie",
          "canonical_path": "/cities/us/lake-wylie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1741742",
          "name": "Lake Zurich",
          "country_code": "US",
          "slug": "lake-zurich",
          "canonical_path": "/cities/us/lake-zurich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4704940",
          "name": "Lakehills",
          "country_code": "US",
          "slug": "lakehills",
          "canonical_path": "/cities/us/lakehills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1238250",
          "name": "Lakeland",
          "country_code": "US",
          "slug": "lakeland-fl",
          "canonical_path": "/cities/us/lakeland-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4740350",
          "name": "Lakeland",
          "country_code": "US",
          "slug": "lakeland-tn",
          "canonical_path": "/cities/us/lakeland-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161444",
          "name": "Lakeland Highlands",
          "country_code": "US",
          "slug": "lakeland-highlands",
          "canonical_path": "/cities/us/lakeland-highlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261608",
          "name": "Lakeland North",
          "country_code": "US",
          "slug": "lakeland-north",
          "canonical_path": "/cities/us/lakeland-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261609",
          "name": "Lakeland South",
          "country_code": "US",
          "slug": "lakeland-south",
          "canonical_path": "/cities/us/lakeland-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5364750",
          "name": "Lakeland Village",
          "country_code": "US",
          "slug": "lakeland-village",
          "canonical_path": "/cities/us/lakeland-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1741326",
          "name": "Lakemoor",
          "country_code": "US",
          "slug": "lakemoor",
          "canonical_path": "/cities/us/lakemoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639710",
          "name": "Lakeport",
          "country_code": "US",
          "slug": "lakeport",
          "canonical_path": "/cities/us/lakeport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262905",
          "name": "Lakes",
          "country_code": "US",
          "slug": "lakes",
          "canonical_path": "/cities/us/lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4922562",
          "name": "Lakes of the Four Seasons",
          "country_code": "US",
          "slug": "lakes-of-the-four-seasons",
          "canonical_path": "/cities/us/lakes-of-the-four-seasons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161461",
          "name": "Lakeside",
          "country_code": "US",
          "slug": "lakeside",
          "canonical_path": "/cities/us/lakeside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4768423",
          "name": "Lakeside",
          "country_code": "US",
          "slug": "lakeside-va-087",
          "canonical_path": "/cities/us/lakeside-va-087/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5364782",
          "name": "Lakeside",
          "country_code": "US",
          "slug": "lakeside-ca-073",
          "canonical_path": "/cities/us/lakeside-ca-073/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5123908",
          "name": "Lakeview",
          "country_code": "US",
          "slug": "lakeview-ny-059",
          "canonical_path": "/cities/us/lakeview-ny-059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2735180",
          "name": "Lakeville",
          "country_code": "US",
          "slug": "lakeville",
          "canonical_path": "/cities/us/lakeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4840984",
          "name": "Lakeway",
          "country_code": "US",
          "slug": "lakeway",
          "canonical_path": "/cities/us/lakeway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100280",
          "name": "Lakewood",
          "country_code": "US",
          "slug": "lakewood",
          "canonical_path": "/cities/us/lakewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0639892",
          "name": "Lakewood",
          "country_code": "US",
          "slug": "lakewood-ca",
          "canonical_path": "/cities/us/lakewood-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0843000",
          "name": "Lakewood",
          "country_code": "US",
          "slug": "lakewood-co",
          "canonical_path": "/cities/us/lakewood-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3941664",
          "name": "Lakewood",
          "country_code": "US",
          "slug": "lakewood-oh",
          "canonical_path": "/cities/us/lakewood-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5338038",
          "name": "Lakewood",
          "country_code": "US",
          "slug": "lakewood-wa",
          "canonical_path": "/cities/us/lakewood-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161510",
          "name": "Lakewood Park",
          "country_code": "US",
          "slug": "lakewood-park",
          "canonical_path": "/cities/us/lakewood-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0843110",
          "name": "Lamar",
          "country_code": "US",
          "slug": "lamar",
          "canonical_path": "/cities/us/lamar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4998769",
          "name": "Lambertville",
          "country_code": "US",
          "slug": "lambertville",
          "canonical_path": "/cities/us/lambertville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4841164",
          "name": "Lamesa",
          "country_code": "US",
          "slug": "lamesa",
          "canonical_path": "/cities/us/lamesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5364916",
          "name": "Lamont",
          "country_code": "US",
          "slug": "lamont",
          "canonical_path": "/cities/us/lamont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4841188",
          "name": "Lampasas",
          "country_code": "US",
          "slug": "lampasas",
          "canonical_path": "/cities/us/lampasas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4941635",
          "name": "Lancaster",
          "country_code": "US",
          "slug": "lancaster",
          "canonical_path": "/cities/us/lancaster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640130",
          "name": "Lancaster",
          "country_code": "US",
          "slug": "lancaster-ca",
          "canonical_path": "/cities/us/lancaster-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3641135",
          "name": "Lancaster",
          "country_code": "US",
          "slug": "lancaster-ny",
          "canonical_path": "/cities/us/lancaster-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3941720",
          "name": "Lancaster",
          "country_code": "US",
          "slug": "lancaster-oh",
          "canonical_path": "/cities/us/lancaster-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4241216",
          "name": "Lancaster",
          "country_code": "US",
          "slug": "lancaster-pa",
          "canonical_path": "/cities/us/lancaster-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4539895",
          "name": "Lancaster",
          "country_code": "US",
          "slug": "lancaster-sc",
          "canonical_path": "/cities/us/lancaster-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4841212",
          "name": "Lancaster",
          "country_code": "US",
          "slug": "lancaster-tx",
          "canonical_path": "/cities/us/lancaster-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161534",
          "name": "Land O' Lakes",
          "country_code": "US",
          "slug": "land-o-lakes",
          "canonical_path": "/cities/us/land-o-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4516248",
          "name": "Landen",
          "country_code": "US",
          "slug": "landen",
          "canonical_path": "/cities/us/landen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5644760",
          "name": "Lander",
          "country_code": "US",
          "slug": "lander",
          "canonical_path": "/cities/us/lander/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100308",
          "name": "Landing",
          "country_code": "US",
          "slug": "landing",
          "canonical_path": "/cities/us/landing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360287",
          "name": "Landover",
          "country_code": "US",
          "slug": "landover",
          "canonical_path": "/cities/us/landover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0141296",
          "name": "Lanett",
          "country_code": "US",
          "slug": "lanett",
          "canonical_path": "/cities/us/lanett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360314",
          "name": "Langley Park",
          "country_code": "US",
          "slug": "langley-park",
          "canonical_path": "/cities/us/langley-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360321",
          "name": "Lanham",
          "country_code": "US",
          "slug": "lanham",
          "canonical_path": "/cities/us/lanham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258832",
          "name": "Lanham-Seabrook",
          "country_code": "US",
          "slug": "lanham-seabrook",
          "canonical_path": "/cities/us/lanham-seabrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5197159",
          "name": "Lansdale",
          "country_code": "US",
          "slug": "lansdale",
          "canonical_path": "/cities/us/lansdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4241432",
          "name": "Lansdale borough",
          "country_code": "US",
          "slug": "lansdale-borough",
          "canonical_path": "/cities/us/lansdale-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360328",
          "name": "Lansdowne",
          "country_code": "US",
          "slug": "lansdowne",
          "canonical_path": "/cities/us/lansdowne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4559077",
          "name": "Lansdowne",
          "country_code": "US",
          "slug": "lansdowne-pa-045",
          "canonical_path": "/cities/us/lansdowne-pa-045/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4241440",
          "name": "Lansdowne borough",
          "country_code": "US",
          "slug": "lansdowne-borough",
          "canonical_path": "/cities/us/lansdowne-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1742028",
          "name": "Lansing",
          "country_code": "US",
          "slug": "lansing-il",
          "canonical_path": "/cities/us/lansing-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2038650",
          "name": "Lansing",
          "country_code": "US",
          "slug": "lansing-ks",
          "canonical_path": "/cities/us/lansing-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2646000",
          "name": "Lansing",
          "country_code": "US",
          "slug": "lansing-mi",
          "canonical_path": "/cities/us/lansing-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1239375",
          "name": "Lantana",
          "country_code": "US",
          "slug": "lantana",
          "canonical_path": "/cities/us/lantana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2646040",
          "name": "Lapeer",
          "country_code": "US",
          "slug": "lapeer",
          "canonical_path": "/cities/us/lapeer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4330525",
          "name": "Laplace",
          "country_code": "US",
          "slug": "laplace",
          "canonical_path": "/cities/us/laplace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5645050",
          "name": "Laramie",
          "country_code": "US",
          "slug": "laramie",
          "canonical_path": "/cities/us/laramie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3641333",
          "name": "Larchmont",
          "country_code": "US",
          "slug": "larchmont",
          "canonical_path": "/cities/us/larchmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4841464",
          "name": "Laredo",
          "country_code": "US",
          "slug": "laredo",
          "canonical_path": "/cities/us/laredo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1239425",
          "name": "Largo",
          "country_code": "US",
          "slug": "largo",
          "canonical_path": "/cities/us/largo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261625",
          "name": "Larkfield-Wikiup",
          "country_code": "US",
          "slug": "larkfield-wikiup",
          "canonical_path": "/cities/us/larkfield-wikiup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640438",
          "name": "Larkspur",
          "country_code": "US",
          "slug": "larkspur",
          "canonical_path": "/cities/us/larkspur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4330541",
          "name": "Larose",
          "country_code": "US",
          "slug": "larose",
          "canonical_path": "/cities/us/larose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3539380",
          "name": "Las Cruces",
          "country_code": "US",
          "slug": "las-cruces",
          "canonical_path": "/cities/us/las-cruces/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5365172",
          "name": "Las Flores",
          "country_code": "US",
          "slug": "las-flores",
          "canonical_path": "/cities/us/las-flores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3240000",
          "name": "Las Vegas",
          "country_code": "US",
          "slug": "las-vegas-nv",
          "canonical_path": "/cities/us/las-vegas-nv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3539940",
          "name": "Las Vegas",
          "country_code": "US",
          "slug": "las-vegas-nm",
          "canonical_path": "/cities/us/las-vegas-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1742184",
          "name": "LaSalle",
          "country_code": "US",
          "slug": "lasalle",
          "canonical_path": "/cities/us/lasalle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5124045",
          "name": "Latham",
          "country_code": "US",
          "slug": "latham",
          "canonical_path": "/cities/us/latham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640704",
          "name": "Lathrop",
          "country_code": "US",
          "slug": "lathrop",
          "canonical_path": "/cities/us/lathrop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4433016",
          "name": "Latimer",
          "country_code": "US",
          "slug": "latimer",
          "canonical_path": "/cities/us/latimer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5197227",
          "name": "Latrobe",
          "country_code": "US",
          "slug": "latrobe",
          "canonical_path": "/cities/us/latrobe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4241680",
          "name": "Latrobe borough",
          "country_code": "US",
          "slug": "latrobe-borough",
          "canonical_path": "/cities/us/latrobe-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1239525",
          "name": "Lauderdale Lakes",
          "country_code": "US",
          "slug": "lauderdale-lakes",
          "canonical_path": "/cities/us/lauderdale-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1239475",
          "name": "Lauderdale-by-the-Sea",
          "country_code": "US",
          "slug": "lauderdale-by-the-sea",
          "canonical_path": "/cities/us/lauderdale-by-the-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1239550",
          "name": "Lauderhill",
          "country_code": "US",
          "slug": "lauderhill",
          "canonical_path": "/cities/us/lauderhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5507016",
          "name": "Laughlin",
          "country_code": "US",
          "slug": "laughlin",
          "canonical_path": "/cities/us/laughlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161659",
          "name": "Laurel",
          "country_code": "US",
          "slug": "laurel",
          "canonical_path": "/cities/us/laurel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4768678",
          "name": "Laurel",
          "country_code": "US",
          "slug": "laurel-va-087",
          "canonical_path": "/cities/us/laurel-va-087/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2445900",
          "name": "Laurel",
          "country_code": "US",
          "slug": "laurel-md",
          "canonical_path": "/cities/us/laurel-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2839640",
          "name": "Laurel",
          "country_code": "US",
          "slug": "laurel-ms",
          "canonical_path": "/cities/us/laurel-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3042700",
          "name": "Laurel",
          "country_code": "US",
          "slug": "laurel-mt",
          "canonical_path": "/cities/us/laurel-mt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4584683",
          "name": "Laurel Bay",
          "country_code": "US",
          "slug": "laurel-bay",
          "canonical_path": "/cities/us/laurel-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:9670593",
          "name": "Laurel Hill",
          "country_code": "US",
          "slug": "laurel-hill",
          "canonical_path": "/cities/us/laurel-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100340",
          "name": "Laurence Harbor",
          "country_code": "US",
          "slug": "laurence-harbor",
          "canonical_path": "/cities/us/laurence-harbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4540615",
          "name": "Laurens",
          "country_code": "US",
          "slug": "laurens",
          "canonical_path": "/cities/us/laurens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3737220",
          "name": "Laurinburg",
          "country_code": "US",
          "slug": "laurinburg",
          "canonical_path": "/cities/us/laurinburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4841800",
          "name": "Lavon",
          "country_code": "US",
          "slug": "lavon",
          "canonical_path": "/cities/us/lavon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0640886",
          "name": "Lawndale",
          "country_code": "US",
          "slug": "lawndale",
          "canonical_path": "/cities/us/lawndale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1842426",
          "name": "Lawrence",
          "country_code": "US",
          "slug": "lawrence-in",
          "canonical_path": "/cities/us/lawrence-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2038900",
          "name": "Lawrence",
          "country_code": "US",
          "slug": "lawrence-ks",
          "canonical_path": "/cities/us/lawrence-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2534550",
          "name": "Lawrence",
          "country_code": "US",
          "slug": "lawrence-ma",
          "canonical_path": "/cities/us/lawrence-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3641553",
          "name": "Lawrence",
          "country_code": "US",
          "slug": "lawrence-ny",
          "canonical_path": "/cities/us/lawrence-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1842462",
          "name": "Lawrenceburg",
          "country_code": "US",
          "slug": "lawrenceburg-in",
          "canonical_path": "/cities/us/lawrenceburg-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2144146",
          "name": "Lawrenceburg",
          "country_code": "US",
          "slug": "lawrenceburg-ky",
          "canonical_path": "/cities/us/lawrenceburg-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4741340",
          "name": "Lawrenceburg",
          "country_code": "US",
          "slug": "lawrenceburg-tn",
          "canonical_path": "/cities/us/lawrenceburg-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1345488",
          "name": "Lawrenceville",
          "country_code": "US",
          "slug": "lawrenceville",
          "canonical_path": "/cities/us/lawrenceville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4041850",
          "name": "Lawton",
          "country_code": "US",
          "slug": "lawton",
          "canonical_path": "/cities/us/lawton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360443",
          "name": "Layhill",
          "country_code": "US",
          "slug": "layhill",
          "canonical_path": "/cities/us/layhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4943660",
          "name": "Layton",
          "country_code": "US",
          "slug": "layton",
          "canonical_path": "/cities/us/layton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1944400",
          "name": "Le Mars",
          "country_code": "US",
          "slug": "le-mars",
          "canonical_path": "/cities/us/le-mars/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4841980",
          "name": "League City",
          "country_code": "US",
          "slug": "league-city",
          "canonical_path": "/cities/us/league-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161705",
          "name": "Lealman",
          "country_code": "US",
          "slug": "lealman",
          "canonical_path": "/cities/us/lealman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4842016",
          "name": "Leander",
          "country_code": "US",
          "slug": "leander",
          "canonical_path": "/cities/us/leander/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2039000",
          "name": "Leavenworth",
          "country_code": "US",
          "slug": "leavenworth",
          "canonical_path": "/cities/us/leavenworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2039075",
          "name": "Leawood",
          "country_code": "US",
          "slug": "leawood",
          "canonical_path": "/cities/us/leawood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1842624",
          "name": "Lebanon",
          "country_code": "US",
          "slug": "lebanon-in",
          "canonical_path": "/cities/us/lebanon-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2144344",
          "name": "Lebanon",
          "country_code": "US",
          "slug": "lebanon-ky",
          "canonical_path": "/cities/us/lebanon-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2941168",
          "name": "Lebanon",
          "country_code": "US",
          "slug": "lebanon-mo",
          "canonical_path": "/cities/us/lebanon-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3341300",
          "name": "Lebanon",
          "country_code": "US",
          "slug": "lebanon-nh",
          "canonical_path": "/cities/us/lebanon-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3942364",
          "name": "Lebanon",
          "country_code": "US",
          "slug": "lebanon-oh",
          "canonical_path": "/cities/us/lebanon-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4141650",
          "name": "Lebanon",
          "country_code": "US",
          "slug": "lebanon-or",
          "canonical_path": "/cities/us/lebanon-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4242168",
          "name": "Lebanon",
          "country_code": "US",
          "slug": "lebanon-pa",
          "canonical_path": "/cities/us/lebanon-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4741520",
          "name": "Lebanon",
          "country_code": "US",
          "slug": "lebanon-tn",
          "canonical_path": "/cities/us/lebanon-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161733",
          "name": "Lecanto",
          "country_code": "US",
          "slug": "lecanto",
          "canonical_path": "/cities/us/lecanto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4837648",
          "name": "Ledyard",
          "country_code": "US",
          "slug": "ledyard",
          "canonical_path": "/cities/us/ledyard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5475668",
          "name": "Lee Acres",
          "country_code": "US",
          "slug": "lee-acres-nm-045",
          "canonical_path": "/cities/us/lee-acres-nm-045/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2941348",
          "name": "Lee's Summit",
          "country_code": "US",
          "slug": "lee-s-summit",
          "canonical_path": "/cities/us/lee-s-summit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0141968",
          "name": "Leeds",
          "country_code": "US",
          "slug": "leeds",
          "canonical_path": "/cities/us/leeds/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1239875",
          "name": "Leesburg",
          "country_code": "US",
          "slug": "leesburg-fl",
          "canonical_path": "/cities/us/leesburg-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5144984",
          "name": "Leesburg",
          "country_code": "US",
          "slug": "leesburg-va",
          "canonical_path": "/cities/us/leesburg-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2243010",
          "name": "Leesville",
          "country_code": "US",
          "slug": "leesville",
          "canonical_path": "/cities/us/leesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4944320",
          "name": "Lehi",
          "country_code": "US",
          "slug": "lehi",
          "canonical_path": "/cities/us/lehi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161785",
          "name": "Lehigh Acres",
          "country_code": "US",
          "slug": "lehigh-acres",
          "canonical_path": "/cities/us/lehigh-acres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5197673",
          "name": "Lehighton",
          "country_code": "US",
          "slug": "lehighton",
          "canonical_path": "/cities/us/lehighton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4242472",
          "name": "Lehighton borough",
          "country_code": "US",
          "slug": "lehighton-borough",
          "canonical_path": "/cities/us/lehighton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4941835",
          "name": "Leicester",
          "country_code": "US",
          "slug": "leicester",
          "canonical_path": "/cities/us/leicester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4161797",
          "name": "Leisure City",
          "country_code": "US",
          "slug": "leisure-city",
          "canonical_path": "/cities/us/leisure-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258581",
          "name": "Leisure World",
          "country_code": "US",
          "slug": "leisure-world",
          "canonical_path": "/cities/us/leisure-world/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2144686",
          "name": "Leitchfield",
          "country_code": "US",
          "slug": "leitchfield",
          "canonical_path": "/cities/us/leitchfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3737680",
          "name": "Leland",
          "country_code": "US",
          "slug": "leland",
          "canonical_path": "/cities/us/leland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4394905",
          "name": "Lemay",
          "country_code": "US",
          "slug": "lemay",
          "canonical_path": "/cities/us/lemay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5507103",
          "name": "Lemmon Valley",
          "country_code": "US",
          "slug": "lemmon-valley",
          "canonical_path": "/cities/us/lemmon-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0641124",
          "name": "Lemon Grove",
          "country_code": "US",
          "slug": "lemon-grove",
          "canonical_path": "/cities/us/lemon-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1742795",
          "name": "Lemont",
          "country_code": "US",
          "slug": "lemont",
          "canonical_path": "/cities/us/lemont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0641152",
          "name": "Lemoore",
          "country_code": "US",
          "slug": "lemoore",
          "canonical_path": "/cities/us/lemoore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261649",
          "name": "Lemoore Station",
          "country_code": "US",
          "slug": "lemoore-station",
          "canonical_path": "/cities/us/lemoore-station/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2039350",
          "name": "Lenexa",
          "country_code": "US",
          "slug": "lenexa",
          "canonical_path": "/cities/us/lenexa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5365937",
          "name": "Lennox",
          "country_code": "US",
          "slug": "lennox",
          "canonical_path": "/cities/us/lennox/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3737760",
          "name": "Lenoir",
          "country_code": "US",
          "slug": "lenoir",
          "canonical_path": "/cities/us/lenoir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4741760",
          "name": "Lenoir City",
          "country_code": "US",
          "slug": "lenoir-city",
          "canonical_path": "/cities/us/lenoir-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5197749",
          "name": "Leola",
          "country_code": "US",
          "slug": "leola",
          "canonical_path": "/cities/us/leola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2535075",
          "name": "Leominster",
          "country_code": "US",
          "slug": "leominster",
          "canonical_path": "/cities/us/leominster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4842388",
          "name": "Leon Valley",
          "country_code": "US",
          "slug": "leon-valley",
          "canonical_path": "/cities/us/leon-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2446475",
          "name": "Leonardtown",
          "country_code": "US",
          "slug": "leonardtown",
          "canonical_path": "/cities/us/leonardtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100399",
          "name": "Leonia",
          "country_code": "US",
          "slug": "leonia",
          "canonical_path": "/cities/us/leonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3440020",
          "name": "Leonia borough",
          "country_code": "US",
          "slug": "leonia-borough",
          "canonical_path": "/cities/us/leonia-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4842448",
          "name": "Levelland",
          "country_code": "US",
          "slug": "levelland",
          "canonical_path": "/cities/us/levelland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5124276",
          "name": "Levittown",
          "country_code": "US",
          "slug": "levittown",
          "canonical_path": "/cities/us/levittown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5197796",
          "name": "Levittown",
          "country_code": "US",
          "slug": "levittown-pa-017",
          "canonical_path": "/cities/us/levittown-pa-017/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4741860",
          "name": "Lewisburg",
          "country_code": "US",
          "slug": "lewisburg",
          "canonical_path": "/cities/us/lewisburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4242976",
          "name": "Lewisburg borough",
          "country_code": "US",
          "slug": "lewisburg-borough",
          "canonical_path": "/cities/us/lewisburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1646540",
          "name": "Lewiston",
          "country_code": "US",
          "slug": "lewiston-id",
          "canonical_path": "/cities/us/lewiston-id/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2338740",
          "name": "Lewiston",
          "country_code": "US",
          "slug": "lewiston-me",
          "canonical_path": "/cities/us/lewiston-me/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3043375",
          "name": "Lewistown",
          "country_code": "US",
          "slug": "lewistown",
          "canonical_path": "/cities/us/lewistown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4243000",
          "name": "Lewistown borough",
          "country_code": "US",
          "slug": "lewistown-borough",
          "canonical_path": "/cities/us/lewistown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3738040",
          "name": "Lewisville",
          "country_code": "US",
          "slug": "lewisville-nc",
          "canonical_path": "/cities/us/lewisville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4842508",
          "name": "Lewisville",
          "country_code": "US",
          "slug": "lewisville-tx",
          "canonical_path": "/cities/us/lewisville-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4297983",
          "name": "Lexington",
          "country_code": "US",
          "slug": "lexington",
          "canonical_path": "/cities/us/lexington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4941935",
          "name": "Lexington",
          "country_code": "US",
          "slug": "lexington-ma-017",
          "canonical_path": "/cities/us/lexington-ma-017/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3126910",
          "name": "Lexington",
          "country_code": "US",
          "slug": "lexington-ne",
          "canonical_path": "/cities/us/lexington-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3738060",
          "name": "Lexington",
          "country_code": "US",
          "slug": "lexington-nc",
          "canonical_path": "/cities/us/lexington-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4541335",
          "name": "Lexington",
          "country_code": "US",
          "slug": "lexington-sc",
          "canonical_path": "/cities/us/lexington-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4741980",
          "name": "Lexington",
          "country_code": "US",
          "slug": "lexington-tn",
          "canonical_path": "/cities/us/lexington-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5145512",
          "name": "Lexington",
          "country_code": "US",
          "slug": "lexington-va",
          "canonical_path": "/cities/us/lexington-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360592",
          "name": "Lexington Park",
          "country_code": "US",
          "slug": "lexington-park",
          "canonical_path": "/cities/us/lexington-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4297999",
          "name": "Lexington-Fayette",
          "country_code": "US",
          "slug": "lexington-fayette",
          "canonical_path": "/cities/us/lexington-fayette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2146027",
          "name": "Lexington-Fayette urban county",
          "country_code": "US",
          "slug": "lexington-fayette-urban-county",
          "canonical_path": "/cities/us/lexington-fayette-urban-county/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2039825",
          "name": "Liberal",
          "country_code": "US",
          "slug": "liberal",
          "canonical_path": "/cities/us/liberal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2942032",
          "name": "Liberty",
          "country_code": "US",
          "slug": "liberty-mo",
          "canonical_path": "/cities/us/liberty-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3642224",
          "name": "Liberty",
          "country_code": "US",
          "slug": "liberty-ny",
          "canonical_path": "/cities/us/liberty-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4842568",
          "name": "Liberty",
          "country_code": "US",
          "slug": "liberty-tx",
          "canonical_path": "/cities/us/liberty-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4842664",
          "name": "Liberty Hill",
          "country_code": "US",
          "slug": "liberty-hill",
          "canonical_path": "/cities/us/liberty-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5339335",
          "name": "Liberty Lake",
          "country_code": "US",
          "slug": "liberty-lake",
          "canonical_path": "/cities/us/liberty-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1743250",
          "name": "Libertyville",
          "country_code": "US",
          "slug": "libertyville",
          "canonical_path": "/cities/us/libertyville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1240450",
          "name": "Lighthouse Point",
          "country_code": "US",
          "slug": "lighthouse-point",
          "canonical_path": "/cities/us/lighthouse-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5850248",
          "name": "Lihue",
          "country_code": "US",
          "slug": "lihue",
          "canonical_path": "/cities/us/lihue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1346356",
          "name": "Lilburn",
          "country_code": "US",
          "slug": "lilburn",
          "canonical_path": "/cities/us/lilburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3738220",
          "name": "Lillington",
          "country_code": "US",
          "slug": "lillington",
          "canonical_path": "/cities/us/lillington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3943554",
          "name": "Lima",
          "country_code": "US",
          "slug": "lima",
          "canonical_path": "/cities/us/lima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4942021",
          "name": "Lincoln",
          "country_code": "US",
          "slug": "lincoln",
          "canonical_path": "/cities/us/lincoln/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8531960",
          "name": "Lincoln",
          "country_code": "US",
          "slug": "lincoln-ri-007",
          "canonical_path": "/cities/us/lincoln-ri-007/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0143120",
          "name": "Lincoln",
          "country_code": "US",
          "slug": "lincoln-al",
          "canonical_path": "/cities/us/lincoln-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0641474",
          "name": "Lincoln",
          "country_code": "US",
          "slug": "lincoln-ca",
          "canonical_path": "/cities/us/lincoln-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1743536",
          "name": "Lincoln",
          "country_code": "US",
          "slug": "lincoln-il",
          "canonical_path": "/cities/us/lincoln-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3128000",
          "name": "Lincoln",
          "country_code": "US",
          "slug": "lincoln-ne",
          "canonical_path": "/cities/us/lincoln-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4142600",
          "name": "Lincoln City",
          "country_code": "US",
          "slug": "lincoln-city",
          "canonical_path": "/cities/us/lincoln-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4139396",
          "name": "Lincoln Heights",
          "country_code": "US",
          "slug": "lincoln-heights",
          "canonical_path": "/cities/us/lincoln-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2647800",
          "name": "Lincoln Park",
          "country_code": "US",
          "slug": "lincoln-park",
          "canonical_path": "/cities/us/lincoln-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3440290",
          "name": "Lincoln Park borough",
          "country_code": "US",
          "slug": "lincoln-park-borough",
          "canonical_path": "/cities/us/lincoln-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4516701",
          "name": "Lincoln Village",
          "country_code": "US",
          "slug": "lincoln-village",
          "canonical_path": "/cities/us/lincoln-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4769608",
          "name": "Lincolnia",
          "country_code": "US",
          "slug": "lincolnia",
          "canonical_path": "/cities/us/lincolnia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1743666",
          "name": "Lincolnshire",
          "country_code": "US",
          "slug": "lincolnshire",
          "canonical_path": "/cities/us/lincolnshire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3738320",
          "name": "Lincolnton",
          "country_code": "US",
          "slug": "lincolnton",
          "canonical_path": "/cities/us/lincolnton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1743744",
          "name": "Lincolnwood",
          "country_code": "US",
          "slug": "lincolnwood",
          "canonical_path": "/cities/us/lincolnwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100498",
          "name": "Lincroft",
          "country_code": "US",
          "slug": "lincroft",
          "canonical_path": "/cities/us/lincroft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5366531",
          "name": "Linda",
          "country_code": "US",
          "slug": "linda",
          "canonical_path": "/cities/us/linda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4842820",
          "name": "Lindale",
          "country_code": "US",
          "slug": "lindale",
          "canonical_path": "/cities/us/lindale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3440350",
          "name": "Linden",
          "country_code": "US",
          "slug": "linden",
          "canonical_path": "/cities/us/linden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1743770",
          "name": "Lindenhurst",
          "country_code": "US",
          "slug": "lindenhurst-il",
          "canonical_path": "/cities/us/lindenhurst-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3642554",
          "name": "Lindenhurst",
          "country_code": "US",
          "slug": "lindenhurst-ny",
          "canonical_path": "/cities/us/lindenhurst-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4502687",
          "name": "Lindenwold",
          "country_code": "US",
          "slug": "lindenwold",
          "canonical_path": "/cities/us/lindenwold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3440440",
          "name": "Lindenwold borough",
          "country_code": "US",
          "slug": "lindenwold-borough",
          "canonical_path": "/cities/us/lindenwold-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4945090",
          "name": "Lindon",
          "country_code": "US",
          "slug": "lindon",
          "canonical_path": "/cities/us/lindon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0641712",
          "name": "Lindsay",
          "country_code": "US",
          "slug": "lindsay",
          "canonical_path": "/cities/us/lindsay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2737304",
          "name": "Lindstrom",
          "country_code": "US",
          "slug": "lindstrom",
          "canonical_path": "/cities/us/lindstrom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360700",
          "name": "Linganore",
          "country_code": "US",
          "slug": "linganore",
          "canonical_path": "/cities/us/linganore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5198180",
          "name": "Linglestown",
          "country_code": "US",
          "slug": "linglestown",
          "canonical_path": "/cities/us/linglestown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2737322",
          "name": "Lino Lakes",
          "country_code": "US",
          "slug": "lino-lakes",
          "canonical_path": "/cities/us/lino-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360713",
          "name": "Linthicum",
          "country_code": "US",
          "slug": "linthicum",
          "canonical_path": "/cities/us/linthicum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1844190",
          "name": "Linton",
          "country_code": "US",
          "slug": "linton",
          "canonical_path": "/cities/us/linton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4769667",
          "name": "Linton Hall",
          "country_code": "US",
          "slug": "linton-hall",
          "canonical_path": "/cities/us/linton-hall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3440530",
          "name": "Linwood",
          "country_code": "US",
          "slug": "linwood",
          "canonical_path": "/cities/us/linwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5198203",
          "name": "Lionville",
          "country_code": "US",
          "slug": "lionville",
          "canonical_path": "/cities/us/lionville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4969622",
          "name": "Lisbon",
          "country_code": "US",
          "slug": "lisbon",
          "canonical_path": "/cities/us/lisbon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1743939",
          "name": "Lisle",
          "country_code": "US",
          "slug": "lisle",
          "canonical_path": "/cities/us/lisle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5088753",
          "name": "Litchfield",
          "country_code": "US",
          "slug": "litchfield",
          "canonical_path": "/cities/us/litchfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1743965",
          "name": "Litchfield",
          "country_code": "US",
          "slug": "litchfield-il",
          "canonical_path": "/cities/us/litchfield-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2737448",
          "name": "Litchfield",
          "country_code": "US",
          "slug": "litchfield-mn",
          "canonical_path": "/cities/us/litchfield-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0441330",
          "name": "Litchfield Park",
          "country_code": "US",
          "slug": "litchfield-park",
          "canonical_path": "/cities/us/litchfield-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4205885",
          "name": "Lithia Springs",
          "country_code": "US",
          "slug": "lithia-springs",
          "canonical_path": "/cities/us/lithia-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5198218",
          "name": "Lititz",
          "country_code": "US",
          "slug": "lititz",
          "canonical_path": "/cities/us/lititz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4243816",
          "name": "Lititz borough",
          "country_code": "US",
          "slug": "lititz-borough",
          "canonical_path": "/cities/us/lititz-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2737502",
          "name": "Little Canada",
          "country_code": "US",
          "slug": "little-canada",
          "canonical_path": "/cities/us/little-canada/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5544950",
          "name": "Little Chute",
          "country_code": "US",
          "slug": "little-chute",
          "canonical_path": "/cities/us/little-chute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4843012",
          "name": "Little Elm",
          "country_code": "US",
          "slug": "little-elm",
          "canonical_path": "/cities/us/little-elm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2737556",
          "name": "Little Falls",
          "country_code": "US",
          "slug": "little-falls",
          "canonical_path": "/cities/us/little-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100542",
          "name": "Little Ferry",
          "country_code": "US",
          "slug": "little-ferry",
          "canonical_path": "/cities/us/little-ferry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3440680",
          "name": "Little Ferry borough",
          "country_code": "US",
          "slug": "little-ferry-borough",
          "canonical_path": "/cities/us/little-ferry-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4585421",
          "name": "Little River",
          "country_code": "US",
          "slug": "little-river",
          "canonical_path": "/cities/us/little-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0541000",
          "name": "Little Rock",
          "country_code": "US",
          "slug": "little-rock",
          "canonical_path": "/cities/us/little-rock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100559",
          "name": "Little Silver",
          "country_code": "US",
          "slug": "little-silver",
          "canonical_path": "/cities/us/little-silver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3440770",
          "name": "Little Silver borough",
          "country_code": "US",
          "slug": "little-silver-borough",
          "canonical_path": "/cities/us/little-silver-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4843024",
          "name": "Littlefield",
          "country_code": "US",
          "slug": "littlefield",
          "canonical_path": "/cities/us/littlefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0845255",
          "name": "Littleton",
          "country_code": "US",
          "slug": "littleton",
          "canonical_path": "/cities/us/littleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0641936",
          "name": "Live Oak",
          "country_code": "US",
          "slug": "live-oak-ca",
          "canonical_path": "/cities/us/live-oak-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1240875",
          "name": "Live Oak",
          "country_code": "US",
          "slug": "live-oak-fl",
          "canonical_path": "/cities/us/live-oak-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4843096",
          "name": "Live Oak",
          "country_code": "US",
          "slug": "live-oak-tx",
          "canonical_path": "/cities/us/live-oak-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0641992",
          "name": "Livermore",
          "country_code": "US",
          "slug": "livermore",
          "canonical_path": "/cities/us/livermore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0642006",
          "name": "Livingston",
          "country_code": "US",
          "slug": "livingston-ca",
          "canonical_path": "/cities/us/livingston-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3043975",
          "name": "Livingston",
          "country_code": "US",
          "slug": "livingston-mt",
          "canonical_path": "/cities/us/livingston-mt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4843132",
          "name": "Livingston",
          "country_code": "US",
          "slug": "livingston-tx",
          "canonical_path": "/cities/us/livingston-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2649000",
          "name": "Livonia",
          "country_code": "US",
          "slug": "livonia",
          "canonical_path": "/cities/us/livonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0845530",
          "name": "Lochbuie",
          "country_code": "US",
          "slug": "lochbuie",
          "canonical_path": "/cities/us/lochbuie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4360954",
          "name": "Lochearn",
          "country_code": "US",
          "slug": "lochearn",
          "canonical_path": "/cities/us/lochearn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4244128",
          "name": "Lock Haven",
          "country_code": "US",
          "slug": "lock-haven",
          "canonical_path": "/cities/us/lock-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4843240",
          "name": "Lockhart",
          "country_code": "US",
          "slug": "lockhart",
          "canonical_path": "/cities/us/lockhart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1744225",
          "name": "Lockport",
          "country_code": "US",
          "slug": "lockport-il",
          "canonical_path": "/cities/us/lockport-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3643082",
          "name": "Lockport",
          "country_code": "US",
          "slug": "lockport-ny",
          "canonical_path": "/cities/us/lockport-ny/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    },
    {
      "country_code": "US",
      "path": "cities/us-2.json",
      "city_count": 3545,
      "cities": [
        {
          "entity_id": "city:us:geonames:5663135",
          "name": "Lockwood",
          "country_code": "US",
          "slug": "lockwood",
          "canonical_path": "/cities/us/lockwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3738860",
          "name": "Locust",
          "country_code": "US",
          "slug": "locust",
          "canonical_path": "/cities/us/locust/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1347140",
          "name": "Locust Grove",
          "country_code": "US",
          "slug": "locust-grove",
          "canonical_path": "/cities/us/locust-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0642202",
          "name": "Lodi",
          "country_code": "US",
          "slug": "lodi",
          "canonical_path": "/cities/us/lodi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3441100",
          "name": "Lodi borough",
          "country_code": "US",
          "slug": "lodi-borough",
          "canonical_path": "/cities/us/lodi-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3944632",
          "name": "Logan",
          "country_code": "US",
          "slug": "logan-oh",
          "canonical_path": "/cities/us/logan-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4945860",
          "name": "Logan",
          "country_code": "US",
          "slug": "logan-ut",
          "canonical_path": "/cities/us/logan-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1844658",
          "name": "Logansport",
          "country_code": "US",
          "slug": "logansport",
          "canonical_path": "/cities/us/logansport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1347196",
          "name": "Loganville",
          "country_code": "US",
          "slug": "loganville",
          "canonical_path": "/cities/us/loganville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0642370",
          "name": "Loma Linda",
          "country_code": "US",
          "slug": "loma-linda",
          "canonical_path": "/cities/us/loma-linda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1744407",
          "name": "Lombard",
          "country_code": "US",
          "slug": "lombard",
          "canonical_path": "/cities/us/lombard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0642468",
          "name": "Lomita",
          "country_code": "US",
          "slug": "lomita",
          "canonical_path": "/cities/us/lomita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0642524",
          "name": "Lompoc",
          "country_code": "US",
          "slug": "lompoc",
          "canonical_path": "/cities/us/lompoc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2147476",
          "name": "London",
          "country_code": "US",
          "slug": "london-ky",
          "canonical_path": "/cities/us/london-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3944674",
          "name": "London",
          "country_code": "US",
          "slug": "london-oh",
          "canonical_path": "/cities/us/london-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5088905",
          "name": "Londonderry",
          "country_code": "US",
          "slug": "londonderry",
          "canonical_path": "/cities/us/londonderry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4361094",
          "name": "Londontowne",
          "country_code": "US",
          "slug": "londontowne",
          "canonical_path": "/cities/us/londontowne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4043750",
          "name": "Lone Grove",
          "country_code": "US",
          "slug": "lone-grove",
          "canonical_path": "/cities/us/lone-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0845955",
          "name": "Lone Tree",
          "country_code": "US",
          "slug": "lone-tree",
          "canonical_path": "/cities/us/lone-tree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0643000",
          "name": "Long Beach",
          "country_code": "US",
          "slug": "long-beach-ca",
          "canonical_path": "/cities/us/long-beach-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2841680",
          "name": "Long Beach",
          "country_code": "US",
          "slug": "long-beach-ms",
          "canonical_path": "/cities/us/long-beach-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3643335",
          "name": "Long Beach",
          "country_code": "US",
          "slug": "long-beach-ny",
          "canonical_path": "/cities/us/long-beach-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3441310",
          "name": "Long Branch",
          "country_code": "US",
          "slug": "long-branch",
          "canonical_path": "/cities/us/long-branch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1744524",
          "name": "Long Grove",
          "country_code": "US",
          "slug": "long-grove",
          "canonical_path": "/cities/us/long-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3739280",
          "name": "Long View",
          "country_code": "US",
          "slug": "long-view",
          "canonical_path": "/cities/us/long-view/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1241150",
          "name": "Longboat Key",
          "country_code": "US",
          "slug": "longboat-key",
          "canonical_path": "/cities/us/longboat-key/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4942508",
          "name": "Longmeadow",
          "country_code": "US",
          "slug": "longmeadow",
          "canonical_path": "/cities/us/longmeadow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0845970",
          "name": "Longmont",
          "country_code": "US",
          "slug": "longmont",
          "canonical_path": "/cities/us/longmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4843888",
          "name": "Longview",
          "country_code": "US",
          "slug": "longview-tx",
          "canonical_path": "/cities/us/longview-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5340245",
          "name": "Longview",
          "country_code": "US",
          "slug": "longview-wa",
          "canonical_path": "/cities/us/longview-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1241250",
          "name": "Longwood",
          "country_code": "US",
          "slug": "longwood",
          "canonical_path": "/cities/us/longwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2738150",
          "name": "Lonsdale",
          "country_code": "US",
          "slug": "lonsdale",
          "canonical_path": "/cities/us/lonsdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0643140",
          "name": "Loomis",
          "country_code": "US",
          "slug": "loomis",
          "canonical_path": "/cities/us/loomis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3944856",
          "name": "Lorain",
          "country_code": "US",
          "slug": "lorain",
          "canonical_path": "/cities/us/lorain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4770714",
          "name": "Lorton",
          "country_code": "US",
          "slug": "lorton",
          "canonical_path": "/cities/us/lorton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0643224",
          "name": "Los Alamitos",
          "country_code": "US",
          "slug": "los-alamitos",
          "canonical_path": "/cities/us/los-alamitos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5476825",
          "name": "Los Alamos",
          "country_code": "US",
          "slug": "los-alamos",
          "canonical_path": "/cities/us/los-alamos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0643280",
          "name": "Los Altos",
          "country_code": "US",
          "slug": "los-altos",
          "canonical_path": "/cities/us/los-altos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0643294",
          "name": "Los Altos Hills",
          "country_code": "US",
          "slug": "los-altos-hills",
          "canonical_path": "/cities/us/los-altos-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0644000",
          "name": "Los Angeles",
          "country_code": "US",
          "slug": "los-angeles",
          "canonical_path": "/cities/us/los-angeles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0644028",
          "name": "Los Banos",
          "country_code": "US",
          "slug": "los-banos",
          "canonical_path": "/cities/us/los-banos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5476881",
          "name": "Los Chavez",
          "country_code": "US",
          "slug": "los-chavez",
          "canonical_path": "/cities/us/los-chavez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4844116",
          "name": "Los Fresnos",
          "country_code": "US",
          "slug": "los-fresnos",
          "canonical_path": "/cities/us/los-fresnos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0644112",
          "name": "Los Gatos",
          "country_code": "US",
          "slug": "los-gatos",
          "canonical_path": "/cities/us/los-gatos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3543370",
          "name": "Los Lunas",
          "country_code": "US",
          "slug": "los-lunas",
          "canonical_path": "/cities/us/los-lunas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5368565",
          "name": "Los Osos",
          "country_code": "US",
          "slug": "los-osos",
          "canonical_path": "/cities/us/los-osos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3543930",
          "name": "Los Ranchos de Albuquerque",
          "country_code": "US",
          "slug": "los-ranchos-de-albuquerque",
          "canonical_path": "/cities/us/los-ranchos-de-albuquerque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4743780",
          "name": "Loudon",
          "country_code": "US",
          "slug": "loudon",
          "canonical_path": "/cities/us/loudon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2042875",
          "name": "Louisburg",
          "country_code": "US",
          "slug": "louisburg",
          "canonical_path": "/cities/us/louisburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4299276",
          "name": "Louisville",
          "country_code": "US",
          "slug": "louisville",
          "canonical_path": "/cities/us/louisville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0846355",
          "name": "Louisville",
          "country_code": "US",
          "slug": "louisville-co",
          "canonical_path": "/cities/us/louisville-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2842280",
          "name": "Louisville",
          "country_code": "US",
          "slug": "louisville-ms",
          "canonical_path": "/cities/us/louisville-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3945094",
          "name": "Louisville",
          "country_code": "US",
          "slug": "louisville-oh",
          "canonical_path": "/cities/us/louisville-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1347616",
          "name": "Lovejoy",
          "country_code": "US",
          "slug": "lovejoy",
          "canonical_path": "/cities/us/lovejoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0846465",
          "name": "Loveland",
          "country_code": "US",
          "slug": "loveland-co",
          "canonical_path": "/cities/us/loveland-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3945108",
          "name": "Loveland",
          "country_code": "US",
          "slug": "loveland-oh",
          "canonical_path": "/cities/us/loveland-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1745031",
          "name": "Loves Park",
          "country_code": "US",
          "slug": "loves-park",
          "canonical_path": "/cities/us/loves-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3544490",
          "name": "Lovington",
          "country_code": "US",
          "slug": "lovington",
          "canonical_path": "/cities/us/lovington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0541720",
          "name": "Lowell",
          "country_code": "US",
          "slug": "lowell-ar",
          "canonical_path": "/cities/us/lowell-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1845144",
          "name": "Lowell",
          "country_code": "US",
          "slug": "lowell-in",
          "canonical_path": "/cities/us/lowell-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2537000",
          "name": "Lowell",
          "country_code": "US",
          "slug": "lowell-ma",
          "canonical_path": "/cities/us/lowell-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5199075",
          "name": "Lower Allen",
          "country_code": "US",
          "slug": "lower-allen",
          "canonical_path": "/cities/us/lower-allen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4244864",
          "name": "Lower Burrell",
          "country_code": "US",
          "slug": "lower-burrell",
          "canonical_path": "/cities/us/lower-burrell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4770931",
          "name": "Lowes Island",
          "country_code": "US",
          "slug": "lowes-island",
          "canonical_path": "/cities/us/lowes-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0144608",
          "name": "Loxley",
          "country_code": "US",
          "slug": "loxley",
          "canonical_path": "/cities/us/loxley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845000",
          "name": "Lubbock",
          "country_code": "US",
          "slug": "lubbock",
          "canonical_path": "/cities/us/lubbock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845012",
          "name": "Lucas",
          "country_code": "US",
          "slug": "lucas",
          "canonical_path": "/cities/us/lucas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261199",
          "name": "Lucas Valley-Marinwood",
          "country_code": "US",
          "slug": "lucas-valley-marinwood",
          "canonical_path": "/cities/us/lucas-valley-marinwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5369150",
          "name": "Lucerne Valley",
          "country_code": "US",
          "slug": "lucerne-valley",
          "canonical_path": "/cities/us/lucerne-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2649640",
          "name": "Ludington",
          "country_code": "US",
          "slug": "ludington",
          "canonical_path": "/cities/us/ludington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4942744",
          "name": "Ludlow",
          "country_code": "US",
          "slug": "ludlow",
          "canonical_path": "/cities/us/ludlow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845072",
          "name": "Lufkin",
          "country_code": "US",
          "slug": "lufkin",
          "canonical_path": "/cities/us/lufkin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4050356",
          "name": "Lugoff",
          "country_code": "US",
          "slug": "lugoff",
          "canonical_path": "/cities/us/lugoff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845096",
          "name": "Luling",
          "country_code": "US",
          "slug": "luling",
          "canonical_path": "/cities/us/luling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3739700",
          "name": "Lumberton",
          "country_code": "US",
          "slug": "lumberton-nc",
          "canonical_path": "/cities/us/lumberton-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845120",
          "name": "Lumberton",
          "country_code": "US",
          "slug": "lumberton-tx",
          "canonical_path": "/cities/us/lumberton-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4361379",
          "name": "Lutherville",
          "country_code": "US",
          "slug": "lutherville",
          "canonical_path": "/cities/us/lutherville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258897",
          "name": "Lutherville-Timonium",
          "country_code": "US",
          "slug": "lutherville-timonium",
          "canonical_path": "/cities/us/lutherville-timonium/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4163033",
          "name": "Lutz",
          "country_code": "US",
          "slug": "lutz",
          "canonical_path": "/cities/us/lutz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4543315",
          "name": "Lyman",
          "country_code": "US",
          "slug": "lyman",
          "canonical_path": "/cities/us/lyman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3643874",
          "name": "Lynbrook",
          "country_code": "US",
          "slug": "lynbrook",
          "canonical_path": "/cities/us/lynbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5147672",
          "name": "Lynchburg",
          "country_code": "US",
          "slug": "lynchburg",
          "canonical_path": "/cities/us/lynchburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4744382",
          "name": "Lynchburg, Moore County metropolitan government",
          "country_code": "US",
          "slug": "lynchburg-moore-county-metropolitan-government",
          "canonical_path": "/cities/us/lynchburg-moore-county-metropolitan-government/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5340805",
          "name": "Lynden",
          "country_code": "US",
          "slug": "lynden",
          "canonical_path": "/cities/us/lynden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3945556",
          "name": "Lyndhurst",
          "country_code": "US",
          "slug": "lyndhurst",
          "canonical_path": "/cities/us/lyndhurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2148558",
          "name": "Lyndon",
          "country_code": "US",
          "slug": "lyndon",
          "canonical_path": "/cities/us/lyndon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2537490",
          "name": "Lynn",
          "country_code": "US",
          "slug": "lynn",
          "canonical_path": "/cities/us/lynn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1241825",
          "name": "Lynn Haven",
          "country_code": "US",
          "slug": "lynn-haven",
          "canonical_path": "/cities/us/lynn-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4942821",
          "name": "Lynnfield",
          "country_code": "US",
          "slug": "lynnfield",
          "canonical_path": "/cities/us/lynnfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5340840",
          "name": "Lynnwood",
          "country_code": "US",
          "slug": "lynnwood",
          "canonical_path": "/cities/us/lynnwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0644574",
          "name": "Lynwood",
          "country_code": "US",
          "slug": "lynwood-ca",
          "canonical_path": "/cities/us/lynwood-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1745421",
          "name": "Lynwood",
          "country_code": "US",
          "slug": "lynwood-il",
          "canonical_path": "/cities/us/lynwood-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1745434",
          "name": "Lyons",
          "country_code": "US",
          "slug": "lyons",
          "canonical_path": "/cities/us/lyons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5850492",
          "name": "Mā‘ili",
          "country_code": "US",
          "slug": "ma-ili",
          "canonical_path": "/cities/us/ma-ili/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845324",
          "name": "Mabank",
          "country_code": "US",
          "slug": "mabank",
          "canonical_path": "/cities/us/mabank/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4207226",
          "name": "Mableton",
          "country_code": "US",
          "slug": "mableton",
          "canonical_path": "/cities/us/mableton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1241950",
          "name": "Macclenny",
          "country_code": "US",
          "slug": "macclenny",
          "canonical_path": "/cities/us/macclenny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3945976",
          "name": "Macedonia",
          "country_code": "US",
          "slug": "macedonia",
          "canonical_path": "/cities/us/macedonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1745726",
          "name": "Machesney Park",
          "country_code": "US",
          "slug": "machesney-park",
          "canonical_path": "/cities/us/machesney-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4517323",
          "name": "Mack",
          "country_code": "US",
          "slug": "mack",
          "canonical_path": "/cities/us/mack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1745889",
          "name": "Macomb",
          "country_code": "US",
          "slug": "macomb",
          "canonical_path": "/cities/us/macomb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2945326",
          "name": "Macon",
          "country_code": "US",
          "slug": "macon",
          "canonical_path": "/cities/us/macon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1349008",
          "name": "Macon-Bibb County",
          "country_code": "US",
          "slug": "macon-bibb-county",
          "canonical_path": "/cities/us/macon-bibb-county/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3946312",
          "name": "Madeira",
          "country_code": "US",
          "slug": "madeira",
          "canonical_path": "/cities/us/madeira/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0645022",
          "name": "Madera",
          "country_code": "US",
          "slug": "madera",
          "canonical_path": "/cities/us/madera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5369569",
          "name": "Madera Acres",
          "country_code": "US",
          "slug": "madera-acres",
          "canonical_path": "/cities/us/madera-acres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4838116",
          "name": "Madison",
          "country_code": "US",
          "slug": "madison",
          "canonical_path": "/cities/us/madison/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100748",
          "name": "Madison",
          "country_code": "US",
          "slug": "madison-nj-027",
          "canonical_path": "/cities/us/madison-nj-027/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0145784",
          "name": "Madison",
          "country_code": "US",
          "slug": "madison-al",
          "canonical_path": "/cities/us/madison-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1349196",
          "name": "Madison",
          "country_code": "US",
          "slug": "madison-ga",
          "canonical_path": "/cities/us/madison-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1845990",
          "name": "Madison",
          "country_code": "US",
          "slug": "madison-in",
          "canonical_path": "/cities/us/madison-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2844520",
          "name": "Madison",
          "country_code": "US",
          "slug": "madison-ms",
          "canonical_path": "/cities/us/madison-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4640220",
          "name": "Madison",
          "country_code": "US",
          "slug": "madison-sd",
          "canonical_path": "/cities/us/madison-sd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5548000",
          "name": "Madison",
          "country_code": "US",
          "slug": "madison-wi",
          "canonical_path": "/cities/us/madison-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3442510",
          "name": "Madison borough",
          "country_code": "US",
          "slug": "madison-borough",
          "canonical_path": "/cities/us/madison-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2650560",
          "name": "Madison Heights",
          "country_code": "US",
          "slug": "madison-heights",
          "canonical_path": "/cities/us/madison-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100764",
          "name": "Madison Park",
          "country_code": "US",
          "slug": "madison-park",
          "canonical_path": "/cities/us/madison-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2149368",
          "name": "Madisonville",
          "country_code": "US",
          "slug": "madisonville-ky",
          "canonical_path": "/cities/us/madisonville-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4745320",
          "name": "Madisonville",
          "country_code": "US",
          "slug": "madisonville-tn",
          "canonical_path": "/cities/us/madisonville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4145250",
          "name": "Madras",
          "country_code": "US",
          "slug": "madras",
          "canonical_path": "/cities/us/madras/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5369690",
          "name": "Magalia",
          "country_code": "US",
          "slug": "magalia",
          "canonical_path": "/cities/us/magalia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5777793",
          "name": "Magna",
          "country_code": "US",
          "slug": "magna",
          "canonical_path": "/cities/us/magna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4947290",
          "name": "Magna metroship",
          "country_code": "US",
          "slug": "magna-metroship",
          "canonical_path": "/cities/us/magna-metroship/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0543460",
          "name": "Magnolia",
          "country_code": "US",
          "slug": "magnolia-ar",
          "canonical_path": "/cities/us/magnolia-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4846056",
          "name": "Magnolia",
          "country_code": "US",
          "slug": "magnolia-tx",
          "canonical_path": "/cities/us/magnolia-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1746136",
          "name": "Mahomet",
          "country_code": "US",
          "slug": "mahomet",
          "canonical_path": "/cities/us/mahomet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5125657",
          "name": "Mahopac",
          "country_code": "US",
          "slug": "mahopac",
          "canonical_path": "/cities/us/mahopac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2739428",
          "name": "Mahtomedi",
          "country_code": "US",
          "slug": "mahtomedi",
          "canonical_path": "/cities/us/mahtomedi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1242575",
          "name": "Maitland",
          "country_code": "US",
          "slug": "maitland",
          "canonical_path": "/cities/us/maitland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2044200",
          "name": "Maize",
          "country_code": "US",
          "slug": "maize",
          "canonical_path": "/cities/us/maize/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5850511",
          "name": "Mākaha",
          "country_code": "US",
          "slug": "makaha",
          "canonical_path": "/cities/us/makaha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262761",
          "name": "Makakilo",
          "country_code": "US",
          "slug": "makakilo",
          "canonical_path": "/cities/us/makakilo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5850554",
          "name": "Makakilo City",
          "country_code": "US",
          "slug": "makakilo-city",
          "canonical_path": "/cities/us/makakilo-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13645940",
          "name": "Makakilo-Makaīwa Hills-Kunia",
          "country_code": "US",
          "slug": "makakilo-makaiwa-hills-kunia",
          "canonical_path": "/cities/us/makakilo-makaiwa-hills-kunia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5850616",
          "name": "Makawao",
          "country_code": "US",
          "slug": "makawao",
          "canonical_path": "/cities/us/makawao/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2537875",
          "name": "Malden",
          "country_code": "US",
          "slug": "malden",
          "canonical_path": "/cities/us/malden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0645246",
          "name": "Malibu",
          "country_code": "US",
          "slug": "malibu",
          "canonical_path": "/cities/us/malibu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3644710",
          "name": "Malone",
          "country_code": "US",
          "slug": "malone",
          "canonical_path": "/cities/us/malone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5802236",
          "name": "Maltby",
          "country_code": "US",
          "slug": "maltby",
          "canonical_path": "/cities/us/maltby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0543610",
          "name": "Malvern",
          "country_code": "US",
          "slug": "malvern",
          "canonical_path": "/cities/us/malvern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3644787",
          "name": "Malverne",
          "country_code": "US",
          "slug": "malverne",
          "canonical_path": "/cities/us/malverne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3644831",
          "name": "Mamaroneck",
          "country_code": "US",
          "slug": "mamaroneck",
          "canonical_path": "/cities/us/mamaroneck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0645358",
          "name": "Mammoth Lakes",
          "country_code": "US",
          "slug": "mammoth-lakes",
          "canonical_path": "/cities/us/mammoth-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100809",
          "name": "Manasquan",
          "country_code": "US",
          "slug": "manasquan",
          "canonical_path": "/cities/us/manasquan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3443050",
          "name": "Manasquan borough",
          "country_code": "US",
          "slug": "manasquan-borough",
          "canonical_path": "/cities/us/manasquan-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5148952",
          "name": "Manassas",
          "country_code": "US",
          "slug": "manassas",
          "canonical_path": "/cities/us/manassas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5148968",
          "name": "Manassas Park",
          "country_code": "US",
          "slug": "manassas-park",
          "canonical_path": "/cities/us/manassas-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4838174",
          "name": "Manchester",
          "country_code": "US",
          "slug": "manchester",
          "canonical_path": "/cities/us/manchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5802247",
          "name": "Manchester",
          "country_code": "US",
          "slug": "manchester-wa-035",
          "canonical_path": "/cities/us/manchester-wa-035/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1948810",
          "name": "Manchester",
          "country_code": "US",
          "slug": "manchester-ia",
          "canonical_path": "/cities/us/manchester-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2449950",
          "name": "Manchester",
          "country_code": "US",
          "slug": "manchester-md",
          "canonical_path": "/cities/us/manchester-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2945668",
          "name": "Manchester",
          "country_code": "US",
          "slug": "manchester-mo",
          "canonical_path": "/cities/us/manchester-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3345140",
          "name": "Manchester",
          "country_code": "US",
          "slug": "manchester-nh",
          "canonical_path": "/cities/us/manchester-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4745500",
          "name": "Manchester",
          "country_code": "US",
          "slug": "manchester-tn",
          "canonical_path": "/cities/us/manchester-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4942975",
          "name": "Manchester-by-the-Sea",
          "country_code": "US",
          "slug": "manchester-by-the-sea",
          "canonical_path": "/cities/us/manchester-by-the-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3849900",
          "name": "Mandan",
          "country_code": "US",
          "slug": "mandan",
          "canonical_path": "/cities/us/mandan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2248225",
          "name": "Mandeville",
          "country_code": "US",
          "slug": "mandeville",
          "canonical_path": "/cities/us/mandeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4163318",
          "name": "Mango",
          "country_code": "US",
          "slug": "mango",
          "canonical_path": "/cities/us/mango/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5125766",
          "name": "Manhasset",
          "country_code": "US",
          "slug": "manhasset",
          "canonical_path": "/cities/us/manhasset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5125771",
          "name": "Manhattan",
          "country_code": "US",
          "slug": "manhattan",
          "canonical_path": "/cities/us/manhattan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1746357",
          "name": "Manhattan",
          "country_code": "US",
          "slug": "manhattan-il",
          "canonical_path": "/cities/us/manhattan-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2044250",
          "name": "Manhattan",
          "country_code": "US",
          "slug": "manhattan-ks",
          "canonical_path": "/cities/us/manhattan-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0645400",
          "name": "Manhattan Beach",
          "country_code": "US",
          "slug": "manhattan-beach",
          "canonical_path": "/cities/us/manhattan-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2650720",
          "name": "Manistee",
          "country_code": "US",
          "slug": "manistee",
          "canonical_path": "/cities/us/manistee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5430023",
          "name": "Manitou Springs",
          "country_code": "US",
          "slug": "manitou-springs",
          "canonical_path": "/cities/us/manitou-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5548500",
          "name": "Manitowoc",
          "country_code": "US",
          "slug": "manitowoc",
          "canonical_path": "/cities/us/manitowoc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2739878",
          "name": "Mankato",
          "country_code": "US",
          "slug": "mankato",
          "canonical_path": "/cities/us/mankato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4846440",
          "name": "Manor",
          "country_code": "US",
          "slug": "manor",
          "canonical_path": "/cities/us/manor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3645106",
          "name": "Manorhaven",
          "country_code": "US",
          "slug": "manorhaven",
          "canonical_path": "/cities/us/manorhaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5125817",
          "name": "Manorville",
          "country_code": "US",
          "slug": "manorville",
          "canonical_path": "/cities/us/manorville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943021",
          "name": "Mansfield",
          "country_code": "US",
          "slug": "mansfield",
          "canonical_path": "/cities/us/mansfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3947138",
          "name": "Mansfield",
          "country_code": "US",
          "slug": "mansfield-oh",
          "canonical_path": "/cities/us/mansfield-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4846452",
          "name": "Mansfield",
          "country_code": "US",
          "slug": "mansfield-tx",
          "canonical_path": "/cities/us/mansfield-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257704",
          "name": "Mansfield Center",
          "country_code": "US",
          "slug": "mansfield-center",
          "canonical_path": "/cities/us/mansfield-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0645484",
          "name": "Manteca",
          "country_code": "US",
          "slug": "manteca",
          "canonical_path": "/cities/us/manteca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1746500",
          "name": "Manteno",
          "country_code": "US",
          "slug": "manteno",
          "canonical_path": "/cities/us/manteno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4771494",
          "name": "Mantua",
          "country_code": "US",
          "slug": "mantua",
          "canonical_path": "/cities/us/mantua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4846500",
          "name": "Manvel",
          "country_code": "US",
          "slug": "manvel",
          "canonical_path": "/cities/us/manvel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100830",
          "name": "Manville",
          "country_code": "US",
          "slug": "manville",
          "canonical_path": "/cities/us/manville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3443620",
          "name": "Manville borough",
          "country_code": "US",
          "slug": "manville-borough",
          "canonical_path": "/cities/us/manville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5199740",
          "name": "Maple Glen",
          "country_code": "US",
          "slug": "maple-glen",
          "canonical_path": "/cities/us/maple-glen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5199781",
          "name": "Maple Glen",
          "country_code": "US",
          "slug": "maple-glen-pa-091",
          "canonical_path": "/cities/us/maple-glen-pa-091/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2740166",
          "name": "Maple Grove",
          "country_code": "US",
          "slug": "maple-grove",
          "canonical_path": "/cities/us/maple-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3947306",
          "name": "Maple Heights",
          "country_code": "US",
          "slug": "maple-heights",
          "canonical_path": "/cities/us/maple-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5343150",
          "name": "Maple Valley",
          "country_code": "US",
          "slug": "maple-valley",
          "canonical_path": "/cities/us/maple-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4947950",
          "name": "Mapleton",
          "country_code": "US",
          "slug": "mapleton",
          "canonical_path": "/cities/us/mapleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5802349",
          "name": "Maplewood",
          "country_code": "US",
          "slug": "maplewood-wa-053",
          "canonical_path": "/cities/us/maplewood-wa-053/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2740382",
          "name": "Maplewood",
          "country_code": "US",
          "slug": "maplewood-mn",
          "canonical_path": "/cities/us/maplewood-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2945830",
          "name": "Maplewood",
          "country_code": "US",
          "slug": "maplewood-mo",
          "canonical_path": "/cities/us/maplewood-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1949215",
          "name": "Maquoketa",
          "country_code": "US",
          "slug": "maquoketa",
          "canonical_path": "/cities/us/maquoketa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0444270",
          "name": "Marana",
          "country_code": "US",
          "slug": "marana",
          "canonical_path": "/cities/us/marana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1243000",
          "name": "Marathon",
          "country_code": "US",
          "slug": "marathon",
          "canonical_path": "/cities/us/marathon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4846584",
          "name": "Marble Falls",
          "country_code": "US",
          "slug": "marble-falls",
          "canonical_path": "/cities/us/marble-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943097",
          "name": "Marblehead",
          "country_code": "US",
          "slug": "marblehead",
          "canonical_path": "/cities/us/marblehead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1243083",
          "name": "Marco Island",
          "country_code": "US",
          "slug": "marco-island",
          "canonical_path": "/cities/us/marco-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1746786",
          "name": "Marengo",
          "country_code": "US",
          "slug": "marengo",
          "canonical_path": "/cities/us/marengo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0146696",
          "name": "Margaret",
          "country_code": "US",
          "slug": "margaret",
          "canonical_path": "/cities/us/margaret/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1243125",
          "name": "Margate",
          "country_code": "US",
          "slug": "margate",
          "canonical_path": "/cities/us/margate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3443890",
          "name": "Margate City",
          "country_code": "US",
          "slug": "margate-city",
          "canonical_path": "/cities/us/margate-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1243175",
          "name": "Marianna",
          "country_code": "US",
          "slug": "marianna",
          "canonical_path": "/cities/us/marianna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0444410",
          "name": "Maricopa",
          "country_code": "US",
          "slug": "maricopa",
          "canonical_path": "/cities/us/maricopa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1349756",
          "name": "Marietta",
          "country_code": "US",
          "slug": "marietta-ga",
          "canonical_path": "/cities/us/marietta-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3947628",
          "name": "Marietta",
          "country_code": "US",
          "slug": "marietta-oh",
          "canonical_path": "/cities/us/marietta-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0645778",
          "name": "Marina",
          "country_code": "US",
          "slug": "marina",
          "canonical_path": "/cities/us/marina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262734",
          "name": "Marine Corps Base Hawaii - MCBH",
          "country_code": "US",
          "slug": "marine-corps-base-hawaii-mcbh",
          "canonical_path": "/cities/us/marine-corps-base-hawaii-mcbh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5549300",
          "name": "Marinette",
          "country_code": "US",
          "slug": "marinette",
          "canonical_path": "/cities/us/marinette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943144",
          "name": "Marion",
          "country_code": "US",
          "slug": "marion",
          "canonical_path": "/cities/us/marion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0544180",
          "name": "Marion",
          "country_code": "US",
          "slug": "marion-ar",
          "canonical_path": "/cities/us/marion-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1746916",
          "name": "Marion",
          "country_code": "US",
          "slug": "marion-il",
          "canonical_path": "/cities/us/marion-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1846908",
          "name": "Marion",
          "country_code": "US",
          "slug": "marion-in",
          "canonical_path": "/cities/us/marion-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1949485",
          "name": "Marion",
          "country_code": "US",
          "slug": "marion-ia",
          "canonical_path": "/cities/us/marion-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3741420",
          "name": "Marion",
          "country_code": "US",
          "slug": "marion-nc",
          "canonical_path": "/cities/us/marion-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3947754",
          "name": "Marion",
          "country_code": "US",
          "slug": "marion-oh",
          "canonical_path": "/cities/us/marion-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4544575",
          "name": "Marion",
          "country_code": "US",
          "slug": "marion-sc",
          "canonical_path": "/cities/us/marion-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5149464",
          "name": "Marion",
          "country_code": "US",
          "slug": "marion-va",
          "canonical_path": "/cities/us/marion-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4163487",
          "name": "Marion Oaks",
          "country_code": "US",
          "slug": "marion-oaks",
          "canonical_path": "/cities/us/marion-oaks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1747007",
          "name": "Markham",
          "country_code": "US",
          "slug": "markham",
          "canonical_path": "/cities/us/markham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4332604",
          "name": "Marksville",
          "country_code": "US",
          "slug": "marksville",
          "canonical_path": "/cities/us/marksville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100886",
          "name": "Marlboro",
          "country_code": "US",
          "slug": "marlboro",
          "canonical_path": "/cities/us/marlboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315260",
          "name": "Marlboro Village",
          "country_code": "US",
          "slug": "marlboro-village",
          "canonical_path": "/cities/us/marlboro-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2538715",
          "name": "Marlborough",
          "country_code": "US",
          "slug": "marlborough",
          "canonical_path": "/cities/us/marlborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4846740",
          "name": "Marlin",
          "country_code": "US",
          "slug": "marlin",
          "canonical_path": "/cities/us/marlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4361721",
          "name": "Marlow Heights",
          "country_code": "US",
          "slug": "marlow-heights",
          "canonical_path": "/cities/us/marlow-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4361725",
          "name": "Marlton",
          "country_code": "US",
          "slug": "marlton",
          "canonical_path": "/cities/us/marlton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4502911",
          "name": "Marlton",
          "country_code": "US",
          "slug": "marlton-nj-005",
          "canonical_path": "/cities/us/marlton-nj-005/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2651900",
          "name": "Marquette",
          "country_code": "US",
          "slug": "marquette",
          "canonical_path": "/cities/us/marquette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4332628",
          "name": "Marrero",
          "country_code": "US",
          "slug": "marrero",
          "canonical_path": "/cities/us/marrero/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2651940",
          "name": "Marshall",
          "country_code": "US",
          "slug": "marshall-mi",
          "canonical_path": "/cities/us/marshall-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2740688",
          "name": "Marshall",
          "country_code": "US",
          "slug": "marshall-mn",
          "canonical_path": "/cities/us/marshall-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2946316",
          "name": "Marshall",
          "country_code": "US",
          "slug": "marshall-mo",
          "canonical_path": "/cities/us/marshall-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4846776",
          "name": "Marshall",
          "country_code": "US",
          "slug": "marshall-tx",
          "canonical_path": "/cities/us/marshall-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1949755",
          "name": "Marshalltown",
          "country_code": "US",
          "slug": "marshalltown",
          "canonical_path": "/cities/us/marshalltown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2946388",
          "name": "Marshfield",
          "country_code": "US",
          "slug": "marshfield-mo",
          "canonical_path": "/cities/us/marshfield-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5549675",
          "name": "Marshfield",
          "country_code": "US",
          "slug": "marshfield-wi",
          "canonical_path": "/cities/us/marshfield-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5802493",
          "name": "Martha Lake",
          "country_code": "US",
          "slug": "martha-lake",
          "canonical_path": "/cities/us/martha-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4746240",
          "name": "Martin",
          "country_code": "US",
          "slug": "martin",
          "canonical_path": "/cities/us/martin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0646114",
          "name": "Martinez",
          "country_code": "US",
          "slug": "martinez",
          "canonical_path": "/cities/us/martinez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3948104",
          "name": "Martins Ferry",
          "country_code": "US",
          "slug": "martins-ferry",
          "canonical_path": "/cities/us/martins-ferry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5452060",
          "name": "Martinsburg",
          "country_code": "US",
          "slug": "martinsburg",
          "canonical_path": "/cities/us/martinsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100924",
          "name": "Martinsville",
          "country_code": "US",
          "slug": "martinsville",
          "canonical_path": "/cities/us/martinsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1847448",
          "name": "Martinsville",
          "country_code": "US",
          "slug": "martinsville-in",
          "canonical_path": "/cities/us/martinsville-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5149784",
          "name": "Martinsville",
          "country_code": "US",
          "slug": "martinsville-va",
          "canonical_path": "/cities/us/martinsville-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3741720",
          "name": "Marvin",
          "country_code": "US",
          "slug": "marvin",
          "canonical_path": "/cities/us/marvin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4361831",
          "name": "Maryland City",
          "country_code": "US",
          "slug": "maryland-city",
          "canonical_path": "/cities/us/maryland-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2946586",
          "name": "Maryland Heights",
          "country_code": "US",
          "slug": "maryland-heights",
          "canonical_path": "/cities/us/maryland-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0646170",
          "name": "Marysville",
          "country_code": "US",
          "slug": "marysville-ca",
          "canonical_path": "/cities/us/marysville-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2652080",
          "name": "Marysville",
          "country_code": "US",
          "slug": "marysville-mi",
          "canonical_path": "/cities/us/marysville-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3948160",
          "name": "Marysville",
          "country_code": "US",
          "slug": "marysville-oh",
          "canonical_path": "/cities/us/marysville-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5343955",
          "name": "Marysville",
          "country_code": "US",
          "slug": "marysville-wa",
          "canonical_path": "/cities/us/marysville-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1747397",
          "name": "Maryville",
          "country_code": "US",
          "slug": "maryville-il",
          "canonical_path": "/cities/us/maryville-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2946640",
          "name": "Maryville",
          "country_code": "US",
          "slug": "maryville-mo",
          "canonical_path": "/cities/us/maryville-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4746380",
          "name": "Maryville",
          "country_code": "US",
          "slug": "maryville-tn",
          "canonical_path": "/cities/us/maryville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1243425",
          "name": "Mascotte",
          "country_code": "US",
          "slug": "mascotte",
          "canonical_path": "/cities/us/mascotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1747423",
          "name": "Mascoutah",
          "country_code": "US",
          "slug": "mascoutah",
          "canonical_path": "/cities/us/mascoutah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2652180",
          "name": "Mason",
          "country_code": "US",
          "slug": "mason-mi",
          "canonical_path": "/cities/us/mason-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3948188",
          "name": "Mason",
          "country_code": "US",
          "slug": "mason-oh",
          "canonical_path": "/cities/us/mason-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1950160",
          "name": "Mason City",
          "country_code": "US",
          "slug": "mason-city",
          "canonical_path": "/cities/us/mason-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5126183",
          "name": "Massapequa",
          "country_code": "US",
          "slug": "massapequa",
          "canonical_path": "/cities/us/massapequa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3645997",
          "name": "Massapequa Park",
          "country_code": "US",
          "slug": "massapequa-park",
          "canonical_path": "/cities/us/massapequa-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3646019",
          "name": "Massena",
          "country_code": "US",
          "slug": "massena",
          "canonical_path": "/cities/us/massena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3948244",
          "name": "Massillon",
          "country_code": "US",
          "slug": "massillon",
          "canonical_path": "/cities/us/massillon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5126208",
          "name": "Mastic",
          "country_code": "US",
          "slug": "mastic",
          "canonical_path": "/cities/us/mastic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5126209",
          "name": "Mastic Beach",
          "country_code": "US",
          "slug": "mastic-beach",
          "canonical_path": "/cities/us/mastic-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100940",
          "name": "Matawan",
          "country_code": "US",
          "slug": "matawan",
          "canonical_path": "/cities/us/matawan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3444520",
          "name": "Matawan borough",
          "country_code": "US",
          "slug": "matawan-borough",
          "canonical_path": "/cities/us/matawan-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4709615",
          "name": "Mathis",
          "country_code": "US",
          "slug": "mathis",
          "canonical_path": "/cities/us/mathis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943432",
          "name": "Mattapoisett",
          "country_code": "US",
          "slug": "mattapoisett",
          "canonical_path": "/cities/us/mattapoisett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1747540",
          "name": "Matteson",
          "country_code": "US",
          "slug": "matteson",
          "canonical_path": "/cities/us/matteson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3741960",
          "name": "Matthews",
          "country_code": "US",
          "slug": "matthews",
          "canonical_path": "/cities/us/matthews/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1747553",
          "name": "Mattoon",
          "country_code": "US",
          "slug": "mattoon",
          "canonical_path": "/cities/us/mattoon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5126246",
          "name": "Mattydale",
          "country_code": "US",
          "slug": "mattydale",
          "canonical_path": "/cities/us/mattydale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4545115",
          "name": "Mauldin",
          "country_code": "US",
          "slug": "mauldin",
          "canonical_path": "/cities/us/mauldin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3948342",
          "name": "Maumee",
          "country_code": "US",
          "slug": "maumee",
          "canonical_path": "/cities/us/maumee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0544600",
          "name": "Maumelle",
          "country_code": "US",
          "slug": "maumelle",
          "canonical_path": "/cities/us/maumelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2150898",
          "name": "Mayfield",
          "country_code": "US",
          "slug": "mayfield",
          "canonical_path": "/cities/us/mayfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3948482",
          "name": "Mayfield Heights",
          "country_code": "US",
          "slug": "mayfield-heights",
          "canonical_path": "/cities/us/mayfield-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5371243",
          "name": "Mayflower Village",
          "country_code": "US",
          "slug": "mayflower-village",
          "canonical_path": "/cities/us/mayflower-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943490",
          "name": "Maynard",
          "country_code": "US",
          "slug": "maynard",
          "canonical_path": "/cities/us/maynard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4362001",
          "name": "Mayo",
          "country_code": "US",
          "slug": "mayo",
          "canonical_path": "/cities/us/mayo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4362009",
          "name": "Mays Chapel",
          "country_code": "US",
          "slug": "mays-chapel",
          "canonical_path": "/cities/us/mays-chapel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2151024",
          "name": "Maysville",
          "country_code": "US",
          "slug": "maysville",
          "canonical_path": "/cities/us/maysville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5550200",
          "name": "Mayville",
          "country_code": "US",
          "slug": "mayville",
          "canonical_path": "/cities/us/mayville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5100972",
          "name": "Maywood",
          "country_code": "US",
          "slug": "maywood",
          "canonical_path": "/cities/us/maywood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0646492",
          "name": "Maywood",
          "country_code": "US",
          "slug": "maywood-ca",
          "canonical_path": "/cities/us/maywood-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1747774",
          "name": "Maywood",
          "country_code": "US",
          "slug": "maywood-il",
          "canonical_path": "/cities/us/maywood-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3444880",
          "name": "Maywood borough",
          "country_code": "US",
          "slug": "maywood-borough",
          "canonical_path": "/cities/us/maywood-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4044800",
          "name": "McAlester",
          "country_code": "US",
          "slug": "mcalester",
          "canonical_path": "/cities/us/mcalester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845384",
          "name": "McAllen",
          "country_code": "US",
          "slug": "mcallen",
          "canonical_path": "/cities/us/mcallen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2843280",
          "name": "McComb",
          "country_code": "US",
          "slug": "mccomb",
          "canonical_path": "/cities/us/mccomb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3129925",
          "name": "McCook",
          "country_code": "US",
          "slug": "mccook",
          "canonical_path": "/cities/us/mccook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1845648",
          "name": "McCordsville",
          "country_code": "US",
          "slug": "mccordsville",
          "canonical_path": "/cities/us/mccordsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1348624",
          "name": "McDonough",
          "country_code": "US",
          "slug": "mcdonough",
          "canonical_path": "/cities/us/mcdonough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0644826",
          "name": "McFarland",
          "country_code": "US",
          "slug": "mcfarland-ca",
          "canonical_path": "/cities/us/mcfarland-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5546850",
          "name": "McFarland",
          "country_code": "US",
          "slug": "mcfarland-wi",
          "canonical_path": "/cities/us/mcfarland-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845672",
          "name": "McGregor",
          "country_code": "US",
          "slug": "mcgregor",
          "canonical_path": "/cities/us/mcgregor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1745694",
          "name": "McHenry",
          "country_code": "US",
          "slug": "mchenry",
          "canonical_path": "/cities/us/mchenry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5200474",
          "name": "McKees Rocks",
          "country_code": "US",
          "slug": "mckees-rocks",
          "canonical_path": "/cities/us/mckees-rocks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4246264",
          "name": "McKees Rocks borough",
          "country_code": "US",
          "slug": "mckees-rocks-borough",
          "canonical_path": "/cities/us/mckees-rocks-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4246256",
          "name": "McKeesport",
          "country_code": "US",
          "slug": "mckeesport",
          "canonical_path": "/cities/us/mckeesport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4744940",
          "name": "McKenzie",
          "country_code": "US",
          "slug": "mckenzie",
          "canonical_path": "/cities/us/mckenzie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5567770",
          "name": "McKinleyville",
          "country_code": "US",
          "slug": "mckinleyville",
          "canonical_path": "/cities/us/mckinleyville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845744",
          "name": "McKinney",
          "country_code": "US",
          "slug": "mckinney",
          "canonical_path": "/cities/us/mckinney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4772354",
          "name": "McLean",
          "country_code": "US",
          "slug": "mclean",
          "canonical_path": "/cities/us/mclean/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4845804",
          "name": "McLendon-Chisholm",
          "country_code": "US",
          "slug": "mclendon-chisholm",
          "canonical_path": "/cities/us/mclendon-chisholm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4145000",
          "name": "McMinnville",
          "country_code": "US",
          "slug": "mcminnville-or",
          "canonical_path": "/cities/us/mcminnville-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4745100",
          "name": "McMinnville",
          "country_code": "US",
          "slug": "mcminnville-tn",
          "canonical_path": "/cities/us/mcminnville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2043950",
          "name": "McPherson",
          "country_code": "US",
          "slug": "mcpherson",
          "canonical_path": "/cities/us/mcpherson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1349100",
          "name": "McRae-Helena",
          "country_code": "US",
          "slug": "mcrae-helena",
          "canonical_path": "/cities/us/mcrae-helena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0849600",
          "name": "Mead",
          "country_code": "US",
          "slug": "mead",
          "canonical_path": "/cities/us/mead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5371858",
          "name": "Mead Valley",
          "country_code": "US",
          "slug": "mead-valley",
          "canonical_path": "/cities/us/mead-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5868651",
          "name": "Meadow Lakes",
          "country_code": "US",
          "slug": "meadow-lakes",
          "canonical_path": "/cities/us/meadow-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4163918",
          "name": "Meadow Woods",
          "country_code": "US",
          "slug": "meadow-woods",
          "canonical_path": "/cities/us/meadow-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4075692",
          "name": "Meadowbrook",
          "country_code": "US",
          "slug": "meadowbrook",
          "canonical_path": "/cities/us/meadowbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8480062",
          "name": "Meadowbrook",
          "country_code": "US",
          "slug": "meadowbrook-va-041",
          "canonical_path": "/cities/us/meadowbrook-va-041/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4248360",
          "name": "Meadville",
          "country_code": "US",
          "slug": "meadville",
          "canonical_path": "/cities/us/meadville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3742240",
          "name": "Mebane",
          "country_code": "US",
          "slug": "mebane",
          "canonical_path": "/cities/us/mebane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5371965",
          "name": "Mecca",
          "country_code": "US",
          "slug": "mecca",
          "canonical_path": "/cities/us/mecca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5200657",
          "name": "Mechanicsburg",
          "country_code": "US",
          "slug": "mechanicsburg",
          "canonical_path": "/cities/us/mechanicsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4248376",
          "name": "Mechanicsburg borough",
          "country_code": "US",
          "slug": "mechanicsburg-borough",
          "canonical_path": "/cities/us/mechanicsburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5126509",
          "name": "Mechanicstown",
          "country_code": "US",
          "slug": "mechanicstown",
          "canonical_path": "/cities/us/mechanicstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4772566",
          "name": "Mechanicsville",
          "country_code": "US",
          "slug": "mechanicsville",
          "canonical_path": "/cities/us/mechanicsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3646360",
          "name": "Mechanicville",
          "country_code": "US",
          "slug": "mechanicville",
          "canonical_path": "/cities/us/mechanicville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943616",
          "name": "Medfield",
          "country_code": "US",
          "slug": "medfield",
          "canonical_path": "/cities/us/medfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5126518",
          "name": "Medford",
          "country_code": "US",
          "slug": "medford",
          "canonical_path": "/cities/us/medford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2539835",
          "name": "Medford",
          "country_code": "US",
          "slug": "medford-ma",
          "canonical_path": "/cities/us/medford-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4147000",
          "name": "Medford",
          "country_code": "US",
          "slug": "medford-or",
          "canonical_path": "/cities/us/medford-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4559575",
          "name": "Media",
          "country_code": "US",
          "slug": "media",
          "canonical_path": "/cities/us/media/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4248480",
          "name": "Media borough",
          "country_code": "US",
          "slug": "media-borough",
          "canonical_path": "/cities/us/media-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2741480",
          "name": "Medina",
          "country_code": "US",
          "slug": "medina-mn",
          "canonical_path": "/cities/us/medina-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3646415",
          "name": "Medina",
          "country_code": "US",
          "slug": "medina-ny",
          "canonical_path": "/cities/us/medina-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3948790",
          "name": "Medina",
          "country_code": "US",
          "slug": "medina-oh",
          "canonical_path": "/cities/us/medina-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4747000",
          "name": "Medina",
          "country_code": "US",
          "slug": "medina-tn",
          "canonical_path": "/cities/us/medina-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4163954",
          "name": "Medulla",
          "country_code": "US",
          "slug": "medulla",
          "canonical_path": "/cities/us/medulla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943648",
          "name": "Medway",
          "country_code": "US",
          "slug": "medway",
          "canonical_path": "/cities/us/medway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4397962",
          "name": "Mehlville",
          "country_code": "US",
          "slug": "mehlville",
          "canonical_path": "/cities/us/mehlville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1243975",
          "name": "Melbourne",
          "country_code": "US",
          "slug": "melbourne",
          "canonical_path": "/cities/us/melbourne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4847496",
          "name": "Melissa",
          "country_code": "US",
          "slug": "melissa",
          "canonical_path": "/cities/us/melissa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2540115",
          "name": "Melrose",
          "country_code": "US",
          "slug": "melrose",
          "canonical_path": "/cities/us/melrose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1748242",
          "name": "Melrose Park",
          "country_code": "US",
          "slug": "melrose-park",
          "canonical_path": "/cities/us/melrose-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5126555",
          "name": "Melville",
          "country_code": "US",
          "slug": "melville",
          "canonical_path": "/cities/us/melville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2652940",
          "name": "Melvindale",
          "country_code": "US",
          "slug": "melvindale",
          "canonical_path": "/cities/us/melvindale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4748000",
          "name": "Memphis",
          "country_code": "US",
          "slug": "memphis",
          "canonical_path": "/cities/us/memphis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0545170",
          "name": "Mena",
          "country_code": "US",
          "slug": "mena",
          "canonical_path": "/cities/us/mena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5550825",
          "name": "Menasha",
          "country_code": "US",
          "slug": "menasha",
          "canonical_path": "/cities/us/menasha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101073",
          "name": "Mendham",
          "country_code": "US",
          "slug": "mendham",
          "canonical_path": "/cities/us/mendham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0646828",
          "name": "Mendota",
          "country_code": "US",
          "slug": "mendota-ca",
          "canonical_path": "/cities/us/mendota-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1748333",
          "name": "Mendota",
          "country_code": "US",
          "slug": "mendota-il",
          "canonical_path": "/cities/us/mendota-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2741696",
          "name": "Mendota Heights",
          "country_code": "US",
          "slug": "mendota-heights",
          "canonical_path": "/cities/us/mendota-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0646842",
          "name": "Menifee",
          "country_code": "US",
          "slug": "menifee",
          "canonical_path": "/cities/us/menifee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0646870",
          "name": "Menlo Park",
          "country_code": "US",
          "slug": "menlo-park",
          "canonical_path": "/cities/us/menlo-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2653020",
          "name": "Menominee",
          "country_code": "US",
          "slug": "menominee",
          "canonical_path": "/cities/us/menominee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5551000",
          "name": "Menomonee Falls",
          "country_code": "US",
          "slug": "menomonee-falls",
          "canonical_path": "/cities/us/menomonee-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5551025",
          "name": "Menomonie",
          "country_code": "US",
          "slug": "menomonie",
          "canonical_path": "/cities/us/menomonie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5372242",
          "name": "Mentone",
          "country_code": "US",
          "slug": "mentone",
          "canonical_path": "/cities/us/mentone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3949056",
          "name": "Mentor",
          "country_code": "US",
          "slug": "mentor",
          "canonical_path": "/cities/us/mentor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3949098",
          "name": "Mentor-on-the-Lake",
          "country_code": "US",
          "slug": "mentor-on-the-lake",
          "canonical_path": "/cities/us/mentor-on-the-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5551150",
          "name": "Mequon",
          "country_code": "US",
          "slug": "mequon",
          "canonical_path": "/cities/us/mequon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4333126",
          "name": "Meraux",
          "country_code": "US",
          "slug": "meraux",
          "canonical_path": "/cities/us/meraux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0646898",
          "name": "Merced",
          "country_code": "US",
          "slug": "merced",
          "canonical_path": "/cities/us/merced/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4847700",
          "name": "Mercedes",
          "country_code": "US",
          "slug": "mercedes",
          "canonical_path": "/cities/us/mercedes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5345005",
          "name": "Mercer Island",
          "country_code": "US",
          "slug": "mercer-island",
          "canonical_path": "/cities/us/mercer-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101103",
          "name": "Mercerville",
          "country_code": "US",
          "slug": "mercerville",
          "canonical_path": "/cities/us/mercerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258271",
          "name": "Mercerville-Hamilton Square",
          "country_code": "US",
          "slug": "mercerville-hamilton-square",
          "canonical_path": "/cities/us/mercerville-hamilton-square/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0946450",
          "name": "Meriden",
          "country_code": "US",
          "slug": "meriden",
          "canonical_path": "/cities/us/meriden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1652120",
          "name": "Meridian",
          "country_code": "US",
          "slug": "meridian-id",
          "canonical_path": "/cities/us/meridian-id/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2846640",
          "name": "Meridian",
          "country_code": "US",
          "slug": "meridian-ms",
          "canonical_path": "/cities/us/meridian-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4075854",
          "name": "Meridianville",
          "country_code": "US",
          "slug": "meridianville",
          "canonical_path": "/cities/us/meridianville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2046000",
          "name": "Merriam",
          "country_code": "US",
          "slug": "merriam",
          "canonical_path": "/cities/us/merriam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5126630",
          "name": "Merrick",
          "country_code": "US",
          "slug": "merrick",
          "canonical_path": "/cities/us/merrick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4772735",
          "name": "Merrifield",
          "country_code": "US",
          "slug": "merrifield",
          "canonical_path": "/cities/us/merrifield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5551250",
          "name": "Merrill",
          "country_code": "US",
          "slug": "merrill",
          "canonical_path": "/cities/us/merrill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1848528",
          "name": "Merrillville",
          "country_code": "US",
          "slug": "merrillville",
          "canonical_path": "/cities/us/merrillville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943784",
          "name": "Merrimac",
          "country_code": "US",
          "slug": "merrimac",
          "canonical_path": "/cities/us/merrimac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5089478",
          "name": "Merrimack",
          "country_code": "US",
          "slug": "merrimack",
          "canonical_path": "/cities/us/merrimack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4164092",
          "name": "Merritt Island",
          "country_code": "US",
          "slug": "merritt-island",
          "canonical_path": "/cities/us/merritt-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4333161",
          "name": "Merrydale",
          "country_code": "US",
          "slug": "merrydale",
          "canonical_path": "/cities/us/merrydale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0446000",
          "name": "Mesa",
          "country_code": "US",
          "slug": "mesa",
          "canonical_path": "/cities/us/mesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3246000",
          "name": "Mesquite",
          "country_code": "US",
          "slug": "mesquite-nv",
          "canonical_path": "/cities/us/mesquite-nv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4847892",
          "name": "Mesquite",
          "country_code": "US",
          "slug": "mesquite-tx",
          "canonical_path": "/cities/us/mesquite-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4333177",
          "name": "Metairie",
          "country_code": "US",
          "slug": "metairie",
          "canonical_path": "/cities/us/metairie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943828",
          "name": "Methuen",
          "country_code": "US",
          "slug": "methuen",
          "canonical_path": "/cities/us/methuen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1748645",
          "name": "Metropolis",
          "country_code": "US",
          "slug": "metropolis",
          "canonical_path": "/cities/us/metropolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101125",
          "name": "Metuchen",
          "country_code": "US",
          "slug": "metuchen",
          "canonical_path": "/cities/us/metuchen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3445690",
          "name": "Metuchen borough",
          "country_code": "US",
          "slug": "metuchen-borough",
          "canonical_path": "/cities/us/metuchen-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4847916",
          "name": "Mexia",
          "country_code": "US",
          "slug": "mexia",
          "canonical_path": "/cities/us/mexia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2947648",
          "name": "Mexico",
          "country_code": "US",
          "slug": "mexico",
          "canonical_path": "/cities/us/mexico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1245000",
          "name": "Miami",
          "country_code": "US",
          "slug": "miami-fl",
          "canonical_path": "/cities/us/miami-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4048000",
          "name": "Miami",
          "country_code": "US",
          "slug": "miami-ok",
          "canonical_path": "/cities/us/miami-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1245025",
          "name": "Miami Beach",
          "country_code": "US",
          "slug": "miami-beach",
          "canonical_path": "/cities/us/miami-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1245060",
          "name": "Miami Gardens",
          "country_code": "US",
          "slug": "miami-gardens",
          "canonical_path": "/cities/us/miami-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1245100",
          "name": "Miami Lakes",
          "country_code": "US",
          "slug": "miami-lakes",
          "canonical_path": "/cities/us/miami-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1245175",
          "name": "Miami Shores",
          "country_code": "US",
          "slug": "miami-shores",
          "canonical_path": "/cities/us/miami-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1245200",
          "name": "Miami Springs",
          "country_code": "US",
          "slug": "miami-springs",
          "canonical_path": "/cities/us/miami-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3949434",
          "name": "Miamisburg",
          "country_code": "US",
          "slug": "miamisburg",
          "canonical_path": "/cities/us/miamisburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4164253",
          "name": "Micco",
          "country_code": "US",
          "slug": "micco",
          "canonical_path": "/cities/us/micco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1848798",
          "name": "Michigan City",
          "country_code": "US",
          "slug": "michigan-city",
          "canonical_path": "/cities/us/michigan-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5126787",
          "name": "Middle Island",
          "country_code": "US",
          "slug": "middle-island",
          "canonical_path": "/cities/us/middle-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4362344",
          "name": "Middle River",
          "country_code": "US",
          "slug": "middle-river",
          "canonical_path": "/cities/us/middle-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4641495",
          "name": "Middle Valley",
          "country_code": "US",
          "slug": "middle-valley",
          "canonical_path": "/cities/us/middle-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943888",
          "name": "Middleborough",
          "country_code": "US",
          "slug": "middleborough",
          "canonical_path": "/cities/us/middleborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257713",
          "name": "Middleborough Center",
          "country_code": "US",
          "slug": "middleborough-center",
          "canonical_path": "/cities/us/middleborough-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4164387",
          "name": "Middleburg",
          "country_code": "US",
          "slug": "middleburg",
          "canonical_path": "/cities/us/middleburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3949644",
          "name": "Middleburg Heights",
          "country_code": "US",
          "slug": "middleburg-heights",
          "canonical_path": "/cities/us/middleburg-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4838611",
          "name": "Middlebury",
          "country_code": "US",
          "slug": "middlebury",
          "canonical_path": "/cities/us/middlebury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5238499",
          "name": "Middlebury (village)",
          "country_code": "US",
          "slug": "middlebury-village",
          "canonical_path": "/cities/us/middlebury-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4300717",
          "name": "Middlesboro",
          "country_code": "US",
          "slug": "middlesboro",
          "canonical_path": "/cities/us/middlesboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2151924",
          "name": "Middlesborough",
          "country_code": "US",
          "slug": "middlesborough",
          "canonical_path": "/cities/us/middlesborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101159",
          "name": "Middlesex",
          "country_code": "US",
          "slug": "middlesex",
          "canonical_path": "/cities/us/middlesex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3445900",
          "name": "Middlesex borough",
          "country_code": "US",
          "slug": "middlesex-borough",
          "canonical_path": "/cities/us/middlesex-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943926",
          "name": "Middleton",
          "country_code": "US",
          "slug": "middleton",
          "canonical_path": "/cities/us/middleton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1652660",
          "name": "Middleton",
          "country_code": "US",
          "slug": "middleton-id",
          "canonical_path": "/cities/us/middleton-id/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5551575",
          "name": "Middleton",
          "country_code": "US",
          "slug": "middleton-wi",
          "canonical_path": "/cities/us/middleton-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5201027",
          "name": "Middletown",
          "country_code": "US",
          "slug": "middletown-pa-043",
          "canonical_path": "/cities/us/middletown-pa-043/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5201031",
          "name": "Middletown",
          "country_code": "US",
          "slug": "middletown-pa-095",
          "canonical_path": "/cities/us/middletown-pa-095/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5223358",
          "name": "Middletown",
          "country_code": "US",
          "slug": "middletown-ri-005",
          "canonical_path": "/cities/us/middletown-ri-005/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0947290",
          "name": "Middletown",
          "country_code": "US",
          "slug": "middletown-ct",
          "canonical_path": "/cities/us/middletown-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1047030",
          "name": "Middletown",
          "country_code": "US",
          "slug": "middletown-de",
          "canonical_path": "/cities/us/middletown-de/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2151978",
          "name": "Middletown",
          "country_code": "US",
          "slug": "middletown-ky",
          "canonical_path": "/cities/us/middletown-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2452425",
          "name": "Middletown",
          "country_code": "US",
          "slug": "middletown-md",
          "canonical_path": "/cities/us/middletown-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3647042",
          "name": "Middletown",
          "country_code": "US",
          "slug": "middletown-ny",
          "canonical_path": "/cities/us/middletown-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3949840",
          "name": "Middletown",
          "country_code": "US",
          "slug": "middletown-oh",
          "canonical_path": "/cities/us/middletown-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4249128",
          "name": "Middletown borough",
          "country_code": "US",
          "slug": "middletown-borough",
          "canonical_path": "/cities/us/middletown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4075977",
          "name": "Midfield",
          "country_code": "US",
          "slug": "midfield",
          "canonical_path": "/cities/us/midfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5803357",
          "name": "Midland",
          "country_code": "US",
          "slug": "midland",
          "canonical_path": "/cities/us/midland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2653780",
          "name": "Midland",
          "country_code": "US",
          "slug": "midland-mi",
          "canonical_path": "/cities/us/midland-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3742760",
          "name": "Midland",
          "country_code": "US",
          "slug": "midland-nc",
          "canonical_path": "/cities/us/midland-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4848072",
          "name": "Midland",
          "country_code": "US",
          "slug": "midland-tx",
          "canonical_path": "/cities/us/midland-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101178",
          "name": "Midland Park",
          "country_code": "US",
          "slug": "midland-park",
          "canonical_path": "/cities/us/midland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3446110",
          "name": "Midland Park borough",
          "country_code": "US",
          "slug": "midland-park-borough",
          "canonical_path": "/cities/us/midland-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4772943",
          "name": "Midlothian",
          "country_code": "US",
          "slug": "midlothian",
          "canonical_path": "/cities/us/midlothian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1748892",
          "name": "Midlothian",
          "country_code": "US",
          "slug": "midlothian-il",
          "canonical_path": "/cities/us/midlothian-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4848096",
          "name": "Midlothian",
          "country_code": "US",
          "slug": "midlothian-tx",
          "canonical_path": "/cities/us/midlothian-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4949710",
          "name": "Midvale",
          "country_code": "US",
          "slug": "midvale",
          "canonical_path": "/cities/us/midvale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315234",
          "name": "Midway",
          "country_code": "US",
          "slug": "midway",
          "canonical_path": "/cities/us/midway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3742860",
          "name": "Midway",
          "country_code": "US",
          "slug": "midway-nc",
          "canonical_path": "/cities/us/midway-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4949820",
          "name": "Midway",
          "country_code": "US",
          "slug": "midway-ut",
          "canonical_path": "/cities/us/midway-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4048350",
          "name": "Midwest City",
          "country_code": "US",
          "slug": "midwest-city",
          "canonical_path": "/cities/us/midwest-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4711253",
          "name": "Mila Doce",
          "country_code": "US",
          "slug": "mila-doce",
          "canonical_path": "/cities/us/mila-doce/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1749009",
          "name": "Milan",
          "country_code": "US",
          "slug": "milan-il",
          "canonical_path": "/cities/us/milan-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2653920",
          "name": "Milan",
          "country_code": "US",
          "slug": "milan-mi",
          "canonical_path": "/cities/us/milan-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4748660",
          "name": "Milan",
          "country_code": "US",
          "slug": "milan-tn",
          "canonical_path": "/cities/us/milan-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3049525",
          "name": "Miles City",
          "country_code": "US",
          "slug": "miles-city",
          "canonical_path": "/cities/us/miles-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4838652",
          "name": "Milford",
          "country_code": "US",
          "slug": "milford",
          "canonical_path": "/cities/us/milford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4943958",
          "name": "Milford",
          "country_code": "US",
          "slug": "milford-ma-027",
          "canonical_path": "/cities/us/milford-ma-027/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5089578",
          "name": "Milford",
          "country_code": "US",
          "slug": "milford-nh-011",
          "canonical_path": "/cities/us/milford-nh-011/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1047420",
          "name": "Milford",
          "country_code": "US",
          "slug": "milford-de",
          "canonical_path": "/cities/us/milford-de/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2653960",
          "name": "Milford",
          "country_code": "US",
          "slug": "milford-mi",
          "canonical_path": "/cities/us/milford-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3950176",
          "name": "Milford",
          "country_code": "US",
          "slug": "milford-oh",
          "canonical_path": "/cities/us/milford-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4362438",
          "name": "Milford Mill",
          "country_code": "US",
          "slug": "milford-mill",
          "canonical_path": "/cities/us/milford-mill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13645942",
          "name": "Mililani Mauka",
          "country_code": "US",
          "slug": "mililani-mauka",
          "canonical_path": "/cities/us/mililani-mauka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13100434",
          "name": "Mililani Mauka / Launani Valley",
          "country_code": "US",
          "slug": "mililani-mauka-launani-valley",
          "canonical_path": "/cities/us/mililani-mauka-launani-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5851030",
          "name": "Mililani Town",
          "country_code": "US",
          "slug": "mililani-town",
          "canonical_path": "/cities/us/mililani-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5345865",
          "name": "Mill Creek",
          "country_code": "US",
          "slug": "mill-creek",
          "canonical_path": "/cities/us/mill-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315418",
          "name": "Mill Creek East",
          "country_code": "US",
          "slug": "mill-creek-east",
          "canonical_path": "/cities/us/mill-creek-east/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5803482",
          "name": "Mill Plain",
          "country_code": "US",
          "slug": "mill-plain",
          "canonical_path": "/cities/us/mill-plain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0647710",
          "name": "Mill Valley",
          "country_code": "US",
          "slug": "mill-valley",
          "canonical_path": "/cities/us/mill-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0647486",
          "name": "Millbrae",
          "country_code": "US",
          "slug": "millbrae",
          "canonical_path": "/cities/us/millbrae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0148712",
          "name": "Millbrook",
          "country_code": "US",
          "slug": "millbrook",
          "canonical_path": "/cities/us/millbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944122",
          "name": "Millbury",
          "country_code": "US",
          "slug": "millbury",
          "canonical_path": "/cities/us/millbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4950150",
          "name": "Millcreek",
          "country_code": "US",
          "slug": "millcreek",
          "canonical_path": "/cities/us/millcreek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1351492",
          "name": "Milledgeville",
          "country_code": "US",
          "slug": "milledgeville",
          "canonical_path": "/cities/us/milledgeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5127043",
          "name": "Miller Place",
          "country_code": "US",
          "slug": "miller-place",
          "canonical_path": "/cities/us/miller-place/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4748980",
          "name": "Millersville",
          "country_code": "US",
          "slug": "millersville",
          "canonical_path": "/cities/us/millersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4249728",
          "name": "Millersville borough",
          "country_code": "US",
          "slug": "millersville-borough",
          "canonical_path": "/cities/us/millersville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0850480",
          "name": "Milliken",
          "country_code": "US",
          "slug": "milliken",
          "canonical_path": "/cities/us/milliken/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4749060",
          "name": "Millington",
          "country_code": "US",
          "slug": "millington",
          "canonical_path": "/cities/us/millington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944173",
          "name": "Millis",
          "country_code": "US",
          "slug": "millis",
          "canonical_path": "/cities/us/millis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3743260",
          "name": "Mills River",
          "country_code": "US",
          "slug": "mills-river",
          "canonical_path": "/cities/us/mills-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1047940",
          "name": "Millsboro",
          "country_code": "US",
          "slug": "millsboro",
          "canonical_path": "/cities/us/millsboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101244",
          "name": "Milltown",
          "country_code": "US",
          "slug": "milltown",
          "canonical_path": "/cities/us/milltown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3446620",
          "name": "Milltown borough",
          "country_code": "US",
          "slug": "milltown-borough",
          "canonical_path": "/cities/us/milltown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3446680",
          "name": "Millville",
          "country_code": "US",
          "slug": "millville",
          "canonical_path": "/cities/us/millville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0647766",
          "name": "Milpitas",
          "country_code": "US",
          "slug": "milpitas",
          "canonical_path": "/cities/us/milpitas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944193",
          "name": "Milton",
          "country_code": "US",
          "slug": "milton",
          "canonical_path": "/cities/us/milton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5201470",
          "name": "Milton",
          "country_code": "US",
          "slug": "milton-pa-097",
          "canonical_path": "/cities/us/milton-pa-097/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1245750",
          "name": "Milton",
          "country_code": "US",
          "slug": "milton-fl",
          "canonical_path": "/cities/us/milton-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1351670",
          "name": "Milton",
          "country_code": "US",
          "slug": "milton-ga",
          "canonical_path": "/cities/us/milton-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5346020",
          "name": "Milton",
          "country_code": "US",
          "slug": "milton-wa",
          "canonical_path": "/cities/us/milton-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5552200",
          "name": "Milton",
          "country_code": "US",
          "slug": "milton-wi",
          "canonical_path": "/cities/us/milton-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4250016",
          "name": "Milton borough",
          "country_code": "US",
          "slug": "milton-borough",
          "canonical_path": "/cities/us/milton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944195",
          "name": "Milton Center",
          "country_code": "US",
          "slug": "milton-center",
          "canonical_path": "/cities/us/milton-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944203",
          "name": "Milton Upper Mills",
          "country_code": "US",
          "slug": "milton-upper-mills",
          "canonical_path": "/cities/us/milton-upper-mills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944204",
          "name": "Milton Village",
          "country_code": "US",
          "slug": "milton-village",
          "canonical_path": "/cities/us/milton-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4148600",
          "name": "Milton-Freewater",
          "country_code": "US",
          "slug": "milton-freewater",
          "canonical_path": "/cities/us/milton-freewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5553000",
          "name": "Milwaukee",
          "country_code": "US",
          "slug": "milwaukee",
          "canonical_path": "/cities/us/milwaukee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4148650",
          "name": "Milwaukie",
          "country_code": "US",
          "slug": "milwaukie",
          "canonical_path": "/cities/us/milwaukie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4164554",
          "name": "Mims",
          "country_code": "US",
          "slug": "mims",
          "canonical_path": "/cities/us/mims/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2250885",
          "name": "Minden",
          "country_code": "US",
          "slug": "minden",
          "canonical_path": "/cities/us/minden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3647636",
          "name": "Mineola",
          "country_code": "US",
          "slug": "mineola-ny",
          "canonical_path": "/cities/us/mineola-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4848648",
          "name": "Mineola",
          "country_code": "US",
          "slug": "mineola-tx",
          "canonical_path": "/cities/us/mineola-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4848684",
          "name": "Mineral Wells",
          "country_code": "US",
          "slug": "mineral-wells",
          "canonical_path": "/cities/us/mineral-wells/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2743000",
          "name": "Minneapolis",
          "country_code": "US",
          "slug": "minneapolis",
          "canonical_path": "/cities/us/minneapolis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5803622",
          "name": "Minnehaha",
          "country_code": "US",
          "slug": "minnehaha",
          "canonical_path": "/cities/us/minnehaha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1245900",
          "name": "Minneola",
          "country_code": "US",
          "slug": "minneola",
          "canonical_path": "/cities/us/minneola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2743252",
          "name": "Minnetonka",
          "country_code": "US",
          "slug": "minnetonka",
          "canonical_path": "/cities/us/minnetonka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2743306",
          "name": "Minnetrista",
          "country_code": "US",
          "slug": "minnetrista",
          "canonical_path": "/cities/us/minnetrista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1749607",
          "name": "Minooka",
          "country_code": "US",
          "slug": "minooka",
          "canonical_path": "/cities/us/minooka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3853380",
          "name": "Minot",
          "country_code": "US",
          "slug": "minot",
          "canonical_path": "/cities/us/minot/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259396",
          "name": "Minot Air Force Base",
          "country_code": "US",
          "slug": "minot-air-force-base",
          "canonical_path": "/cities/us/minot-air-force-base/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3743480",
          "name": "Mint Hill",
          "country_code": "US",
          "slug": "mint-hill",
          "canonical_path": "/cities/us/mint-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5373504",
          "name": "Mira Monte",
          "country_code": "US",
          "slug": "mira-monte",
          "canonical_path": "/cities/us/mira-monte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1245975",
          "name": "Miramar",
          "country_code": "US",
          "slug": "miramar",
          "canonical_path": "/cities/us/miramar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4164602",
          "name": "Miramar Beach",
          "country_code": "US",
          "slug": "miramar-beach",
          "canonical_path": "/cities/us/miramar-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1849932",
          "name": "Mishawaka",
          "country_code": "US",
          "slug": "mishawaka",
          "canonical_path": "/cities/us/mishawaka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2047225",
          "name": "Mission",
          "country_code": "US",
          "slug": "mission-ks",
          "canonical_path": "/cities/us/mission-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4848768",
          "name": "Mission",
          "country_code": "US",
          "slug": "mission-tx",
          "canonical_path": "/cities/us/mission-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4711729",
          "name": "Mission Bend",
          "country_code": "US",
          "slug": "mission-bend",
          "canonical_path": "/cities/us/mission-bend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0648256",
          "name": "Mission Viejo",
          "country_code": "US",
          "slug": "mission-viejo",
          "canonical_path": "/cities/us/mission-viejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3050200",
          "name": "Missoula",
          "country_code": "US",
          "slug": "missoula",
          "canonical_path": "/cities/us/missoula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4848804",
          "name": "Missouri City",
          "country_code": "US",
          "slug": "missouri-city",
          "canonical_path": "/cities/us/missouri-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4643100",
          "name": "Mitchell",
          "country_code": "US",
          "slug": "mitchell",
          "canonical_path": "/cities/us/mitchell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4362624",
          "name": "Mitchellville",
          "country_code": "US",
          "slug": "mitchellville",
          "canonical_path": "/cities/us/mitchellville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4950700",
          "name": "Moab",
          "country_code": "US",
          "slug": "moab",
          "canonical_path": "/cities/us/moab/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5508473",
          "name": "Moapa Valley",
          "country_code": "US",
          "slug": "moapa-valley",
          "canonical_path": "/cities/us/moapa-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2949034",
          "name": "Moberly",
          "country_code": "US",
          "slug": "moberly",
          "canonical_path": "/cities/us/moberly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0150000",
          "name": "Mobile",
          "country_code": "US",
          "slug": "mobile",
          "canonical_path": "/cities/us/mobile/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3743720",
          "name": "Mocksville",
          "country_code": "US",
          "slug": "mocksville",
          "canonical_path": "/cities/us/mocksville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0648354",
          "name": "Modesto",
          "country_code": "US",
          "slug": "modesto",
          "canonical_path": "/cities/us/modesto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1749854",
          "name": "Mokena",
          "country_code": "US",
          "slug": "mokena",
          "canonical_path": "/cities/us/mokena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4149450",
          "name": "Molalla",
          "country_code": "US",
          "slug": "molalla",
          "canonical_path": "/cities/us/molalla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1749867",
          "name": "Moline",
          "country_code": "US",
          "slug": "moline",
          "canonical_path": "/cities/us/moline/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5201658",
          "name": "Monaca",
          "country_code": "US",
          "slug": "monaca",
          "canonical_path": "/cities/us/monaca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4250320",
          "name": "Monaca borough",
          "country_code": "US",
          "slug": "monaca-borough",
          "canonical_path": "/cities/us/monaca-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4848936",
          "name": "Monahans",
          "country_code": "US",
          "slug": "monahans",
          "canonical_path": "/cities/us/monahans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4547275",
          "name": "Moncks Corner",
          "country_code": "US",
          "slug": "moncks-corner",
          "canonical_path": "/cities/us/moncks-corner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1749945",
          "name": "Monee",
          "country_code": "US",
          "slug": "monee",
          "canonical_path": "/cities/us/monee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4250344",
          "name": "Monessen",
          "country_code": "US",
          "slug": "monessen",
          "canonical_path": "/cities/us/monessen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2949196",
          "name": "Monett",
          "country_code": "US",
          "slug": "monett",
          "canonical_path": "/cities/us/monett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4518596",
          "name": "Monfort Heights",
          "country_code": "US",
          "slug": "monfort-heights",
          "canonical_path": "/cities/us/monfort-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1750010",
          "name": "Monmouth",
          "country_code": "US",
          "slug": "monmouth-il",
          "canonical_path": "/cities/us/monmouth-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4149550",
          "name": "Monmouth",
          "country_code": "US",
          "slug": "monmouth-or",
          "canonical_path": "/cities/us/monmouth-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5553675",
          "name": "Monona",
          "country_code": "US",
          "slug": "monona",
          "canonical_path": "/cities/us/monona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1352192",
          "name": "Monroe",
          "country_code": "US",
          "slug": "monroe-ga",
          "canonical_path": "/cities/us/monroe-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2251410",
          "name": "Monroe",
          "country_code": "US",
          "slug": "monroe-la",
          "canonical_path": "/cities/us/monroe-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2655020",
          "name": "Monroe",
          "country_code": "US",
          "slug": "monroe-mi",
          "canonical_path": "/cities/us/monroe-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3647988",
          "name": "Monroe",
          "country_code": "US",
          "slug": "monroe-ny",
          "canonical_path": "/cities/us/monroe-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3743920",
          "name": "Monroe",
          "country_code": "US",
          "slug": "monroe-nc",
          "canonical_path": "/cities/us/monroe-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3951310",
          "name": "Monroe",
          "country_code": "US",
          "slug": "monroe-oh",
          "canonical_path": "/cities/us/monroe-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5346685",
          "name": "Monroe",
          "country_code": "US",
          "slug": "monroe-wa",
          "canonical_path": "/cities/us/monroe-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5553750",
          "name": "Monroe",
          "country_code": "US",
          "slug": "monroe-wi",
          "canonical_path": "/cities/us/monroe-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0150192",
          "name": "Monroeville",
          "country_code": "US",
          "slug": "monroeville",
          "canonical_path": "/cities/us/monroeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4250528",
          "name": "Monroeville municipality",
          "country_code": "US",
          "slug": "monroeville-municipality",
          "canonical_path": "/cities/us/monroeville-municipality/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0648648",
          "name": "Monrovia",
          "country_code": "US",
          "slug": "monrovia",
          "canonical_path": "/cities/us/monrovia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5127315",
          "name": "Monsey",
          "country_code": "US",
          "slug": "monsey",
          "canonical_path": "/cities/us/monsey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944350",
          "name": "Monson",
          "country_code": "US",
          "slug": "monson",
          "canonical_path": "/cities/us/monson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4849068",
          "name": "Mont Belvieu",
          "country_code": "US",
          "slug": "mont-belvieu",
          "canonical_path": "/cities/us/mont-belvieu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944413",
          "name": "Montague",
          "country_code": "US",
          "slug": "montague",
          "canonical_path": "/cities/us/montague/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0648788",
          "name": "Montclair",
          "country_code": "US",
          "slug": "montclair",
          "canonical_path": "/cities/us/montclair/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0648816",
          "name": "Montebello",
          "country_code": "US",
          "slug": "montebello",
          "canonical_path": "/cities/us/montebello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5374340",
          "name": "Montecito",
          "country_code": "US",
          "slug": "montecito",
          "canonical_path": "/cities/us/montecito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0648872",
          "name": "Monterey",
          "country_code": "US",
          "slug": "monterey",
          "canonical_path": "/cities/us/monterey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0648914",
          "name": "Monterey Park",
          "country_code": "US",
          "slug": "monterey-park",
          "canonical_path": "/cities/us/monterey-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0150312",
          "name": "Montevallo",
          "country_code": "US",
          "slug": "montevallo",
          "canonical_path": "/cities/us/montevallo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2743720",
          "name": "Montevideo",
          "country_code": "US",
          "slug": "montevideo",
          "canonical_path": "/cities/us/montevideo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0151000",
          "name": "Montgomery",
          "country_code": "US",
          "slug": "montgomery-al",
          "canonical_path": "/cities/us/montgomery-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1750218",
          "name": "Montgomery",
          "country_code": "US",
          "slug": "montgomery-il",
          "canonical_path": "/cities/us/montgomery-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3951716",
          "name": "Montgomery",
          "country_code": "US",
          "slug": "montgomery-oh",
          "canonical_path": "/cities/us/montgomery-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4362743",
          "name": "Montgomery Village",
          "country_code": "US",
          "slug": "montgomery-village",
          "canonical_path": "/cities/us/montgomery-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5201776",
          "name": "Montgomeryville",
          "country_code": "US",
          "slug": "montgomeryville",
          "canonical_path": "/cities/us/montgomeryville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0546580",
          "name": "Monticello",
          "country_code": "US",
          "slug": "monticello-ar",
          "canonical_path": "/cities/us/monticello-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1750244",
          "name": "Monticello",
          "country_code": "US",
          "slug": "monticello-il",
          "canonical_path": "/cities/us/monticello-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1850760",
          "name": "Monticello",
          "country_code": "US",
          "slug": "monticello-in",
          "canonical_path": "/cities/us/monticello-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2153130",
          "name": "Monticello",
          "country_code": "US",
          "slug": "monticello-ky",
          "canonical_path": "/cities/us/monticello-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2743774",
          "name": "Monticello",
          "country_code": "US",
          "slug": "monticello-mn",
          "canonical_path": "/cities/us/monticello-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3648175",
          "name": "Monticello",
          "country_code": "US",
          "slug": "monticello-ny",
          "canonical_path": "/cities/us/monticello-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5046000",
          "name": "Montpelier",
          "country_code": "US",
          "slug": "montpelier",
          "canonical_path": "/cities/us/montpelier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0851745",
          "name": "Montrose",
          "country_code": "US",
          "slug": "montrose",
          "canonical_path": "/cities/us/montrose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259400",
          "name": "Montrose-Ghent",
          "country_code": "US",
          "slug": "montrose-ghent",
          "canonical_path": "/cities/us/montrose-ghent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101361",
          "name": "Montvale",
          "country_code": "US",
          "slug": "montvale",
          "canonical_path": "/cities/us/montvale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3447610",
          "name": "Montvale borough",
          "country_code": "US",
          "slug": "montvale-borough",
          "canonical_path": "/cities/us/montvale-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0851800",
          "name": "Monument",
          "country_code": "US",
          "slug": "monument",
          "canonical_path": "/cities/us/monument/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0151096",
          "name": "Moody",
          "country_code": "US",
          "slug": "moody",
          "canonical_path": "/cities/us/moody/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4049200",
          "name": "Moore",
          "country_code": "US",
          "slug": "moore",
          "canonical_path": "/cities/us/moore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4076982",
          "name": "Moores Mill",
          "country_code": "US",
          "slug": "moores-mill",
          "canonical_path": "/cities/us/moores-mill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258303",
          "name": "Moorestown-Lenola",
          "country_code": "US",
          "slug": "moorestown-lenola",
          "canonical_path": "/cities/us/moorestown-lenola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1850976",
          "name": "Mooresville",
          "country_code": "US",
          "slug": "mooresville-in",
          "canonical_path": "/cities/us/mooresville-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3744220",
          "name": "Mooresville",
          "country_code": "US",
          "slug": "mooresville-nc",
          "canonical_path": "/cities/us/mooresville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2743864",
          "name": "Moorhead",
          "country_code": "US",
          "slug": "moorhead",
          "canonical_path": "/cities/us/moorhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0649138",
          "name": "Moorpark",
          "country_code": "US",
          "slug": "moorpark",
          "canonical_path": "/cities/us/moorpark/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5201901",
          "name": "Moosic",
          "country_code": "US",
          "slug": "moosic",
          "canonical_path": "/cities/us/moosic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4250880",
          "name": "Moosic borough",
          "country_code": "US",
          "slug": "moosic-borough",
          "canonical_path": "/cities/us/moosic-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0649187",
          "name": "Moraga",
          "country_code": "US",
          "slug": "moraga",
          "canonical_path": "/cities/us/moraga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3952010",
          "name": "Moraine",
          "country_code": "US",
          "slug": "moraine",
          "canonical_path": "/cities/us/moraine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2153418",
          "name": "Morehead",
          "country_code": "US",
          "slug": "morehead",
          "canonical_path": "/cities/us/morehead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3744320",
          "name": "Morehead City",
          "country_code": "US",
          "slug": "morehead-city",
          "canonical_path": "/cities/us/morehead-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0649270",
          "name": "Moreno Valley",
          "country_code": "US",
          "slug": "moreno-valley",
          "canonical_path": "/cities/us/moreno-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2252040",
          "name": "Morgan City",
          "country_code": "US",
          "slug": "morgan-city",
          "canonical_path": "/cities/us/morgan-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0649278",
          "name": "Morgan Hill",
          "country_code": "US",
          "slug": "morgan-hill",
          "canonical_path": "/cities/us/morgan-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3744400",
          "name": "Morganton",
          "country_code": "US",
          "slug": "morganton",
          "canonical_path": "/cities/us/morganton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5455756",
          "name": "Morgantown",
          "country_code": "US",
          "slug": "morgantown",
          "canonical_path": "/cities/us/morgantown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101393",
          "name": "Morganville",
          "country_code": "US",
          "slug": "morganville",
          "canonical_path": "/cities/us/morganville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0546970",
          "name": "Morrilton",
          "country_code": "US",
          "slug": "morrilton",
          "canonical_path": "/cities/us/morrilton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1750491",
          "name": "Morris",
          "country_code": "US",
          "slug": "morris-il",
          "canonical_path": "/cities/us/morris-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2744242",
          "name": "Morris",
          "country_code": "US",
          "slug": "morris-mn",
          "canonical_path": "/cities/us/morris-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101417",
          "name": "Morris Plains",
          "country_code": "US",
          "slug": "morris-plains",
          "canonical_path": "/cities/us/morris-plains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3448210",
          "name": "Morris Plains borough",
          "country_code": "US",
          "slug": "morris-plains-borough",
          "canonical_path": "/cities/us/morris-plains-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5238755",
          "name": "Morristown",
          "country_code": "US",
          "slug": "morristown",
          "canonical_path": "/cities/us/morristown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3448300",
          "name": "Morristown",
          "country_code": "US",
          "slug": "morristown-nj",
          "canonical_path": "/cities/us/morristown-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4750280",
          "name": "Morristown",
          "country_code": "US",
          "slug": "morristown-tn",
          "canonical_path": "/cities/us/morristown-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3744520",
          "name": "Morrisville",
          "country_code": "US",
          "slug": "morrisville",
          "canonical_path": "/cities/us/morrisville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4251144",
          "name": "Morrisville borough",
          "country_code": "US",
          "slug": "morrisville-borough",
          "canonical_path": "/cities/us/morrisville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0649362",
          "name": "Morro Bay",
          "country_code": "US",
          "slug": "morro-bay",
          "canonical_path": "/cities/us/morro-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1353004",
          "name": "Morrow",
          "country_code": "US",
          "slug": "morrow",
          "canonical_path": "/cities/us/morrow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1750621",
          "name": "Morton",
          "country_code": "US",
          "slug": "morton",
          "canonical_path": "/cities/us/morton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1750647",
          "name": "Morton Grove",
          "country_code": "US",
          "slug": "morton-grove",
          "canonical_path": "/cities/us/morton-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1654550",
          "name": "Moscow",
          "country_code": "US",
          "slug": "moscow",
          "canonical_path": "/cities/us/moscow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5347245",
          "name": "Moses Lake",
          "country_code": "US",
          "slug": "moses-lake",
          "canonical_path": "/cities/us/moses-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4333961",
          "name": "Moss Bluff",
          "country_code": "US",
          "slug": "moss-bluff",
          "canonical_path": "/cities/us/moss-bluff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2849240",
          "name": "Moss Point",
          "country_code": "US",
          "slug": "moss-point",
          "canonical_path": "/cities/us/moss-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5089850",
          "name": "Moultonborough",
          "country_code": "US",
          "slug": "moultonborough",
          "canonical_path": "/cities/us/moultonborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1353060",
          "name": "Moultrie",
          "country_code": "US",
          "slug": "moultrie",
          "canonical_path": "/cities/us/moultrie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2744476",
          "name": "Mound",
          "country_code": "US",
          "slug": "mound",
          "canonical_path": "/cities/us/mound/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2744530",
          "name": "Mounds View",
          "country_code": "US",
          "slug": "mounds-view",
          "canonical_path": "/cities/us/mounds-view/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5456020",
          "name": "Moundsville",
          "country_code": "US",
          "slug": "moundsville",
          "canonical_path": "/cities/us/moundsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2453875",
          "name": "Mount Airy",
          "country_code": "US",
          "slug": "mount-airy-md",
          "canonical_path": "/cities/us/mount-airy-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3744800",
          "name": "Mount Airy",
          "country_code": "US",
          "slug": "mount-airy-nc",
          "canonical_path": "/cities/us/mount-airy-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101459",
          "name": "Mount Arlington",
          "country_code": "US",
          "slug": "mount-arlington",
          "canonical_path": "/cities/us/mount-arlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3448690",
          "name": "Mount Arlington borough",
          "country_code": "US",
          "slug": "mount-arlington-borough",
          "canonical_path": "/cities/us/mount-arlington-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5202114",
          "name": "Mount Carmel",
          "country_code": "US",
          "slug": "mount-carmel",
          "canonical_path": "/cities/us/mount-carmel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1750868",
          "name": "Mount Carmel",
          "country_code": "US",
          "slug": "mount-carmel-il",
          "canonical_path": "/cities/us/mount-carmel-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4750580",
          "name": "Mount Carmel",
          "country_code": "US",
          "slug": "mount-carmel-tn",
          "canonical_path": "/cities/us/mount-carmel-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4251496",
          "name": "Mount Carmel borough",
          "country_code": "US",
          "slug": "mount-carmel-borough",
          "canonical_path": "/cities/us/mount-carmel-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2655820",
          "name": "Mount Clemens",
          "country_code": "US",
          "slug": "mount-clemens",
          "canonical_path": "/cities/us/mount-clemens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1247050",
          "name": "Mount Dora",
          "country_code": "US",
          "slug": "mount-dora",
          "canonical_path": "/cities/us/mount-dora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3952752",
          "name": "Mount Healthy",
          "country_code": "US",
          "slug": "mount-healthy",
          "canonical_path": "/cities/us/mount-healthy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3744960",
          "name": "Mount Holly",
          "country_code": "US",
          "slug": "mount-holly",
          "canonical_path": "/cities/us/mount-holly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5554725",
          "name": "Mount Horeb",
          "country_code": "US",
          "slug": "mount-horeb",
          "canonical_path": "/cities/us/mount-horeb/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5127741",
          "name": "Mount Ivy",
          "country_code": "US",
          "slug": "mount-ivy",
          "canonical_path": "/cities/us/mount-ivy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5202202",
          "name": "Mount Joy",
          "country_code": "US",
          "slug": "mount-joy",
          "canonical_path": "/cities/us/mount-joy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4251656",
          "name": "Mount Joy borough",
          "country_code": "US",
          "slug": "mount-joy-borough",
          "canonical_path": "/cities/us/mount-joy-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4750780",
          "name": "Mount Juliet",
          "country_code": "US",
          "slug": "mount-juliet",
          "canonical_path": "/cities/us/mount-juliet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3648890",
          "name": "Mount Kisco",
          "country_code": "US",
          "slug": "mount-kisco",
          "canonical_path": "/cities/us/mount-kisco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5202215",
          "name": "Mount Lebanon",
          "country_code": "US",
          "slug": "mount-lebanon",
          "canonical_path": "/cities/us/mount-lebanon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4139673",
          "name": "Mount Pleasant",
          "country_code": "US",
          "slug": "mount-pleasant",
          "canonical_path": "/cities/us/mount-pleasant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1954705",
          "name": "Mount Pleasant",
          "country_code": "US",
          "slug": "mount-pleasant-ia",
          "canonical_path": "/cities/us/mount-pleasant-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2656020",
          "name": "Mount Pleasant",
          "country_code": "US",
          "slug": "mount-pleasant-mi",
          "canonical_path": "/cities/us/mount-pleasant-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4548535",
          "name": "Mount Pleasant",
          "country_code": "US",
          "slug": "mount-pleasant-sc",
          "canonical_path": "/cities/us/mount-pleasant-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4751080",
          "name": "Mount Pleasant",
          "country_code": "US",
          "slug": "mount-pleasant-tn",
          "canonical_path": "/cities/us/mount-pleasant-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4849800",
          "name": "Mount Pleasant",
          "country_code": "US",
          "slug": "mount-pleasant-tx",
          "canonical_path": "/cities/us/mount-pleasant-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5554875",
          "name": "Mount Pleasant",
          "country_code": "US",
          "slug": "mount-pleasant-wi",
          "canonical_path": "/cities/us/mount-pleasant-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1751089",
          "name": "Mount Prospect",
          "country_code": "US",
          "slug": "mount-prospect",
          "canonical_path": "/cities/us/mount-prospect/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2454275",
          "name": "Mount Rainier",
          "country_code": "US",
          "slug": "mount-rainier",
          "canonical_path": "/cities/us/mount-rainier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5127824",
          "name": "Mount Sinai",
          "country_code": "US",
          "slug": "mount-sinai",
          "canonical_path": "/cities/us/mount-sinai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2154084",
          "name": "Mount Sterling",
          "country_code": "US",
          "slug": "mount-sterling",
          "canonical_path": "/cities/us/mount-sterling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258318",
          "name": "Mount Vernon",
          "country_code": "US",
          "slug": "mount-vernon",
          "canonical_path": "/cities/us/mount-vernon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1751180",
          "name": "Mount Vernon",
          "country_code": "US",
          "slug": "mount-vernon-il",
          "canonical_path": "/cities/us/mount-vernon-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1851732",
          "name": "Mount Vernon",
          "country_code": "US",
          "slug": "mount-vernon-in",
          "canonical_path": "/cities/us/mount-vernon-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3649121",
          "name": "Mount Vernon",
          "country_code": "US",
          "slug": "mount-vernon-ny",
          "canonical_path": "/cities/us/mount-vernon-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3953102",
          "name": "Mount Vernon",
          "country_code": "US",
          "slug": "mount-vernon-oh",
          "canonical_path": "/cities/us/mount-vernon-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5347560",
          "name": "Mount Vernon",
          "country_code": "US",
          "slug": "mount-vernon-wa",
          "canonical_path": "/cities/us/mount-vernon-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526896",
          "name": "Mount Vernon Triangle",
          "country_code": "US",
          "slug": "mount-vernon-triangle",
          "canonical_path": "/cities/us/mount-vernon-triangle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5804135",
          "name": "Mount Vista",
          "country_code": "US",
          "slug": "mount-vista",
          "canonical_path": "/cities/us/mount-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2154228",
          "name": "Mount Washington",
          "country_code": "US",
          "slug": "mount-washington",
          "canonical_path": "/cities/us/mount-washington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1751206",
          "name": "Mount Zion",
          "country_code": "US",
          "slug": "mount-zion",
          "canonical_path": "/cities/us/mount-zion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0151696",
          "name": "Mountain Brook",
          "country_code": "US",
          "slug": "mountain-brook",
          "canonical_path": "/cities/us/mountain-brook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0547390",
          "name": "Mountain Home",
          "country_code": "US",
          "slug": "mountain-home-ar",
          "canonical_path": "/cities/us/mountain-home-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1654730",
          "name": "Mountain Home",
          "country_code": "US",
          "slug": "mountain-home-id",
          "canonical_path": "/cities/us/mountain-home-id/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5375407",
          "name": "Mountain House",
          "country_code": "US",
          "slug": "mountain-house",
          "canonical_path": "/cities/us/mountain-house/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4211428",
          "name": "Mountain Park",
          "country_code": "US",
          "slug": "mountain-park",
          "canonical_path": "/cities/us/mountain-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5202535",
          "name": "Mountain Top",
          "country_code": "US",
          "slug": "mountain-top",
          "canonical_path": "/cities/us/mountain-top/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0649670",
          "name": "Mountain View",
          "country_code": "US",
          "slug": "mountain-view",
          "canonical_path": "/cities/us/mountain-view/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101601",
          "name": "Mountainside",
          "country_code": "US",
          "slug": "mountainside",
          "canonical_path": "/cities/us/mountainside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3448510",
          "name": "Mountainside borough",
          "country_code": "US",
          "slug": "mountainside-borough",
          "canonical_path": "/cities/us/mountainside-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5347490",
          "name": "Mountlake Terrace",
          "country_code": "US",
          "slug": "mountlake-terrace",
          "canonical_path": "/cities/us/mountlake-terrace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5347735",
          "name": "Mukilteo",
          "country_code": "US",
          "slug": "mukilteo",
          "canonical_path": "/cities/us/mukilteo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5555050",
          "name": "Mukwonago",
          "country_code": "US",
          "slug": "mukwonago",
          "canonical_path": "/cities/us/mukwonago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4849968",
          "name": "Muleshoe",
          "country_code": "US",
          "slug": "muleshoe",
          "canonical_path": "/cities/us/muleshoe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2049100",
          "name": "Mulvane",
          "country_code": "US",
          "slug": "mulvane",
          "canonical_path": "/cities/us/mulvane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1851876",
          "name": "Muncie",
          "country_code": "US",
          "slug": "muncie",
          "canonical_path": "/cities/us/muncie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1751349",
          "name": "Mundelein",
          "country_code": "US",
          "slug": "mundelein",
          "canonical_path": "/cities/us/mundelein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4751540",
          "name": "Munford",
          "country_code": "US",
          "slug": "munford",
          "canonical_path": "/cities/us/munford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5202734",
          "name": "Munhall",
          "country_code": "US",
          "slug": "munhall",
          "canonical_path": "/cities/us/munhall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4252320",
          "name": "Munhall borough",
          "country_code": "US",
          "slug": "munhall-borough",
          "canonical_path": "/cities/us/munhall-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5163968",
          "name": "Munroe Falls",
          "country_code": "US",
          "slug": "munroe-falls",
          "canonical_path": "/cities/us/munroe-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1851912",
          "name": "Munster",
          "country_code": "US",
          "slug": "munster",
          "canonical_path": "/cities/us/munster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4751560",
          "name": "Murfreesboro",
          "country_code": "US",
          "slug": "murfreesboro",
          "canonical_path": "/cities/us/murfreesboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4850100",
          "name": "Murphy",
          "country_code": "US",
          "slug": "murphy",
          "canonical_path": "/cities/us/murphy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1751453",
          "name": "Murphysboro",
          "country_code": "US",
          "slug": "murphysboro",
          "canonical_path": "/cities/us/murphysboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2154642",
          "name": "Murray",
          "country_code": "US",
          "slug": "murray-ky",
          "canonical_path": "/cities/us/murray-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4953230",
          "name": "Murray",
          "country_code": "US",
          "slug": "murray-ut",
          "canonical_path": "/cities/us/murray-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4481345",
          "name": "Murraysville",
          "country_code": "US",
          "slug": "murraysville",
          "canonical_path": "/cities/us/murraysville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4588682",
          "name": "Murrells Inlet",
          "country_code": "US",
          "slug": "murrells-inlet",
          "canonical_path": "/cities/us/murrells-inlet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0650076",
          "name": "Murrieta",
          "country_code": "US",
          "slug": "murrieta",
          "canonical_path": "/cities/us/murrieta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5202765",
          "name": "Murrysville",
          "country_code": "US",
          "slug": "murrysville",
          "canonical_path": "/cities/us/murrysville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4252432",
          "name": "Murrysville municipality",
          "country_code": "US",
          "slug": "murrysville-municipality",
          "canonical_path": "/cities/us/murrysville-municipality/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1955110",
          "name": "Muscatine",
          "country_code": "US",
          "slug": "muscatine",
          "canonical_path": "/cities/us/muscatine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0153016",
          "name": "Muscle Shoals",
          "country_code": "US",
          "slug": "muscle-shoals",
          "canonical_path": "/cities/us/muscle-shoals/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5375938",
          "name": "Muscoy",
          "country_code": "US",
          "slug": "muscoy",
          "canonical_path": "/cities/us/muscoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5555275",
          "name": "Muskego",
          "country_code": "US",
          "slug": "muskego",
          "canonical_path": "/cities/us/muskego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2656320",
          "name": "Muskegon",
          "country_code": "US",
          "slug": "muskegon",
          "canonical_path": "/cities/us/muskegon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2656360",
          "name": "Muskegon Heights",
          "country_code": "US",
          "slug": "muskegon-heights",
          "canonical_path": "/cities/us/muskegon-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4050050",
          "name": "Muskogee",
          "country_code": "US",
          "slug": "muskogee",
          "canonical_path": "/cities/us/muskogee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4050100",
          "name": "Mustang",
          "country_code": "US",
          "slug": "mustang",
          "canonical_path": "/cities/us/mustang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128238",
          "name": "Myers Corner",
          "country_code": "US",
          "slug": "myers-corner",
          "canonical_path": "/cities/us/myers-corner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4549075",
          "name": "Myrtle Beach",
          "country_code": "US",
          "slug": "myrtle-beach",
          "canonical_path": "/cities/us/myrtle-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4165519",
          "name": "Myrtle Grove",
          "country_code": "US",
          "slug": "myrtle-grove",
          "canonical_path": "/cities/us/myrtle-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4481385",
          "name": "Myrtle Grove",
          "country_code": "US",
          "slug": "myrtle-grove-nc-129",
          "canonical_path": "/cities/us/myrtle-grove-nc-129/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4503204",
          "name": "Mystic Island",
          "country_code": "US",
          "slug": "mystic-island",
          "canonical_path": "/cities/us/mystic-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4850256",
          "name": "Nacogdoches",
          "country_code": "US",
          "slug": "nacogdoches",
          "canonical_path": "/cities/us/nacogdoches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1656260",
          "name": "Nampa",
          "country_code": "US",
          "slug": "nampa",
          "canonical_path": "/cities/us/nampa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5851349",
          "name": "Nānākuli",
          "country_code": "US",
          "slug": "nanakuli",
          "canonical_path": "/cities/us/nanakuli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4252584",
          "name": "Nanticoke",
          "country_code": "US",
          "slug": "nanticoke",
          "canonical_path": "/cities/us/nanticoke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944903",
          "name": "Nantucket",
          "country_code": "US",
          "slug": "nantucket",
          "canonical_path": "/cities/us/nantucket/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128266",
          "name": "Nanuet",
          "country_code": "US",
          "slug": "nanuet",
          "canonical_path": "/cities/us/nanuet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0650258",
          "name": "Napa",
          "country_code": "US",
          "slug": "napa",
          "canonical_path": "/cities/us/napa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1751622",
          "name": "Naperville",
          "country_code": "US",
          "slug": "naperville",
          "canonical_path": "/cities/us/naperville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262771",
          "name": "Napili-Honokowai",
          "country_code": "US",
          "slug": "napili-honokowai",
          "canonical_path": "/cities/us/napili-honokowai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1247625",
          "name": "Naples",
          "country_code": "US",
          "slug": "naples",
          "canonical_path": "/cities/us/naples/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4165574",
          "name": "Naples Manor",
          "country_code": "US",
          "slug": "naples-manor",
          "canonical_path": "/cities/us/naples-manor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4165576",
          "name": "Naples Park",
          "country_code": "US",
          "slug": "naples-park",
          "canonical_path": "/cities/us/naples-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3953550",
          "name": "Napoleon",
          "country_code": "US",
          "slug": "napoleon",
          "canonical_path": "/cities/us/napoleon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1852020",
          "name": "Nappanee",
          "country_code": "US",
          "slug": "nappanee",
          "canonical_path": "/cities/us/nappanee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4165580",
          "name": "Naranja",
          "country_code": "US",
          "slug": "naranja",
          "canonical_path": "/cities/us/naranja/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5223505",
          "name": "Narragansett",
          "country_code": "US",
          "slug": "narragansett",
          "canonical_path": "/cities/us/narragansett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3350260",
          "name": "Nashua",
          "country_code": "US",
          "slug": "nashua",
          "canonical_path": "/cities/us/nashua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4644585",
          "name": "Nashville",
          "country_code": "US",
          "slug": "nashville",
          "canonical_path": "/cities/us/nashville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1354264",
          "name": "Nashville",
          "country_code": "US",
          "slug": "nashville-ga",
          "canonical_path": "/cities/us/nashville-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3746000",
          "name": "Nashville",
          "country_code": "US",
          "slug": "nashville-nc",
          "canonical_path": "/cities/us/nashville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4850376",
          "name": "Nassau Bay",
          "country_code": "US",
          "slug": "nassau-bay",
          "canonical_path": "/cities/us/nassau-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260484",
          "name": "Nassau Village-Ratliff",
          "country_code": "US",
          "slug": "nassau-village-ratliff",
          "canonical_path": "/cities/us/nassau-village-ratliff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2850440",
          "name": "Natchez",
          "country_code": "US",
          "slug": "natchez",
          "canonical_path": "/cities/us/natchez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2253545",
          "name": "Natchitoches",
          "country_code": "US",
          "slug": "natchitoches",
          "canonical_path": "/cities/us/natchitoches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4944994",
          "name": "Natick",
          "country_code": "US",
          "slug": "natick",
          "canonical_path": "/cities/us/natick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0650398",
          "name": "National City",
          "country_code": "US",
          "slug": "national-city",
          "canonical_path": "/cities/us/national-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5202903",
          "name": "Natrona Heights",
          "country_code": "US",
          "slug": "natrona-heights",
          "canonical_path": "/cities/us/natrona-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4839222",
          "name": "Naugatuck",
          "country_code": "US",
          "slug": "naugatuck",
          "canonical_path": "/cities/us/naugatuck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0949880",
          "name": "Naugatuck borough",
          "country_code": "US",
          "slug": "naugatuck-borough",
          "canonical_path": "/cities/us/naugatuck-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4165637",
          "name": "Navarre",
          "country_code": "US",
          "slug": "navarre",
          "canonical_path": "/cities/us/navarre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4850472",
          "name": "Navasota",
          "country_code": "US",
          "slug": "navasota",
          "canonical_path": "/cities/us/navasota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5202938",
          "name": "Nazareth",
          "country_code": "US",
          "slug": "nazareth",
          "canonical_path": "/cities/us/nazareth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4252808",
          "name": "Nazareth borough",
          "country_code": "US",
          "slug": "nazareth-borough",
          "canonical_path": "/cities/us/nazareth-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3133705",
          "name": "Nebraska City",
          "country_code": "US",
          "slug": "nebraska-city",
          "canonical_path": "/cities/us/nebraska-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4850580",
          "name": "Nederland",
          "country_code": "US",
          "slug": "nederland",
          "canonical_path": "/cities/us/nederland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4945055",
          "name": "Needham",
          "country_code": "US",
          "slug": "needham",
          "canonical_path": "/cities/us/needham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5555750",
          "name": "Neenah",
          "country_code": "US",
          "slug": "neenah",
          "canonical_path": "/cities/us/neenah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4519445",
          "name": "Nelsonville",
          "country_code": "US",
          "slug": "nelsonville",
          "canonical_path": "/cities/us/nelsonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2951572",
          "name": "Neosho",
          "country_code": "US",
          "slug": "neosho",
          "canonical_path": "/cities/us/neosho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4954220",
          "name": "Nephi",
          "country_code": "US",
          "slug": "nephi",
          "canonical_path": "/cities/us/nephi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1248100",
          "name": "Neptune Beach",
          "country_code": "US",
          "slug": "neptune-beach",
          "canonical_path": "/cities/us/neptune-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128433",
          "name": "Nesconset",
          "country_code": "US",
          "slug": "nesconset",
          "canonical_path": "/cities/us/nesconset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1955695",
          "name": "Nevada",
          "country_code": "US",
          "slug": "nevada-ia",
          "canonical_path": "/cities/us/nevada-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2951644",
          "name": "Nevada",
          "country_code": "US",
          "slug": "nevada-mo",
          "canonical_path": "/cities/us/nevada-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1852326",
          "name": "New Albany",
          "country_code": "US",
          "slug": "new-albany-in",
          "canonical_path": "/cities/us/new-albany-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2851000",
          "name": "New Albany",
          "country_code": "US",
          "slug": "new-albany-ms",
          "canonical_path": "/cities/us/new-albany-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3953970",
          "name": "New Albany",
          "country_code": "US",
          "slug": "new-albany-oh",
          "canonical_path": "/cities/us/new-albany-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2657100",
          "name": "New Baltimore",
          "country_code": "US",
          "slug": "new-baltimore",
          "canonical_path": "/cities/us/new-baltimore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2545000",
          "name": "New Bedford",
          "country_code": "US",
          "slug": "new-bedford",
          "canonical_path": "/cities/us/new-bedford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5556375",
          "name": "New Berlin",
          "country_code": "US",
          "slug": "new-berlin",
          "canonical_path": "/cities/us/new-berlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3746340",
          "name": "New Bern",
          "country_code": "US",
          "slug": "new-bern",
          "canonical_path": "/cities/us/new-bern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4850820",
          "name": "New Braunfels",
          "country_code": "US",
          "slug": "new-braunfels",
          "canonical_path": "/cities/us/new-braunfels/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2745430",
          "name": "New Brighton",
          "country_code": "US",
          "slug": "new-brighton",
          "canonical_path": "/cities/us/new-brighton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4253288",
          "name": "New Brighton borough",
          "country_code": "US",
          "slug": "new-brighton-borough",
          "canonical_path": "/cities/us/new-brighton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0950370",
          "name": "New Britain",
          "country_code": "US",
          "slug": "new-britain",
          "canonical_path": "/cities/us/new-britain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3451210",
          "name": "New Brunswick",
          "country_code": "US",
          "slug": "new-brunswick",
          "canonical_path": "/cities/us/new-brunswick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4519486",
          "name": "New Burlington",
          "country_code": "US",
          "slug": "new-burlington",
          "canonical_path": "/cities/us/new-burlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4839319",
          "name": "New Canaan",
          "country_code": "US",
          "slug": "new-canaan",
          "canonical_path": "/cities/us/new-canaan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3954334",
          "name": "New Carlisle",
          "country_code": "US",
          "slug": "new-carlisle",
          "canonical_path": "/cities/us/new-carlisle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2455400",
          "name": "New Carrollton",
          "country_code": "US",
          "slug": "new-carrollton",
          "canonical_path": "/cities/us/new-carrollton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128478",
          "name": "New Cassel",
          "country_code": "US",
          "slug": "new-cassel",
          "canonical_path": "/cities/us/new-cassel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1050800",
          "name": "New Castle",
          "country_code": "US",
          "slug": "new-castle-de",
          "canonical_path": "/cities/us/new-castle-de/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1852740",
          "name": "New Castle",
          "country_code": "US",
          "slug": "new-castle-in",
          "canonical_path": "/cities/us/new-castle-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4253368",
          "name": "New Castle",
          "country_code": "US",
          "slug": "new-castle-pa",
          "canonical_path": "/cities/us/new-castle-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128481",
          "name": "New City",
          "country_code": "US",
          "slug": "new-city",
          "canonical_path": "/cities/us/new-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5203164",
          "name": "New Cumberland",
          "country_code": "US",
          "slug": "new-cumberland",
          "canonical_path": "/cities/us/new-cumberland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4253464",
          "name": "New Cumberland borough",
          "country_code": "US",
          "slug": "new-cumberland-borough",
          "canonical_path": "/cities/us/new-cumberland-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3954562",
          "name": "New Franklin",
          "country_code": "US",
          "slug": "new-franklin",
          "canonical_path": "/cities/us/new-franklin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4253568",
          "name": "New Freedom borough",
          "country_code": "US",
          "slug": "new-freedom-borough",
          "canonical_path": "/cities/us/new-freedom-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0952000",
          "name": "New Haven",
          "country_code": "US",
          "slug": "new-haven-ct",
          "canonical_path": "/cities/us/new-haven-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1852992",
          "name": "New Haven",
          "country_code": "US",
          "slug": "new-haven-in",
          "canonical_path": "/cities/us/new-haven-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2657380",
          "name": "New Haven",
          "country_code": "US",
          "slug": "new-haven-mi",
          "canonical_path": "/cities/us/new-haven-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3650353",
          "name": "New Hempstead",
          "country_code": "US",
          "slug": "new-hempstead",
          "canonical_path": "/cities/us/new-hempstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5203221",
          "name": "New Holland",
          "country_code": "US",
          "slug": "new-holland",
          "canonical_path": "/cities/us/new-holland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4253696",
          "name": "New Holland borough",
          "country_code": "US",
          "slug": "new-holland-borough",
          "canonical_path": "/cities/us/new-holland-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2745628",
          "name": "New Hope",
          "country_code": "US",
          "slug": "new-hope",
          "canonical_path": "/cities/us/new-hope/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3650397",
          "name": "New Hyde Park",
          "country_code": "US",
          "slug": "new-hyde-park",
          "canonical_path": "/cities/us/new-hyde-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2254035",
          "name": "New Iberia",
          "country_code": "US",
          "slug": "new-iberia",
          "canonical_path": "/cities/us/new-iberia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5090183",
          "name": "New Ipswich",
          "country_code": "US",
          "slug": "new-ipswich",
          "canonical_path": "/cities/us/new-ipswich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4253736",
          "name": "New Kensington",
          "country_code": "US",
          "slug": "new-kensington",
          "canonical_path": "/cities/us/new-kensington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261968",
          "name": "New Kingman-Butler",
          "country_code": "US",
          "slug": "new-kingman-butler",
          "canonical_path": "/cities/us/new-kingman-butler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1752584",
          "name": "New Lenox",
          "country_code": "US",
          "slug": "new-lenox",
          "canonical_path": "/cities/us/new-lenox/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0952280",
          "name": "New London",
          "country_code": "US",
          "slug": "new-london-ct",
          "canonical_path": "/cities/us/new-london-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5556925",
          "name": "New London",
          "country_code": "US",
          "slug": "new-london-wi",
          "canonical_path": "/cities/us/new-london-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5458684",
          "name": "New Martinsville",
          "country_code": "US",
          "slug": "new-martinsville",
          "canonical_path": "/cities/us/new-martinsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4839435",
          "name": "New Milford",
          "country_code": "US",
          "slug": "new-milford",
          "canonical_path": "/cities/us/new-milford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101766",
          "name": "New Milford",
          "country_code": "US",
          "slug": "new-milford-nj-003",
          "canonical_path": "/cities/us/new-milford-nj-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3451660",
          "name": "New Milford borough",
          "country_code": "US",
          "slug": "new-milford-borough",
          "canonical_path": "/cities/us/new-milford-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2255000",
          "name": "New Orleans",
          "country_code": "US",
          "slug": "new-orleans",
          "canonical_path": "/cities/us/new-orleans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3650551",
          "name": "New Paltz",
          "country_code": "US",
          "slug": "new-paltz",
          "canonical_path": "/cities/us/new-paltz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3955216",
          "name": "New Philadelphia",
          "country_code": "US",
          "slug": "new-philadelphia",
          "canonical_path": "/cities/us/new-philadelphia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1248500",
          "name": "New Port Richey",
          "country_code": "US",
          "slug": "new-port-richey",
          "canonical_path": "/cities/us/new-port-richey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260490",
          "name": "New Port Richey East",
          "country_code": "US",
          "slug": "new-port-richey-east",
          "canonical_path": "/cities/us/new-port-richey-east/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2745808",
          "name": "New Prague",
          "country_code": "US",
          "slug": "new-prague",
          "canonical_path": "/cities/us/new-prague/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101775",
          "name": "New Providence",
          "country_code": "US",
          "slug": "new-providence",
          "canonical_path": "/cities/us/new-providence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3451810",
          "name": "New Providence borough",
          "country_code": "US",
          "slug": "new-providence-borough",
          "canonical_path": "/cities/us/new-providence-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5557100",
          "name": "New Richmond",
          "country_code": "US",
          "slug": "new-richmond",
          "canonical_path": "/cities/us/new-richmond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5306523",
          "name": "New River",
          "country_code": "US",
          "slug": "new-river",
          "canonical_path": "/cities/us/new-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3650617",
          "name": "New Rochelle",
          "country_code": "US",
          "slug": "new-rochelle",
          "canonical_path": "/cities/us/new-rochelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1248625",
          "name": "New Smyrna Beach",
          "country_code": "US",
          "slug": "new-smyrna-beach",
          "canonical_path": "/cities/us/new-smyrna-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3650705",
          "name": "New Square",
          "country_code": "US",
          "slug": "new-square",
          "canonical_path": "/cities/us/new-square/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2746042",
          "name": "New Ulm",
          "country_code": "US",
          "slug": "new-ulm",
          "canonical_path": "/cities/us/new-ulm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1853874",
          "name": "New Whiteland",
          "country_code": "US",
          "slug": "new-whiteland",
          "canonical_path": "/cities/us/new-whiteland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128577",
          "name": "New Windsor",
          "country_code": "US",
          "slug": "new-windsor",
          "canonical_path": "/cities/us/new-windsor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3651000",
          "name": "New York",
          "country_code": "US",
          "slug": "new-york",
          "canonical_path": "/cities/us/new-york/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0650916",
          "name": "Newark",
          "country_code": "US",
          "slug": "newark-ca",
          "canonical_path": "/cities/us/newark-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1050670",
          "name": "Newark",
          "country_code": "US",
          "slug": "newark-de",
          "canonical_path": "/cities/us/newark-de/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3451000",
          "name": "Newark",
          "country_code": "US",
          "slug": "newark-nj",
          "canonical_path": "/cities/us/newark-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3649891",
          "name": "Newark",
          "country_code": "US",
          "slug": "newark-ny",
          "canonical_path": "/cities/us/newark-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3954040",
          "name": "Newark",
          "country_code": "US",
          "slug": "newark-oh",
          "canonical_path": "/cities/us/newark-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4152100",
          "name": "Newberg",
          "country_code": "US",
          "slug": "newberg",
          "canonical_path": "/cities/us/newberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1248200",
          "name": "Newberry",
          "country_code": "US",
          "slug": "newberry-fl",
          "canonical_path": "/cities/us/newberry-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4549570",
          "name": "Newberry",
          "country_code": "US",
          "slug": "newberry-sc",
          "canonical_path": "/cities/us/newberry-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3650034",
          "name": "Newburgh",
          "country_code": "US",
          "slug": "newburgh",
          "canonical_path": "/cities/us/newburgh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2545245",
          "name": "Newburyport",
          "country_code": "US",
          "slug": "newburyport",
          "canonical_path": "/cities/us/newburyport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4051150",
          "name": "Newcastle",
          "country_code": "US",
          "slug": "newcastle-ok",
          "canonical_path": "/cities/us/newcastle-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5348645",
          "name": "Newcastle",
          "country_code": "US",
          "slug": "newcastle-wa",
          "canonical_path": "/cities/us/newcastle-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4775981",
          "name": "Newington",
          "country_code": "US",
          "slug": "newington",
          "canonical_path": "/cities/us/newington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4839497",
          "name": "Newington",
          "country_code": "US",
          "slug": "newington-ct-110",
          "canonical_path": "/cities/us/newington-ct-110/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0651140",
          "name": "Newman",
          "country_code": "US",
          "slug": "newman",
          "canonical_path": "/cities/us/newman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5090246",
          "name": "Newmarket",
          "country_code": "US",
          "slug": "newmarket",
          "canonical_path": "/cities/us/newmarket/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1355020",
          "name": "Newnan",
          "country_code": "US",
          "slug": "newnan",
          "canonical_path": "/cities/us/newnan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0549580",
          "name": "Newport",
          "country_code": "US",
          "slug": "newport-ar",
          "canonical_path": "/cities/us/newport-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2155884",
          "name": "Newport",
          "country_code": "US",
          "slug": "newport-ky",
          "canonical_path": "/cities/us/newport-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2745790",
          "name": "Newport",
          "country_code": "US",
          "slug": "newport-mn",
          "canonical_path": "/cities/us/newport-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4152450",
          "name": "Newport",
          "country_code": "US",
          "slug": "newport-or",
          "canonical_path": "/cities/us/newport-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4449960",
          "name": "Newport",
          "country_code": "US",
          "slug": "newport-ri",
          "canonical_path": "/cities/us/newport-ri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4753000",
          "name": "Newport",
          "country_code": "US",
          "slug": "newport-tn",
          "canonical_path": "/cities/us/newport-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0651182",
          "name": "Newport Beach",
          "country_code": "US",
          "slug": "newport-beach",
          "canonical_path": "/cities/us/newport-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257658",
          "name": "Newport East",
          "country_code": "US",
          "slug": "newport-east",
          "canonical_path": "/cities/us/newport-east/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5156000",
          "name": "Newport News",
          "country_code": "US",
          "slug": "newport-news",
          "canonical_path": "/cities/us/newport-news/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1956505",
          "name": "Newton",
          "country_code": "US",
          "slug": "newton-ia",
          "canonical_path": "/cities/us/newton-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2050475",
          "name": "Newton",
          "country_code": "US",
          "slug": "newton-ks",
          "canonical_path": "/cities/us/newton-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2545560",
          "name": "Newton",
          "country_code": "US",
          "slug": "newton-ma",
          "canonical_path": "/cities/us/newton-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3451930",
          "name": "Newton",
          "country_code": "US",
          "slug": "newton-nj",
          "canonical_path": "/cities/us/newton-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3747000",
          "name": "Newton",
          "country_code": "US",
          "slug": "newton-nc",
          "canonical_path": "/cities/us/newton-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3651055",
          "name": "Niagara Falls",
          "country_code": "US",
          "slug": "niagara-falls",
          "canonical_path": "/cities/us/niagara-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4954660",
          "name": "Nibley",
          "country_code": "US",
          "slug": "nibley",
          "canonical_path": "/cities/us/nibley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1248750",
          "name": "Niceville",
          "country_code": "US",
          "slug": "niceville",
          "canonical_path": "/cities/us/niceville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2156136",
          "name": "Nicholasville",
          "country_code": "US",
          "slug": "nicholasville",
          "canonical_path": "/cities/us/nicholasville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1753000",
          "name": "Niles",
          "country_code": "US",
          "slug": "niles-il",
          "canonical_path": "/cities/us/niles-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2657760",
          "name": "Niles",
          "country_code": "US",
          "slug": "niles-mi",
          "canonical_path": "/cities/us/niles-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3955916",
          "name": "Niles",
          "country_code": "US",
          "slug": "niles-oh",
          "canonical_path": "/cities/us/niles-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5377100",
          "name": "Nipomo",
          "country_code": "US",
          "slug": "nipomo",
          "canonical_path": "/cities/us/nipomo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5459068",
          "name": "Nitro",
          "country_code": "US",
          "slug": "nitro",
          "canonical_path": "/cities/us/nitro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5851484",
          "name": "Niu Valley",
          "country_code": "US",
          "slug": "niu-valley",
          "canonical_path": "/cities/us/niu-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2952616",
          "name": "Nixa",
          "country_code": "US",
          "slug": "nixa",
          "canonical_path": "/cities/us/nixa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4052150",
          "name": "Noble",
          "country_code": "US",
          "slug": "noble",
          "canonical_path": "/cities/us/noble/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1854180",
          "name": "Noblesville",
          "country_code": "US",
          "slug": "noblesville",
          "canonical_path": "/cities/us/noblesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0449640",
          "name": "Nogales",
          "country_code": "US",
          "slug": "nogales",
          "canonical_path": "/cities/us/nogales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4851708",
          "name": "Nolanville",
          "country_code": "US",
          "slug": "nolanville",
          "canonical_path": "/cities/us/nolanville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4753460",
          "name": "Nolensville",
          "country_code": "US",
          "slug": "nolensville",
          "canonical_path": "/cities/us/nolensville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526897",
          "name": "NoMa",
          "country_code": "US",
          "slug": "noma",
          "canonical_path": "/cities/us/noma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0651560",
          "name": "Norco",
          "country_code": "US",
          "slug": "norco",
          "canonical_path": "/cities/us/norco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1355776",
          "name": "Norcross",
          "country_code": "US",
          "slug": "norcross",
          "canonical_path": "/cities/us/norcross/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4945453",
          "name": "Norfolk",
          "country_code": "US",
          "slug": "norfolk",
          "canonical_path": "/cities/us/norfolk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3134615",
          "name": "Norfolk",
          "country_code": "US",
          "slug": "norfolk-ne",
          "canonical_path": "/cities/us/norfolk-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5157000",
          "name": "Norfolk",
          "country_code": "US",
          "slug": "norfolk-va",
          "canonical_path": "/cities/us/norfolk-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1753234",
          "name": "Normal",
          "country_code": "US",
          "slug": "normal",
          "canonical_path": "/cities/us/normal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4052500",
          "name": "Norman",
          "country_code": "US",
          "slug": "norman",
          "canonical_path": "/cities/us/norman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5349415",
          "name": "Normandy Park",
          "country_code": "US",
          "slug": "normandy-park",
          "canonical_path": "/cities/us/normandy-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1753377",
          "name": "Norridge",
          "country_code": "US",
          "slug": "norridge",
          "canonical_path": "/cities/us/norridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5203506",
          "name": "Norristown",
          "country_code": "US",
          "slug": "norristown",
          "canonical_path": "/cities/us/norristown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4254656",
          "name": "Norristown borough",
          "country_code": "US",
          "slug": "norristown-borough",
          "canonical_path": "/cities/us/norristown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2546225",
          "name": "North Adams",
          "country_code": "US",
          "slug": "north-adams",
          "canonical_path": "/cities/us/north-adams/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128884",
          "name": "North Amityville",
          "country_code": "US",
          "slug": "north-amityville",
          "canonical_path": "/cities/us/north-amityville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4832272",
          "name": "North Andover",
          "country_code": "US",
          "slug": "north-andover",
          "canonical_path": "/cities/us/north-andover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101873",
          "name": "North Arlington",
          "country_code": "US",
          "slug": "north-arlington",
          "canonical_path": "/cities/us/north-arlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3452320",
          "name": "North Arlington borough",
          "country_code": "US",
          "slug": "north-arlington-borough",
          "canonical_path": "/cities/us/north-arlington-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2546598",
          "name": "North Attleborough Town",
          "country_code": "US",
          "slug": "north-attleborough-town",
          "canonical_path": "/cities/us/north-attleborough-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5377266",
          "name": "North Auburn",
          "country_code": "US",
          "slug": "north-auburn",
          "canonical_path": "/cities/us/north-auburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4550695",
          "name": "North Augusta",
          "country_code": "US",
          "slug": "north-augusta",
          "canonical_path": "/cities/us/north-augusta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1753442",
          "name": "North Aurora",
          "country_code": "US",
          "slug": "north-aurora",
          "canonical_path": "/cities/us/north-aurora/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128886",
          "name": "North Babylon",
          "country_code": "US",
          "slug": "north-babylon",
          "canonical_path": "/cities/us/north-babylon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128898",
          "name": "North Bay Shore",
          "country_code": "US",
          "slug": "north-bay-shore",
          "canonical_path": "/cities/us/north-bay-shore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1249225",
          "name": "North Bay Village",
          "country_code": "US",
          "slug": "north-bay-village",
          "canonical_path": "/cities/us/north-bay-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128904",
          "name": "North Bellmore",
          "country_code": "US",
          "slug": "north-bellmore",
          "canonical_path": "/cities/us/north-bellmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5128905",
          "name": "North Bellport",
          "country_code": "US",
          "slug": "north-bellport",
          "canonical_path": "/cities/us/north-bellport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4153000",
          "name": "North Bend",
          "country_code": "US",
          "slug": "north-bend-or",
          "canonical_path": "/cities/us/north-bend-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5349485",
          "name": "North Bend",
          "country_code": "US",
          "slug": "north-bend-wa",
          "canonical_path": "/cities/us/north-bend-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4363843",
          "name": "North Bethesda",
          "country_code": "US",
          "slug": "north-bethesda",
          "canonical_path": "/cities/us/north-bethesda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2746798",
          "name": "North Branch",
          "country_code": "US",
          "slug": "north-branch",
          "canonical_path": "/cities/us/north-branch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4839636",
          "name": "North Branford",
          "country_code": "US",
          "slug": "north-branford",
          "canonical_path": "/cities/us/north-branford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101901",
          "name": "North Caldwell",
          "country_code": "US",
          "slug": "north-caldwell",
          "canonical_path": "/cities/us/north-caldwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3452620",
          "name": "North Caldwell borough",
          "country_code": "US",
          "slug": "north-caldwell-borough",
          "canonical_path": "/cities/us/north-caldwell-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3956294",
          "name": "North Canton",
          "country_code": "US",
          "slug": "north-canton",
          "canonical_path": "/cities/us/north-canton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4550875",
          "name": "North Charleston",
          "country_code": "US",
          "slug": "north-charleston",
          "canonical_path": "/cities/us/north-charleston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1753559",
          "name": "North Chicago",
          "country_code": "US",
          "slug": "north-chicago",
          "canonical_path": "/cities/us/north-chicago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3956322",
          "name": "North College Hill",
          "country_code": "US",
          "slug": "north-college-hill",
          "canonical_path": "/cities/us/north-college-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5804953",
          "name": "North Creek",
          "country_code": "US",
          "slug": "north-creek",
          "canonical_path": "/cities/us/north-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4212992",
          "name": "North Decatur",
          "country_code": "US",
          "slug": "north-decatur",
          "canonical_path": "/cities/us/north-decatur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4212995",
          "name": "North Druid Hills",
          "country_code": "US",
          "slug": "north-druid-hills",
          "canonical_path": "/cities/us/north-druid-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5558000",
          "name": "North Fond du Lac",
          "country_code": "US",
          "slug": "north-fond-du-lac",
          "canonical_path": "/cities/us/north-fond-du-lac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4166195",
          "name": "North Fort Myers",
          "country_code": "US",
          "slug": "north-fort-myers",
          "canonical_path": "/cities/us/north-fort-myers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129050",
          "name": "North Gates",
          "country_code": "US",
          "slug": "north-gates",
          "canonical_path": "/cities/us/north-gates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101922",
          "name": "North Haledon",
          "country_code": "US",
          "slug": "north-haledon",
          "canonical_path": "/cities/us/north-haledon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3453040",
          "name": "North Haledon borough",
          "country_code": "US",
          "slug": "north-haledon-borough",
          "canonical_path": "/cities/us/north-haledon-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4839704",
          "name": "North Haven",
          "country_code": "US",
          "slug": "north-haven",
          "canonical_path": "/cities/us/north-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5377640",
          "name": "North Highlands",
          "country_code": "US",
          "slug": "north-highlands",
          "canonical_path": "/cities/us/north-highlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3653022",
          "name": "North Hills",
          "country_code": "US",
          "slug": "north-hills",
          "canonical_path": "/cities/us/north-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2953102",
          "name": "North Kansas City",
          "country_code": "US",
          "slug": "north-kansas-city",
          "canonical_path": "/cities/us/north-kansas-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4363960",
          "name": "North Kensington",
          "country_code": "US",
          "slug": "north-kensington",
          "canonical_path": "/cities/us/north-kensington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5223672",
          "name": "North Kingstown",
          "country_code": "US",
          "slug": "north-kingstown",
          "canonical_path": "/cities/us/north-kingstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3251800",
          "name": "North Las Vegas",
          "country_code": "US",
          "slug": "north-las-vegas",
          "canonical_path": "/cities/us/north-las-vegas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1249425",
          "name": "North Lauderdale",
          "country_code": "US",
          "slug": "north-lauderdale",
          "canonical_path": "/cities/us/north-lauderdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1957360",
          "name": "North Liberty",
          "country_code": "US",
          "slug": "north-liberty",
          "canonical_path": "/cities/us/north-liberty/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129125",
          "name": "North Lindenhurst",
          "country_code": "US",
          "slug": "north-lindenhurst",
          "canonical_path": "/cities/us/north-lindenhurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0550450",
          "name": "North Little Rock",
          "country_code": "US",
          "slug": "north-little-rock",
          "canonical_path": "/cities/us/north-little-rock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4954990",
          "name": "North Logan",
          "country_code": "US",
          "slug": "north-logan",
          "canonical_path": "/cities/us/north-logan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5164840",
          "name": "North Madison",
          "country_code": "US",
          "slug": "north-madison-oh-085",
          "canonical_path": "/cities/us/north-madison-oh-085/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1854954",
          "name": "North Manchester",
          "country_code": "US",
          "slug": "north-manchester",
          "canonical_path": "/cities/us/north-manchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2747068",
          "name": "North Mankato",
          "country_code": "US",
          "slug": "north-mankato",
          "canonical_path": "/cities/us/north-mankato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129134",
          "name": "North Massapequa",
          "country_code": "US",
          "slug": "north-massapequa",
          "canonical_path": "/cities/us/north-massapequa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129141",
          "name": "North Merrick",
          "country_code": "US",
          "slug": "north-merrick",
          "canonical_path": "/cities/us/north-merrick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1249450",
          "name": "North Miami",
          "country_code": "US",
          "slug": "north-miami",
          "canonical_path": "/cities/us/north-miami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1249475",
          "name": "North Miami Beach",
          "country_code": "US",
          "slug": "north-miami-beach",
          "canonical_path": "/cities/us/north-miami-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4551280",
          "name": "North Myrtle Beach",
          "country_code": "US",
          "slug": "north-myrtle-beach",
          "canonical_path": "/cities/us/north-myrtle-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129147",
          "name": "North New Hyde Park",
          "country_code": "US",
          "slug": "north-new-hyde-park",
          "canonical_path": "/cities/us/north-new-hyde-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2747104",
          "name": "North Oaks",
          "country_code": "US",
          "slug": "north-oaks",
          "canonical_path": "/cities/us/north-oaks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4955100",
          "name": "North Ogden",
          "country_code": "US",
          "slug": "north-ogden",
          "canonical_path": "/cities/us/north-ogden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3956882",
          "name": "North Olmsted",
          "country_code": "US",
          "slug": "north-olmsted",
          "canonical_path": "/cities/us/north-olmsted/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1249600",
          "name": "North Palm Beach",
          "country_code": "US",
          "slug": "north-palm-beach",
          "canonical_path": "/cities/us/north-palm-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129157",
          "name": "North Patchogue",
          "country_code": "US",
          "slug": "north-patchogue",
          "canonical_path": "/cities/us/north-patchogue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5101938",
          "name": "North Plainfield",
          "country_code": "US",
          "slug": "north-plainfield",
          "canonical_path": "/cities/us/north-plainfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3453280",
          "name": "North Plainfield borough",
          "country_code": "US",
          "slug": "north-plainfield-borough",
          "canonical_path": "/cities/us/north-plainfield-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3135000",
          "name": "North Platte",
          "country_code": "US",
          "slug": "north-platte",
          "canonical_path": "/cities/us/north-platte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1249675",
          "name": "North Port",
          "country_code": "US",
          "slug": "north-port",
          "canonical_path": "/cities/us/north-port/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4363990",
          "name": "North Potomac",
          "country_code": "US",
          "slug": "north-potomac",
          "canonical_path": "/cities/us/north-potomac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5223681",
          "name": "North Providence",
          "country_code": "US",
          "slug": "north-providence",
          "canonical_path": "/cities/us/north-providence/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4945734",
          "name": "North Reading",
          "country_code": "US",
          "slug": "north-reading",
          "canonical_path": "/cities/us/north-reading/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4852356",
          "name": "North Richland Hills",
          "country_code": "US",
          "slug": "north-richland-hills",
          "canonical_path": "/cities/us/north-richland-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3956966",
          "name": "North Ridgeville",
          "country_code": "US",
          "slug": "north-ridgeville",
          "canonical_path": "/cities/us/north-ridgeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1754144",
          "name": "North Riverside",
          "country_code": "US",
          "slug": "north-riverside",
          "canonical_path": "/cities/us/north-riverside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3957008",
          "name": "North Royalton",
          "country_code": "US",
          "slug": "north-royalton",
          "canonical_path": "/cities/us/north-royalton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5039587",
          "name": "North Saint Paul",
          "country_code": "US",
          "slug": "north-saint-paul",
          "canonical_path": "/cities/us/north-saint-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4955210",
          "name": "North Salt Lake",
          "country_code": "US",
          "slug": "north-salt-lake",
          "canonical_path": "/cities/us/north-salt-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4166298",
          "name": "North Sarasota",
          "country_code": "US",
          "slug": "north-sarasota",
          "canonical_path": "/cities/us/north-sarasota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4945764",
          "name": "North Scituate",
          "country_code": "US",
          "slug": "north-scituate",
          "canonical_path": "/cities/us/north-scituate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5223687",
          "name": "North Smithfield",
          "country_code": "US",
          "slug": "north-smithfield",
          "canonical_path": "/cities/us/north-smithfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4776472",
          "name": "North Springfield",
          "country_code": "US",
          "slug": "north-springfield",
          "canonical_path": "/cities/us/north-springfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2747221",
          "name": "North St. Paul",
          "country_code": "US",
          "slug": "north-st-paul",
          "canonical_path": "/cities/us/north-st-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4143897",
          "name": "North Star",
          "country_code": "US",
          "slug": "north-star",
          "canonical_path": "/cities/us/north-star/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3653660",
          "name": "North Syracuse",
          "country_code": "US",
          "slug": "north-syracuse",
          "canonical_path": "/cities/us/north-syracuse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3653682",
          "name": "North Tonawanda",
          "country_code": "US",
          "slug": "north-tonawanda",
          "canonical_path": "/cities/us/north-tonawanda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5404122",
          "name": "North Tustin",
          "country_code": "US",
          "slug": "north-tustin",
          "canonical_path": "/cities/us/north-tustin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5481793",
          "name": "North Valley",
          "country_code": "US",
          "slug": "north-valley",
          "canonical_path": "/cities/us/north-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129248",
          "name": "North Valley Stream",
          "country_code": "US",
          "slug": "north-valley-stream",
          "canonical_path": "/cities/us/north-valley-stream/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1855116",
          "name": "North Vernon",
          "country_code": "US",
          "slug": "north-vernon",
          "canonical_path": "/cities/us/north-vernon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129254",
          "name": "North Wantagh",
          "country_code": "US",
          "slug": "north-wantagh",
          "canonical_path": "/cities/us/north-wantagh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260514",
          "name": "North Weeki Wachee",
          "country_code": "US",
          "slug": "north-weeki-wachee",
          "canonical_path": "/cities/us/north-weeki-wachee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2546330",
          "name": "Northampton",
          "country_code": "US",
          "slug": "northampton",
          "canonical_path": "/cities/us/northampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4254696",
          "name": "Northampton borough",
          "country_code": "US",
          "slug": "northampton-borough",
          "canonical_path": "/cities/us/northampton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4945840",
          "name": "Northborough",
          "country_code": "US",
          "slug": "northborough",
          "canonical_path": "/cities/us/northborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4945848",
          "name": "Northbridge",
          "country_code": "US",
          "slug": "northbridge",
          "canonical_path": "/cities/us/northbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1753481",
          "name": "Northbrook",
          "country_code": "US",
          "slug": "northbrook",
          "canonical_path": "/cities/us/northbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8479411",
          "name": "Northdale",
          "country_code": "US",
          "slug": "northdale",
          "canonical_path": "/cities/us/northdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5090459",
          "name": "Northfield",
          "country_code": "US",
          "slug": "northfield",
          "canonical_path": "/cities/us/northfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1753663",
          "name": "Northfield",
          "country_code": "US",
          "slug": "northfield-il",
          "canonical_path": "/cities/us/northfield-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2746924",
          "name": "Northfield",
          "country_code": "US",
          "slug": "northfield-mn",
          "canonical_path": "/cities/us/northfield-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3452950",
          "name": "Northfield",
          "country_code": "US",
          "slug": "northfield-nj",
          "canonical_path": "/cities/us/northfield-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4519938",
          "name": "Northgate",
          "country_code": "US",
          "slug": "northgate",
          "canonical_path": "/cities/us/northgate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0854330",
          "name": "Northglenn",
          "country_code": "US",
          "slug": "northglenn",
          "canonical_path": "/cities/us/northglenn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1753871",
          "name": "Northlake",
          "country_code": "US",
          "slug": "northlake-il",
          "canonical_path": "/cities/us/northlake-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4852212",
          "name": "Northlake",
          "country_code": "US",
          "slug": "northlake-tx",
          "canonical_path": "/cities/us/northlake-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0155200",
          "name": "Northport",
          "country_code": "US",
          "slug": "northport-al",
          "canonical_path": "/cities/us/northport-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3653396",
          "name": "Northport",
          "country_code": "US",
          "slug": "northport-ny",
          "canonical_path": "/cities/us/northport-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4519950",
          "name": "Northridge",
          "country_code": "US",
          "slug": "northridge",
          "canonical_path": "/cities/us/northridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129310",
          "name": "Northumberland",
          "country_code": "US",
          "slug": "northumberland",
          "canonical_path": "/cities/us/northumberland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5003952",
          "name": "Northview",
          "country_code": "US",
          "slug": "northview",
          "canonical_path": "/cities/us/northview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2658980",
          "name": "Northville",
          "country_code": "US",
          "slug": "northville",
          "canonical_path": "/cities/us/northville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258393",
          "name": "Northwest Harborcreek",
          "country_code": "US",
          "slug": "northwest-harborcreek",
          "canonical_path": "/cities/us/northwest-harborcreek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526898",
          "name": "Northwest One",
          "country_code": "US",
          "slug": "northwest-one",
          "canonical_path": "/cities/us/northwest-one/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3957190",
          "name": "Northwood",
          "country_code": "US",
          "slug": "northwood",
          "canonical_path": "/cities/us/northwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3957260",
          "name": "Norton",
          "country_code": "US",
          "slug": "norton",
          "canonical_path": "/cities/us/norton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2659140",
          "name": "Norton Shores",
          "country_code": "US",
          "slug": "norton-shores",
          "canonical_path": "/cities/us/norton-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0652526",
          "name": "Norwalk",
          "country_code": "US",
          "slug": "norwalk-ca",
          "canonical_path": "/cities/us/norwalk-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0955990",
          "name": "Norwalk",
          "country_code": "US",
          "slug": "norwalk-ct",
          "canonical_path": "/cities/us/norwalk-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1957675",
          "name": "Norwalk",
          "country_code": "US",
          "slug": "norwalk-ia",
          "canonical_path": "/cities/us/norwalk-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3957302",
          "name": "Norwalk",
          "country_code": "US",
          "slug": "norwalk-oh",
          "canonical_path": "/cities/us/norwalk-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4945936",
          "name": "Norwell",
          "country_code": "US",
          "slug": "norwell",
          "canonical_path": "/cities/us/norwell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0956200",
          "name": "Norwich",
          "country_code": "US",
          "slug": "norwich-ct",
          "canonical_path": "/cities/us/norwich-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3653979",
          "name": "Norwich",
          "country_code": "US",
          "slug": "norwich-ny",
          "canonical_path": "/cities/us/norwich-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3957386",
          "name": "Norwood",
          "country_code": "US",
          "slug": "norwood",
          "canonical_path": "/cities/us/norwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3453610",
          "name": "Norwood borough",
          "country_code": "US",
          "slug": "norwood-borough-nj",
          "canonical_path": "/cities/us/norwood-borough-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4255664",
          "name": "Norwood borough",
          "country_code": "US",
          "slug": "norwood-borough-pa",
          "canonical_path": "/cities/us/norwood-borough-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8469294",
          "name": "Notre Dame",
          "country_code": "US",
          "slug": "notre-dame",
          "canonical_path": "/cities/us/notre-dame/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0652582",
          "name": "Novato",
          "country_code": "US",
          "slug": "novato",
          "canonical_path": "/cities/us/novato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2659440",
          "name": "Novi",
          "country_code": "US",
          "slug": "novi",
          "canonical_path": "/cities/us/novi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5378087",
          "name": "Nuevo",
          "country_code": "US",
          "slug": "nuevo",
          "canonical_path": "/cities/us/nuevo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3654100",
          "name": "Nyack",
          "country_code": "US",
          "slug": "nyack",
          "canonical_path": "/cities/us/nyack/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1755249",
          "name": "O'Fallon",
          "country_code": "US",
          "slug": "o-fallon-il",
          "canonical_path": "/cities/us/o-fallon-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2954074",
          "name": "O'Fallon",
          "country_code": "US",
          "slug": "o-fallon-mo",
          "canonical_path": "/cities/us/o-fallon-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1754534",
          "name": "Oak Brook",
          "country_code": "US",
          "slug": "oak-brook",
          "canonical_path": "/cities/us/oak-brook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5558800",
          "name": "Oak Creek",
          "country_code": "US",
          "slug": "oak-creek",
          "canonical_path": "/cities/us/oak-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1754638",
          "name": "Oak Forest",
          "country_code": "US",
          "slug": "oak-forest",
          "canonical_path": "/cities/us/oak-forest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5743731",
          "name": "Oak Grove",
          "country_code": "US",
          "slug": "oak-grove-or-005",
          "canonical_path": "/cities/us/oak-grove-or-005/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260518",
          "name": "Oak Grove",
          "country_code": "US",
          "slug": "oak-grove-sc-063",
          "canonical_path": "/cities/us/oak-grove-sc-063/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2157090",
          "name": "Oak Grove",
          "country_code": "US",
          "slug": "oak-grove-ky",
          "canonical_path": "/cities/us/oak-grove-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2747690",
          "name": "Oak Grove",
          "country_code": "US",
          "slug": "oak-grove-mn",
          "canonical_path": "/cities/us/oak-grove-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2953624",
          "name": "Oak Grove",
          "country_code": "US",
          "slug": "oak-grove-mo",
          "canonical_path": "/cities/us/oak-grove-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5350360",
          "name": "Oak Harbor",
          "country_code": "US",
          "slug": "oak-harbor",
          "canonical_path": "/cities/us/oak-harbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5460028",
          "name": "Oak Hill",
          "country_code": "US",
          "slug": "oak-hill",
          "canonical_path": "/cities/us/oak-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5378354",
          "name": "Oak Hills",
          "country_code": "US",
          "slug": "oak-hills",
          "canonical_path": "/cities/us/oak-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5743753",
          "name": "Oak Hills",
          "country_code": "US",
          "slug": "oak-hills-or-067",
          "canonical_path": "/cities/us/oak-hills-or-067/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3748345",
          "name": "Oak Island",
          "country_code": "US",
          "slug": "oak-island",
          "canonical_path": "/cities/us/oak-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1754820",
          "name": "Oak Lawn",
          "country_code": "US",
          "slug": "oak-lawn",
          "canonical_path": "/cities/us/oak-lawn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5378408",
          "name": "Oak Park",
          "country_code": "US",
          "slug": "oak-park-ca-111",
          "canonical_path": "/cities/us/oak-park-ca-111/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1754885",
          "name": "Oak Park",
          "country_code": "US",
          "slug": "oak-park-il",
          "canonical_path": "/cities/us/oak-park-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2659920",
          "name": "Oak Park",
          "country_code": "US",
          "slug": "oak-park-mi",
          "canonical_path": "/cities/us/oak-park-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4853130",
          "name": "Oak Point",
          "country_code": "US",
          "slug": "oak-point",
          "canonical_path": "/cities/us/oak-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4166583",
          "name": "Oak Ridge",
          "country_code": "US",
          "slug": "oak-ridge",
          "canonical_path": "/cities/us/oak-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3748480",
          "name": "Oak Ridge",
          "country_code": "US",
          "slug": "oak-ridge-nc",
          "canonical_path": "/cities/us/oak-ridge-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4755120",
          "name": "Oak Ridge",
          "country_code": "US",
          "slug": "oak-ridge-tn",
          "canonical_path": "/cities/us/oak-ridge-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129541",
          "name": "Oakdale",
          "country_code": "US",
          "slug": "oakdale-ny-103",
          "canonical_path": "/cities/us/oakdale-ny-103/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0652694",
          "name": "Oakdale",
          "country_code": "US",
          "slug": "oakdale-ca",
          "canonical_path": "/cities/us/oakdale-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2256540",
          "name": "Oakdale",
          "country_code": "US",
          "slug": "oakdale-la",
          "canonical_path": "/cities/us/oakdale-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2747680",
          "name": "Oakdale",
          "country_code": "US",
          "slug": "oakdale-mn",
          "canonical_path": "/cities/us/oakdale-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102118",
          "name": "Oakland",
          "country_code": "US",
          "slug": "oakland",
          "canonical_path": "/cities/us/oakland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0653000",
          "name": "Oakland",
          "country_code": "US",
          "slug": "oakland-ca",
          "canonical_path": "/cities/us/oakland-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4754920",
          "name": "Oakland",
          "country_code": "US",
          "slug": "oakland-tn",
          "canonical_path": "/cities/us/oakland-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3453850",
          "name": "Oakland borough",
          "country_code": "US",
          "slug": "oakland-borough",
          "canonical_path": "/cities/us/oakland-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1250575",
          "name": "Oakland Park",
          "country_code": "US",
          "slug": "oakland-park",
          "canonical_path": "/cities/us/oakland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315237",
          "name": "Oakleaf Plantation",
          "country_code": "US",
          "slug": "oakleaf-plantation",
          "canonical_path": "/cities/us/oakleaf-plantation/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0653070",
          "name": "Oakley",
          "country_code": "US",
          "slug": "oakley",
          "canonical_path": "/cities/us/oakley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5204203",
          "name": "Oakmont",
          "country_code": "US",
          "slug": "oakmont",
          "canonical_path": "/cities/us/oakmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4256088",
          "name": "Oakmont borough",
          "country_code": "US",
          "slug": "oakmont-borough",
          "canonical_path": "/cities/us/oakmont-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4776970",
          "name": "Oakton",
          "country_code": "US",
          "slug": "oakton",
          "canonical_path": "/cities/us/oakton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4401618",
          "name": "Oakville",
          "country_code": "US",
          "slug": "oakville",
          "canonical_path": "/cities/us/oakville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4839921",
          "name": "Oakville",
          "country_code": "US",
          "slug": "oakville-ct-140",
          "canonical_path": "/cities/us/oakville-ct-140/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1357260",
          "name": "Oakwood",
          "country_code": "US",
          "slug": "oakwood-ga",
          "canonical_path": "/cities/us/oakwood-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3957764",
          "name": "Oakwood",
          "country_code": "US",
          "slug": "oakwood-oh",
          "canonical_path": "/cities/us/oakwood-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5378617",
          "name": "Oasis",
          "country_code": "US",
          "slug": "oasis",
          "canonical_path": "/cities/us/oasis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262019",
          "name": "Oatfield",
          "country_code": "US",
          "slug": "oatfield",
          "canonical_path": "/cities/us/oatfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3957834",
          "name": "Oberlin",
          "country_code": "US",
          "slug": "oberlin",
          "canonical_path": "/cities/us/oberlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3957862",
          "name": "Obetz",
          "country_code": "US",
          "slug": "obetz",
          "canonical_path": "/cities/us/obetz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1250750",
          "name": "Ocala",
          "country_code": "US",
          "slug": "ocala",
          "canonical_path": "/cities/us/ocala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4503346",
          "name": "Ocean Acres",
          "country_code": "US",
          "slug": "ocean-acres",
          "canonical_path": "/cities/us/ocean-acres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4166723",
          "name": "Ocean City",
          "country_code": "US",
          "slug": "ocean-city",
          "canonical_path": "/cities/us/ocean-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2458225",
          "name": "Ocean City",
          "country_code": "US",
          "slug": "ocean-city-md",
          "canonical_path": "/cities/us/ocean-city-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3454360",
          "name": "Ocean City",
          "country_code": "US",
          "slug": "ocean-city-nj",
          "canonical_path": "/cities/us/ocean-city-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4364326",
          "name": "Ocean Pines",
          "country_code": "US",
          "slug": "ocean-pines",
          "canonical_path": "/cities/us/ocean-pines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315246",
          "name": "Ocean Pointe",
          "country_code": "US",
          "slug": "ocean-pointe",
          "canonical_path": "/cities/us/ocean-pointe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5350570",
          "name": "Ocean Shores",
          "country_code": "US",
          "slug": "ocean-shores",
          "canonical_path": "/cities/us/ocean-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2853520",
          "name": "Ocean Springs",
          "country_code": "US",
          "slug": "ocean-springs",
          "canonical_path": "/cities/us/ocean-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5378763",
          "name": "Oceano",
          "country_code": "US",
          "slug": "oceano",
          "canonical_path": "/cities/us/oceano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102147",
          "name": "Oceanport",
          "country_code": "US",
          "slug": "oceanport",
          "canonical_path": "/cities/us/oceanport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3454570",
          "name": "Oceanport borough",
          "country_code": "US",
          "slug": "oceanport-borough",
          "canonical_path": "/cities/us/oceanport-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0653322",
          "name": "Oceanside",
          "country_code": "US",
          "slug": "oceanside",
          "canonical_path": "/cities/us/oceanside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1251075",
          "name": "Ocoee",
          "country_code": "US",
          "slug": "ocoee",
          "canonical_path": "/cities/us/ocoee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5559250",
          "name": "Oconomowoc",
          "country_code": "US",
          "slug": "oconomowoc",
          "canonical_path": "/cities/us/oconomowoc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4364362",
          "name": "Odenton",
          "country_code": "US",
          "slug": "odenton",
          "canonical_path": "/cities/us/odenton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0156400",
          "name": "Odenville",
          "country_code": "US",
          "slug": "odenville",
          "canonical_path": "/cities/us/odenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4166787",
          "name": "Odessa",
          "country_code": "US",
          "slug": "odessa",
          "canonical_path": "/cities/us/odessa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2954038",
          "name": "Odessa",
          "country_code": "US",
          "slug": "odessa-mo",
          "canonical_path": "/cities/us/odessa-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4853388",
          "name": "Odessa",
          "country_code": "US",
          "slug": "odessa-tx",
          "canonical_path": "/cities/us/odessa-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1958620",
          "name": "Oelwein",
          "country_code": "US",
          "slug": "oelwein",
          "canonical_path": "/cities/us/oelwein/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4955980",
          "name": "Ogden",
          "country_code": "US",
          "slug": "ogden",
          "canonical_path": "/cities/us/ogden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3654485",
          "name": "Ogdensburg",
          "country_code": "US",
          "slug": "ogdensburg",
          "canonical_path": "/cities/us/ogdensburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4256456",
          "name": "Oil City",
          "country_code": "US",
          "slug": "oil-city",
          "canonical_path": "/cities/us/oil-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5378870",
          "name": "Oildale",
          "country_code": "US",
          "slug": "oildale",
          "canonical_path": "/cities/us/oildale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0653476",
          "name": "Ojai",
          "country_code": "US",
          "slug": "ojai",
          "canonical_path": "/cities/us/ojai/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4166805",
          "name": "Ojus",
          "country_code": "US",
          "slug": "ojus",
          "canonical_path": "/cities/us/ojus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1251200",
          "name": "Okeechobee",
          "country_code": "US",
          "slug": "okeechobee",
          "canonical_path": "/cities/us/okeechobee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5004359",
          "name": "Okemos",
          "country_code": "US",
          "slug": "okemos",
          "canonical_path": "/cities/us/okemos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4055000",
          "name": "Oklahoma City",
          "country_code": "US",
          "slug": "oklahoma-city",
          "canonical_path": "/cities/us/oklahoma-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4055150",
          "name": "Okmulgee",
          "country_code": "US",
          "slug": "okmulgee",
          "canonical_path": "/cities/us/okmulgee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2052575",
          "name": "Olathe",
          "country_code": "US",
          "slug": "olathe",
          "canonical_path": "/cities/us/olathe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129662",
          "name": "Old Bethpage",
          "country_code": "US",
          "slug": "old-bethpage",
          "canonical_path": "/cities/us/old-bethpage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102162",
          "name": "Old Bridge",
          "country_code": "US",
          "slug": "old-bridge",
          "canonical_path": "/cities/us/old-bridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315205",
          "name": "Old Fig Garden",
          "country_code": "US",
          "slug": "old-fig-garden",
          "canonical_path": "/cities/us/old-fig-garden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5204331",
          "name": "Old Forge",
          "country_code": "US",
          "slug": "old-forge",
          "canonical_path": "/cities/us/old-forge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4256576",
          "name": "Old Forge borough",
          "country_code": "US",
          "slug": "old-forge-borough",
          "canonical_path": "/cities/us/old-forge-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4839983",
          "name": "Old Greenwich",
          "country_code": "US",
          "slug": "old-greenwich",
          "canonical_path": "/cities/us/old-greenwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315274",
          "name": "Old Jamestown",
          "country_code": "US",
          "slug": "old-jamestown",
          "canonical_path": "/cities/us/old-jamestown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4974194",
          "name": "Old Orchard Beach",
          "country_code": "US",
          "slug": "old-orchard-beach",
          "canonical_path": "/cities/us/old-orchard-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4840035",
          "name": "Old Saybrook",
          "country_code": "US",
          "slug": "old-saybrook",
          "canonical_path": "/cities/us/old-saybrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102190",
          "name": "Old Tappan",
          "country_code": "US",
          "slug": "old-tappan",
          "canonical_path": "/cities/us/old-tappan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3454870",
          "name": "Old Tappan borough",
          "country_code": "US",
          "slug": "old-tappan-borough",
          "canonical_path": "/cities/us/old-tappan-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2355225",
          "name": "Old Town",
          "country_code": "US",
          "slug": "old-town",
          "canonical_path": "/cities/us/old-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3654705",
          "name": "Old Westbury",
          "country_code": "US",
          "slug": "old-westbury",
          "canonical_path": "/cities/us/old-westbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1251350",
          "name": "Oldsmar",
          "country_code": "US",
          "slug": "oldsmar",
          "canonical_path": "/cities/us/oldsmar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3654716",
          "name": "Olean",
          "country_code": "US",
          "slug": "olean",
          "canonical_path": "/cities/us/olean/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2854040",
          "name": "Olive Branch",
          "country_code": "US",
          "slug": "olive-branch",
          "canonical_path": "/cities/us/olive-branch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5379264",
          "name": "Olivehurst",
          "country_code": "US",
          "slug": "olivehurst",
          "canonical_path": "/cities/us/olivehurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2954650",
          "name": "Olivette",
          "country_code": "US",
          "slug": "olivette",
          "canonical_path": "/cities/us/olivette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3958422",
          "name": "Olmsted Falls",
          "country_code": "US",
          "slug": "olmsted-falls",
          "canonical_path": "/cities/us/olmsted-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1755912",
          "name": "Olney",
          "country_code": "US",
          "slug": "olney",
          "canonical_path": "/cities/us/olney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5351300",
          "name": "Olympia",
          "country_code": "US",
          "slug": "olympia",
          "canonical_path": "/cities/us/olympia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4166979",
          "name": "Olympia Heights",
          "country_code": "US",
          "slug": "olympia-heights",
          "canonical_path": "/cities/us/olympia-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5204476",
          "name": "Olyphant",
          "country_code": "US",
          "slug": "olyphant",
          "canonical_path": "/cities/us/olyphant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4256792",
          "name": "Olyphant borough",
          "country_code": "US",
          "slug": "olyphant-borough",
          "canonical_path": "/cities/us/olyphant-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3137000",
          "name": "Omaha",
          "country_code": "US",
          "slug": "omaha",
          "canonical_path": "/cities/us/omaha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5351340",
          "name": "Omak",
          "country_code": "US",
          "slug": "omak",
          "canonical_path": "/cities/us/omak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13405904",
          "name": "On Top of the World",
          "country_code": "US",
          "slug": "on-top-of-the-world",
          "canonical_path": "/cities/us/on-top-of-the-world/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5559925",
          "name": "Onalaska",
          "country_code": "US",
          "slug": "onalaska",
          "canonical_path": "/cities/us/onalaska/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3654837",
          "name": "Oneida",
          "country_code": "US",
          "slug": "oneida",
          "canonical_path": "/cities/us/oneida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0157000",
          "name": "Oneonta",
          "country_code": "US",
          "slug": "oneonta-al",
          "canonical_path": "/cities/us/oneonta-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3654881",
          "name": "Oneonta",
          "country_code": "US",
          "slug": "oneonta-ny",
          "canonical_path": "/cities/us/oneonta-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0653896",
          "name": "Ontario",
          "country_code": "US",
          "slug": "ontario-ca",
          "canonical_path": "/cities/us/ontario-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3958520",
          "name": "Ontario",
          "country_code": "US",
          "slug": "ontario-oh",
          "canonical_path": "/cities/us/ontario-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4154900",
          "name": "Ontario",
          "country_code": "US",
          "slug": "ontario-or",
          "canonical_path": "/cities/us/ontario-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1251650",
          "name": "Opa-locka",
          "country_code": "US",
          "slug": "opa-locka",
          "canonical_path": "/cities/us/opa-locka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0157048",
          "name": "Opelika",
          "country_code": "US",
          "slug": "opelika",
          "canonical_path": "/cities/us/opelika/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2258045",
          "name": "Opelousas",
          "country_code": "US",
          "slug": "opelousas",
          "canonical_path": "/cities/us/opelousas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0157120",
          "name": "Opp",
          "country_code": "US",
          "slug": "opp",
          "canonical_path": "/cities/us/opp/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102208",
          "name": "Oradell",
          "country_code": "US",
          "slug": "oradell",
          "canonical_path": "/cities/us/oradell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3454990",
          "name": "Oradell borough",
          "country_code": "US",
          "slug": "oradell-borough",
          "canonical_path": "/cities/us/oradell-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4840104",
          "name": "Orange",
          "country_code": "US",
          "slug": "orange",
          "canonical_path": "/cities/us/orange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0653980",
          "name": "Orange",
          "country_code": "US",
          "slug": "orange-ca",
          "canonical_path": "/cities/us/orange-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4854132",
          "name": "Orange",
          "country_code": "US",
          "slug": "orange-tx",
          "canonical_path": "/cities/us/orange-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5159496",
          "name": "Orange",
          "country_code": "US",
          "slug": "orange-va",
          "canonical_path": "/cities/us/orange-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0157144",
          "name": "Orange Beach",
          "country_code": "US",
          "slug": "orange-beach",
          "canonical_path": "/cities/us/orange-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1251825",
          "name": "Orange City",
          "country_code": "US",
          "slug": "orange-city-fl",
          "canonical_path": "/cities/us/orange-city-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1959475",
          "name": "Orange City",
          "country_code": "US",
          "slug": "orange-city-ia",
          "canonical_path": "/cities/us/orange-city-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0654008",
          "name": "Orange Cove",
          "country_code": "US",
          "slug": "orange-cove",
          "canonical_path": "/cities/us/orange-cove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5129919",
          "name": "Orange Lake",
          "country_code": "US",
          "slug": "orange-lake",
          "canonical_path": "/cities/us/orange-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1252125",
          "name": "Orange Park",
          "country_code": "US",
          "slug": "orange-park",
          "canonical_path": "/cities/us/orange-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4553080",
          "name": "Orangeburg",
          "country_code": "US",
          "slug": "orangeburg",
          "canonical_path": "/cities/us/orangeburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5379566",
          "name": "Orangevale",
          "country_code": "US",
          "slug": "orangevale",
          "canonical_path": "/cities/us/orangevale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5670128",
          "name": "Orchard Homes",
          "country_code": "US",
          "slug": "orchard-homes",
          "canonical_path": "/cities/us/orchard-homes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5433549",
          "name": "Orchard Mesa",
          "country_code": "US",
          "slug": "orchard-mesa",
          "canonical_path": "/cities/us/orchard-mesa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5805815",
          "name": "Orchards",
          "country_code": "US",
          "slug": "orchards",
          "canonical_path": "/cities/us/orchards/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5379609",
          "name": "Orcutt",
          "country_code": "US",
          "slug": "orcutt",
          "canonical_path": "/cities/us/orcutt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3958730",
          "name": "Oregon",
          "country_code": "US",
          "slug": "oregon-oh",
          "canonical_path": "/cities/us/oregon-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5560200",
          "name": "Oregon",
          "country_code": "US",
          "slug": "oregon-wi",
          "canonical_path": "/cities/us/oregon-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4155200",
          "name": "Oregon City",
          "country_code": "US",
          "slug": "oregon-city",
          "canonical_path": "/cities/us/oregon-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5204575",
          "name": "Oreland",
          "country_code": "US",
          "slug": "oreland",
          "canonical_path": "/cities/us/oreland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4957300",
          "name": "Orem",
          "country_code": "US",
          "slug": "orem",
          "canonical_path": "/cities/us/orem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0654232",
          "name": "Orinda",
          "country_code": "US",
          "slug": "orinda",
          "canonical_path": "/cities/us/orinda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0654274",
          "name": "Orland",
          "country_code": "US",
          "slug": "orland",
          "canonical_path": "/cities/us/orland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1756627",
          "name": "Orland Hills",
          "country_code": "US",
          "slug": "orland-hills",
          "canonical_path": "/cities/us/orland-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1756640",
          "name": "Orland Park",
          "country_code": "US",
          "slug": "orland-park",
          "canonical_path": "/cities/us/orland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1253000",
          "name": "Orlando",
          "country_code": "US",
          "slug": "orlando",
          "canonical_path": "/cities/us/orlando/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4167176",
          "name": "Orlovista",
          "country_code": "US",
          "slug": "orlovista",
          "canonical_path": "/cities/us/orlovista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1253150",
          "name": "Ormond Beach",
          "country_code": "US",
          "slug": "ormond-beach",
          "canonical_path": "/cities/us/ormond-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4167190",
          "name": "Ormond-by-the-Sea",
          "country_code": "US",
          "slug": "ormond-by-the-sea",
          "canonical_path": "/cities/us/ormond-by-the-sea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0451600",
          "name": "Oro Valley",
          "country_code": "US",
          "slug": "oro-valley",
          "canonical_path": "/cities/us/oro-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2748580",
          "name": "Orono",
          "country_code": "US",
          "slug": "orono",
          "canonical_path": "/cities/us/orono/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5379755",
          "name": "Orosi",
          "country_code": "US",
          "slug": "orosi",
          "canonical_path": "/cities/us/orosi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0654386",
          "name": "Oroville",
          "country_code": "US",
          "slug": "oroville",
          "canonical_path": "/cities/us/oroville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262050",
          "name": "Oroville East",
          "country_code": "US",
          "slug": "oroville-east",
          "canonical_path": "/cities/us/oroville-east/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3958828",
          "name": "Orrville",
          "country_code": "US",
          "slug": "orrville",
          "canonical_path": "/cities/us/orrville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5352005",
          "name": "Orting",
          "country_code": "US",
          "slug": "orting",
          "canonical_path": "/cities/us/orting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2955244",
          "name": "Osage Beach",
          "country_code": "US",
          "slug": "osage-beach",
          "canonical_path": "/cities/us/osage-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0552580",
          "name": "Osceola",
          "country_code": "US",
          "slug": "osceola-ar",
          "canonical_path": "/cities/us/osceola-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1959835",
          "name": "Osceola",
          "country_code": "US",
          "slug": "osceola-ia",
          "canonical_path": "/cities/us/osceola-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5560500",
          "name": "Oshkosh",
          "country_code": "US",
          "slug": "oshkosh",
          "canonical_path": "/cities/us/oshkosh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1959925",
          "name": "Oskaloosa",
          "country_code": "US",
          "slug": "oskaloosa",
          "canonical_path": "/cities/us/oskaloosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4167245",
          "name": "Osprey",
          "country_code": "US",
          "slug": "osprey",
          "canonical_path": "/cities/us/osprey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3655530",
          "name": "Ossining",
          "country_code": "US",
          "slug": "ossining",
          "canonical_path": "/cities/us/ossining/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1756887",
          "name": "Oswego",
          "country_code": "US",
          "slug": "oswego-il",
          "canonical_path": "/cities/us/oswego-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3655574",
          "name": "Oswego",
          "country_code": "US",
          "slug": "oswego-ny",
          "canonical_path": "/cities/us/oswego-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5352215",
          "name": "Othello",
          "country_code": "US",
          "slug": "othello",
          "canonical_path": "/cities/us/othello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262053",
          "name": "Otis Orchards-East Farms",
          "country_code": "US",
          "slug": "otis-orchards-east-farms",
          "canonical_path": "/cities/us/otis-orchards-east-farms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2749138",
          "name": "Otsego",
          "country_code": "US",
          "slug": "otsego",
          "canonical_path": "/cities/us/otsego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1756926",
          "name": "Ottawa",
          "country_code": "US",
          "slug": "ottawa-il",
          "canonical_path": "/cities/us/ottawa-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2053550",
          "name": "Ottawa",
          "country_code": "US",
          "slug": "ottawa-ks",
          "canonical_path": "/cities/us/ottawa-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1960465",
          "name": "Ottumwa",
          "country_code": "US",
          "slug": "ottumwa",
          "canonical_path": "/cities/us/ottumwa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2955550",
          "name": "Overland",
          "country_code": "US",
          "slug": "overland",
          "canonical_path": "/cities/us/overland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2053775",
          "name": "Overland Park",
          "country_code": "US",
          "slug": "overland-park",
          "canonical_path": "/cities/us/overland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4364690",
          "name": "Overlea",
          "country_code": "US",
          "slug": "overlea",
          "canonical_path": "/cities/us/overlea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1253575",
          "name": "Oviedo",
          "country_code": "US",
          "slug": "oviedo",
          "canonical_path": "/cities/us/oviedo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4056650",
          "name": "Owasso",
          "country_code": "US",
          "slug": "owasso",
          "canonical_path": "/cities/us/owasso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2749300",
          "name": "Owatonna",
          "country_code": "US",
          "slug": "owatonna",
          "canonical_path": "/cities/us/owatonna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2158620",
          "name": "Owensboro",
          "country_code": "US",
          "slug": "owensboro",
          "canonical_path": "/cities/us/owensboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4364727",
          "name": "Owings Mills",
          "country_code": "US",
          "slug": "owings-mills",
          "canonical_path": "/cities/us/owings-mills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2661940",
          "name": "Owosso",
          "country_code": "US",
          "slug": "owosso",
          "canonical_path": "/cities/us/owosso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4560185",
          "name": "Oxford",
          "country_code": "US",
          "slug": "oxford",
          "canonical_path": "/cities/us/oxford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4946546",
          "name": "Oxford",
          "country_code": "US",
          "slug": "oxford-ma-027",
          "canonical_path": "/cities/us/oxford-ma-027/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0157576",
          "name": "Oxford",
          "country_code": "US",
          "slug": "oxford-al",
          "canonical_path": "/cities/us/oxford-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2854840",
          "name": "Oxford",
          "country_code": "US",
          "slug": "oxford-ms",
          "canonical_path": "/cities/us/oxford-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3749800",
          "name": "Oxford",
          "country_code": "US",
          "slug": "oxford-nc",
          "canonical_path": "/cities/us/oxford-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3959234",
          "name": "Oxford",
          "country_code": "US",
          "slug": "oxford-oh",
          "canonical_path": "/cities/us/oxford-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4257480",
          "name": "Oxford borough",
          "country_code": "US",
          "slug": "oxford-borough",
          "canonical_path": "/cities/us/oxford-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0654652",
          "name": "Oxnard",
          "country_code": "US",
          "slug": "oxnard",
          "canonical_path": "/cities/us/oxnard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4364759",
          "name": "Oxon Hill",
          "country_code": "US",
          "slug": "oxon-hill",
          "canonical_path": "/cities/us/oxon-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258432",
          "name": "Oxon Hill-Glassmanor",
          "country_code": "US",
          "slug": "oxon-hill-glassmanor",
          "canonical_path": "/cities/us/oxon-hill-glassmanor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5130327",
          "name": "Oyster Bay",
          "country_code": "US",
          "slug": "oyster-bay",
          "canonical_path": "/cities/us/oyster-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0157648",
          "name": "Ozark",
          "country_code": "US",
          "slug": "ozark-al",
          "canonical_path": "/cities/us/ozark-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2955766",
          "name": "Ozark",
          "country_code": "US",
          "slug": "ozark-mo",
          "canonical_path": "/cities/us/ozark-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4167424",
          "name": "Pace",
          "country_code": "US",
          "slug": "pace",
          "canonical_path": "/cities/us/pace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2955910",
          "name": "Pacific",
          "country_code": "US",
          "slug": "pacific-mo",
          "canonical_path": "/cities/us/pacific-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5352495",
          "name": "Pacific",
          "country_code": "US",
          "slug": "pacific-wa",
          "canonical_path": "/cities/us/pacific-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0654848",
          "name": "Pacific Grove",
          "country_code": "US",
          "slug": "pacific-grove",
          "canonical_path": "/cities/us/pacific-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5851889",
          "name": "Pacific Palisades",
          "country_code": "US",
          "slug": "pacific-palisades",
          "canonical_path": "/cities/us/pacific-palisades/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0654806",
          "name": "Pacifica",
          "country_code": "US",
          "slug": "pacifica",
          "canonical_path": "/cities/us/pacifica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2158836",
          "name": "Paducah",
          "country_code": "US",
          "slug": "paducah",
          "canonical_path": "/cities/us/paducah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0451810",
          "name": "Page",
          "country_code": "US",
          "slug": "page",
          "canonical_path": "/cities/us/page/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1253800",
          "name": "Pahokee",
          "country_code": "US",
          "slug": "pahokee",
          "canonical_path": "/cities/us/pahokee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5509851",
          "name": "Pahrump",
          "country_code": "US",
          "slug": "pahrump",
          "canonical_path": "/cities/us/pahrump/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3959416",
          "name": "Painesville",
          "country_code": "US",
          "slug": "painesville",
          "canonical_path": "/cities/us/painesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1757225",
          "name": "Palatine",
          "country_code": "US",
          "slug": "palatine",
          "canonical_path": "/cities/us/palatine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1253875",
          "name": "Palatka",
          "country_code": "US",
          "slug": "palatka",
          "canonical_path": "/cities/us/palatka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5380571",
          "name": "Palermo",
          "country_code": "US",
          "slug": "palermo",
          "canonical_path": "/cities/us/palermo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4854708",
          "name": "Palestine",
          "country_code": "US",
          "slug": "palestine",
          "canonical_path": "/cities/us/palestine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102369",
          "name": "Palisades Park",
          "country_code": "US",
          "slug": "palisades-park",
          "canonical_path": "/cities/us/palisades-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3455770",
          "name": "Palisades Park borough",
          "country_code": "US",
          "slug": "palisades-park-borough",
          "canonical_path": "/cities/us/palisades-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1254000",
          "name": "Palm Bay",
          "country_code": "US",
          "slug": "palm-bay",
          "canonical_path": "/cities/us/palm-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1254025",
          "name": "Palm Beach",
          "country_code": "US",
          "slug": "palm-beach",
          "canonical_path": "/cities/us/palm-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1254075",
          "name": "Palm Beach Gardens",
          "country_code": "US",
          "slug": "palm-beach-gardens",
          "canonical_path": "/cities/us/palm-beach-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4167536",
          "name": "Palm City",
          "country_code": "US",
          "slug": "palm-city",
          "canonical_path": "/cities/us/palm-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1254200",
          "name": "Palm Coast",
          "country_code": "US",
          "slug": "palm-coast",
          "canonical_path": "/cities/us/palm-coast/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0655184",
          "name": "Palm Desert",
          "country_code": "US",
          "slug": "palm-desert",
          "canonical_path": "/cities/us/palm-desert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4167545",
          "name": "Palm Harbor",
          "country_code": "US",
          "slug": "palm-harbor",
          "canonical_path": "/cities/us/palm-harbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260548",
          "name": "Palm River-Clair Mel",
          "country_code": "US",
          "slug": "palm-river-clair-mel",
          "canonical_path": "/cities/us/palm-river-clair-mel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0655254",
          "name": "Palm Springs",
          "country_code": "US",
          "slug": "palm-springs-ca",
          "canonical_path": "/cities/us/palm-springs-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1254450",
          "name": "Palm Springs",
          "country_code": "US",
          "slug": "palm-springs-fl",
          "canonical_path": "/cities/us/palm-springs-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4167594",
          "name": "Palm Springs North",
          "country_code": "US",
          "slug": "palm-springs-north",
          "canonical_path": "/cities/us/palm-springs-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4167601",
          "name": "Palm Valley",
          "country_code": "US",
          "slug": "palm-valley",
          "canonical_path": "/cities/us/palm-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0655156",
          "name": "Palmdale",
          "country_code": "US",
          "slug": "palmdale",
          "canonical_path": "/cities/us/palmdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0258660",
          "name": "Palmer",
          "country_code": "US",
          "slug": "palmer",
          "canonical_path": "/cities/us/palmer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2552144",
          "name": "Palmer Town",
          "country_code": "US",
          "slug": "palmer-town",
          "canonical_path": "/cities/us/palmer-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5204957",
          "name": "Palmerton",
          "country_code": "US",
          "slug": "palmerton",
          "canonical_path": "/cities/us/palmerton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4257696",
          "name": "Palmerton borough",
          "country_code": "US",
          "slug": "palmerton-borough",
          "canonical_path": "/cities/us/palmerton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1254250",
          "name": "Palmetto",
          "country_code": "US",
          "slug": "palmetto-fl",
          "canonical_path": "/cities/us/palmetto-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1358884",
          "name": "Palmetto",
          "country_code": "US",
          "slug": "palmetto-ga",
          "canonical_path": "/cities/us/palmetto-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1254275",
          "name": "Palmetto Bay",
          "country_code": "US",
          "slug": "palmetto-bay",
          "canonical_path": "/cities/us/palmetto-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4167647",
          "name": "Palmetto Estates",
          "country_code": "US",
          "slug": "palmetto-estates",
          "canonical_path": "/cities/us/palmetto-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4854804",
          "name": "Palmview",
          "country_code": "US",
          "slug": "palmview",
          "canonical_path": "/cities/us/palmview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4717341",
          "name": "Palmview South",
          "country_code": "US",
          "slug": "palmview-south",
          "canonical_path": "/cities/us/palmview-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102378",
          "name": "Palmyra",
          "country_code": "US",
          "slug": "palmyra",
          "canonical_path": "/cities/us/palmyra/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5204964",
          "name": "Palmyra",
          "country_code": "US",
          "slug": "palmyra-pa-075",
          "canonical_path": "/cities/us/palmyra-pa-075/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3455800",
          "name": "Palmyra borough",
          "country_code": "US",
          "slug": "palmyra-borough-nj",
          "canonical_path": "/cities/us/palmyra-borough-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4257720",
          "name": "Palmyra borough",
          "country_code": "US",
          "slug": "palmyra-borough-pa",
          "canonical_path": "/cities/us/palmyra-borough-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0655282",
          "name": "Palo Alto",
          "country_code": "US",
          "slug": "palo-alto",
          "canonical_path": "/cities/us/palo-alto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1757381",
          "name": "Palos Heights",
          "country_code": "US",
          "slug": "palos-heights",
          "canonical_path": "/cities/us/palos-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1757394",
          "name": "Palos Hills",
          "country_code": "US",
          "slug": "palos-hills",
          "canonical_path": "/cities/us/palos-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0655380",
          "name": "Palos Verdes Estates",
          "country_code": "US",
          "slug": "palos-verdes-estates",
          "canonical_path": "/cities/us/palos-verdes-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4854912",
          "name": "Pampa",
          "country_code": "US",
          "slug": "pampa",
          "canonical_path": "/cities/us/pampa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1757472",
          "name": "Pana",
          "country_code": "US",
          "slug": "pana",
          "canonical_path": "/cities/us/pana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1254700",
          "name": "Panama City",
          "country_code": "US",
          "slug": "panama-city",
          "canonical_path": "/cities/us/panama-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1254725",
          "name": "Panama City Beach",
          "country_code": "US",
          "slug": "panama-city-beach",
          "canonical_path": "/cities/us/panama-city-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4214693",
          "name": "Panthersville",
          "country_code": "US",
          "slug": "panthersville",
          "canonical_path": "/cities/us/panthersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2054250",
          "name": "Paola",
          "country_code": "US",
          "slug": "paola",
          "canonical_path": "/cities/us/paola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5205037",
          "name": "Paoli",
          "country_code": "US",
          "slug": "paoli",
          "canonical_path": "/cities/us/paoli/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3138295",
          "name": "Papillion",
          "country_code": "US",
          "slug": "papillion",
          "canonical_path": "/cities/us/papillion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0655520",
          "name": "Paradise",
          "country_code": "US",
          "slug": "paradise",
          "canonical_path": "/cities/us/paradise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0452930",
          "name": "Paradise Valley",
          "country_code": "US",
          "slug": "paradise-valley",
          "canonical_path": "/cities/us/paradise-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0553390",
          "name": "Paragould",
          "country_code": "US",
          "slug": "paragould",
          "canonical_path": "/cities/us/paragould/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0655618",
          "name": "Paramount",
          "country_code": "US",
          "slug": "paramount",
          "canonical_path": "/cities/us/paramount/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102387",
          "name": "Paramus",
          "country_code": "US",
          "slug": "paramus",
          "canonical_path": "/cities/us/paramus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3455950",
          "name": "Paramus borough",
          "country_code": "US",
          "slug": "paramus-borough",
          "canonical_path": "/cities/us/paramus-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1757628",
          "name": "Paris",
          "country_code": "US",
          "slug": "paris-il",
          "canonical_path": "/cities/us/paris-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2159196",
          "name": "Paris",
          "country_code": "US",
          "slug": "paris-ky",
          "canonical_path": "/cities/us/paris-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4756720",
          "name": "Paris",
          "country_code": "US",
          "slug": "paris-tn",
          "canonical_path": "/cities/us/paris-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4855080",
          "name": "Paris",
          "country_code": "US",
          "slug": "paris-tx",
          "canonical_path": "/cities/us/paris-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1757654",
          "name": "Park City",
          "country_code": "US",
          "slug": "park-city-il",
          "canonical_path": "/cities/us/park-city-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2054450",
          "name": "Park City",
          "country_code": "US",
          "slug": "park-city-ks",
          "canonical_path": "/cities/us/park-city-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4958070",
          "name": "Park City",
          "country_code": "US",
          "slug": "park-city-ut",
          "canonical_path": "/cities/us/park-city-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1757732",
          "name": "Park Forest",
          "country_code": "US",
          "slug": "park-forest",
          "canonical_path": "/cities/us/park-forest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5205094",
          "name": "Park Forest Village",
          "country_code": "US",
          "slug": "park-forest-village",
          "canonical_path": "/cities/us/park-forest-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2956272",
          "name": "Park Hills",
          "country_code": "US",
          "slug": "park-hills",
          "canonical_path": "/cities/us/park-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1757875",
          "name": "Park Ridge",
          "country_code": "US",
          "slug": "park-ridge",
          "canonical_path": "/cities/us/park-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3456130",
          "name": "Park Ridge borough",
          "country_code": "US",
          "slug": "park-ridge-borough",
          "canonical_path": "/cities/us/park-ridge-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4139953",
          "name": "Park View",
          "country_code": "US",
          "slug": "park-view",
          "canonical_path": "/cities/us/park-view/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4590476",
          "name": "Parker",
          "country_code": "US",
          "slug": "parker",
          "canonical_path": "/cities/us/parker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0857630",
          "name": "Parker",
          "country_code": "US",
          "slug": "parker-co",
          "canonical_path": "/cities/us/parker-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4855152",
          "name": "Parker",
          "country_code": "US",
          "slug": "parker-tx",
          "canonical_path": "/cities/us/parker-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5462140",
          "name": "Parkersburg",
          "country_code": "US",
          "slug": "parkersburg",
          "canonical_path": "/cities/us/parkersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1255125",
          "name": "Parkland",
          "country_code": "US",
          "slug": "parkland",
          "canonical_path": "/cities/us/parkland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2956288",
          "name": "Parkville",
          "country_code": "US",
          "slug": "parkville",
          "canonical_path": "/cities/us/parkville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5381305",
          "name": "Parkway",
          "country_code": "US",
          "slug": "parkway",
          "canonical_path": "/cities/us/parkway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5806274",
          "name": "Parkwood",
          "country_code": "US",
          "slug": "parkwood",
          "canonical_path": "/cities/us/parkwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0655856",
          "name": "Parlier",
          "country_code": "US",
          "slug": "parlier",
          "canonical_path": "/cities/us/parlier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3961000",
          "name": "Parma",
          "country_code": "US",
          "slug": "parma",
          "canonical_path": "/cities/us/parma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3961028",
          "name": "Parma Heights",
          "country_code": "US",
          "slug": "parma-heights",
          "canonical_path": "/cities/us/parma-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4364964",
          "name": "Parole",
          "country_code": "US",
          "slug": "parole",
          "canonical_path": "/cities/us/parole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102427",
          "name": "Parsippany",
          "country_code": "US",
          "slug": "parsippany",
          "canonical_path": "/cities/us/parsippany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2054675",
          "name": "Parsons",
          "country_code": "US",
          "slug": "parsons",
          "canonical_path": "/cities/us/parsons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4364990",
          "name": "Pasadena",
          "country_code": "US",
          "slug": "pasadena",
          "canonical_path": "/cities/us/pasadena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0656000",
          "name": "Pasadena",
          "country_code": "US",
          "slug": "pasadena-ca",
          "canonical_path": "/cities/us/pasadena-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4856000",
          "name": "Pasadena",
          "country_code": "US",
          "slug": "pasadena-tx",
          "canonical_path": "/cities/us/pasadena-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315238",
          "name": "Pasadena Hills",
          "country_code": "US",
          "slug": "pasadena-hills",
          "canonical_path": "/cities/us/pasadena-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2855360",
          "name": "Pascagoula",
          "country_code": "US",
          "slug": "pascagoula",
          "canonical_path": "/cities/us/pascagoula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5353545",
          "name": "Pasco",
          "country_code": "US",
          "slug": "pasco",
          "canonical_path": "/cities/us/pasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5381438",
          "name": "Paso Robles",
          "country_code": "US",
          "slug": "paso-robles",
          "canonical_path": "/cities/us/paso-robles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2855400",
          "name": "Pass Christian",
          "country_code": "US",
          "slug": "pass-christian",
          "canonical_path": "/cities/us/pass-christian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3456550",
          "name": "Passaic",
          "country_code": "US",
          "slug": "passaic",
          "canonical_path": "/cities/us/passaic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3961112",
          "name": "Pataskala",
          "country_code": "US",
          "slug": "pataskala",
          "canonical_path": "/cities/us/pataskala/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3656660",
          "name": "Patchogue",
          "country_code": "US",
          "slug": "patchogue",
          "canonical_path": "/cities/us/patchogue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3457000",
          "name": "Paterson",
          "country_code": "US",
          "slug": "paterson",
          "canonical_path": "/cities/us/paterson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0656112",
          "name": "Patterson",
          "country_code": "US",
          "slug": "patterson-ca",
          "canonical_path": "/cities/us/patterson-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2259340",
          "name": "Patterson",
          "country_code": "US",
          "slug": "patterson-la",
          "canonical_path": "/cities/us/patterson-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5308281",
          "name": "Paulden",
          "country_code": "US",
          "slug": "paulden",
          "canonical_path": "/cities/us/paulden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4057550",
          "name": "Pauls Valley",
          "country_code": "US",
          "slug": "pauls-valley",
          "canonical_path": "/cities/us/pauls-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4503516",
          "name": "Paulsboro",
          "country_code": "US",
          "slug": "paulsboro",
          "canonical_path": "/cities/us/paulsboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3457150",
          "name": "Paulsboro borough",
          "country_code": "US",
          "slug": "paulsboro-borough",
          "canonical_path": "/cities/us/paulsboro-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4840426",
          "name": "Pawcatuck",
          "country_code": "US",
          "slug": "pawcatuck",
          "canonical_path": "/cities/us/pawcatuck/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4454640",
          "name": "Pawtucket",
          "country_code": "US",
          "slug": "pawtucket",
          "canonical_path": "/cities/us/pawtucket/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5205267",
          "name": "Paxtonia",
          "country_code": "US",
          "slug": "paxtonia",
          "canonical_path": "/cities/us/paxtonia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1661300",
          "name": "Payette",
          "country_code": "US",
          "slug": "payette",
          "canonical_path": "/cities/us/payette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0453700",
          "name": "Payson",
          "country_code": "US",
          "slug": "payson-az",
          "canonical_path": "/cities/us/payson-az/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4958730",
          "name": "Payson",
          "country_code": "US",
          "slug": "payson-ut",
          "canonical_path": "/cities/us/payson-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0554200",
          "name": "Pea Ridge",
          "country_code": "US",
          "slug": "pea-ridge",
          "canonical_path": "/cities/us/pea-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2552490",
          "name": "Peabody",
          "country_code": "US",
          "slug": "peabody",
          "canonical_path": "/cities/us/peabody/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1359724",
          "name": "Peachtree City",
          "country_code": "US",
          "slug": "peachtree-city",
          "canonical_path": "/cities/us/peachtree-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1359735",
          "name": "Peachtree Corners",
          "country_code": "US",
          "slug": "peachtree-corners",
          "canonical_path": "/cities/us/peachtree-corners/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2855760",
          "name": "Pearl",
          "country_code": "US",
          "slug": "pearl",
          "canonical_path": "/cities/us/pearl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5852275",
          "name": "Pearl City",
          "country_code": "US",
          "slug": "pearl-city",
          "canonical_path": "/cities/us/pearl-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5130780",
          "name": "Pearl River",
          "country_code": "US",
          "slug": "pearl-river",
          "canonical_path": "/cities/us/pearl-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4856348",
          "name": "Pearland",
          "country_code": "US",
          "slug": "pearland",
          "canonical_path": "/cities/us/pearland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4856384",
          "name": "Pearsall",
          "country_code": "US",
          "slug": "pearsall",
          "canonical_path": "/cities/us/pearsall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4168062",
          "name": "Pebble Creek",
          "country_code": "US",
          "slug": "pebble-creek",
          "canonical_path": "/cities/us/pebble-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4718209",
          "name": "Pecan Grove",
          "country_code": "US",
          "slug": "pecan-grove",
          "canonical_path": "/cities/us/pecan-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4718236",
          "name": "Pecan Plantation",
          "country_code": "US",
          "slug": "pecan-plantation",
          "canonical_path": "/cities/us/pecan-plantation/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2956756",
          "name": "Peculiar",
          "country_code": "US",
          "slug": "peculiar",
          "canonical_path": "/cities/us/peculiar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3656979",
          "name": "Peekskill",
          "country_code": "US",
          "slug": "peekskill",
          "canonical_path": "/cities/us/peekskill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1758447",
          "name": "Pekin",
          "country_code": "US",
          "slug": "pekin",
          "canonical_path": "/cities/us/pekin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5090910",
          "name": "Pelham",
          "country_code": "US",
          "slug": "pelham",
          "canonical_path": "/cities/us/pelham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0158848",
          "name": "Pelham",
          "country_code": "US",
          "slug": "pelham-al",
          "canonical_path": "/cities/us/pelham-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3657001",
          "name": "Pelham",
          "country_code": "US",
          "slug": "pelham-ny",
          "canonical_path": "/cities/us/pelham-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3657023",
          "name": "Pelham Manor",
          "country_code": "US",
          "slug": "pelham-manor",
          "canonical_path": "/cities/us/pelham-manor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4168095",
          "name": "Pelican Bay",
          "country_code": "US",
          "slug": "pelican-bay",
          "canonical_path": "/cities/us/pelican-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0158896",
          "name": "Pell City",
          "country_code": "US",
          "slug": "pell-city",
          "canonical_path": "/cities/us/pell-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1962040",
          "name": "Pella",
          "country_code": "US",
          "slug": "pella",
          "canonical_path": "/cities/us/pella/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5090918",
          "name": "Pembroke",
          "country_code": "US",
          "slug": "pembroke",
          "canonical_path": "/cities/us/pembroke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1255750",
          "name": "Pembroke Park",
          "country_code": "US",
          "slug": "pembroke-park",
          "canonical_path": "/cities/us/pembroke-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1255775",
          "name": "Pembroke Pines",
          "country_code": "US",
          "slug": "pembroke-pines",
          "canonical_path": "/cities/us/pembroke-pines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1858662",
          "name": "Pendleton",
          "country_code": "US",
          "slug": "pendleton-in",
          "canonical_path": "/cities/us/pendleton-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4157150",
          "name": "Pendleton",
          "country_code": "US",
          "slug": "pendleton-or",
          "canonical_path": "/cities/us/pendleton-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4856696",
          "name": "Penitas",
          "country_code": "US",
          "slug": "penitas",
          "canonical_path": "/cities/us/penitas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4560291",
          "name": "Penn Wynne",
          "country_code": "US",
          "slug": "penn-wynne",
          "canonical_path": "/cities/us/penn-wynne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3657177",
          "name": "Penn Yan",
          "country_code": "US",
          "slug": "penn-yan",
          "canonical_path": "/cities/us/penn-yan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4503555",
          "name": "Pennsville",
          "country_code": "US",
          "slug": "pennsville",
          "canonical_path": "/cities/us/pennsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4139989",
          "name": "Pennsylvania Avenue SE",
          "country_code": "US",
          "slug": "pennsylvania-avenue",
          "canonical_path": "/cities/us/pennsylvania-avenue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1255925",
          "name": "Pensacola",
          "country_code": "US",
          "slug": "pensacola",
          "canonical_path": "/cities/us/pensacola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0454050",
          "name": "Peoria",
          "country_code": "US",
          "slug": "peoria-az",
          "canonical_path": "/cities/us/peoria-az/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1759000",
          "name": "Peoria",
          "country_code": "US",
          "slug": "peoria-il",
          "canonical_path": "/cities/us/peoria-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1759026",
          "name": "Peoria Heights",
          "country_code": "US",
          "slug": "peoria-heights",
          "canonical_path": "/cities/us/peoria-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3961686",
          "name": "Pepper Pike",
          "country_code": "US",
          "slug": "pepper-pike",
          "canonical_path": "/cities/us/pepper-pike/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4718491",
          "name": "Perezville",
          "country_code": "US",
          "slug": "perezville",
          "canonical_path": "/cities/us/perezville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5205638",
          "name": "Perkasie",
          "country_code": "US",
          "slug": "perkasie",
          "canonical_path": "/cities/us/perkasie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4259384",
          "name": "Perkasie borough",
          "country_code": "US",
          "slug": "perkasie-borough",
          "canonical_path": "/cities/us/perkasie-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0656700",
          "name": "Perris",
          "country_code": "US",
          "slug": "perris",
          "canonical_path": "/cities/us/perris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4547861",
          "name": "Perry",
          "country_code": "US",
          "slug": "perry",
          "canonical_path": "/cities/us/perry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1256150",
          "name": "Perry",
          "country_code": "US",
          "slug": "perry-fl",
          "canonical_path": "/cities/us/perry-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1360340",
          "name": "Perry",
          "country_code": "US",
          "slug": "perry-ga",
          "canonical_path": "/cities/us/perry-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1962355",
          "name": "Perry",
          "country_code": "US",
          "slug": "perry-ia",
          "canonical_path": "/cities/us/perry-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4959390",
          "name": "Perry",
          "country_code": "US",
          "slug": "perry-ut",
          "canonical_path": "/cities/us/perry-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4365227",
          "name": "Perry Hall",
          "country_code": "US",
          "slug": "perry-hall",
          "canonical_path": "/cities/us/perry-hall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5166482",
          "name": "Perry Heights",
          "country_code": "US",
          "slug": "perry-heights",
          "canonical_path": "/cities/us/perry-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3962148",
          "name": "Perrysburg",
          "country_code": "US",
          "slug": "perrysburg",
          "canonical_path": "/cities/us/perrysburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4856912",
          "name": "Perryton",
          "country_code": "US",
          "slug": "perryton",
          "canonical_path": "/cities/us/perryton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2957116",
          "name": "Perryville",
          "country_code": "US",
          "slug": "perryville",
          "canonical_path": "/cities/us/perryville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3458200",
          "name": "Perth Amboy",
          "country_code": "US",
          "slug": "perth-amboy",
          "canonical_path": "/cities/us/perth-amboy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1759234",
          "name": "Peru",
          "country_code": "US",
          "slug": "peru-il",
          "canonical_path": "/cities/us/peru-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1859328",
          "name": "Peru",
          "country_code": "US",
          "slug": "peru-in",
          "canonical_path": "/cities/us/peru-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2856800",
          "name": "Petal",
          "country_code": "US",
          "slug": "petal",
          "canonical_path": "/cities/us/petal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0656784",
          "name": "Petaluma",
          "country_code": "US",
          "slug": "petaluma",
          "canonical_path": "/cities/us/petaluma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5161832",
          "name": "Petersburg",
          "country_code": "US",
          "slug": "petersburg",
          "canonical_path": "/cities/us/petersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2663820",
          "name": "Petoskey",
          "country_code": "US",
          "slug": "petoskey",
          "canonical_path": "/cities/us/petoskey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4140007",
          "name": "Petworth",
          "country_code": "US",
          "slug": "petworth",
          "canonical_path": "/cities/us/petworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2957278",
          "name": "Pevely",
          "country_code": "US",
          "slug": "pevely",
          "canonical_path": "/cities/us/pevely/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5562240",
          "name": "Pewaukee",
          "country_code": "US",
          "slug": "pewaukee",
          "canonical_path": "/cities/us/pewaukee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5562250",
          "name": "Pewaukee",
          "country_code": "US",
          "slug": "pewaukee-wi-5562250",
          "canonical_path": "/cities/us/pewaukee-wi-5562250/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4857176",
          "name": "Pflugerville",
          "country_code": "US",
          "slug": "pflugerville",
          "canonical_path": "/cities/us/pflugerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4857200",
          "name": "Pharr",
          "country_code": "US",
          "slug": "pharr",
          "canonical_path": "/cities/us/pharr/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5382362",
          "name": "Phelan",
          "country_code": "US",
          "slug": "phelan",
          "canonical_path": "/cities/us/phelan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0159472",
          "name": "Phenix City",
          "country_code": "US",
          "slug": "phenix-city",
          "canonical_path": "/cities/us/phenix-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2856960",
          "name": "Philadelphia",
          "country_code": "US",
          "slug": "philadelphia-ms",
          "canonical_path": "/cities/us/philadelphia-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4260000",
          "name": "Philadelphia",
          "country_code": "US",
          "slug": "philadelphia-pa",
          "canonical_path": "/cities/us/philadelphia-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3458350",
          "name": "Phillipsburg",
          "country_code": "US",
          "slug": "phillipsburg",
          "canonical_path": "/cities/us/phillipsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4157450",
          "name": "Philomath",
          "country_code": "US",
          "slug": "philomath",
          "canonical_path": "/cities/us/philomath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0455000",
          "name": "Phoenix",
          "country_code": "US",
          "slug": "phoenix",
          "canonical_path": "/cities/us/phoenix/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5205849",
          "name": "Phoenixville",
          "country_code": "US",
          "slug": "phoenixville",
          "canonical_path": "/cities/us/phoenixville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4260120",
          "name": "Phoenixville borough",
          "country_code": "US",
          "slug": "phoenixville-borough",
          "canonical_path": "/cities/us/phoenixville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2857160",
          "name": "Picayune",
          "country_code": "US",
          "slug": "picayune",
          "canonical_path": "/cities/us/picayune/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3962498",
          "name": "Pickerington",
          "country_code": "US",
          "slug": "pickerington",
          "canonical_path": "/cities/us/pickerington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8479428",
          "name": "Picnic Point",
          "country_code": "US",
          "slug": "picnic-point",
          "canonical_path": "/cities/us/picnic-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262110",
          "name": "Picnic Point-North Lynnwood",
          "country_code": "US",
          "slug": "picnic-point-north-lynnwood",
          "canonical_path": "/cities/us/picnic-point-north-lynnwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0656924",
          "name": "Pico Rivera",
          "country_code": "US",
          "slug": "pico-rivera",
          "canonical_path": "/cities/us/pico-rivera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5308778",
          "name": "Picture Rocks",
          "country_code": "US",
          "slug": "picture-rocks",
          "canonical_path": "/cities/us/picture-rocks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4590980",
          "name": "Piedmont",
          "country_code": "US",
          "slug": "piedmont",
          "canonical_path": "/cities/us/piedmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0656938",
          "name": "Piedmont",
          "country_code": "US",
          "slug": "piedmont-ca",
          "canonical_path": "/cities/us/piedmont-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4058700",
          "name": "Piedmont",
          "country_code": "US",
          "slug": "piedmont-ok",
          "canonical_path": "/cities/us/piedmont-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4649600",
          "name": "Pierre",
          "country_code": "US",
          "slug": "pierre",
          "canonical_path": "/cities/us/pierre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4758080",
          "name": "Pigeon Forge",
          "country_code": "US",
          "slug": "pigeon-forge",
          "canonical_path": "/cities/us/pigeon-forge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4144100",
          "name": "Pike Creek",
          "country_code": "US",
          "slug": "pike-creek",
          "canonical_path": "/cities/us/pike-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4144101",
          "name": "Pike Creek Valley",
          "country_code": "US",
          "slug": "pike-creek-valley",
          "canonical_path": "/cities/us/pike-creek-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0159760",
          "name": "Pike Road",
          "country_code": "US",
          "slug": "pike-road",
          "canonical_path": "/cities/us/pike-road/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4365387",
          "name": "Pikesville",
          "country_code": "US",
          "slug": "pikesville",
          "canonical_path": "/cities/us/pikesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2160852",
          "name": "Pikeville",
          "country_code": "US",
          "slug": "pikeville",
          "canonical_path": "/cities/us/pikeville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4857476",
          "name": "Pilot Point",
          "country_code": "US",
          "slug": "pilot-point",
          "canonical_path": "/cities/us/pilot-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4778945",
          "name": "Pimmit Hills",
          "country_code": "US",
          "slug": "pimmit-hills",
          "canonical_path": "/cities/us/pimmit-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4246983",
          "name": "Pinckneyville",
          "country_code": "US",
          "slug": "pinckneyville",
          "canonical_path": "/cities/us/pinckneyville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0555310",
          "name": "Pine Bluff",
          "country_code": "US",
          "slug": "pine-bluff",
          "canonical_path": "/cities/us/pine-bluff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4168418",
          "name": "Pine Castle",
          "country_code": "US",
          "slug": "pine-castle",
          "canonical_path": "/cities/us/pine-castle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4503606",
          "name": "Pine Hill",
          "country_code": "US",
          "slug": "pine-hill",
          "canonical_path": "/cities/us/pine-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3458770",
          "name": "Pine Hill borough",
          "country_code": "US",
          "slug": "pine-hill-borough",
          "canonical_path": "/cities/us/pine-hill-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4168459",
          "name": "Pine Hills",
          "country_code": "US",
          "slug": "pine-hills",
          "canonical_path": "/cities/us/pine-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102691",
          "name": "Pine Lake Park",
          "country_code": "US",
          "slug": "pine-lake-park",
          "canonical_path": "/cities/us/pine-lake-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4168563",
          "name": "Pine Ridge",
          "country_code": "US",
          "slug": "pine-ridge",
          "canonical_path": "/cities/us/pine-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1256625",
          "name": "Pinecrest",
          "country_code": "US",
          "slug": "pinecrest",
          "canonical_path": "/cities/us/pinecrest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3751940",
          "name": "Pinehurst",
          "country_code": "US",
          "slug": "pinehurst",
          "canonical_path": "/cities/us/pinehurst/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1256975",
          "name": "Pinellas Park",
          "country_code": "US",
          "slug": "pinellas-park",
          "canonical_path": "/cities/us/pinellas-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2260530",
          "name": "Pineville",
          "country_code": "US",
          "slug": "pineville-la",
          "canonical_path": "/cities/us/pineville-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3752220",
          "name": "Pineville",
          "country_code": "US",
          "slug": "pineville-nc",
          "canonical_path": "/cities/us/pineville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4168659",
          "name": "Pinewood",
          "country_code": "US",
          "slug": "pinewood",
          "canonical_path": "/cities/us/pinewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4485355",
          "name": "Piney Green",
          "country_code": "US",
          "slug": "piney-green",
          "canonical_path": "/cities/us/piney-green/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1759988",
          "name": "Pingree Grove",
          "country_code": "US",
          "slug": "pingree-grove",
          "canonical_path": "/cities/us/pingree-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0657288",
          "name": "Pinole",
          "country_code": "US",
          "slug": "pinole",
          "canonical_path": "/cities/us/pinole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5383526",
          "name": "Piñon Hills",
          "country_code": "US",
          "slug": "pinon-hills",
          "canonical_path": "/cities/us/pinon-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0160648",
          "name": "Pinson",
          "country_code": "US",
          "slug": "pinson",
          "canonical_path": "/cities/us/pinson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3962848",
          "name": "Piqua",
          "country_code": "US",
          "slug": "piqua",
          "canonical_path": "/cities/us/piqua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0657414",
          "name": "Pismo Beach",
          "country_code": "US",
          "slug": "pismo-beach",
          "canonical_path": "/cities/us/pismo-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4503635",
          "name": "Pitman",
          "country_code": "US",
          "slug": "pitman",
          "canonical_path": "/cities/us/pitman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3459070",
          "name": "Pitman borough",
          "country_code": "US",
          "slug": "pitman-borough",
          "canonical_path": "/cities/us/pitman-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3752660",
          "name": "Pittsboro",
          "country_code": "US",
          "slug": "pittsboro",
          "canonical_path": "/cities/us/pittsboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0657456",
          "name": "Pittsburg",
          "country_code": "US",
          "slug": "pittsburg-ca",
          "canonical_path": "/cities/us/pittsburg-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2056025",
          "name": "Pittsburg",
          "country_code": "US",
          "slug": "pittsburg-ks",
          "canonical_path": "/cities/us/pittsburg-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4261000",
          "name": "Pittsburgh",
          "country_code": "US",
          "slug": "pittsburgh",
          "canonical_path": "/cities/us/pittsburgh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2553960",
          "name": "Pittsfield",
          "country_code": "US",
          "slug": "pittsfield",
          "canonical_path": "/cities/us/pittsfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4261048",
          "name": "Pittston",
          "country_code": "US",
          "slug": "pittston",
          "canonical_path": "/cities/us/pittston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0657526",
          "name": "Placentia",
          "country_code": "US",
          "slug": "placentia",
          "canonical_path": "/cities/us/placentia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0657540",
          "name": "Placerville",
          "country_code": "US",
          "slug": "placerville",
          "canonical_path": "/cities/us/placerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4960710",
          "name": "Plain City",
          "country_code": "US",
          "slug": "plain-city",
          "canonical_path": "/cities/us/plain-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5131628",
          "name": "Plainedge",
          "country_code": "US",
          "slug": "plainedge",
          "canonical_path": "/cities/us/plainedge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4840755",
          "name": "Plainfield",
          "country_code": "US",
          "slug": "plainfield",
          "canonical_path": "/cities/us/plainfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1760287",
          "name": "Plainfield",
          "country_code": "US",
          "slug": "plainfield-il",
          "canonical_path": "/cities/us/plainfield-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1860246",
          "name": "Plainfield",
          "country_code": "US",
          "slug": "plainfield-in",
          "canonical_path": "/cities/us/plainfield-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3459190",
          "name": "Plainfield",
          "country_code": "US",
          "slug": "plainfield-nj",
          "canonical_path": "/cities/us/plainfield-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4857980",
          "name": "Plainview",
          "country_code": "US",
          "slug": "plainview",
          "canonical_path": "/cities/us/plainview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4840767",
          "name": "Plainville",
          "country_code": "US",
          "slug": "plainville",
          "canonical_path": "/cities/us/plainville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4947490",
          "name": "Plainville",
          "country_code": "US",
          "slug": "plainville-ma-021",
          "canonical_path": "/cities/us/plainville-ma-021/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5091273",
          "name": "Plaistow",
          "country_code": "US",
          "slug": "plaistow",
          "canonical_path": "/cities/us/plaistow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1760352",
          "name": "Plano",
          "country_code": "US",
          "slug": "plano-il",
          "canonical_path": "/cities/us/plano-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4858016",
          "name": "Plano",
          "country_code": "US",
          "slug": "plano-tx",
          "canonical_path": "/cities/us/plano-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1257550",
          "name": "Plant City",
          "country_code": "US",
          "slug": "plant-city",
          "canonical_path": "/cities/us/plant-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1257425",
          "name": "Plantation",
          "country_code": "US",
          "slug": "plantation",
          "canonical_path": "/cities/us/plantation/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2260880",
          "name": "Plaquemine",
          "country_code": "US",
          "slug": "plaquemine",
          "canonical_path": "/cities/us/plaquemine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5563250",
          "name": "Platteville",
          "country_code": "US",
          "slug": "platteville",
          "canonical_path": "/cities/us/platteville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3658574",
          "name": "Plattsburgh",
          "country_code": "US",
          "slug": "plattsburgh",
          "canonical_path": "/cities/us/plattsburgh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3139345",
          "name": "Plattsmouth",
          "country_code": "US",
          "slug": "plattsmouth",
          "canonical_path": "/cities/us/plattsmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3752760",
          "name": "Pleasant Garden",
          "country_code": "US",
          "slug": "pleasant-garden",
          "canonical_path": "/cities/us/pleasant-garden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0161008",
          "name": "Pleasant Grove",
          "country_code": "US",
          "slug": "pleasant-grove-al",
          "canonical_path": "/cities/us/pleasant-grove-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4960930",
          "name": "Pleasant Grove",
          "country_code": "US",
          "slug": "pleasant-grove-ut",
          "canonical_path": "/cities/us/pleasant-grove-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0657764",
          "name": "Pleasant Hill",
          "country_code": "US",
          "slug": "pleasant-hill-ca",
          "canonical_path": "/cities/us/pleasant-hill-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1963525",
          "name": "Pleasant Hill",
          "country_code": "US",
          "slug": "pleasant-hill-ia",
          "canonical_path": "/cities/us/pleasant-hill-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2958394",
          "name": "Pleasant Hill",
          "country_code": "US",
          "slug": "pleasant-hill-mo",
          "canonical_path": "/cities/us/pleasant-hill-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5206510",
          "name": "Pleasant Hills",
          "country_code": "US",
          "slug": "pleasant-hills",
          "canonical_path": "/cities/us/pleasant-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4261328",
          "name": "Pleasant Hills borough",
          "country_code": "US",
          "slug": "pleasant-hills-borough",
          "canonical_path": "/cities/us/pleasant-hills-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4140040",
          "name": "Pleasant Plains",
          "country_code": "US",
          "slug": "pleasant-plains",
          "canonical_path": "/cities/us/pleasant-plains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5563300",
          "name": "Pleasant Prairie",
          "country_code": "US",
          "slug": "pleasant-prairie",
          "canonical_path": "/cities/us/pleasant-prairie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4759560",
          "name": "Pleasant View",
          "country_code": "US",
          "slug": "pleasant-view-tn",
          "canonical_path": "/cities/us/pleasant-view-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4961150",
          "name": "Pleasant View",
          "country_code": "US",
          "slug": "pleasant-view-ut",
          "canonical_path": "/cities/us/pleasant-view-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0657792",
          "name": "Pleasanton",
          "country_code": "US",
          "slug": "pleasanton-ca",
          "canonical_path": "/cities/us/pleasanton-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4858280",
          "name": "Pleasanton",
          "country_code": "US",
          "slug": "pleasanton-tx",
          "canonical_path": "/cities/us/pleasanton-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3459640",
          "name": "Pleasantville",
          "country_code": "US",
          "slug": "pleasantville-nj",
          "canonical_path": "/cities/us/pleasantville-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3658728",
          "name": "Pleasantville",
          "country_code": "US",
          "slug": "pleasantville-ny",
          "canonical_path": "/cities/us/pleasantville-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5563525",
          "name": "Plover",
          "country_code": "US",
          "slug": "plover",
          "canonical_path": "/cities/us/plover/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5206606",
          "name": "Plum",
          "country_code": "US",
          "slug": "plum",
          "canonical_path": "/cities/us/plum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4261536",
          "name": "Plum borough",
          "country_code": "US",
          "slug": "plum-borough",
          "canonical_path": "/cities/us/plum-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5383844",
          "name": "Plumas Lake",
          "country_code": "US",
          "slug": "plumas-lake",
          "canonical_path": "/cities/us/plumas-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4840844",
          "name": "Plymouth",
          "country_code": "US",
          "slug": "plymouth",
          "canonical_path": "/cities/us/plymouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4947597",
          "name": "Plymouth",
          "country_code": "US",
          "slug": "plymouth-ma-023",
          "canonical_path": "/cities/us/plymouth-ma-023/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5206659",
          "name": "Plymouth",
          "country_code": "US",
          "slug": "plymouth-pa-079",
          "canonical_path": "/cities/us/plymouth-pa-079/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1860822",
          "name": "Plymouth",
          "country_code": "US",
          "slug": "plymouth-in",
          "canonical_path": "/cities/us/plymouth-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2665060",
          "name": "Plymouth",
          "country_code": "US",
          "slug": "plymouth-mi",
          "canonical_path": "/cities/us/plymouth-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2751730",
          "name": "Plymouth",
          "country_code": "US",
          "slug": "plymouth-mn",
          "canonical_path": "/cities/us/plymouth-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5563700",
          "name": "Plymouth",
          "country_code": "US",
          "slug": "plymouth-wi",
          "canonical_path": "/cities/us/plymouth-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4261648",
          "name": "Plymouth borough",
          "country_code": "US",
          "slug": "plymouth-borough",
          "canonical_path": "/cities/us/plymouth-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5206666",
          "name": "Plymouth Meeting",
          "country_code": "US",
          "slug": "plymouth-meeting",
          "canonical_path": "/cities/us/plymouth-meeting/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0556540",
          "name": "Pocahontas",
          "country_code": "US",
          "slug": "pocahontas",
          "canonical_path": "/cities/us/pocahontas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1664090",
          "name": "Pocatello",
          "country_code": "US",
          "slug": "pocatello",
          "canonical_path": "/cities/us/pocatello/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4168930",
          "name": "Poinciana",
          "country_code": "US",
          "slug": "poinciana",
          "canonical_path": "/cities/us/poinciana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102796",
          "name": "Point Pleasant",
          "country_code": "US",
          "slug": "point-pleasant",
          "canonical_path": "/cities/us/point-pleasant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3459880",
          "name": "Point Pleasant borough",
          "country_code": "US",
          "slug": "point-pleasant-borough",
          "canonical_path": "/cities/us/point-pleasant-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1964020",
          "name": "Polk City",
          "country_code": "US",
          "slug": "polk-city",
          "canonical_path": "/cities/us/polk-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5384133",
          "name": "Pollock Pines",
          "country_code": "US",
          "slug": "pollock-pines",
          "canonical_path": "/cities/us/pollock-pines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3058750",
          "name": "Polson",
          "country_code": "US",
          "slug": "polson",
          "canonical_path": "/cities/us/polson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0658072",
          "name": "Pomona",
          "country_code": "US",
          "slug": "pomona",
          "canonical_path": "/cities/us/pomona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1258050",
          "name": "Pompano Beach",
          "country_code": "US",
          "slug": "pompano-beach",
          "canonical_path": "/cities/us/pompano-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102825",
          "name": "Pompton Lakes",
          "country_code": "US",
          "slug": "pompton-lakes",
          "canonical_path": "/cities/us/pompton-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3460090",
          "name": "Pompton Lakes borough",
          "country_code": "US",
          "slug": "pompton-lakes-borough",
          "canonical_path": "/cities/us/pompton-lakes-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4059850",
          "name": "Ponca City",
          "country_code": "US",
          "slug": "ponca-city",
          "canonical_path": "/cities/us/ponca-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2261615",
          "name": "Ponchatoula",
          "country_code": "US",
          "slug": "ponchatoula",
          "canonical_path": "/cities/us/ponchatoula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1761015",
          "name": "Pontiac",
          "country_code": "US",
          "slug": "pontiac-il",
          "canonical_path": "/cities/us/pontiac-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2665440",
          "name": "Pontiac",
          "country_code": "US",
          "slug": "pontiac-mi",
          "canonical_path": "/cities/us/pontiac-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1761067",
          "name": "Pontoon Beach",
          "country_code": "US",
          "slug": "pontoon-beach",
          "canonical_path": "/cities/us/pontoon-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2859160",
          "name": "Pontotoc",
          "country_code": "US",
          "slug": "pontotoc",
          "canonical_path": "/cities/us/pontotoc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1362104",
          "name": "Pooler",
          "country_code": "US",
          "slug": "pooler",
          "canonical_path": "/cities/us/pooler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2462850",
          "name": "Poolesville",
          "country_code": "US",
          "slug": "poolesville",
          "canonical_path": "/cities/us/poolesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2959096",
          "name": "Poplar Bluff",
          "country_code": "US",
          "slug": "poplar-bluff",
          "canonical_path": "/cities/us/poplar-bluff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1761145",
          "name": "Poplar Grove",
          "country_code": "US",
          "slug": "poplar-grove",
          "canonical_path": "/cities/us/poplar-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5163768",
          "name": "Poquoson",
          "country_code": "US",
          "slug": "poquoson",
          "canonical_path": "/cities/us/poquoson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2261790",
          "name": "Port Allen",
          "country_code": "US",
          "slug": "port-allen",
          "canonical_path": "/cities/us/port-allen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5355365",
          "name": "Port Angeles",
          "country_code": "US",
          "slug": "port-angeles",
          "canonical_path": "/cities/us/port-angeles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4858820",
          "name": "Port Arthur",
          "country_code": "US",
          "slug": "port-arthur",
          "canonical_path": "/cities/us/port-arthur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4169130",
          "name": "Port Charlotte",
          "country_code": "US",
          "slug": "port-charlotte",
          "canonical_path": "/cities/us/port-charlotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3659223",
          "name": "Port Chester",
          "country_code": "US",
          "slug": "port-chester",
          "canonical_path": "/cities/us/port-chester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3964150",
          "name": "Port Clinton",
          "country_code": "US",
          "slug": "port-clinton",
          "canonical_path": "/cities/us/port-clinton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0658296",
          "name": "Port Hueneme",
          "country_code": "US",
          "slug": "port-hueneme",
          "canonical_path": "/cities/us/port-hueneme/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2665820",
          "name": "Port Huron",
          "country_code": "US",
          "slug": "port-huron",
          "canonical_path": "/cities/us/port-huron/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4858892",
          "name": "Port Isabel",
          "country_code": "US",
          "slug": "port-isabel",
          "canonical_path": "/cities/us/port-isabel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3659355",
          "name": "Port Jefferson",
          "country_code": "US",
          "slug": "port-jefferson",
          "canonical_path": "/cities/us/port-jefferson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5132015",
          "name": "Port Jefferson Station",
          "country_code": "US",
          "slug": "port-jefferson-station",
          "canonical_path": "/cities/us/port-jefferson-station/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3659388",
          "name": "Port Jervis",
          "country_code": "US",
          "slug": "port-jervis",
          "canonical_path": "/cities/us/port-jervis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4858916",
          "name": "Port Lavaca",
          "country_code": "US",
          "slug": "port-lavaca",
          "canonical_path": "/cities/us/port-lavaca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4858940",
          "name": "Port Neches",
          "country_code": "US",
          "slug": "port-neches",
          "canonical_path": "/cities/us/port-neches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1258575",
          "name": "Port Orange",
          "country_code": "US",
          "slug": "port-orange",
          "canonical_path": "/cities/us/port-orange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5355785",
          "name": "Port Orchard",
          "country_code": "US",
          "slug": "port-orchard",
          "canonical_path": "/cities/us/port-orchard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4558030",
          "name": "Port Royal",
          "country_code": "US",
          "slug": "port-royal",
          "canonical_path": "/cities/us/port-royal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4169170",
          "name": "Port Saint John",
          "country_code": "US",
          "slug": "port-saint-john",
          "canonical_path": "/cities/us/port-saint-john/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4169171",
          "name": "Port Saint Lucie",
          "country_code": "US",
          "slug": "port-saint-lucie",
          "canonical_path": "/cities/us/port-saint-lucie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4169176",
          "name": "Port Salerno",
          "country_code": "US",
          "slug": "port-salerno",
          "canonical_path": "/cities/us/port-salerno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1258715",
          "name": "Port St. Lucie",
          "country_code": "US",
          "slug": "port-st-lucie",
          "canonical_path": "/cities/us/port-st-lucie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5355855",
          "name": "Port Townsend",
          "country_code": "US",
          "slug": "port-townsend",
          "canonical_path": "/cities/us/port-townsend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5564450",
          "name": "Port Washington",
          "country_code": "US",
          "slug": "port-washington",
          "canonical_path": "/cities/us/port-washington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1362328",
          "name": "Port Wentworth",
          "country_code": "US",
          "slug": "port-wentworth",
          "canonical_path": "/cities/us/port-wentworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1861092",
          "name": "Portage",
          "country_code": "US",
          "slug": "portage-in",
          "canonical_path": "/cities/us/portage-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2665560",
          "name": "Portage",
          "country_code": "US",
          "slug": "portage-mi",
          "canonical_path": "/cities/us/portage-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5564100",
          "name": "Portage",
          "country_code": "US",
          "slug": "portage-wi",
          "canonical_path": "/cities/us/portage-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5167293",
          "name": "Portage Lakes",
          "country_code": "US",
          "slug": "portage-lakes",
          "canonical_path": "/cities/us/portage-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3559260",
          "name": "Portales",
          "country_code": "US",
          "slug": "portales",
          "canonical_path": "/cities/us/portales/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1861164",
          "name": "Porter",
          "country_code": "US",
          "slug": "porter",
          "canonical_path": "/cities/us/porter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0658240",
          "name": "Porterville",
          "country_code": "US",
          "slug": "porterville",
          "canonical_path": "/cities/us/porterville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4841001",
          "name": "Portland",
          "country_code": "US",
          "slug": "portland",
          "canonical_path": "/cities/us/portland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1861236",
          "name": "Portland",
          "country_code": "US",
          "slug": "portland-in",
          "canonical_path": "/cities/us/portland-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2360545",
          "name": "Portland",
          "country_code": "US",
          "slug": "portland-me",
          "canonical_path": "/cities/us/portland-me/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4159000",
          "name": "Portland",
          "country_code": "US",
          "slug": "portland-or",
          "canonical_path": "/cities/us/portland-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4760280",
          "name": "Portland",
          "country_code": "US",
          "slug": "portland-tn",
          "canonical_path": "/cities/us/portland-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4858904",
          "name": "Portland",
          "country_code": "US",
          "slug": "portland-tx",
          "canonical_path": "/cities/us/portland-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5224082",
          "name": "Portsmouth",
          "country_code": "US",
          "slug": "portsmouth",
          "canonical_path": "/cities/us/portsmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3362900",
          "name": "Portsmouth",
          "country_code": "US",
          "slug": "portsmouth-nh",
          "canonical_path": "/cities/us/portsmouth-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3964304",
          "name": "Portsmouth",
          "country_code": "US",
          "slug": "portsmouth-oh",
          "canonical_path": "/cities/us/portsmouth-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5164000",
          "name": "Portsmouth",
          "country_code": "US",
          "slug": "portsmouth-va",
          "canonical_path": "/cities/us/portsmouth-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1761314",
          "name": "Posen",
          "country_code": "US",
          "slug": "posen",
          "canonical_path": "/cities/us/posen/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5528596",
          "name": "Post",
          "country_code": "US",
          "slug": "post",
          "canonical_path": "/cities/us/post/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1664810",
          "name": "Post Falls",
          "country_code": "US",
          "slug": "post-falls",
          "canonical_path": "/cities/us/post-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4060350",
          "name": "Poteau",
          "country_code": "US",
          "slug": "poteau",
          "canonical_path": "/cities/us/poteau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4366001",
          "name": "Potomac",
          "country_code": "US",
          "slug": "potomac",
          "canonical_path": "/cities/us/potomac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4780087",
          "name": "Potomac Mills",
          "country_code": "US",
          "slug": "potomac-mills",
          "canonical_path": "/cities/us/potomac-mills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3659564",
          "name": "Potsdam",
          "country_code": "US",
          "slug": "potsdam",
          "canonical_path": "/cities/us/potsdam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5207069",
          "name": "Pottstown",
          "country_code": "US",
          "slug": "pottstown",
          "canonical_path": "/cities/us/pottstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4262416",
          "name": "Pottstown borough",
          "country_code": "US",
          "slug": "pottstown-borough",
          "canonical_path": "/cities/us/pottstown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4262432",
          "name": "Pottsville",
          "country_code": "US",
          "slug": "pottsville",
          "canonical_path": "/cities/us/pottsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3659641",
          "name": "Poughkeepsie",
          "country_code": "US",
          "slug": "poughkeepsie",
          "canonical_path": "/cities/us/poughkeepsie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5355995",
          "name": "Poulsbo",
          "country_code": "US",
          "slug": "poulsbo",
          "canonical_path": "/cities/us/poulsbo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0658520",
          "name": "Poway",
          "country_code": "US",
          "slug": "poway",
          "canonical_path": "/cities/us/poway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1362524",
          "name": "Powder Springs",
          "country_code": "US",
          "slug": "powder-springs",
          "canonical_path": "/cities/us/powder-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4591977",
          "name": "Powdersville",
          "country_code": "US",
          "slug": "powdersville",
          "canonical_path": "/cities/us/powdersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3964486",
          "name": "Powell",
          "country_code": "US",
          "slug": "powell-oh",
          "canonical_path": "/cities/us/powell-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5662450",
          "name": "Powell",
          "country_code": "US",
          "slug": "powell-wy",
          "canonical_path": "/cities/us/powell-wy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5565050",
          "name": "Prairie du Chien",
          "country_code": "US",
          "slug": "prairie-du-chien",
          "canonical_path": "/cities/us/prairie-du-chien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0557170",
          "name": "Prairie Grove",
          "country_code": "US",
          "slug": "prairie-grove",
          "canonical_path": "/cities/us/prairie-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5807367",
          "name": "Prairie Ridge",
          "country_code": "US",
          "slug": "prairie-ridge",
          "canonical_path": "/cities/us/prairie-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4859336",
          "name": "Prairie View",
          "country_code": "US",
          "slug": "prairie-view",
          "canonical_path": "/cities/us/prairie-view/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2057575",
          "name": "Prairie Village",
          "country_code": "US",
          "slug": "prairie-village",
          "canonical_path": "/cities/us/prairie-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4338012",
          "name": "Prairieville",
          "country_code": "US",
          "slug": "prairieville",
          "canonical_path": "/cities/us/prairieville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2057625",
          "name": "Pratt",
          "country_code": "US",
          "slug": "pratt",
          "canonical_path": "/cities/us/pratt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0162328",
          "name": "Prattville",
          "country_code": "US",
          "slug": "prattville",
          "canonical_path": "/cities/us/prattville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0457380",
          "name": "Prescott",
          "country_code": "US",
          "slug": "prescott",
          "canonical_path": "/cities/us/prescott/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0457450",
          "name": "Prescott Valley",
          "country_code": "US",
          "slug": "prescott-valley",
          "canonical_path": "/cities/us/prescott-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2360825",
          "name": "Presque Isle",
          "country_code": "US",
          "slug": "presque-isle",
          "canonical_path": "/cities/us/presque-isle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1665260",
          "name": "Preston",
          "country_code": "US",
          "slug": "preston",
          "canonical_path": "/cities/us/preston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4962030",
          "name": "Price",
          "country_code": "US",
          "slug": "price",
          "canonical_path": "/cities/us/price/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0162496",
          "name": "Prichard",
          "country_code": "US",
          "slug": "prichard",
          "canonical_path": "/cities/us/prichard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4338068",
          "name": "Prien",
          "country_code": "US",
          "slug": "prien",
          "canonical_path": "/cities/us/prien/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4859540",
          "name": "Primera",
          "country_code": "US",
          "slug": "primera",
          "canonical_path": "/cities/us/primera/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4169345",
          "name": "Princeton",
          "country_code": "US",
          "slug": "princeton",
          "canonical_path": "/cities/us/princeton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1761899",
          "name": "Princeton",
          "country_code": "US",
          "slug": "princeton-il",
          "canonical_path": "/cities/us/princeton-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1862046",
          "name": "Princeton",
          "country_code": "US",
          "slug": "princeton-in",
          "canonical_path": "/cities/us/princeton-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2163138",
          "name": "Princeton",
          "country_code": "US",
          "slug": "princeton-ky",
          "canonical_path": "/cities/us/princeton-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2752522",
          "name": "Princeton",
          "country_code": "US",
          "slug": "princeton-mn",
          "canonical_path": "/cities/us/princeton-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3460900",
          "name": "Princeton",
          "country_code": "US",
          "slug": "princeton-nj",
          "canonical_path": "/cities/us/princeton-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4859576",
          "name": "Princeton",
          "country_code": "US",
          "slug": "princeton-tx",
          "canonical_path": "/cities/us/princeton-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5465692",
          "name": "Princeton",
          "country_code": "US",
          "slug": "princeton-wv",
          "canonical_path": "/cities/us/princeton-wv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102941",
          "name": "Princeton Meadows",
          "country_code": "US",
          "slug": "princeton-meadows",
          "canonical_path": "/cities/us/princeton-meadows/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4159850",
          "name": "Prineville",
          "country_code": "US",
          "slug": "prineville",
          "canonical_path": "/cities/us/prineville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2752594",
          "name": "Prior Lake",
          "country_code": "US",
          "slug": "prior-lake",
          "canonical_path": "/cities/us/prior-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4859636",
          "name": "Progreso",
          "country_code": "US",
          "slug": "progreso",
          "canonical_path": "/cities/us/progreso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5207214",
          "name": "Progress",
          "country_code": "US",
          "slug": "progress",
          "canonical_path": "/cities/us/progress/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4169378",
          "name": "Progress Village",
          "country_code": "US",
          "slug": "progress-village",
          "canonical_path": "/cities/us/progress-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1762016",
          "name": "Prospect Heights",
          "country_code": "US",
          "slug": "prospect-heights",
          "canonical_path": "/cities/us/prospect-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4560549",
          "name": "Prospect Park",
          "country_code": "US",
          "slug": "prospect-park",
          "canonical_path": "/cities/us/prospect-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102970",
          "name": "Prospect Park",
          "country_code": "US",
          "slug": "prospect-park-nj-021",
          "canonical_path": "/cities/us/prospect-park-nj-021/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5102973",
          "name": "Prospect Park",
          "country_code": "US",
          "slug": "prospect-park-nj-031",
          "canonical_path": "/cities/us/prospect-park-nj-031/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3461170",
          "name": "Prospect Park borough",
          "country_code": "US",
          "slug": "prospect-park-borough-nj",
          "canonical_path": "/cities/us/prospect-park-borough-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4262792",
          "name": "Prospect Park borough",
          "country_code": "US",
          "slug": "prospect-park-borough-pa",
          "canonical_path": "/cities/us/prospect-park-borough-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4859696",
          "name": "Prosper",
          "country_code": "US",
          "slug": "prosper",
          "canonical_path": "/cities/us/prosper/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5356450",
          "name": "Prosser",
          "country_code": "US",
          "slug": "prosser",
          "canonical_path": "/cities/us/prosser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4459000",
          "name": "Providence",
          "country_code": "US",
          "slug": "providence-ri",
          "canonical_path": "/cities/us/providence-ri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4962360",
          "name": "Providence",
          "country_code": "US",
          "slug": "providence-ut",
          "canonical_path": "/cities/us/providence-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4859748",
          "name": "Providence Village",
          "country_code": "US",
          "slug": "providence-village",
          "canonical_path": "/cities/us/providence-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4962470",
          "name": "Provo",
          "country_code": "US",
          "slug": "provo",
          "canonical_path": "/cities/us/provo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5385082",
          "name": "Prunedale",
          "country_code": "US",
          "slug": "prunedale",
          "canonical_path": "/cities/us/prunedale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4061000",
          "name": "Pryor Creek",
          "country_code": "US",
          "slug": "pryor-creek",
          "canonical_path": "/cities/us/pryor-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0862000",
          "name": "Pueblo",
          "country_code": "US",
          "slug": "pueblo",
          "canonical_path": "/cities/us/pueblo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5435477",
          "name": "Pueblo West",
          "country_code": "US",
          "slug": "pueblo-west",
          "canonical_path": "/cities/us/pueblo-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5852697",
          "name": "Pukalani",
          "country_code": "US",
          "slug": "pukalani",
          "canonical_path": "/cities/us/pukalani/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4761040",
          "name": "Pulaski",
          "country_code": "US",
          "slug": "pulaski-tn",
          "canonical_path": "/cities/us/pulaski-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5164880",
          "name": "Pulaski",
          "country_code": "US",
          "slug": "pulaski-va",
          "canonical_path": "/cities/us/pulaski-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5356625",
          "name": "Pullman",
          "country_code": "US",
          "slug": "pullman",
          "canonical_path": "/cities/us/pullman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4366270",
          "name": "Pumphrey",
          "country_code": "US",
          "slug": "pumphrey",
          "canonical_path": "/cities/us/pumphrey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1259200",
          "name": "Punta Gorda",
          "country_code": "US",
          "slug": "punta-gorda",
          "canonical_path": "/cities/us/punta-gorda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5207307",
          "name": "Punxsutawney",
          "country_code": "US",
          "slug": "punxsutawney",
          "canonical_path": "/cities/us/punxsutawney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4262920",
          "name": "Punxsutawney borough",
          "country_code": "US",
          "slug": "punxsutawney-borough",
          "canonical_path": "/cities/us/punxsutawney-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5852824",
          "name": "Pupukea",
          "country_code": "US",
          "slug": "pupukea",
          "canonical_path": "/cities/us/pupukea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4061150",
          "name": "Purcell",
          "country_code": "US",
          "slug": "purcell",
          "canonical_path": "/cities/us/purcell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5165008",
          "name": "Purcellville",
          "country_code": "US",
          "slug": "purcellville",
          "canonical_path": "/cities/us/purcellville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4841187",
          "name": "Putnam",
          "country_code": "US",
          "slug": "putnam",
          "canonical_path": "/cities/us/putnam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5356695",
          "name": "Puyallup",
          "country_code": "US",
          "slug": "puyallup",
          "canonical_path": "/cities/us/puyallup/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5207381",
          "name": "Quakertown",
          "country_code": "US",
          "slug": "quakertown",
          "canonical_path": "/cities/us/quakertown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4263048",
          "name": "Quakertown borough",
          "country_code": "US",
          "slug": "quakertown-borough",
          "canonical_path": "/cities/us/quakertown-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5385393",
          "name": "Quartz Hill",
          "country_code": "US",
          "slug": "quartz-hill",
          "canonical_path": "/cities/us/quartz-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0458150",
          "name": "Queen Creek",
          "country_code": "US",
          "slug": "queen-creek",
          "canonical_path": "/cities/us/queen-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5133273",
          "name": "Queens",
          "country_code": "US",
          "slug": "queens",
          "canonical_path": "/cities/us/queens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1259325",
          "name": "Quincy",
          "country_code": "US",
          "slug": "quincy-fl",
          "canonical_path": "/cities/us/quincy-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1762367",
          "name": "Quincy",
          "country_code": "US",
          "slug": "quincy-il",
          "canonical_path": "/cities/us/quincy-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2555745",
          "name": "Quincy",
          "country_code": "US",
          "slug": "quincy-ma",
          "canonical_path": "/cities/us/quincy-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5357115",
          "name": "Quincy",
          "country_code": "US",
          "slug": "quincy-wa",
          "canonical_path": "/cities/us/quincy-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4338298",
          "name": "Raceland",
          "country_code": "US",
          "slug": "raceland",
          "canonical_path": "/cities/us/raceland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5566000",
          "name": "Racine",
          "country_code": "US",
          "slug": "racine",
          "canonical_path": "/cities/us/racine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2163912",
          "name": "Radcliff",
          "country_code": "US",
          "slug": "radcliff",
          "canonical_path": "/cities/us/radcliff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5165392",
          "name": "Radford",
          "country_code": "US",
          "slug": "radford",
          "canonical_path": "/cities/us/radford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5207490",
          "name": "Radnor",
          "country_code": "US",
          "slug": "radnor",
          "canonical_path": "/cities/us/radnor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3461530",
          "name": "Rahway",
          "country_code": "US",
          "slug": "rahway",
          "canonical_path": "/cities/us/rahway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0163288",
          "name": "Rainbow City",
          "country_code": "US",
          "slug": "rainbow-city",
          "canonical_path": "/cities/us/rainbow-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0163336",
          "name": "Rainsville",
          "country_code": "US",
          "slug": "rainsville",
          "canonical_path": "/cities/us/rainsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3755000",
          "name": "Raleigh",
          "country_code": "US",
          "slug": "raleigh",
          "canonical_path": "/cities/us/raleigh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5747420",
          "name": "Raleigh Hills",
          "country_code": "US",
          "slug": "raleigh-hills",
          "canonical_path": "/cities/us/raleigh-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3140605",
          "name": "Ralston",
          "country_code": "US",
          "slug": "ralston",
          "canonical_path": "/cities/us/ralston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4503736",
          "name": "Ramblewood",
          "country_code": "US",
          "slug": "ramblewood",
          "canonical_path": "/cities/us/ramblewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5385793",
          "name": "Ramona",
          "country_code": "US",
          "slug": "ramona",
          "canonical_path": "/cities/us/ramona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2753026",
          "name": "Ramsey",
          "country_code": "US",
          "slug": "ramsey",
          "canonical_path": "/cities/us/ramsey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3461680",
          "name": "Ramsey borough",
          "country_code": "US",
          "slug": "ramsey-borough",
          "canonical_path": "/cities/us/ramsey-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103095",
          "name": "Ramtown",
          "country_code": "US",
          "slug": "ramtown",
          "canonical_path": "/cities/us/ramtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5835956",
          "name": "Ranchettes",
          "country_code": "US",
          "slug": "ranchettes",
          "canonical_path": "/cities/us/ranchettes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0659444",
          "name": "Rancho Cordova",
          "country_code": "US",
          "slug": "rancho-cordova",
          "canonical_path": "/cities/us/rancho-cordova/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0659451",
          "name": "Rancho Cucamonga",
          "country_code": "US",
          "slug": "rancho-cucamonga",
          "canonical_path": "/cities/us/rancho-cucamonga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0659500",
          "name": "Rancho Mirage",
          "country_code": "US",
          "slug": "rancho-mirage",
          "canonical_path": "/cities/us/rancho-mirage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5386027",
          "name": "Rancho Murieta",
          "country_code": "US",
          "slug": "rancho-murieta",
          "canonical_path": "/cities/us/rancho-murieta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0659514",
          "name": "Rancho Palos Verdes",
          "country_code": "US",
          "slug": "rancho-palos-verdes",
          "canonical_path": "/cities/us/rancho-palos-verdes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5386053",
          "name": "Rancho San Diego",
          "country_code": "US",
          "slug": "rancho-san-diego",
          "canonical_path": "/cities/us/rancho-san-diego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0659587",
          "name": "Rancho Santa Margarita",
          "country_code": "US",
          "slug": "rancho-santa-margarita",
          "canonical_path": "/cities/us/rancho-santa-margarita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4366476",
          "name": "Randallstown",
          "country_code": "US",
          "slug": "randallstown",
          "canonical_path": "/cities/us/randallstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4948403",
          "name": "Randolph",
          "country_code": "US",
          "slug": "randolph",
          "canonical_path": "/cities/us/randolph/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2556000",
          "name": "Randolph Town",
          "country_code": "US",
          "slug": "randolph-town",
          "canonical_path": "/cities/us/randolph-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5466988",
          "name": "Ranson corporation",
          "country_code": "US",
          "slug": "ranson-corporation",
          "canonical_path": "/cities/us/ranson-corporation/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1762783",
          "name": "Rantoul",
          "country_code": "US",
          "slug": "rantoul",
          "canonical_path": "/cities/us/rantoul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4652980",
          "name": "Rapid City",
          "country_code": "US",
          "slug": "rapid-city",
          "canonical_path": "/cities/us/rapid-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5768244",
          "name": "Rapid Valley",
          "country_code": "US",
          "slug": "rapid-valley",
          "canonical_path": "/cities/us/rapid-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103116",
          "name": "Raritan",
          "country_code": "US",
          "slug": "raritan",
          "canonical_path": "/cities/us/raritan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3461980",
          "name": "Raritan borough",
          "country_code": "US",
          "slug": "raritan-borough",
          "canonical_path": "/cities/us/raritan-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1666340",
          "name": "Rathdrum",
          "country_code": "US",
          "slug": "rathdrum",
          "canonical_path": "/cities/us/rathdrum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3562060",
          "name": "Raton",
          "country_code": "US",
          "slug": "raton",
          "canonical_path": "/cities/us/raton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3965592",
          "name": "Ravenna",
          "country_code": "US",
          "slug": "ravenna",
          "canonical_path": "/cities/us/ravenna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5663900",
          "name": "Rawlins",
          "country_code": "US",
          "slug": "rawlins",
          "canonical_path": "/cities/us/rawlins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4860836",
          "name": "Raymondville",
          "country_code": "US",
          "slug": "raymondville",
          "canonical_path": "/cities/us/raymondville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2960752",
          "name": "Raymore",
          "country_code": "US",
          "slug": "raymore",
          "canonical_path": "/cities/us/raymore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2263645",
          "name": "Rayne",
          "country_code": "US",
          "slug": "rayne",
          "canonical_path": "/cities/us/rayne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4948449",
          "name": "Raynham",
          "country_code": "US",
          "slug": "raynham",
          "canonical_path": "/cities/us/raynham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2960788",
          "name": "Raytown",
          "country_code": "US",
          "slug": "raytown",
          "canonical_path": "/cities/us/raytown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4948462",
          "name": "Reading",
          "country_code": "US",
          "slug": "reading",
          "canonical_path": "/cities/us/reading/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3965732",
          "name": "Reading",
          "country_code": "US",
          "slug": "reading-oh",
          "canonical_path": "/cities/us/reading-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4263624",
          "name": "Reading",
          "country_code": "US",
          "slug": "reading-pa",
          "canonical_path": "/cities/us/reading-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4761960",
          "name": "Red Bank",
          "country_code": "US",
          "slug": "red-bank",
          "canonical_path": "/cities/us/red-bank/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3462430",
          "name": "Red Bank borough",
          "country_code": "US",
          "slug": "red-bank-borough",
          "canonical_path": "/cities/us/red-bank-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0659892",
          "name": "Red Bluff",
          "country_code": "US",
          "slug": "red-bluff",
          "canonical_path": "/cities/us/red-bluff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4048888",
          "name": "Red Chute",
          "country_code": "US",
          "slug": "red-chute",
          "canonical_path": "/cities/us/red-chute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4592487",
          "name": "Red Hill",
          "country_code": "US",
          "slug": "red-hill-sc-051",
          "canonical_path": "/cities/us/red-hill-sc-051/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4560639",
          "name": "Red Lion",
          "country_code": "US",
          "slug": "red-lion",
          "canonical_path": "/cities/us/red-lion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4263840",
          "name": "Red Lion borough",
          "country_code": "US",
          "slug": "red-lion-borough",
          "canonical_path": "/cities/us/red-lion-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1966135",
          "name": "Red Oak",
          "country_code": "US",
          "slug": "red-oak-ia",
          "canonical_path": "/cities/us/red-oak-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4861196",
          "name": "Red Oak",
          "country_code": "US",
          "slug": "red-oak-tx",
          "canonical_path": "/cities/us/red-oak-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2753620",
          "name": "Red Wing",
          "country_code": "US",
          "slug": "red-wing",
          "canonical_path": "/cities/us/red-wing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4218165",
          "name": "Redan",
          "country_code": "US",
          "slug": "redan",
          "canonical_path": "/cities/us/redan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0659920",
          "name": "Redding",
          "country_code": "US",
          "slug": "redding",
          "canonical_path": "/cities/us/redding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0659962",
          "name": "Redlands",
          "country_code": "US",
          "slug": "redlands",
          "canonical_path": "/cities/us/redlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4161200",
          "name": "Redmond",
          "country_code": "US",
          "slug": "redmond-or",
          "canonical_path": "/cities/us/redmond-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5357535",
          "name": "Redmond",
          "country_code": "US",
          "slug": "redmond-wa",
          "canonical_path": "/cities/us/redmond-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0660018",
          "name": "Redondo Beach",
          "country_code": "US",
          "slug": "redondo-beach",
          "canonical_path": "/cities/us/redondo-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0660102",
          "name": "Redwood City",
          "country_code": "US",
          "slug": "redwood-city",
          "canonical_path": "/cities/us/redwood-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2753656",
          "name": "Redwood Falls",
          "country_code": "US",
          "slug": "redwood-falls",
          "canonical_path": "/cities/us/redwood-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0660242",
          "name": "Reedley",
          "country_code": "US",
          "slug": "reedley",
          "canonical_path": "/cities/us/reedley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5566800",
          "name": "Reedsburg",
          "country_code": "US",
          "slug": "reedsburg",
          "canonical_path": "/cities/us/reedsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4948545",
          "name": "Rehoboth",
          "country_code": "US",
          "slug": "rehoboth",
          "canonical_path": "/cities/us/rehoboth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3755900",
          "name": "Reidsville",
          "country_code": "US",
          "slug": "reidsville",
          "canonical_path": "/cities/us/reidsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4366647",
          "name": "Reisterstown",
          "country_code": "US",
          "slug": "reisterstown",
          "canonical_path": "/cities/us/reisterstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3966152",
          "name": "Reminderville",
          "country_code": "US",
          "slug": "reminderville",
          "canonical_path": "/cities/us/reminderville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4722231",
          "name": "Rendon",
          "country_code": "US",
          "slug": "rendon",
          "canonical_path": "/cities/us/rendon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3260600",
          "name": "Reno",
          "country_code": "US",
          "slug": "reno",
          "canonical_path": "/cities/us/reno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1863792",
          "name": "Rensselaer",
          "country_code": "US",
          "slug": "rensselaer-in",
          "canonical_path": "/cities/us/rensselaer-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3661148",
          "name": "Rensselaer",
          "country_code": "US",
          "slug": "rensselaer-ny",
          "canonical_path": "/cities/us/rensselaer-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5357745",
          "name": "Renton",
          "country_code": "US",
          "slug": "renton",
          "canonical_path": "/cities/us/renton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2961238",
          "name": "Republic",
          "country_code": "US",
          "slug": "republic",
          "canonical_path": "/cities/us/republic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4338615",
          "name": "Reserve",
          "country_code": "US",
          "slug": "reserve",
          "canonical_path": "/cities/us/reserve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4948567",
          "name": "Reservoir",
          "country_code": "US",
          "slug": "reservoir",
          "canonical_path": "/cities/us/reservoir/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4781530",
          "name": "Reston",
          "country_code": "US",
          "slug": "reston",
          "canonical_path": "/cities/us/reston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2556585",
          "name": "Revere",
          "country_code": "US",
          "slug": "revere",
          "canonical_path": "/cities/us/revere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1667420",
          "name": "Rexburg",
          "country_code": "US",
          "slug": "rexburg",
          "canonical_path": "/cities/us/rexburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3966390",
          "name": "Reynoldsburg",
          "country_code": "US",
          "slug": "reynoldsburg",
          "canonical_path": "/cities/us/reynoldsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5567200",
          "name": "Rhinelander",
          "country_code": "US",
          "slug": "rhinelander",
          "canonical_path": "/cities/us/rhinelander/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0660466",
          "name": "Rialto",
          "country_code": "US",
          "slug": "rialto",
          "canonical_path": "/cities/us/rialto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5268742",
          "name": "Rib Mountain",
          "country_code": "US",
          "slug": "rib-mountain",
          "canonical_path": "/cities/us/rib-mountain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5567350",
          "name": "Rice Lake",
          "country_code": "US",
          "slug": "rice-lake",
          "canonical_path": "/cities/us/rice-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4861796",
          "name": "Richardson",
          "country_code": "US",
          "slug": "richardson",
          "canonical_path": "/cities/us/richardson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5208166",
          "name": "Richboro",
          "country_code": "US",
          "slug": "richboro",
          "canonical_path": "/cities/us/richboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2754214",
          "name": "Richfield",
          "country_code": "US",
          "slug": "richfield-mn",
          "canonical_path": "/cities/us/richfield-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4963570",
          "name": "Richfield",
          "country_code": "US",
          "slug": "richfield-ut",
          "canonical_path": "/cities/us/richfield-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5567475",
          "name": "Richfield",
          "country_code": "US",
          "slug": "richfield-wi",
          "canonical_path": "/cities/us/richfield-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2862400",
          "name": "Richland",
          "country_code": "US",
          "slug": "richland-ms",
          "canonical_path": "/cities/us/richland-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5358235",
          "name": "Richland",
          "country_code": "US",
          "slug": "richland-wa",
          "canonical_path": "/cities/us/richland-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5567625",
          "name": "Richland Center",
          "country_code": "US",
          "slug": "richland-center",
          "canonical_path": "/cities/us/richland-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4861844",
          "name": "Richland Hills",
          "country_code": "US",
          "slug": "richland-hills",
          "canonical_path": "/cities/us/richland-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5166928",
          "name": "Richlands",
          "country_code": "US",
          "slug": "richlands",
          "canonical_path": "/cities/us/richlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0660620",
          "name": "Richmond",
          "country_code": "US",
          "slug": "richmond-ca",
          "canonical_path": "/cities/us/richmond-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1864260",
          "name": "Richmond",
          "country_code": "US",
          "slug": "richmond-in",
          "canonical_path": "/cities/us/richmond-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2165226",
          "name": "Richmond",
          "country_code": "US",
          "slug": "richmond-ky",
          "canonical_path": "/cities/us/richmond-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2668380",
          "name": "Richmond",
          "country_code": "US",
          "slug": "richmond-mi",
          "canonical_path": "/cities/us/richmond-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2961670",
          "name": "Richmond",
          "country_code": "US",
          "slug": "richmond-mo",
          "canonical_path": "/cities/us/richmond-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4861892",
          "name": "Richmond",
          "country_code": "US",
          "slug": "richmond-tx",
          "canonical_path": "/cities/us/richmond-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5167000",
          "name": "Richmond",
          "country_code": "US",
          "slug": "richmond-va",
          "canonical_path": "/cities/us/richmond-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4170000",
          "name": "Richmond Heights",
          "country_code": "US",
          "slug": "richmond-heights",
          "canonical_path": "/cities/us/richmond-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2961706",
          "name": "Richmond Heights",
          "country_code": "US",
          "slug": "richmond-heights-mo",
          "canonical_path": "/cities/us/richmond-heights-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3966894",
          "name": "Richmond Heights",
          "country_code": "US",
          "slug": "richmond-heights-oh",
          "canonical_path": "/cities/us/richmond-heights-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1365044",
          "name": "Richmond Hill",
          "country_code": "US",
          "slug": "richmond-hill",
          "canonical_path": "/cities/us/richmond-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4170005",
          "name": "Richmond West",
          "country_code": "US",
          "slug": "richmond-west",
          "canonical_path": "/cities/us/richmond-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1763706",
          "name": "Richton Park",
          "country_code": "US",
          "slug": "richton-park",
          "canonical_path": "/cities/us/richton-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5133832",
          "name": "Ridge",
          "country_code": "US",
          "slug": "ridge",
          "canonical_path": "/cities/us/ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0660704",
          "name": "Ridgecrest",
          "country_code": "US",
          "slug": "ridgecrest",
          "canonical_path": "/cities/us/ridgecrest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5358410",
          "name": "Ridgefield",
          "country_code": "US",
          "slug": "ridgefield",
          "canonical_path": "/cities/us/ridgefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3462910",
          "name": "Ridgefield borough",
          "country_code": "US",
          "slug": "ridgefield-borough",
          "canonical_path": "/cities/us/ridgefield-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3462940",
          "name": "Ridgefield Park",
          "country_code": "US",
          "slug": "ridgefield-park",
          "canonical_path": "/cities/us/ridgefield-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2862520",
          "name": "Ridgeland",
          "country_code": "US",
          "slug": "ridgeland",
          "canonical_path": "/cities/us/ridgeland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3463000",
          "name": "Ridgewood",
          "country_code": "US",
          "slug": "ridgewood",
          "canonical_path": "/cities/us/ridgewood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4560709",
          "name": "Ridley Park",
          "country_code": "US",
          "slug": "ridley-park",
          "canonical_path": "/cities/us/ridley-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4264832",
          "name": "Ridley Park borough",
          "country_code": "US",
          "slug": "ridley-park-borough",
          "canonical_path": "/cities/us/ridley-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0864255",
          "name": "Rifle",
          "country_code": "US",
          "slug": "rifle",
          "canonical_path": "/cities/us/rifle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1667780",
          "name": "Rigby",
          "country_code": "US",
          "slug": "rigby",
          "canonical_path": "/cities/us/rigby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4140176",
          "name": "Riggs Park",
          "country_code": "US",
          "slug": "riggs-park",
          "canonical_path": "/cities/us/riggs-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1365296",
          "name": "Rincon",
          "country_code": "US",
          "slug": "rincon",
          "canonical_path": "/cities/us/rincon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5091744",
          "name": "Rindge",
          "country_code": "US",
          "slug": "rindge",
          "canonical_path": "/cities/us/rindge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103286",
          "name": "Ringwood",
          "country_code": "US",
          "slug": "ringwood",
          "canonical_path": "/cities/us/ringwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3463150",
          "name": "Ringwood borough",
          "country_code": "US",
          "slug": "ringwood-borough",
          "canonical_path": "/cities/us/ringwood-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5387673",
          "name": "Rio Del Mar",
          "country_code": "US",
          "slug": "rio-del-mar",
          "canonical_path": "/cities/us/rio-del-mar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4862168",
          "name": "Rio Grande City",
          "country_code": "US",
          "slug": "rio-grande-city",
          "canonical_path": "/cities/us/rio-grande-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5387687",
          "name": "Rio Linda",
          "country_code": "US",
          "slug": "rio-linda",
          "canonical_path": "/cities/us/rio-linda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3563460",
          "name": "Rio Rancho",
          "country_code": "US",
          "slug": "rio-rancho",
          "canonical_path": "/cities/us/rio-rancho/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5311433",
          "name": "Rio Rico",
          "country_code": "US",
          "slug": "rio-rico",
          "canonical_path": "/cities/us/rio-rico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0660984",
          "name": "Rio Vista",
          "country_code": "US",
          "slug": "rio-vista",
          "canonical_path": "/cities/us/rio-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2862600",
          "name": "Ripley",
          "country_code": "US",
          "slug": "ripley-ms",
          "canonical_path": "/cities/us/ripley-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4763340",
          "name": "Ripley",
          "country_code": "US",
          "slug": "ripley-tn",
          "canonical_path": "/cities/us/ripley-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0661026",
          "name": "Ripon",
          "country_code": "US",
          "slug": "ripon-ca",
          "canonical_path": "/cities/us/ripon-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5568175",
          "name": "Ripon",
          "country_code": "US",
          "slug": "ripon-wi",
          "canonical_path": "/cities/us/ripon-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3967356",
          "name": "Rittman",
          "country_code": "US",
          "slug": "rittman",
          "canonical_path": "/cities/us/rittman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103301",
          "name": "River Edge",
          "country_code": "US",
          "slug": "river-edge",
          "canonical_path": "/cities/us/river-edge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3463360",
          "name": "River Edge borough",
          "country_code": "US",
          "slug": "river-edge-borough",
          "canonical_path": "/cities/us/river-edge-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5568275",
          "name": "River Falls",
          "country_code": "US",
          "slug": "river-falls",
          "canonical_path": "/cities/us/river-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1764304",
          "name": "River Forest",
          "country_code": "US",
          "slug": "river-forest",
          "canonical_path": "/cities/us/river-forest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1764343",
          "name": "River Grove",
          "country_code": "US",
          "slug": "river-grove",
          "canonical_path": "/cities/us/river-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4862384",
          "name": "River Oaks",
          "country_code": "US",
          "slug": "river-oaks",
          "canonical_path": "/cities/us/river-oaks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4170092",
          "name": "River Park",
          "country_code": "US",
          "slug": "river-park",
          "canonical_path": "/cities/us/river-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4338818",
          "name": "River Ridge",
          "country_code": "US",
          "slug": "river-ridge",
          "canonical_path": "/cities/us/river-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2668760",
          "name": "River Rouge",
          "country_code": "US",
          "slug": "river-rouge",
          "canonical_path": "/cities/us/river-rouge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0661068",
          "name": "Riverbank",
          "country_code": "US",
          "slug": "riverbank",
          "canonical_path": "/cities/us/riverbank/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1365464",
          "name": "Riverdale",
          "country_code": "US",
          "slug": "riverdale-ga",
          "canonical_path": "/cities/us/riverdale-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1764278",
          "name": "Riverdale",
          "country_code": "US",
          "slug": "riverdale-il",
          "canonical_path": "/cities/us/riverdale-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4964010",
          "name": "Riverdale",
          "country_code": "US",
          "slug": "riverdale-ut",
          "canonical_path": "/cities/us/riverdale-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2466635",
          "name": "Riverdale Park",
          "country_code": "US",
          "slug": "riverdale-park",
          "canonical_path": "/cities/us/riverdale-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5133926",
          "name": "Riverhead",
          "country_code": "US",
          "slug": "riverhead",
          "canonical_path": "/cities/us/riverhead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4366929",
          "name": "Riverside",
          "country_code": "US",
          "slug": "riverside",
          "canonical_path": "/cities/us/riverside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4841527",
          "name": "Riverside",
          "country_code": "US",
          "slug": "riverside-ct-190",
          "canonical_path": "/cities/us/riverside-ct-190/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0662000",
          "name": "Riverside",
          "country_code": "US",
          "slug": "riverside-ca",
          "canonical_path": "/cities/us/riverside-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1764421",
          "name": "Riverside",
          "country_code": "US",
          "slug": "riverside-il",
          "canonical_path": "/cities/us/riverside-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3967468",
          "name": "Riverside",
          "country_code": "US",
          "slug": "riverside-oh",
          "canonical_path": "/cities/us/riverside-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4964340",
          "name": "Riverton",
          "country_code": "US",
          "slug": "riverton-ut",
          "canonical_path": "/cities/us/riverton-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5666220",
          "name": "Riverton",
          "country_code": "US",
          "slug": "riverton-wy",
          "canonical_path": "/cities/us/riverton-wy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2668880",
          "name": "Riverview",
          "country_code": "US",
          "slug": "riverview",
          "canonical_path": "/cities/us/riverview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1260975",
          "name": "Riviera Beach",
          "country_code": "US",
          "slug": "riviera-beach",
          "canonical_path": "/cities/us/riviera-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0165040",
          "name": "Roanoke",
          "country_code": "US",
          "slug": "roanoke-al",
          "canonical_path": "/cities/us/roanoke-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4862504",
          "name": "Roanoke",
          "country_code": "US",
          "slug": "roanoke-tx",
          "canonical_path": "/cities/us/roanoke-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5168000",
          "name": "Roanoke",
          "country_code": "US",
          "slug": "roanoke-va",
          "canonical_path": "/cities/us/roanoke-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3756900",
          "name": "Roanoke Rapids",
          "country_code": "US",
          "slug": "roanoke-rapids",
          "canonical_path": "/cities/us/roanoke-rapids/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4907786",
          "name": "Robbins",
          "country_code": "US",
          "slug": "robbins",
          "canonical_path": "/cities/us/robbins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2754808",
          "name": "Robbinsdale",
          "country_code": "US",
          "slug": "robbinsdale",
          "canonical_path": "/cities/us/robbinsdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0165208",
          "name": "Robertsdale",
          "country_code": "US",
          "slug": "robertsdale",
          "canonical_path": "/cities/us/robertsdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103374",
          "name": "Robertsville",
          "country_code": "US",
          "slug": "robertsville",
          "canonical_path": "/cities/us/robertsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1764707",
          "name": "Robinson",
          "country_code": "US",
          "slug": "robinson-il",
          "canonical_path": "/cities/us/robinson-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4862588",
          "name": "Robinson",
          "country_code": "US",
          "slug": "robinson-tx",
          "canonical_path": "/cities/us/robinson-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4367034",
          "name": "Robinwood",
          "country_code": "US",
          "slug": "robinwood",
          "canonical_path": "/cities/us/robinwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4367035",
          "name": "Robinwood",
          "country_code": "US",
          "slug": "robinwood-md-043",
          "canonical_path": "/cities/us/robinwood-md-043/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4862600",
          "name": "Robstown",
          "country_code": "US",
          "slug": "robstown",
          "canonical_path": "/cities/us/robstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1764746",
          "name": "Rochelle",
          "country_code": "US",
          "slug": "rochelle",
          "canonical_path": "/cities/us/rochelle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1865214",
          "name": "Rochester",
          "country_code": "US",
          "slug": "rochester-in",
          "canonical_path": "/cities/us/rochester-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2669020",
          "name": "Rochester",
          "country_code": "US",
          "slug": "rochester-mi",
          "canonical_path": "/cities/us/rochester-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2754880",
          "name": "Rochester",
          "country_code": "US",
          "slug": "rochester-mn",
          "canonical_path": "/cities/us/rochester-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3365140",
          "name": "Rochester",
          "country_code": "US",
          "slug": "rochester-nh",
          "canonical_path": "/cities/us/rochester-nh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3663000",
          "name": "Rochester",
          "country_code": "US",
          "slug": "rochester-ny",
          "canonical_path": "/cities/us/rochester-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2669035",
          "name": "Rochester Hills",
          "country_code": "US",
          "slug": "rochester-hills",
          "canonical_path": "/cities/us/rochester-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1764928",
          "name": "Rock Falls",
          "country_code": "US",
          "slug": "rock-falls",
          "canonical_path": "/cities/us/rock-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4561405",
          "name": "Rock Hill",
          "country_code": "US",
          "slug": "rock-hill",
          "canonical_path": "/cities/us/rock-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1765078",
          "name": "Rock Island",
          "country_code": "US",
          "slug": "rock-island",
          "canonical_path": "/cities/us/rock-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5667235",
          "name": "Rock Springs",
          "country_code": "US",
          "slug": "rock-springs",
          "canonical_path": "/cities/us/rock-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103396",
          "name": "Rockaway",
          "country_code": "US",
          "slug": "rockaway",
          "canonical_path": "/cities/us/rockaway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3464050",
          "name": "Rockaway borough",
          "country_code": "US",
          "slug": "rockaway-borough",
          "canonical_path": "/cities/us/rockaway-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5749017",
          "name": "Rockcreek",
          "country_code": "US",
          "slug": "rockcreek",
          "canonical_path": "/cities/us/rockcreek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4862672",
          "name": "Rockdale",
          "country_code": "US",
          "slug": "rockdale",
          "canonical_path": "/cities/us/rockdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1765000",
          "name": "Rockford",
          "country_code": "US",
          "slug": "rockford-il",
          "canonical_path": "/cities/us/rockford-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2669080",
          "name": "Rockford",
          "country_code": "US",
          "slug": "rockford-mi",
          "canonical_path": "/cities/us/rockford-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3757260",
          "name": "Rockingham",
          "country_code": "US",
          "slug": "rockingham",
          "canonical_path": "/cities/us/rockingham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2363590",
          "name": "Rockland",
          "country_code": "US",
          "slug": "rockland",
          "canonical_path": "/cities/us/rockland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1261500",
          "name": "Rockledge",
          "country_code": "US",
          "slug": "rockledge",
          "canonical_path": "/cities/us/rockledge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0662364",
          "name": "Rocklin",
          "country_code": "US",
          "slug": "rocklin",
          "canonical_path": "/cities/us/rocklin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1366276",
          "name": "Rockmart",
          "country_code": "US",
          "slug": "rockmart",
          "canonical_path": "/cities/us/rockmart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4862804",
          "name": "Rockport",
          "country_code": "US",
          "slug": "rockport",
          "canonical_path": "/cities/us/rockport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1765156",
          "name": "Rockton",
          "country_code": "US",
          "slug": "rockton",
          "canonical_path": "/cities/us/rockton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2467675",
          "name": "Rockville",
          "country_code": "US",
          "slug": "rockville",
          "canonical_path": "/cities/us/rockville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3663264",
          "name": "Rockville Centre",
          "country_code": "US",
          "slug": "rockville-centre",
          "canonical_path": "/cities/us/rockville-centre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4862828",
          "name": "Rockwall",
          "country_code": "US",
          "slug": "rockwall",
          "canonical_path": "/cities/us/rockwall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4764440",
          "name": "Rockwood",
          "country_code": "US",
          "slug": "rockwood",
          "canonical_path": "/cities/us/rockwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3757500",
          "name": "Rocky Mount",
          "country_code": "US",
          "slug": "rocky-mount",
          "canonical_path": "/cities/us/rocky-mount/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5134235",
          "name": "Rocky Point",
          "country_code": "US",
          "slug": "rocky-point",
          "canonical_path": "/cities/us/rocky-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3968056",
          "name": "Rocky River",
          "country_code": "US",
          "slug": "rocky-river",
          "canonical_path": "/cities/us/rocky-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5388467",
          "name": "Rodeo",
          "country_code": "US",
          "slug": "rodeo",
          "canonical_path": "/cities/us/rodeo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2060825",
          "name": "Roeland Park",
          "country_code": "US",
          "slug": "roeland-park",
          "canonical_path": "/cities/us/roeland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5134257",
          "name": "Roessleville",
          "country_code": "US",
          "slug": "roessleville",
          "canonical_path": "/cities/us/roessleville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0560410",
          "name": "Rogers",
          "country_code": "US",
          "slug": "rogers-ar",
          "canonical_path": "/cities/us/rogers-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2755186",
          "name": "Rogers",
          "country_code": "US",
          "slug": "rogers-mn",
          "canonical_path": "/cities/us/rogers-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2962894",
          "name": "Rogersville",
          "country_code": "US",
          "slug": "rogersville",
          "canonical_path": "/cities/us/rogersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0662546",
          "name": "Rohnert Park",
          "country_code": "US",
          "slug": "rohnert-park",
          "canonical_path": "/cities/us/rohnert-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3757640",
          "name": "Rolesville",
          "country_code": "US",
          "slug": "rolesville",
          "canonical_path": "/cities/us/rolesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2962912",
          "name": "Rolla",
          "country_code": "US",
          "slug": "rolla",
          "canonical_path": "/cities/us/rolla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0662644",
          "name": "Rolling Hills Estates",
          "country_code": "US",
          "slug": "rolling-hills-estates",
          "canonical_path": "/cities/us/rolling-hills-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1765338",
          "name": "Rolling Meadows",
          "country_code": "US",
          "slug": "rolling-meadows",
          "canonical_path": "/cities/us/rolling-meadows/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4863020",
          "name": "Roma",
          "country_code": "US",
          "slug": "roma",
          "canonical_path": "/cities/us/roma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1366668",
          "name": "Rome",
          "country_code": "US",
          "slug": "rome-ga",
          "canonical_path": "/cities/us/rome-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3663418",
          "name": "Rome",
          "country_code": "US",
          "slug": "rome-ny",
          "canonical_path": "/cities/us/rome-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1765442",
          "name": "Romeoville",
          "country_code": "US",
          "slug": "romeoville",
          "canonical_path": "/cities/us/romeoville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2669420",
          "name": "Romulus",
          "country_code": "US",
          "slug": "romulus",
          "canonical_path": "/cities/us/romulus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5134316",
          "name": "Ronkonkoma",
          "country_code": "US",
          "slug": "ronkonkoma",
          "canonical_path": "/cities/us/ronkonkoma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4964670",
          "name": "Roosevelt",
          "country_code": "US",
          "slug": "roosevelt",
          "canonical_path": "/cities/us/roosevelt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5388735",
          "name": "Rosamond",
          "country_code": "US",
          "slug": "rosamond",
          "canonical_path": "/cities/us/rosamond/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4367344",
          "name": "Rosaryville",
          "country_code": "US",
          "slug": "rosaryville",
          "canonical_path": "/cities/us/rosaryville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1765611",
          "name": "Roscoe",
          "country_code": "US",
          "slug": "roscoe",
          "canonical_path": "/cities/us/roscoe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4782864",
          "name": "Rose Hill",
          "country_code": "US",
          "slug": "rose-hill",
          "canonical_path": "/cities/us/rose-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4163650",
          "name": "Roseburg",
          "country_code": "US",
          "slug": "roseburg",
          "canonical_path": "/cities/us/roseburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262259",
          "name": "Roseburg North",
          "country_code": "US",
          "slug": "roseburg-north",
          "canonical_path": "/cities/us/roseburg-north/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4367372",
          "name": "Rosedale",
          "country_code": "US",
          "slug": "rosedale",
          "canonical_path": "/cities/us/rosedale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5388843",
          "name": "Rosedale",
          "country_code": "US",
          "slug": "rosedale-ca-029",
          "canonical_path": "/cities/us/rosedale-ca-029/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103497",
          "name": "Roseland",
          "country_code": "US",
          "slug": "roseland",
          "canonical_path": "/cities/us/roseland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3464590",
          "name": "Roseland borough",
          "country_code": "US",
          "slug": "roseland-borough",
          "canonical_path": "/cities/us/roseland-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1765806",
          "name": "Roselle",
          "country_code": "US",
          "slug": "roselle",
          "canonical_path": "/cities/us/roselle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3464620",
          "name": "Roselle borough",
          "country_code": "US",
          "slug": "roselle-borough",
          "canonical_path": "/cities/us/roselle-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103503",
          "name": "Roselle Park",
          "country_code": "US",
          "slug": "roselle-park",
          "canonical_path": "/cities/us/roselle-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3464650",
          "name": "Roselle Park borough",
          "country_code": "US",
          "slug": "roselle-park-borough",
          "canonical_path": "/cities/us/roselle-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0662896",
          "name": "Rosemead",
          "country_code": "US",
          "slug": "rosemead",
          "canonical_path": "/cities/us/rosemead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5388873",
          "name": "Rosemont",
          "country_code": "US",
          "slug": "rosemont",
          "canonical_path": "/cities/us/rosemont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2755726",
          "name": "Rosemount",
          "country_code": "US",
          "slug": "rosemount",
          "canonical_path": "/cities/us/rosemount/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4863284",
          "name": "Rosenberg",
          "country_code": "US",
          "slug": "rosenberg",
          "canonical_path": "/cities/us/rosenberg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0662938",
          "name": "Roseville",
          "country_code": "US",
          "slug": "roseville-ca",
          "canonical_path": "/cities/us/roseville-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2669800",
          "name": "Roseville",
          "country_code": "US",
          "slug": "roseville-mi",
          "canonical_path": "/cities/us/roseville-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2755852",
          "name": "Roseville",
          "country_code": "US",
          "slug": "roseville-mn",
          "canonical_path": "/cities/us/roseville-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5134420",
          "name": "Roslyn Heights",
          "country_code": "US",
          "slug": "roslyn-heights",
          "canonical_path": "/cities/us/roslyn-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3968686",
          "name": "Rossford",
          "country_code": "US",
          "slug": "rossford",
          "canonical_path": "/cities/us/rossford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4782988",
          "name": "Rosslyn",
          "country_code": "US",
          "slug": "rosslyn",
          "canonical_path": "/cities/us/rosslyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4367417",
          "name": "Rossmoor",
          "country_code": "US",
          "slug": "rossmoor",
          "canonical_path": "/cities/us/rossmoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5388953",
          "name": "Rossmoor",
          "country_code": "US",
          "slug": "rossmoor-ca-059",
          "canonical_path": "/cities/us/rossmoor-ca-059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4367419",
          "name": "Rossville",
          "country_code": "US",
          "slug": "rossville",
          "canonical_path": "/cities/us/rossville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1367284",
          "name": "Roswell",
          "country_code": "US",
          "slug": "roswell-ga",
          "canonical_path": "/cities/us/roswell-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3564930",
          "name": "Roswell",
          "country_code": "US",
          "slug": "roswell-nm",
          "canonical_path": "/cities/us/roswell-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5569725",
          "name": "Rothschild",
          "country_code": "US",
          "slug": "rothschild",
          "canonical_path": "/cities/us/rothschild/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4170556",
          "name": "Rotonda West",
          "country_code": "US",
          "slug": "rotonda-west",
          "canonical_path": "/cities/us/rotonda-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5134453",
          "name": "Rotterdam",
          "country_code": "US",
          "slug": "rotterdam",
          "canonical_path": "/cities/us/rotterdam/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1766027",
          "name": "Round Lake",
          "country_code": "US",
          "slug": "round-lake",
          "canonical_path": "/cities/us/round-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1766040",
          "name": "Round Lake Beach",
          "country_code": "US",
          "slug": "round-lake-beach",
          "canonical_path": "/cities/us/round-lake-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1766066",
          "name": "Round Lake Park",
          "country_code": "US",
          "slug": "round-lake-park",
          "canonical_path": "/cities/us/round-lake-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4863500",
          "name": "Round Rock",
          "country_code": "US",
          "slug": "round-rock",
          "canonical_path": "/cities/us/round-rock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5389126",
          "name": "Rowland Heights",
          "country_code": "US",
          "slug": "rowland-heights",
          "canonical_path": "/cities/us/rowland-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4863572",
          "name": "Rowlett",
          "country_code": "US",
          "slug": "rowlett",
          "canonical_path": "/cities/us/rowlett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3758160",
          "name": "Roxboro",
          "country_code": "US",
          "slug": "roxboro",
          "canonical_path": "/cities/us/roxboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5437081",
          "name": "Roxborough Park",
          "country_code": "US",
          "slug": "roxborough-park",
          "canonical_path": "/cities/us/roxborough-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4965110",
          "name": "Roy",
          "country_code": "US",
          "slug": "roy",
          "canonical_path": "/cities/us/roy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262791",
          "name": "Royal Kunia",
          "country_code": "US",
          "slug": "royal-kunia",
          "canonical_path": "/cities/us/royal-kunia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2670040",
          "name": "Royal Oak",
          "country_code": "US",
          "slug": "royal-oak",
          "canonical_path": "/cities/us/royal-oak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1262100",
          "name": "Royal Palm Beach",
          "country_code": "US",
          "slug": "royal-palm-beach",
          "canonical_path": "/cities/us/royal-palm-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4863668",
          "name": "Royse City",
          "country_code": "US",
          "slug": "royse-city",
          "canonical_path": "/cities/us/royse-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3565210",
          "name": "Ruidoso",
          "country_code": "US",
          "slug": "ruidoso",
          "canonical_path": "/cities/us/ruidoso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103564",
          "name": "Rumson",
          "country_code": "US",
          "slug": "rumson",
          "canonical_path": "/cities/us/rumson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3465130",
          "name": "Rumson borough",
          "country_code": "US",
          "slug": "rumson-borough",
          "canonical_path": "/cities/us/rumson-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4503953",
          "name": "Runnemede",
          "country_code": "US",
          "slug": "runnemede",
          "canonical_path": "/cities/us/runnemede/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3465160",
          "name": "Runnemede borough",
          "country_code": "US",
          "slug": "runnemede-borough",
          "canonical_path": "/cities/us/runnemede-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1670660",
          "name": "Rupert",
          "country_code": "US",
          "slug": "rupert",
          "canonical_path": "/cities/us/rupert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1866438",
          "name": "Rushville",
          "country_code": "US",
          "slug": "rushville",
          "canonical_path": "/cities/us/rushville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4863848",
          "name": "Rusk",
          "country_code": "US",
          "slug": "rusk",
          "canonical_path": "/cities/us/rusk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4170688",
          "name": "Ruskin",
          "country_code": "US",
          "slug": "ruskin",
          "canonical_path": "/cities/us/ruskin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0167056",
          "name": "Russellville",
          "country_code": "US",
          "slug": "russellville-al",
          "canonical_path": "/cities/us/russellville-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0561670",
          "name": "Russellville",
          "country_code": "US",
          "slug": "russellville-ar",
          "canonical_path": "/cities/us/russellville-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2167512",
          "name": "Russellville",
          "country_code": "US",
          "slug": "russellville-ky",
          "canonical_path": "/cities/us/russellville-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2266655",
          "name": "Ruston",
          "country_code": "US",
          "slug": "ruston",
          "canonical_path": "/cities/us/ruston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5103580",
          "name": "Rutherford",
          "country_code": "US",
          "slug": "rutherford",
          "canonical_path": "/cities/us/rutherford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3465280",
          "name": "Rutherford borough",
          "country_code": "US",
          "slug": "rutherford-borough",
          "canonical_path": "/cities/us/rutherford-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5061225",
          "name": "Rutland",
          "country_code": "US",
          "slug": "rutland",
          "canonical_path": "/cities/us/rutland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3664309",
          "name": "Rye",
          "country_code": "US",
          "slug": "rye",
          "canonical_path": "/cities/us/rye/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3664325",
          "name": "Rye Brook",
          "country_code": "US",
          "slug": "rye-brook",
          "canonical_path": "/cities/us/rye-brook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4864064",
          "name": "Sachse",
          "country_code": "US",
          "slug": "sachse",
          "canonical_path": "/cities/us/sachse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2364675",
          "name": "Saco",
          "country_code": "US",
          "slug": "saco",
          "canonical_path": "/cities/us/saco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0664000",
          "name": "Sacramento",
          "country_code": "US",
          "slug": "sacramento",
          "canonical_path": "/cities/us/sacramento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7249307",
          "name": "Saddlebrooke",
          "country_code": "US",
          "slug": "saddlebrooke",
          "canonical_path": "/cities/us/saddlebrooke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1262425",
          "name": "Safety Harbor",
          "country_code": "US",
          "slug": "safety-harbor",
          "canonical_path": "/cities/us/safety-harbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0462000",
          "name": "Safford",
          "country_code": "US",
          "slug": "safford",
          "canonical_path": "/cities/us/safford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2670520",
          "name": "Saginaw",
          "country_code": "US",
          "slug": "saginaw-mi",
          "canonical_path": "/cities/us/saginaw-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4864112",
          "name": "Saginaw",
          "country_code": "US",
          "slug": "saginaw-tx",
          "canonical_path": "/cities/us/saginaw-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0462140",
          "name": "Sahuarita",
          "country_code": "US",
          "slug": "sahuarita",
          "canonical_path": "/cities/us/sahuarita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4820938",
          "name": "Saint Albans",
          "country_code": "US",
          "slug": "saint-albans",
          "canonical_path": "/cities/us/saint-albans/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5240569",
          "name": "Saint Albans",
          "country_code": "US",
          "slug": "saint-albans-vt-011",
          "canonical_path": "/cities/us/saint-albans-vt-011/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4593724",
          "name": "Saint Andrews",
          "country_code": "US",
          "slug": "saint-andrews",
          "canonical_path": "/cities/us/saint-andrews/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4406783",
          "name": "Saint Ann",
          "country_code": "US",
          "slug": "saint-ann",
          "canonical_path": "/cities/us/saint-ann/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5044290",
          "name": "Saint Anthony",
          "country_code": "US",
          "slug": "saint-anthony",
          "canonical_path": "/cities/us/saint-anthony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4170894",
          "name": "Saint Augustine",
          "country_code": "US",
          "slug": "saint-augustine",
          "canonical_path": "/cities/us/saint-augustine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4170896",
          "name": "Saint Augustine Beach",
          "country_code": "US",
          "slug": "saint-augustine-beach",
          "canonical_path": "/cities/us/saint-augustine-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4170908",
          "name": "Saint Augustine Shores",
          "country_code": "US",
          "slug": "saint-augustine-shores",
          "canonical_path": "/cities/us/saint-augustine-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4367734",
          "name": "Saint Charles",
          "country_code": "US",
          "slug": "saint-charles",
          "canonical_path": "/cities/us/saint-charles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4406831",
          "name": "Saint Charles",
          "country_code": "US",
          "slug": "saint-charles-mo-183",
          "canonical_path": "/cities/us/saint-charles-mo-183/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5010977",
          "name": "Saint Clair",
          "country_code": "US",
          "slug": "saint-clair",
          "canonical_path": "/cities/us/saint-clair/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5010978",
          "name": "Saint Clair Shores",
          "country_code": "US",
          "slug": "saint-clair-shores",
          "canonical_path": "/cities/us/saint-clair-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5169130",
          "name": "Saint Clairsville",
          "country_code": "US",
          "slug": "saint-clairsville",
          "canonical_path": "/cities/us/saint-clairsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4170965",
          "name": "Saint Cloud",
          "country_code": "US",
          "slug": "saint-cloud",
          "canonical_path": "/cities/us/saint-cloud/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5044407",
          "name": "Saint Cloud",
          "country_code": "US",
          "slug": "saint-cloud-mn-145",
          "canonical_path": "/cities/us/saint-cloud-mn-145/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5044485",
          "name": "Saint Francis",
          "country_code": "US",
          "slug": "saint-francis",
          "canonical_path": "/cities/us/saint-francis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5270249",
          "name": "Saint Francis",
          "country_code": "US",
          "slug": "saint-francis-wi-079",
          "canonical_path": "/cities/us/saint-francis-wi-079/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4339690",
          "name": "Saint Gabriel",
          "country_code": "US",
          "slug": "saint-gabriel",
          "canonical_path": "/cities/us/saint-gabriel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5546220",
          "name": "Saint George",
          "country_code": "US",
          "slug": "saint-george",
          "canonical_path": "/cities/us/saint-george/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5390267",
          "name": "Saint Helena",
          "country_code": "US",
          "slug": "saint-helena",
          "canonical_path": "/cities/us/saint-helena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5750041",
          "name": "Saint Helens",
          "country_code": "US",
          "slug": "saint-helens",
          "canonical_path": "/cities/us/saint-helens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5135192",
          "name": "Saint James",
          "country_code": "US",
          "slug": "saint-james",
          "canonical_path": "/cities/us/saint-james/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4406941",
          "name": "Saint John",
          "country_code": "US",
          "slug": "saint-john",
          "canonical_path": "/cities/us/saint-john/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4925793",
          "name": "Saint John",
          "country_code": "US",
          "slug": "saint-john-in-089",
          "canonical_path": "/cities/us/saint-john-in-089/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5008278",
          "name": "Saint Johns",
          "country_code": "US",
          "slug": "saint-johns-mi-037",
          "canonical_path": "/cities/us/saint-johns-mi-037/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5240656",
          "name": "Saint Johnsbury",
          "country_code": "US",
          "slug": "saint-johnsbury",
          "canonical_path": "/cities/us/saint-johnsbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4407010",
          "name": "Saint Joseph",
          "country_code": "US",
          "slug": "saint-joseph",
          "canonical_path": "/cities/us/saint-joseph/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5008327",
          "name": "Saint Joseph",
          "country_code": "US",
          "slug": "saint-joseph-mi-021",
          "canonical_path": "/cities/us/saint-joseph-mi-021/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5044896",
          "name": "Saint Joseph",
          "country_code": "US",
          "slug": "saint-joseph-mn-145",
          "canonical_path": "/cities/us/saint-joseph-mn-145/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5008414",
          "name": "Saint Louis",
          "country_code": "US",
          "slug": "saint-louis",
          "canonical_path": "/cities/us/saint-louis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5045021",
          "name": "Saint Louis Park",
          "country_code": "US",
          "slug": "saint-louis-park",
          "canonical_path": "/cities/us/saint-louis-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4447069",
          "name": "Saint Martin",
          "country_code": "US",
          "slug": "saint-martin",
          "canonical_path": "/cities/us/saint-martin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4340196",
          "name": "Saint Martinville",
          "country_code": "US",
          "slug": "saint-martinville",
          "canonical_path": "/cities/us/saint-martinville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5169796",
          "name": "Saint Marys",
          "country_code": "US",
          "slug": "saint-marys",
          "canonical_path": "/cities/us/saint-marys/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5210117",
          "name": "Saint Marys",
          "country_code": "US",
          "slug": "saint-marys-pa-047",
          "canonical_path": "/cities/us/saint-marys-pa-047/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4307238",
          "name": "Saint Matthews",
          "country_code": "US",
          "slug": "saint-matthews",
          "canonical_path": "/cities/us/saint-matthews/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5045258",
          "name": "Saint Michael",
          "country_code": "US",
          "slug": "saint-michael",
          "canonical_path": "/cities/us/saint-michael/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5045360",
          "name": "Saint Paul",
          "country_code": "US",
          "slug": "saint-paul",
          "canonical_path": "/cities/us/saint-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5045403",
          "name": "Saint Paul Park",
          "country_code": "US",
          "slug": "saint-paul-park",
          "canonical_path": "/cities/us/saint-paul-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4171522",
          "name": "Saint Pete Beach",
          "country_code": "US",
          "slug": "saint-pete-beach",
          "canonical_path": "/cities/us/saint-pete-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5045517",
          "name": "Saint Peter",
          "country_code": "US",
          "slug": "saint-peter",
          "canonical_path": "/cities/us/saint-peter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4407237",
          "name": "Saint Peters",
          "country_code": "US",
          "slug": "saint-peters",
          "canonical_path": "/cities/us/saint-peters/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4340551",
          "name": "Saint Rose",
          "country_code": "US",
          "slug": "saint-rose",
          "canonical_path": "/cities/us/saint-rose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4493146",
          "name": "Saint Stephens",
          "country_code": "US",
          "slug": "saint-stephens",
          "canonical_path": "/cities/us/saint-stephens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4088146",
          "name": "Saks",
          "country_code": "US",
          "slug": "saks",
          "canonical_path": "/cities/us/saks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3664749",
          "name": "Salamanca",
          "country_code": "US",
          "slug": "salamanca",
          "canonical_path": "/cities/us/salamanca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5092268",
          "name": "Salem",
          "country_code": "US",
          "slug": "salem",
          "canonical_path": "/cities/us/salem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1767236",
          "name": "Salem",
          "country_code": "US",
          "slug": "salem-il",
          "canonical_path": "/cities/us/salem-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1867464",
          "name": "Salem",
          "country_code": "US",
          "slug": "salem-in",
          "canonical_path": "/cities/us/salem-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2559105",
          "name": "Salem",
          "country_code": "US",
          "slug": "salem-ma",
          "canonical_path": "/cities/us/salem-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3465490",
          "name": "Salem",
          "country_code": "US",
          "slug": "salem-nj",
          "canonical_path": "/cities/us/salem-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3969834",
          "name": "Salem",
          "country_code": "US",
          "slug": "salem-oh",
          "canonical_path": "/cities/us/salem-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4164900",
          "name": "Salem",
          "country_code": "US",
          "slug": "salem-or",
          "canonical_path": "/cities/us/salem-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4965770",
          "name": "Salem",
          "country_code": "US",
          "slug": "salem-ut",
          "canonical_path": "/cities/us/salem-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5170000",
          "name": "Salem",
          "country_code": "US",
          "slug": "salem-va",
          "canonical_path": "/cities/us/salem-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5571163",
          "name": "Salem Lakes",
          "country_code": "US",
          "slug": "salem-lakes",
          "canonical_path": "/cities/us/salem-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0867280",
          "name": "Salida",
          "country_code": "US",
          "slug": "salida",
          "canonical_path": "/cities/us/salida/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2062700",
          "name": "Salina",
          "country_code": "US",
          "slug": "salina",
          "canonical_path": "/cities/us/salina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0664224",
          "name": "Salinas",
          "country_code": "US",
          "slug": "salinas",
          "canonical_path": "/cities/us/salinas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2671140",
          "name": "Saline",
          "country_code": "US",
          "slug": "saline",
          "canonical_path": "/cities/us/saline/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5136107",
          "name": "Salisbury",
          "country_code": "US",
          "slug": "salisbury",
          "canonical_path": "/cities/us/salisbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2469925",
          "name": "Salisbury",
          "country_code": "US",
          "slug": "salisbury-md",
          "canonical_path": "/cities/us/salisbury-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3758860",
          "name": "Salisbury",
          "country_code": "US",
          "slug": "salisbury-nc",
          "canonical_path": "/cities/us/salisbury-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4065000",
          "name": "Sallisaw",
          "country_code": "US",
          "slug": "sallisaw",
          "canonical_path": "/cities/us/sallisaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5809333",
          "name": "Salmon Creek",
          "country_code": "US",
          "slug": "salmon-creek",
          "canonical_path": "/cities/us/salmon-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4967000",
          "name": "Salt Lake City",
          "country_code": "US",
          "slug": "salt-lake-city",
          "canonical_path": "/cities/us/salt-lake-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2864840",
          "name": "Saltillo",
          "country_code": "US",
          "slug": "saltillo",
          "canonical_path": "/cities/us/saltillo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5361115",
          "name": "Sammamish",
          "country_code": "US",
          "slug": "sammamish",
          "canonical_path": "/cities/us/sammamish/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260093",
          "name": "Samsula-Spruce Creek",
          "country_code": "US",
          "slug": "samsula-spruce-creek",
          "canonical_path": "/cities/us/samsula-spruce-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4864472",
          "name": "San Angelo",
          "country_code": "US",
          "slug": "san-angelo",
          "canonical_path": "/cities/us/san-angelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0664434",
          "name": "San Anselmo",
          "country_code": "US",
          "slug": "san-anselmo",
          "canonical_path": "/cities/us/san-anselmo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4865000",
          "name": "San Antonio",
          "country_code": "US",
          "slug": "san-antonio",
          "canonical_path": "/cities/us/san-antonio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4865036",
          "name": "San Benito",
          "country_code": "US",
          "slug": "san-benito",
          "canonical_path": "/cities/us/san-benito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0665000",
          "name": "San Bernardino",
          "country_code": "US",
          "slug": "san-bernardino",
          "canonical_path": "/cities/us/san-bernardino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0665028",
          "name": "San Bruno",
          "country_code": "US",
          "slug": "san-bruno",
          "canonical_path": "/cities/us/san-bruno/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0665042",
          "name": "San Buenaventura (Ventura)",
          "country_code": "US",
          "slug": "san-buenaventura-ventura",
          "canonical_path": "/cities/us/san-buenaventura-ventura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0665070",
          "name": "San Carlos",
          "country_code": "US",
          "slug": "san-carlos",
          "canonical_path": "/cities/us/san-carlos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4171782",
          "name": "San Carlos Park",
          "country_code": "US",
          "slug": "san-carlos-park",
          "canonical_path": "/cities/us/san-carlos-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0665084",
          "name": "San Clemente",
          "country_code": "US",
          "slug": "san-clemente",
          "canonical_path": "/cities/us/san-clemente/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0666000",
          "name": "San Diego",
          "country_code": "US",
          "slug": "san-diego",
          "canonical_path": "/cities/us/san-diego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5391831",
          "name": "San Diego Country Estates",
          "country_code": "US",
          "slug": "san-diego-country-estates",
          "canonical_path": "/cities/us/san-diego-country-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0666070",
          "name": "San Dimas",
          "country_code": "US",
          "slug": "san-dimas",
          "canonical_path": "/cities/us/san-dimas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4865360",
          "name": "San Elizario",
          "country_code": "US",
          "slug": "san-elizario",
          "canonical_path": "/cities/us/san-elizario/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0666140",
          "name": "San Fernando",
          "country_code": "US",
          "slug": "san-fernando",
          "canonical_path": "/cities/us/san-fernando/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0667000",
          "name": "San Francisco",
          "country_code": "US",
          "slug": "san-francisco",
          "canonical_path": "/cities/us/san-francisco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0667042",
          "name": "San Gabriel",
          "country_code": "US",
          "slug": "san-gabriel",
          "canonical_path": "/cities/us/san-gabriel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0667112",
          "name": "San Jacinto",
          "country_code": "US",
          "slug": "san-jacinto",
          "canonical_path": "/cities/us/san-jacinto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668000",
          "name": "San Jose",
          "country_code": "US",
          "slug": "san-jose",
          "canonical_path": "/cities/us/san-jose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4865516",
          "name": "San Juan",
          "country_code": "US",
          "slug": "san-juan",
          "canonical_path": "/cities/us/san-juan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668028",
          "name": "San Juan Capistrano",
          "country_code": "US",
          "slug": "san-juan-capistrano",
          "canonical_path": "/cities/us/san-juan-capistrano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668084",
          "name": "San Leandro",
          "country_code": "US",
          "slug": "san-leandro",
          "canonical_path": "/cities/us/san-leandro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5392281",
          "name": "San Lorenzo",
          "country_code": "US",
          "slug": "san-lorenzo",
          "canonical_path": "/cities/us/san-lorenzo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0463470",
          "name": "San Luis",
          "country_code": "US",
          "slug": "san-luis",
          "canonical_path": "/cities/us/san-luis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668154",
          "name": "San Luis Obispo",
          "country_code": "US",
          "slug": "san-luis-obispo",
          "canonical_path": "/cities/us/san-luis-obispo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668196",
          "name": "San Marcos",
          "country_code": "US",
          "slug": "san-marcos-ca",
          "canonical_path": "/cities/us/san-marcos-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4865600",
          "name": "San Marcos",
          "country_code": "US",
          "slug": "san-marcos-tx",
          "canonical_path": "/cities/us/san-marcos-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668224",
          "name": "San Marino",
          "country_code": "US",
          "slug": "san-marino",
          "canonical_path": "/cities/us/san-marino/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5392408",
          "name": "San Martin",
          "country_code": "US",
          "slug": "san-martin",
          "canonical_path": "/cities/us/san-martin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668252",
          "name": "San Mateo",
          "country_code": "US",
          "slug": "san-mateo",
          "canonical_path": "/cities/us/san-mateo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668294",
          "name": "San Pablo",
          "country_code": "US",
          "slug": "san-pablo",
          "canonical_path": "/cities/us/san-pablo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668364",
          "name": "San Rafael",
          "country_code": "US",
          "slug": "san-rafael",
          "canonical_path": "/cities/us/san-rafael/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0668378",
          "name": "San Ramon",
          "country_code": "US",
          "slug": "san-ramon",
          "canonical_path": "/cities/us/san-ramon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7310164",
          "name": "San Tan Valley",
          "country_code": "US",
          "slug": "san-tan-valley",
          "canonical_path": "/cities/us/san-tan-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5210764",
          "name": "Sanatoga",
          "country_code": "US",
          "slug": "sanatoga",
          "canonical_path": "/cities/us/sanatoga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4065300",
          "name": "Sand Springs",
          "country_code": "US",
          "slug": "sand-springs",
          "canonical_path": "/cities/us/sand-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1368208",
          "name": "Sandersville",
          "country_code": "US",
          "slug": "sandersville",
          "canonical_path": "/cities/us/sandersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5092364",
          "name": "Sandown",
          "country_code": "US",
          "slug": "sandown",
          "canonical_path": "/cities/us/sandown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1672100",
          "name": "Sandpoint",
          "country_code": "US",
          "slug": "sandpoint",
          "canonical_path": "/cities/us/sandpoint/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4784352",
          "name": "Sandston",
          "country_code": "US",
          "slug": "sandston",
          "canonical_path": "/cities/us/sandston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3970380",
          "name": "Sandusky",
          "country_code": "US",
          "slug": "sandusky",
          "canonical_path": "/cities/us/sandusky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1767548",
          "name": "Sandwich",
          "country_code": "US",
          "slug": "sandwich",
          "canonical_path": "/cities/us/sandwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4165250",
          "name": "Sandy",
          "country_code": "US",
          "slug": "sandy-or",
          "canonical_path": "/cities/us/sandy-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4967440",
          "name": "Sandy",
          "country_code": "US",
          "slug": "sandy-ut",
          "canonical_path": "/cities/us/sandy-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4865344",
          "name": "Sandy Oaks",
          "country_code": "US",
          "slug": "sandy-oaks",
          "canonical_path": "/cities/us/sandy-oaks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1368516",
          "name": "Sandy Springs",
          "country_code": "US",
          "slug": "sandy-springs",
          "canonical_path": "/cities/us/sandy-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1263650",
          "name": "Sanford",
          "country_code": "US",
          "slug": "sanford-fl",
          "canonical_path": "/cities/us/sanford-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2365725",
          "name": "Sanford",
          "country_code": "US",
          "slug": "sanford-me",
          "canonical_path": "/cities/us/sanford-me/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3759280",
          "name": "Sanford",
          "country_code": "US",
          "slug": "sanford-nc",
          "canonical_path": "/cities/us/sanford-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4594971",
          "name": "Sangaree",
          "country_code": "US",
          "slug": "sangaree",
          "canonical_path": "/cities/us/sangaree/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0667056",
          "name": "Sanger",
          "country_code": "US",
          "slug": "sanger-ca",
          "canonical_path": "/cities/us/sanger-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4865408",
          "name": "Sanger",
          "country_code": "US",
          "slug": "sanger-tx",
          "canonical_path": "/cities/us/sanger-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1263700",
          "name": "Sanibel",
          "country_code": "US",
          "slug": "sanibel",
          "canonical_path": "/cities/us/sanibel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4594975",
          "name": "Sans Souci",
          "country_code": "US",
          "slug": "sans-souci",
          "canonical_path": "/cities/us/sans-souci/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4865660",
          "name": "Sansom Park",
          "country_code": "US",
          "slug": "sansom-park",
          "canonical_path": "/cities/us/sansom-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0669000",
          "name": "Santa Ana",
          "country_code": "US",
          "slug": "santa-ana",
          "canonical_path": "/cities/us/santa-ana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0669070",
          "name": "Santa Barbara",
          "country_code": "US",
          "slug": "santa-barbara",
          "canonical_path": "/cities/us/santa-barbara/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0669084",
          "name": "Santa Clara",
          "country_code": "US",
          "slug": "santa-clara-ca",
          "canonical_path": "/cities/us/santa-clara-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4967660",
          "name": "Santa Clara",
          "country_code": "US",
          "slug": "santa-clara-ut",
          "canonical_path": "/cities/us/santa-clara-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0669088",
          "name": "Santa Clarita",
          "country_code": "US",
          "slug": "santa-clarita",
          "canonical_path": "/cities/us/santa-clarita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0669112",
          "name": "Santa Cruz",
          "country_code": "US",
          "slug": "santa-cruz",
          "canonical_path": "/cities/us/santa-cruz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3570500",
          "name": "Santa Fe",
          "country_code": "US",
          "slug": "santa-fe-nm",
          "canonical_path": "/cities/us/santa-fe-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4865726",
          "name": "Santa Fe",
          "country_code": "US",
          "slug": "santa-fe-tx",
          "canonical_path": "/cities/us/santa-fe-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0669154",
          "name": "Santa Fe Springs",
          "country_code": "US",
          "slug": "santa-fe-springs",
          "canonical_path": "/cities/us/santa-fe-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0669196",
          "name": "Santa Maria",
          "country_code": "US",
          "slug": "santa-maria",
          "canonical_path": "/cities/us/santa-maria/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670000",
          "name": "Santa Monica",
          "country_code": "US",
          "slug": "santa-monica",
          "canonical_path": "/cities/us/santa-monica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670042",
          "name": "Santa Paula",
          "country_code": "US",
          "slug": "santa-paula",
          "canonical_path": "/cities/us/santa-paula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670098",
          "name": "Santa Rosa",
          "country_code": "US",
          "slug": "santa-rosa",
          "canonical_path": "/cities/us/santa-rosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4967770",
          "name": "Santaquin",
          "country_code": "US",
          "slug": "santaquin",
          "canonical_path": "/cities/us/santaquin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670224",
          "name": "Santee",
          "country_code": "US",
          "slug": "santee",
          "canonical_path": "/cities/us/santee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4407617",
          "name": "Sappington",
          "country_code": "US",
          "slug": "sappington",
          "canonical_path": "/cities/us/sappington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4065400",
          "name": "Sapulpa",
          "country_code": "US",
          "slug": "sapulpa",
          "canonical_path": "/cities/us/sapulpa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0168160",
          "name": "Saraland",
          "country_code": "US",
          "slug": "saraland",
          "canonical_path": "/cities/us/saraland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5136322",
          "name": "Saranac Lake",
          "country_code": "US",
          "slug": "saranac-lake",
          "canonical_path": "/cities/us/saranac-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5393484",
          "name": "Saranap",
          "country_code": "US",
          "slug": "saranap",
          "canonical_path": "/cities/us/saranap/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1264175",
          "name": "Sarasota",
          "country_code": "US",
          "slug": "sarasota",
          "canonical_path": "/cities/us/sarasota/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4172150",
          "name": "Sarasota Springs",
          "country_code": "US",
          "slug": "sarasota-springs",
          "canonical_path": "/cities/us/sarasota-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670280",
          "name": "Saratoga",
          "country_code": "US",
          "slug": "saratoga",
          "canonical_path": "/cities/us/saratoga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3665255",
          "name": "Saratoga Springs",
          "country_code": "US",
          "slug": "saratoga-springs-ny",
          "canonical_path": "/cities/us/saratoga-springs-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4967825",
          "name": "Saratoga Springs",
          "country_code": "US",
          "slug": "saratoga-springs-ut",
          "canonical_path": "/cities/us/saratoga-springs-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2758612",
          "name": "Sartell",
          "country_code": "US",
          "slug": "sartell",
          "canonical_path": "/cities/us/sartell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1264400",
          "name": "Satellite Beach",
          "country_code": "US",
          "slug": "satellite-beach",
          "canonical_path": "/cities/us/satellite-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0168352",
          "name": "Satsuma",
          "country_code": "US",
          "slug": "satsuma",
          "canonical_path": "/cities/us/satsuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4950267",
          "name": "Saugus",
          "country_code": "US",
          "slug": "saugus",
          "canonical_path": "/cities/us/saugus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2758684",
          "name": "Sauk Rapids",
          "country_code": "US",
          "slug": "sauk-rapids",
          "canonical_path": "/cities/us/sauk-rapids/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1767769",
          "name": "Sauk Village",
          "country_code": "US",
          "slug": "sauk-village",
          "canonical_path": "/cities/us/sauk-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2671740",
          "name": "Sault Ste. Marie",
          "country_code": "US",
          "slug": "sault-ste-marie",
          "canonical_path": "/cities/us/sault-ste-marie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670364",
          "name": "Sausalito",
          "country_code": "US",
          "slug": "sausalito",
          "canonical_path": "/cities/us/sausalito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2758738",
          "name": "Savage",
          "country_code": "US",
          "slug": "savage",
          "canonical_path": "/cities/us/savage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1369000",
          "name": "Savannah",
          "country_code": "US",
          "slug": "savannah-ga",
          "canonical_path": "/cities/us/savannah-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2966044",
          "name": "Savannah",
          "country_code": "US",
          "slug": "savannah-mo",
          "canonical_path": "/cities/us/savannah-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4766720",
          "name": "Savannah",
          "country_code": "US",
          "slug": "savannah-tn",
          "canonical_path": "/cities/us/savannah-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1767860",
          "name": "Savoy",
          "country_code": "US",
          "slug": "savoy",
          "canonical_path": "/cities/us/savoy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3759540",
          "name": "Sawmills",
          "country_code": "US",
          "slug": "sawmills",
          "canonical_path": "/cities/us/sawmills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5211037",
          "name": "Sayre",
          "country_code": "US",
          "slug": "sayre",
          "canonical_path": "/cities/us/sayre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4268096",
          "name": "Sayre borough",
          "country_code": "US",
          "slug": "sayre-borough",
          "canonical_path": "/cities/us/sayre-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5104404",
          "name": "Sayreville",
          "country_code": "US",
          "slug": "sayreville",
          "canonical_path": "/cities/us/sayreville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3465790",
          "name": "Sayreville borough",
          "country_code": "US",
          "slug": "sayreville-borough",
          "canonical_path": "/cities/us/sayreville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5136421",
          "name": "Sayville",
          "country_code": "US",
          "slug": "sayville",
          "canonical_path": "/cities/us/sayville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4368918",
          "name": "Scaggsville",
          "country_code": "US",
          "slug": "scaggsville",
          "canonical_path": "/cities/us/scaggsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4165500",
          "name": "Scappoose",
          "country_code": "US",
          "slug": "scappoose",
          "canonical_path": "/cities/us/scappoose/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3665431",
          "name": "Scarsdale",
          "country_code": "US",
          "slug": "scarsdale",
          "canonical_path": "/cities/us/scarsdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1768003",
          "name": "Schaumburg",
          "country_code": "US",
          "slug": "schaumburg",
          "canonical_path": "/cities/us/schaumburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3665508",
          "name": "Schenectady",
          "country_code": "US",
          "slug": "schenectady",
          "canonical_path": "/cities/us/schenectady/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1868220",
          "name": "Schererville",
          "country_code": "US",
          "slug": "schererville",
          "canonical_path": "/cities/us/schererville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4866128",
          "name": "Schertz",
          "country_code": "US",
          "slug": "schertz",
          "canonical_path": "/cities/us/schertz/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1768081",
          "name": "Schiller Park",
          "country_code": "US",
          "slug": "schiller-park",
          "canonical_path": "/cities/us/schiller-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5211113",
          "name": "Schlusser",
          "country_code": "US",
          "slug": "schlusser",
          "canonical_path": "/cities/us/schlusser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262790",
          "name": "Schofield Barracks",
          "country_code": "US",
          "slug": "schofield-barracks",
          "canonical_path": "/cities/us/schofield-barracks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13645944",
          "name": "Schofield-Wheeler",
          "country_code": "US",
          "slug": "schofield-wheeler",
          "canonical_path": "/cities/us/schofield-wheeler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4341007",
          "name": "Schriever",
          "country_code": "US",
          "slug": "schriever",
          "canonical_path": "/cities/us/schriever/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3144035",
          "name": "Schuyler",
          "country_code": "US",
          "slug": "schuyler",
          "canonical_path": "/cities/us/schuyler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5211212",
          "name": "Schuylkill Haven",
          "country_code": "US",
          "slug": "schuylkill-haven",
          "canonical_path": "/cities/us/schuylkill-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4268312",
          "name": "Schuylkill Haven borough",
          "country_code": "US",
          "slug": "schuylkill-haven-borough",
          "canonical_path": "/cities/us/schuylkill-haven-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4950395",
          "name": "Scituate",
          "country_code": "US",
          "slug": "scituate",
          "canonical_path": "/cities/us/scituate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5137421",
          "name": "Scotchtown",
          "country_code": "US",
          "slug": "scotchtown",
          "canonical_path": "/cities/us/scotchtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3665893",
          "name": "Scotia",
          "country_code": "US",
          "slug": "scotia",
          "canonical_path": "/cities/us/scotia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2268475",
          "name": "Scott",
          "country_code": "US",
          "slug": "scott",
          "canonical_path": "/cities/us/scott/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4221732",
          "name": "Scottdale",
          "country_code": "US",
          "slug": "scottdale",
          "canonical_path": "/cities/us/scottdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670588",
          "name": "Scotts Valley",
          "country_code": "US",
          "slug": "scotts-valley",
          "canonical_path": "/cities/us/scotts-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3144245",
          "name": "Scottsbluff",
          "country_code": "US",
          "slug": "scottsbluff",
          "canonical_path": "/cities/us/scottsbluff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0168736",
          "name": "Scottsboro",
          "country_code": "US",
          "slug": "scottsboro",
          "canonical_path": "/cities/us/scottsboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1868526",
          "name": "Scottsburg",
          "country_code": "US",
          "slug": "scottsburg",
          "canonical_path": "/cities/us/scottsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0465000",
          "name": "Scottsdale",
          "country_code": "US",
          "slug": "scottsdale",
          "canonical_path": "/cities/us/scottsdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4269000",
          "name": "Scranton",
          "country_code": "US",
          "slug": "scranton",
          "canonical_path": "/cities/us/scranton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3666047",
          "name": "Sea Cliff",
          "country_code": "US",
          "slug": "sea-cliff",
          "canonical_path": "/cities/us/sea-cliff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4866392",
          "name": "Seabrook",
          "country_code": "US",
          "slug": "seabrook",
          "canonical_path": "/cities/us/seabrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1064320",
          "name": "Seaford",
          "country_code": "US",
          "slug": "seaford",
          "canonical_path": "/cities/us/seaford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4866428",
          "name": "Seagoville",
          "country_code": "US",
          "slug": "seagoville",
          "canonical_path": "/cities/us/seagoville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670686",
          "name": "Seal Beach",
          "country_code": "US",
          "slug": "seal-beach",
          "canonical_path": "/cities/us/seal-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4866464",
          "name": "Sealy",
          "country_code": "US",
          "slug": "sealy",
          "canonical_path": "/cities/us/sealy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0563020",
          "name": "Searcy",
          "country_code": "US",
          "slug": "searcy",
          "canonical_path": "/cities/us/searcy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670742",
          "name": "Seaside",
          "country_code": "US",
          "slug": "seaside-ca",
          "canonical_path": "/cities/us/seaside-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4165950",
          "name": "Seaside",
          "country_code": "US",
          "slug": "seaside-or",
          "canonical_path": "/cities/us/seaside-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5362288",
          "name": "SeaTac",
          "country_code": "US",
          "slug": "seatac",
          "canonical_path": "/cities/us/seatac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5363000",
          "name": "Seattle",
          "country_code": "US",
          "slug": "seattle",
          "canonical_path": "/cities/us/seattle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1264825",
          "name": "Sebastian",
          "country_code": "US",
          "slug": "sebastian",
          "canonical_path": "/cities/us/sebastian/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670770",
          "name": "Sebastopol",
          "country_code": "US",
          "slug": "sebastopol",
          "canonical_path": "/cities/us/sebastopol/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1264875",
          "name": "Sebring",
          "country_code": "US",
          "slug": "sebring",
          "canonical_path": "/cities/us/sebring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3466570",
          "name": "Secaucus",
          "country_code": "US",
          "slug": "secaucus",
          "canonical_path": "/cities/us/secaucus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262349",
          "name": "Security-Widefield",
          "country_code": "US",
          "slug": "security-widefield",
          "canonical_path": "/cities/us/security-widefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2966440",
          "name": "Sedalia",
          "country_code": "US",
          "slug": "sedalia",
          "canonical_path": "/cities/us/sedalia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0465350",
          "name": "Sedona",
          "country_code": "US",
          "slug": "sedona",
          "canonical_path": "/cities/us/sedona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5363210",
          "name": "Sedro-Woolley",
          "country_code": "US",
          "slug": "sedro-woolley",
          "canonical_path": "/cities/us/sedro-woolley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4950541",
          "name": "Seekonk",
          "country_code": "US",
          "slug": "seekonk",
          "canonical_path": "/cities/us/seekonk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4172413",
          "name": "Seffner",
          "country_code": "US",
          "slug": "seffner",
          "canonical_path": "/cities/us/seffner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4866644",
          "name": "Seguin",
          "country_code": "US",
          "slug": "seguin",
          "canonical_path": "/cities/us/seguin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5363280",
          "name": "Selah",
          "country_code": "US",
          "slug": "selah",
          "canonical_path": "/cities/us/selah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5137600",
          "name": "Selden",
          "country_code": "US",
          "slug": "selden",
          "canonical_path": "/cities/us/selden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5211411",
          "name": "Selinsgrove",
          "country_code": "US",
          "slug": "selinsgrove",
          "canonical_path": "/cities/us/selinsgrove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4269216",
          "name": "Selinsgrove borough",
          "country_code": "US",
          "slug": "selinsgrove-borough",
          "canonical_path": "/cities/us/selinsgrove-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1868670",
          "name": "Sellersburg",
          "country_code": "US",
          "slug": "sellersburg",
          "canonical_path": "/cities/us/sellersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0169120",
          "name": "Selma",
          "country_code": "US",
          "slug": "selma-al",
          "canonical_path": "/cities/us/selma-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0670882",
          "name": "Selma",
          "country_code": "US",
          "slug": "selma-ca",
          "canonical_path": "/cities/us/selma-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3760320",
          "name": "Selma",
          "country_code": "US",
          "slug": "selma-nc",
          "canonical_path": "/cities/us/selma-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4866704",
          "name": "Selma",
          "country_code": "US",
          "slug": "selma-tx",
          "canonical_path": "/cities/us/selma-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1264975",
          "name": "Seminole",
          "country_code": "US",
          "slug": "seminole-fl",
          "canonical_path": "/cities/us/seminole-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4066350",
          "name": "Seminole",
          "country_code": "US",
          "slug": "seminole-ok",
          "canonical_path": "/cities/us/seminole-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4866764",
          "name": "Seminole",
          "country_code": "US",
          "slug": "seminole-tx",
          "canonical_path": "/cities/us/seminole-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0169240",
          "name": "Semmes",
          "country_code": "US",
          "slug": "semmes",
          "canonical_path": "/cities/us/semmes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2866440",
          "name": "Senatobia",
          "country_code": "US",
          "slug": "senatobia",
          "canonical_path": "/cities/us/senatobia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4565095",
          "name": "Seneca",
          "country_code": "US",
          "slug": "seneca",
          "canonical_path": "/cities/us/seneca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5137622",
          "name": "Seneca Falls",
          "country_code": "US",
          "slug": "seneca-falls",
          "canonical_path": "/cities/us/seneca-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1369672",
          "name": "Senoia",
          "country_code": "US",
          "slug": "senoia",
          "canonical_path": "/cities/us/senoia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5363385",
          "name": "Sequim",
          "country_code": "US",
          "slug": "sequim",
          "canonical_path": "/cities/us/sequim/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1971625",
          "name": "Sergeant Bluff",
          "country_code": "US",
          "slug": "sergeant-bluff",
          "canonical_path": "/cities/us/sergeant-bluff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258965",
          "name": "Setauket-East Setauket",
          "country_code": "US",
          "slug": "setauket-east-setauket",
          "canonical_path": "/cities/us/setauket-east-setauket/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4784902",
          "name": "Seven Corners",
          "country_code": "US",
          "slug": "seven-corners",
          "canonical_path": "/cities/us/seven-corners/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3971416",
          "name": "Seven Hills",
          "country_code": "US",
          "slug": "seven-hills",
          "canonical_path": "/cities/us/seven-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4595374",
          "name": "Seven Oaks",
          "country_code": "US",
          "slug": "seven-oaks",
          "canonical_path": "/cities/us/seven-oaks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0869150",
          "name": "Severance",
          "country_code": "US",
          "slug": "severance",
          "canonical_path": "/cities/us/severance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4369190",
          "name": "Severn",
          "country_code": "US",
          "slug": "severn",
          "canonical_path": "/cities/us/severn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4369224",
          "name": "Severna Park",
          "country_code": "US",
          "slug": "severna-park",
          "canonical_path": "/cities/us/severna-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4767120",
          "name": "Sevierville",
          "country_code": "US",
          "slug": "sevierville",
          "canonical_path": "/cities/us/sevierville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3144420",
          "name": "Seward",
          "country_code": "US",
          "slug": "seward",
          "canonical_path": "/cities/us/seward/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504048",
          "name": "Sewell",
          "country_code": "US",
          "slug": "sewell",
          "canonical_path": "/cities/us/sewell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1868832",
          "name": "Seymour",
          "country_code": "US",
          "slug": "seymour",
          "canonical_path": "/cities/us/seymour/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4172602",
          "name": "Shady Hills",
          "country_code": "US",
          "slug": "shady-hills",
          "canonical_path": "/cities/us/shady-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4728052",
          "name": "Shady Hollow",
          "country_code": "US",
          "slug": "shady-hollow",
          "canonical_path": "/cities/us/shady-hollow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4369286",
          "name": "Shady Side",
          "country_code": "US",
          "slug": "shady-side",
          "canonical_path": "/cities/us/shady-side/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0671106",
          "name": "Shafter",
          "country_code": "US",
          "slug": "shafter",
          "canonical_path": "/cities/us/shafter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3971682",
          "name": "Shaker Heights",
          "country_code": "US",
          "slug": "shaker-heights",
          "canonical_path": "/cities/us/shaker-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2759350",
          "name": "Shakopee",
          "country_code": "US",
          "slug": "shakopee",
          "canonical_path": "/cities/us/shakopee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3760800",
          "name": "Shallotte",
          "country_code": "US",
          "slug": "shallotte",
          "canonical_path": "/cities/us/shallotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4269600",
          "name": "Shamokin",
          "country_code": "US",
          "slug": "shamokin",
          "canonical_path": "/cities/us/shamokin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258973",
          "name": "Shanor-Northvue",
          "country_code": "US",
          "slug": "shanor-northvue",
          "canonical_path": "/cities/us/shanor-northvue/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4269720",
          "name": "Sharon",
          "country_code": "US",
          "slug": "sharon",
          "canonical_path": "/cities/us/sharon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4561188",
          "name": "Sharon Hill",
          "country_code": "US",
          "slug": "sharon-hill",
          "canonical_path": "/cities/us/sharon-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4269752",
          "name": "Sharon Hill borough",
          "country_code": "US",
          "slug": "sharon-hill-borough",
          "canonical_path": "/cities/us/sharon-hill-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3971892",
          "name": "Sharonville",
          "country_code": "US",
          "slug": "sharonville",
          "canonical_path": "/cities/us/sharonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0671225",
          "name": "Shasta Lake",
          "country_code": "US",
          "slug": "shasta-lake",
          "canonical_path": "/cities/us/shasta-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4140463",
          "name": "Shaw",
          "country_code": "US",
          "slug": "shaw",
          "canonical_path": "/cities/us/shaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5572925",
          "name": "Shawano",
          "country_code": "US",
          "slug": "shawano",
          "canonical_path": "/cities/us/shawano/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2064500",
          "name": "Shawnee",
          "country_code": "US",
          "slug": "shawnee-ks",
          "canonical_path": "/cities/us/shawnee-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4066800",
          "name": "Shawnee",
          "country_code": "US",
          "slug": "shawnee-ok",
          "canonical_path": "/cities/us/shawnee-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5572975",
          "name": "Sheboygan",
          "country_code": "US",
          "slug": "sheboygan",
          "canonical_path": "/cities/us/sheboygan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5573025",
          "name": "Sheboygan Falls",
          "country_code": "US",
          "slug": "sheboygan-falls",
          "canonical_path": "/cities/us/sheboygan-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0169648",
          "name": "Sheffield",
          "country_code": "US",
          "slug": "sheffield",
          "canonical_path": "/cities/us/sheffield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3972088",
          "name": "Sheffield Lake",
          "country_code": "US",
          "slug": "sheffield-lake",
          "canonical_path": "/cities/us/sheffield-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5009586",
          "name": "Shelby",
          "country_code": "US",
          "slug": "shelby",
          "canonical_path": "/cities/us/shelby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3761200",
          "name": "Shelby",
          "country_code": "US",
          "slug": "shelby-nc",
          "canonical_path": "/cities/us/shelby-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3972102",
          "name": "Shelby",
          "country_code": "US",
          "slug": "shelby-oh",
          "canonical_path": "/cities/us/shelby-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1869318",
          "name": "Shelbyville",
          "country_code": "US",
          "slug": "shelbyville-in",
          "canonical_path": "/cities/us/shelbyville-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2170050",
          "name": "Shelbyville",
          "country_code": "US",
          "slug": "shelbyville-ky",
          "canonical_path": "/cities/us/shelbyville-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4767760",
          "name": "Shelbyville",
          "country_code": "US",
          "slug": "shelbyville-tn",
          "canonical_path": "/cities/us/shelbyville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1972390",
          "name": "Sheldon",
          "country_code": "US",
          "slug": "sheldon",
          "canonical_path": "/cities/us/sheldon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1673450",
          "name": "Shelley",
          "country_code": "US",
          "slug": "shelley",
          "canonical_path": "/cities/us/shelley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0968100",
          "name": "Shelton",
          "country_code": "US",
          "slug": "shelton-ct",
          "canonical_path": "/cities/us/shelton-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5363735",
          "name": "Shelton",
          "country_code": "US",
          "slug": "shelton-wa",
          "canonical_path": "/cities/us/shelton-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4876190",
          "name": "Shenandoah",
          "country_code": "US",
          "slug": "shenandoah-ia-145",
          "canonical_path": "/cities/us/shenandoah-ia-145/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2170086",
          "name": "Shepherdsville",
          "country_code": "US",
          "slug": "shepherdsville",
          "canonical_path": "/cities/us/shepherdsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0563710",
          "name": "Sheridan",
          "country_code": "US",
          "slug": "sheridan-ar",
          "canonical_path": "/cities/us/sheridan-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0869645",
          "name": "Sheridan",
          "country_code": "US",
          "slug": "sheridan-co",
          "canonical_path": "/cities/us/sheridan-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1869354",
          "name": "Sheridan",
          "country_code": "US",
          "slug": "sheridan-in",
          "canonical_path": "/cities/us/sheridan-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4167050",
          "name": "Sheridan",
          "country_code": "US",
          "slug": "sheridan-or",
          "canonical_path": "/cities/us/sheridan-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5669845",
          "name": "Sheridan",
          "country_code": "US",
          "slug": "sheridan-wy",
          "canonical_path": "/cities/us/sheridan-wy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4867496",
          "name": "Sherman",
          "country_code": "US",
          "slug": "sherman",
          "canonical_path": "/cities/us/sherman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5438567",
          "name": "Sherrelwood",
          "country_code": "US",
          "slug": "sherrelwood",
          "canonical_path": "/cities/us/sherrelwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0563800",
          "name": "Sherwood",
          "country_code": "US",
          "slug": "sherwood-ar",
          "canonical_path": "/cities/us/sherwood-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4167100",
          "name": "Sherwood",
          "country_code": "US",
          "slug": "sherwood-or",
          "canonical_path": "/cities/us/sherwood-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4842958",
          "name": "Sherwood Manor",
          "country_code": "US",
          "slug": "sherwood-manor",
          "canonical_path": "/cities/us/sherwood-manor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5009717",
          "name": "Shields",
          "country_code": "US",
          "slug": "shields",
          "canonical_path": "/cities/us/shields/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5211953",
          "name": "Shillington",
          "country_code": "US",
          "slug": "shillington",
          "canonical_path": "/cities/us/shillington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4270248",
          "name": "Shillington borough",
          "country_code": "US",
          "slug": "shillington-borough",
          "canonical_path": "/cities/us/shillington-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1769524",
          "name": "Shiloh",
          "country_code": "US",
          "slug": "shiloh",
          "canonical_path": "/cities/us/shiloh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5212038",
          "name": "Shippensburg",
          "country_code": "US",
          "slug": "shippensburg",
          "canonical_path": "/cities/us/shippensburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4270352",
          "name": "Shippensburg borough",
          "country_code": "US",
          "slug": "shippensburg-borough",
          "canonical_path": "/cities/us/shippensburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5491288",
          "name": "Shiprock",
          "country_code": "US",
          "slug": "shiprock",
          "canonical_path": "/cities/us/shiprock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5138022",
          "name": "Shirley",
          "country_code": "US",
          "slug": "shirley",
          "canonical_path": "/cities/us/shirley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2170284",
          "name": "Shively",
          "country_code": "US",
          "slug": "shively",
          "canonical_path": "/cities/us/shively/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5363960",
          "name": "Shoreline",
          "country_code": "US",
          "slug": "shoreline",
          "canonical_path": "/cities/us/shoreline/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2759998",
          "name": "Shoreview",
          "country_code": "US",
          "slug": "shoreview",
          "canonical_path": "/cities/us/shoreview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1769758",
          "name": "Shorewood",
          "country_code": "US",
          "slug": "shorewood-il",
          "canonical_path": "/cities/us/shorewood-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2760016",
          "name": "Shorewood",
          "country_code": "US",
          "slug": "shorewood-mn",
          "canonical_path": "/cities/us/shorewood-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5573725",
          "name": "Shorewood",
          "country_code": "US",
          "slug": "shorewood-wi",
          "canonical_path": "/cities/us/shorewood-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5104630",
          "name": "Short Hills",
          "country_code": "US",
          "slug": "short-hills",
          "canonical_path": "/cities/us/short-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4785576",
          "name": "Short Pump",
          "country_code": "US",
          "slug": "short-pump",
          "canonical_path": "/cities/us/short-pump/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0466470",
          "name": "Show Low",
          "country_code": "US",
          "slug": "show-low",
          "canonical_path": "/cities/us/show-low/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2270000",
          "name": "Shreveport",
          "country_code": "US",
          "slug": "shreveport",
          "canonical_path": "/cities/us/shreveport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2967700",
          "name": "Shrewsbury",
          "country_code": "US",
          "slug": "shrewsbury",
          "canonical_path": "/cities/us/shrewsbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504118",
          "name": "Sicklerville",
          "country_code": "US",
          "slug": "sicklerville",
          "canonical_path": "/cities/us/sicklerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3067900",
          "name": "Sidney",
          "country_code": "US",
          "slug": "sidney-mt",
          "canonical_path": "/cities/us/sidney-mt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3145295",
          "name": "Sidney",
          "country_code": "US",
          "slug": "sidney-ne",
          "canonical_path": "/cities/us/sidney-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3972424",
          "name": "Sidney",
          "country_code": "US",
          "slug": "sidney-oh",
          "canonical_path": "/cities/us/sidney-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4728608",
          "name": "Sienna Plantation",
          "country_code": "US",
          "slug": "sienna-plantation",
          "canonical_path": "/cities/us/sienna-plantation/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0671806",
          "name": "Sierra Madre",
          "country_code": "US",
          "slug": "sierra-madre",
          "canonical_path": "/cities/us/sierra-madre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0466820",
          "name": "Sierra Vista",
          "country_code": "US",
          "slug": "sierra-vista",
          "canonical_path": "/cities/us/sierra-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7261785",
          "name": "Sierra Vista Southeast",
          "country_code": "US",
          "slug": "sierra-vista-southeast",
          "canonical_path": "/cities/us/sierra-vista-southeast/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4172935",
          "name": "Siesta Key",
          "country_code": "US",
          "slug": "siesta-key",
          "canonical_path": "/cities/us/siesta-key/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0671876",
          "name": "Signal Hill",
          "country_code": "US",
          "slug": "signal-hill",
          "canonical_path": "/cities/us/signal-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4768540",
          "name": "Signal Mountain",
          "country_code": "US",
          "slug": "signal-mountain",
          "canonical_path": "/cities/us/signal-mountain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2967790",
          "name": "Sikeston",
          "country_code": "US",
          "slug": "sikeston",
          "canonical_path": "/cities/us/sikeston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3761860",
          "name": "Siler City",
          "country_code": "US",
          "slug": "siler-city",
          "canonical_path": "/cities/us/siler-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0564370",
          "name": "Siloam Springs",
          "country_code": "US",
          "slug": "siloam-springs",
          "canonical_path": "/cities/us/siloam-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4867832",
          "name": "Silsbee",
          "country_code": "US",
          "slug": "silsbee",
          "canonical_path": "/cities/us/silsbee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3573260",
          "name": "Silver City",
          "country_code": "US",
          "slug": "silver-city",
          "canonical_path": "/cities/us/silver-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7176035",
          "name": "Silver Firs",
          "country_code": "US",
          "slug": "silver-firs",
          "canonical_path": "/cities/us/silver-firs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4369571",
          "name": "Silver Hill",
          "country_code": "US",
          "slug": "silver-hill",
          "canonical_path": "/cities/us/silver-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4491715",
          "name": "Silver Lake",
          "country_code": "US",
          "slug": "silver-lake",
          "canonical_path": "/cities/us/silver-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8481841",
          "name": "Silver Lakes",
          "country_code": "US",
          "slug": "silver-lakes",
          "canonical_path": "/cities/us/silver-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4369596",
          "name": "Silver Spring",
          "country_code": "US",
          "slug": "silver-spring",
          "canonical_path": "/cities/us/silver-spring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173002",
          "name": "Silver Springs",
          "country_code": "US",
          "slug": "silver-springs",
          "canonical_path": "/cities/us/silver-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5512373",
          "name": "Silver Springs",
          "country_code": "US",
          "slug": "silver-springs-nv-019",
          "canonical_path": "/cities/us/silver-springs-nv-019/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173007",
          "name": "Silver Springs Shores",
          "country_code": "US",
          "slug": "silver-springs-shores",
          "canonical_path": "/cities/us/silver-springs-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5810490",
          "name": "Silverdale",
          "country_code": "US",
          "slug": "silverdale",
          "canonical_path": "/cities/us/silverdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0870525",
          "name": "Silverthorne",
          "country_code": "US",
          "slug": "silverthorne",
          "canonical_path": "/cities/us/silverthorne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4167650",
          "name": "Silverton",
          "country_code": "US",
          "slug": "silverton",
          "canonical_path": "/cities/us/silverton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1769979",
          "name": "Silvis",
          "country_code": "US",
          "slug": "silvis",
          "canonical_path": "/cities/us/silvis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0672016",
          "name": "Simi Valley",
          "country_code": "US",
          "slug": "simi-valley",
          "canonical_path": "/cities/us/simi-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4566580",
          "name": "Simpsonville",
          "country_code": "US",
          "slug": "simpsonville",
          "canonical_path": "/cities/us/simpsonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257408",
          "name": "Simsbury Center",
          "country_code": "US",
          "slug": "simsbury-center",
          "canonical_path": "/cities/us/simsbury-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4868036",
          "name": "Sinton",
          "country_code": "US",
          "slug": "sinton",
          "canonical_path": "/cities/us/sinton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1973290",
          "name": "Sioux Center",
          "country_code": "US",
          "slug": "sioux-center",
          "canonical_path": "/cities/us/sioux-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1973335",
          "name": "Sioux City",
          "country_code": "US",
          "slug": "sioux-city",
          "canonical_path": "/cities/us/sioux-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4659020",
          "name": "Sioux Falls",
          "country_code": "US",
          "slug": "sioux-falls",
          "canonical_path": "/cities/us/sioux-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5557293",
          "name": "Sitka",
          "country_code": "US",
          "slug": "sitka",
          "canonical_path": "/cities/us/sitka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0270540",
          "name": "Sitka and borough",
          "country_code": "US",
          "slug": "sitka-and-borough",
          "canonical_path": "/cities/us/sitka-and-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4067850",
          "name": "Skiatook",
          "country_code": "US",
          "slug": "skiatook",
          "canonical_path": "/cities/us/skiatook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4223004",
          "name": "Skidaway Island",
          "country_code": "US",
          "slug": "skidaway-island",
          "canonical_path": "/cities/us/skidaway-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1770122",
          "name": "Skokie",
          "country_code": "US",
          "slug": "skokie",
          "canonical_path": "/cities/us/skokie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4978701",
          "name": "Skowhegan",
          "country_code": "US",
          "slug": "skowhegan",
          "canonical_path": "/cities/us/skowhegan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173124",
          "name": "Sky Lake",
          "country_code": "US",
          "slug": "sky-lake",
          "canonical_path": "/cities/us/sky-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4868180",
          "name": "Slaton",
          "country_code": "US",
          "slug": "slaton",
          "canonical_path": "/cities/us/slaton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3667638",
          "name": "Sleepy Hollow",
          "country_code": "US",
          "slug": "sleepy-hollow",
          "canonical_path": "/cities/us/sleepy-hollow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2270805",
          "name": "Slidell",
          "country_code": "US",
          "slug": "slidell",
          "canonical_path": "/cities/us/slidell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5574400",
          "name": "Slinger",
          "country_code": "US",
          "slug": "slinger",
          "canonical_path": "/cities/us/slinger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5224949",
          "name": "Smithfield",
          "country_code": "US",
          "slug": "smithfield",
          "canonical_path": "/cities/us/smithfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3762520",
          "name": "Smithfield",
          "country_code": "US",
          "slug": "smithfield-nc",
          "canonical_path": "/cities/us/smithfield-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4969640",
          "name": "Smithfield",
          "country_code": "US",
          "slug": "smithfield-ut",
          "canonical_path": "/cities/us/smithfield-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5173200",
          "name": "Smithfield",
          "country_code": "US",
          "slug": "smithfield-va",
          "canonical_path": "/cities/us/smithfield-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0171190",
          "name": "Smiths Station",
          "country_code": "US",
          "slug": "smiths-station",
          "canonical_path": "/cities/us/smiths-station/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5138539",
          "name": "Smithtown",
          "country_code": "US",
          "slug": "smithtown",
          "canonical_path": "/cities/us/smithtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504164",
          "name": "Smithville",
          "country_code": "US",
          "slug": "smithville",
          "canonical_path": "/cities/us/smithville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2968420",
          "name": "Smithville",
          "country_code": "US",
          "slug": "smithville-mo",
          "canonical_path": "/cities/us/smithville-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4769320",
          "name": "Smithville",
          "country_code": "US",
          "slug": "smithville-tn",
          "canonical_path": "/cities/us/smithville-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1067310",
          "name": "Smyrna",
          "country_code": "US",
          "slug": "smyrna-de",
          "canonical_path": "/cities/us/smyrna-de/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1371492",
          "name": "Smyrna",
          "country_code": "US",
          "slug": "smyrna-ga",
          "canonical_path": "/cities/us/smyrna-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4769420",
          "name": "Smyrna",
          "country_code": "US",
          "slug": "smyrna-tn",
          "canonical_path": "/cities/us/smyrna-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1371604",
          "name": "Snellville",
          "country_code": "US",
          "slug": "snellville",
          "canonical_path": "/cities/us/snellville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5365170",
          "name": "Snohomish",
          "country_code": "US",
          "slug": "snohomish",
          "canonical_path": "/cities/us/snohomish/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5365205",
          "name": "Snoqualmie",
          "country_code": "US",
          "slug": "snoqualmie",
          "canonical_path": "/cities/us/snoqualmie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0467800",
          "name": "Snowflake",
          "country_code": "US",
          "slug": "snowflake",
          "canonical_path": "/cities/us/snowflake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4868624",
          "name": "Snyder",
          "country_code": "US",
          "slug": "snyder",
          "canonical_path": "/cities/us/snyder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5781609",
          "name": "Snyderville",
          "country_code": "US",
          "slug": "snyderville",
          "canonical_path": "/cities/us/snyderville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4596208",
          "name": "Socastee",
          "country_code": "US",
          "slug": "socastee",
          "canonical_path": "/cities/us/socastee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1371660",
          "name": "Social Circle",
          "country_code": "US",
          "slug": "social-circle",
          "canonical_path": "/cities/us/social-circle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3573540",
          "name": "Socorro",
          "country_code": "US",
          "slug": "socorro-nm",
          "canonical_path": "/cities/us/socorro-nm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4868636",
          "name": "Socorro",
          "country_code": "US",
          "slug": "socorro-tx",
          "canonical_path": "/cities/us/socorro-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4769560",
          "name": "Soddy-Daisy",
          "country_code": "US",
          "slug": "soddy-daisy",
          "canonical_path": "/cities/us/soddy-daisy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0672506",
          "name": "Solana Beach",
          "country_code": "US",
          "slug": "solana-beach",
          "canonical_path": "/cities/us/solana-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0672520",
          "name": "Soledad",
          "country_code": "US",
          "slug": "soledad",
          "canonical_path": "/cities/us/soledad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3972928",
          "name": "Solon",
          "country_code": "US",
          "slug": "solon",
          "canonical_path": "/cities/us/solon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0672576",
          "name": "Solvang",
          "country_code": "US",
          "slug": "solvang",
          "canonical_path": "/cities/us/solvang/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3668286",
          "name": "Solvay",
          "country_code": "US",
          "slug": "solvay",
          "canonical_path": "/cities/us/solvay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504180",
          "name": "Somerdale",
          "country_code": "US",
          "slug": "somerdale",
          "canonical_path": "/cities/us/somerdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3468340",
          "name": "Somerdale borough",
          "country_code": "US",
          "slug": "somerdale-borough",
          "canonical_path": "/cities/us/somerdale-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5574625",
          "name": "Somers",
          "country_code": "US",
          "slug": "somers",
          "canonical_path": "/cities/us/somers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3468430",
          "name": "Somers Point",
          "country_code": "US",
          "slug": "somers-point",
          "canonical_path": "/cities/us/somers-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2171688",
          "name": "Somerset",
          "country_code": "US",
          "slug": "somerset",
          "canonical_path": "/cities/us/somerset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4271776",
          "name": "Somerset borough",
          "country_code": "US",
          "slug": "somerset-borough",
          "canonical_path": "/cities/us/somerset-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3369940",
          "name": "Somersworth",
          "country_code": "US",
          "slug": "somersworth",
          "canonical_path": "/cities/us/somersworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0468080",
          "name": "Somerton",
          "country_code": "US",
          "slug": "somerton",
          "canonical_path": "/cities/us/somerton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2562535",
          "name": "Somerville",
          "country_code": "US",
          "slug": "somerville",
          "canonical_path": "/cities/us/somerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3468460",
          "name": "Somerville borough",
          "country_code": "US",
          "slug": "somerville-borough",
          "canonical_path": "/cities/us/somerville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0672646",
          "name": "Sonoma",
          "country_code": "US",
          "slug": "sonoma",
          "canonical_path": "/cities/us/sonoma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5397166",
          "name": "Soquel",
          "country_code": "US",
          "slug": "soquel",
          "canonical_path": "/cities/us/soquel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5212897",
          "name": "Souderton",
          "country_code": "US",
          "slug": "souderton",
          "canonical_path": "/cities/us/souderton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4271856",
          "name": "Souderton borough",
          "country_code": "US",
          "slug": "souderton-borough",
          "canonical_path": "/cities/us/souderton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5138704",
          "name": "Sound Beach",
          "country_code": "US",
          "slug": "sound-beach",
          "canonical_path": "/cities/us/sound-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3468550",
          "name": "South Amboy",
          "country_code": "US",
          "slug": "south-amboy",
          "canonical_path": "/cities/us/south-amboy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173394",
          "name": "South Apopka",
          "country_code": "US",
          "slug": "south-apopka",
          "canonical_path": "/cities/us/south-apopka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1770564",
          "name": "South Barrington",
          "country_code": "US",
          "slug": "south-barrington",
          "canonical_path": "/cities/us/south-barrington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1267175",
          "name": "South Bay",
          "country_code": "US",
          "slug": "south-bay",
          "canonical_path": "/cities/us/south-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1770590",
          "name": "South Beloit",
          "country_code": "US",
          "slug": "south-beloit",
          "canonical_path": "/cities/us/south-beloit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1871000",
          "name": "South Bend",
          "country_code": "US",
          "slug": "south-bend",
          "canonical_path": "/cities/us/south-bend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4979050",
          "name": "South Berwick",
          "country_code": "US",
          "slug": "south-berwick",
          "canonical_path": "/cities/us/south-berwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5173712",
          "name": "South Boston",
          "country_code": "US",
          "slug": "south-boston",
          "canonical_path": "/cities/us/south-boston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173392",
          "name": "South Bradenton",
          "country_code": "US",
          "slug": "south-bradenton",
          "canonical_path": "/cities/us/south-bradenton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5066175",
          "name": "South Burlington",
          "country_code": "US",
          "slug": "south-burlington",
          "canonical_path": "/cities/us/south-burlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5475292",
          "name": "South Charleston",
          "country_code": "US",
          "slug": "south-charleston",
          "canonical_path": "/cities/us/south-charleston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4658861",
          "name": "South Cleveland",
          "country_code": "US",
          "slug": "south-cleveland",
          "canonical_path": "/cities/us/south-cleveland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1267325",
          "name": "South Daytona",
          "country_code": "US",
          "slug": "south-daytona",
          "canonical_path": "/cities/us/south-daytona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0672996",
          "name": "South El Monte",
          "country_code": "US",
          "slug": "south-el-monte",
          "canonical_path": "/cities/us/south-el-monte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1770720",
          "name": "South Elgin",
          "country_code": "US",
          "slug": "south-elgin",
          "canonical_path": "/cities/us/south-elgin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3973264",
          "name": "South Euclid",
          "country_code": "US",
          "slug": "south-euclid",
          "canonical_path": "/cities/us/south-euclid/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5138837",
          "name": "South Farmingdale",
          "country_code": "US",
          "slug": "south-farmingdale",
          "canonical_path": "/cities/us/south-farmingdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1372122",
          "name": "South Fulton",
          "country_code": "US",
          "slug": "south-fulton",
          "canonical_path": "/cities/us/south-fulton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4369964",
          "name": "South Gate",
          "country_code": "US",
          "slug": "south-gate-md-003",
          "canonical_path": "/cities/us/south-gate-md-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0673080",
          "name": "South Gate",
          "country_code": "US",
          "slug": "south-gate",
          "canonical_path": "/cities/us/south-gate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173460",
          "name": "South Gate Ridge",
          "country_code": "US",
          "slug": "south-gate-ridge",
          "canonical_path": "/cities/us/south-gate-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4951397",
          "name": "South Hadley",
          "country_code": "US",
          "slug": "south-hadley",
          "canonical_path": "/cities/us/south-hadley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4926613",
          "name": "South Haven",
          "country_code": "US",
          "slug": "south-haven",
          "canonical_path": "/cities/us/south-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173467",
          "name": "South Highpoint",
          "country_code": "US",
          "slug": "south-highpoint",
          "canonical_path": "/cities/us/south-highpoint/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5138884",
          "name": "South Hill",
          "country_code": "US",
          "slug": "south-hill",
          "canonical_path": "/cities/us/south-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5811456",
          "name": "South Hill",
          "country_code": "US",
          "slug": "south-hill-wa-053",
          "canonical_path": "/cities/us/south-hill-wa-053/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1770850",
          "name": "South Holland",
          "country_code": "US",
          "slug": "south-holland",
          "canonical_path": "/cities/us/south-holland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5092902",
          "name": "South Hooksett",
          "country_code": "US",
          "slug": "south-hooksett",
          "canonical_path": "/cities/us/south-hooksett/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4869020",
          "name": "South Houston",
          "country_code": "US",
          "slug": "south-houston",
          "canonical_path": "/cities/us/south-houston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5138892",
          "name": "South Huntington",
          "country_code": "US",
          "slug": "south-huntington",
          "canonical_path": "/cities/us/south-huntington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4970850",
          "name": "South Jordan",
          "country_code": "US",
          "slug": "south-jordan",
          "canonical_path": "/cities/us/south-jordan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4369976",
          "name": "South Kensington",
          "country_code": "US",
          "slug": "south-kensington",
          "canonical_path": "/cities/us/south-kensington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0673108",
          "name": "South Lake Tahoe",
          "country_code": "US",
          "slug": "south-lake-tahoe",
          "canonical_path": "/cities/us/south-lake-tahoe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4369978",
          "name": "South Laurel",
          "country_code": "US",
          "slug": "south-laurel",
          "canonical_path": "/cities/us/south-laurel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3973446",
          "name": "South Lebanon",
          "country_code": "US",
          "slug": "south-lebanon",
          "canonical_path": "/cities/us/south-lebanon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5138918",
          "name": "South Lockport",
          "country_code": "US",
          "slug": "south-lockport",
          "canonical_path": "/cities/us/south-lockport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2675100",
          "name": "South Lyon",
          "country_code": "US",
          "slug": "south-lyon",
          "canonical_path": "/cities/us/south-lyon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1267550",
          "name": "South Miami",
          "country_code": "US",
          "slug": "south-miami",
          "canonical_path": "/cities/us/south-miami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173497",
          "name": "South Miami Heights",
          "country_code": "US",
          "slug": "south-miami-heights",
          "canonical_path": "/cities/us/south-miami-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5575125",
          "name": "South Milwaukee",
          "country_code": "US",
          "slug": "south-milwaukee",
          "canonical_path": "/cities/us/south-milwaukee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5010569",
          "name": "South Monroe",
          "country_code": "US",
          "slug": "south-monroe",
          "canonical_path": "/cities/us/south-monroe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4970960",
          "name": "South Ogden",
          "country_code": "US",
          "slug": "south-ogden",
          "canonical_path": "/cities/us/south-ogden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5104835",
          "name": "South Old Bridge",
          "country_code": "US",
          "slug": "south-old-bridge",
          "canonical_path": "/cities/us/south-old-bridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5397700",
          "name": "South Oroville",
          "country_code": "US",
          "slug": "south-oroville",
          "canonical_path": "/cities/us/south-oroville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259013",
          "name": "South Park Township",
          "country_code": "US",
          "slug": "south-park-township",
          "canonical_path": "/cities/us/south-park-township/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0673220",
          "name": "South Pasadena",
          "country_code": "US",
          "slug": "south-pasadena-ca",
          "canonical_path": "/cities/us/south-pasadena-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1267675",
          "name": "South Pasadena",
          "country_code": "US",
          "slug": "south-pasadena-fl",
          "canonical_path": "/cities/us/south-pasadena-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173528",
          "name": "South Patrick Shores",
          "country_code": "US",
          "slug": "south-patrick-shores",
          "canonical_path": "/cities/us/south-patrick-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5104844",
          "name": "South Plainfield",
          "country_code": "US",
          "slug": "south-plainfield",
          "canonical_path": "/cities/us/south-plainfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3469390",
          "name": "South Plainfield borough",
          "country_code": "US",
          "slug": "south-plainfield-borough",
          "canonical_path": "/cities/us/south-plainfield-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2371990",
          "name": "South Portland",
          "country_code": "US",
          "slug": "south-portland",
          "canonical_path": "/cities/us/south-portland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4786667",
          "name": "South Riding",
          "country_code": "US",
          "slug": "south-riding",
          "canonical_path": "/cities/us/south-riding/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5104853",
          "name": "South River",
          "country_code": "US",
          "slug": "south-river",
          "canonical_path": "/cities/us/south-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3469420",
          "name": "South River borough",
          "country_code": "US",
          "slug": "south-river-borough",
          "canonical_path": "/cities/us/south-river-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5048033",
          "name": "South Saint Paul",
          "country_code": "US",
          "slug": "south-saint-paul",
          "canonical_path": "/cities/us/south-saint-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4971070",
          "name": "South Salt Lake",
          "country_code": "US",
          "slug": "south-salt-lake",
          "canonical_path": "/cities/us/south-salt-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0673262",
          "name": "South San Francisco",
          "country_code": "US",
          "slug": "south-san-francisco",
          "canonical_path": "/cities/us/south-san-francisco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5397771",
          "name": "South San Gabriel",
          "country_code": "US",
          "slug": "south-san-gabriel",
          "canonical_path": "/cities/us/south-san-gabriel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5397777",
          "name": "South San Jose Hills",
          "country_code": "US",
          "slug": "south-san-jose-hills",
          "canonical_path": "/cities/us/south-san-jose-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3146030",
          "name": "South Sioux City",
          "country_code": "US",
          "slug": "south-sioux-city",
          "canonical_path": "/cities/us/south-sioux-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2761492",
          "name": "South St. Paul",
          "country_code": "US",
          "slug": "south-st-paul",
          "canonical_path": "/cities/us/south-st-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5315313",
          "name": "South Tucson",
          "country_code": "US",
          "slug": "south-tucson",
          "canonical_path": "/cities/us/south-tucson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5492450",
          "name": "South Valley",
          "country_code": "US",
          "slug": "south-valley",
          "canonical_path": "/cities/us/south-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5139015",
          "name": "South Valley Stream",
          "country_code": "US",
          "slug": "south-valley-stream",
          "canonical_path": "/cities/us/south-valley-stream/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173593",
          "name": "South Venice",
          "country_code": "US",
          "slug": "south-venice",
          "canonical_path": "/cities/us/south-venice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4971180",
          "name": "South Weber",
          "country_code": "US",
          "slug": "south-weber",
          "canonical_path": "/cities/us/south-weber/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5397841",
          "name": "South Whittier",
          "country_code": "US",
          "slug": "south-whittier",
          "canonical_path": "/cities/us/south-whittier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5213130",
          "name": "South Williamsport",
          "country_code": "US",
          "slug": "south-williamsport",
          "canonical_path": "/cities/us/south-williamsport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4272648",
          "name": "South Williamsport borough",
          "country_code": "US",
          "slug": "south-williamsport-borough",
          "canonical_path": "/cities/us/south-williamsport-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4843353",
          "name": "South Windsor",
          "country_code": "US",
          "slug": "south-windsor",
          "canonical_path": "/cities/us/south-windsor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4951579",
          "name": "South Yarmouth",
          "country_code": "US",
          "slug": "south-yarmouth",
          "canonical_path": "/cities/us/south-yarmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4951582",
          "name": "Southampton",
          "country_code": "US",
          "slug": "southampton",
          "canonical_path": "/cities/us/southampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2869280",
          "name": "Southaven",
          "country_code": "US",
          "slug": "southaven",
          "canonical_path": "/cities/us/southaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4951591",
          "name": "Southborough",
          "country_code": "US",
          "slug": "southborough",
          "canonical_path": "/cities/us/southborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4951594",
          "name": "Southbridge",
          "country_code": "US",
          "slug": "southbridge",
          "canonical_path": "/cities/us/southbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2563345",
          "name": "Southbridge Town",
          "country_code": "US",
          "slug": "southbridge-town",
          "canonical_path": "/cities/us/southbridge-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173600",
          "name": "Southchase",
          "country_code": "US",
          "slug": "southchase",
          "canonical_path": "/cities/us/southchase/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260157",
          "name": "Southeast Arcadia",
          "country_code": "US",
          "slug": "southeast-arcadia",
          "canonical_path": "/cities/us/southeast-arcadia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3763120",
          "name": "Southern Pines",
          "country_code": "US",
          "slug": "southern-pines",
          "canonical_path": "/cities/us/southern-pines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2674900",
          "name": "Southfield",
          "country_code": "US",
          "slug": "southfield",
          "canonical_path": "/cities/us/southfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173634",
          "name": "Southgate",
          "country_code": "US",
          "slug": "southgate-fl-115",
          "canonical_path": "/cities/us/southgate-fl-115/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2674960",
          "name": "Southgate",
          "country_code": "US",
          "slug": "southgate",
          "canonical_path": "/cities/us/southgate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4843378",
          "name": "Southington",
          "country_code": "US",
          "slug": "southington",
          "canonical_path": "/cities/us/southington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4869032",
          "name": "Southlake",
          "country_code": "US",
          "slug": "southlake",
          "canonical_path": "/cities/us/southlake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5139054",
          "name": "Southold",
          "country_code": "US",
          "slug": "southold",
          "canonical_path": "/cities/us/southold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5139058",
          "name": "Southport",
          "country_code": "US",
          "slug": "southport",
          "canonical_path": "/cities/us/southport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0171832",
          "name": "Southside",
          "country_code": "US",
          "slug": "southside",
          "canonical_path": "/cities/us/southside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1268135",
          "name": "Southwest Ranches",
          "country_code": "US",
          "slug": "southwest-ranches",
          "canonical_path": "/cities/us/southwest-ranches/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526900",
          "name": "Southwest Waterfront",
          "country_code": "US",
          "slug": "southwest-waterfront",
          "canonical_path": "/cities/us/southwest-waterfront/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4951640",
          "name": "Southwick",
          "country_code": "US",
          "slug": "southwick",
          "canonical_path": "/cities/us/southwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4843411",
          "name": "Southwood Acres",
          "country_code": "US",
          "slug": "southwood-acres",
          "canonical_path": "/cities/us/southwood-acres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5811581",
          "name": "Spanaway",
          "country_code": "US",
          "slug": "spanaway",
          "canonical_path": "/cities/us/spanaway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4971290",
          "name": "Spanish Fork",
          "country_code": "US",
          "slug": "spanish-fork",
          "canonical_path": "/cities/us/spanish-fork/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0171976",
          "name": "Spanish Fort",
          "country_code": "US",
          "slug": "spanish-fort",
          "canonical_path": "/cities/us/spanish-fort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4409591",
          "name": "Spanish Lake",
          "country_code": "US",
          "slug": "spanish-lake",
          "canonical_path": "/cities/us/spanish-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5512827",
          "name": "Spanish Springs",
          "country_code": "US",
          "slug": "spanish-springs",
          "canonical_path": "/cities/us/spanish-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3268400",
          "name": "Sparks",
          "country_code": "US",
          "slug": "sparks",
          "canonical_path": "/cities/us/sparks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5104882",
          "name": "Sparta",
          "country_code": "US",
          "slug": "sparta",
          "canonical_path": "/cities/us/sparta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4770180",
          "name": "Sparta",
          "country_code": "US",
          "slug": "sparta-tn",
          "canonical_path": "/cities/us/sparta-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5575325",
          "name": "Sparta",
          "country_code": "US",
          "slug": "sparta-wi",
          "canonical_path": "/cities/us/sparta-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4568290",
          "name": "Spartanburg",
          "country_code": "US",
          "slug": "spartanburg",
          "canonical_path": "/cities/us/spartanburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4660020",
          "name": "Spearfish",
          "country_code": "US",
          "slug": "spearfish",
          "canonical_path": "/cities/us/spearfish/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1871828",
          "name": "Speedway",
          "country_code": "US",
          "slug": "speedway",
          "canonical_path": "/cities/us/speedway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1974280",
          "name": "Spencer",
          "country_code": "US",
          "slug": "spencer",
          "canonical_path": "/cities/us/spencer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1974415",
          "name": "Spirit Lake",
          "country_code": "US",
          "slug": "spirit-lake",
          "canonical_path": "/cities/us/spirit-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5367000",
          "name": "Spokane",
          "country_code": "US",
          "slug": "spokane",
          "canonical_path": "/cities/us/spokane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5367167",
          "name": "Spokane Valley",
          "country_code": "US",
          "slug": "spokane-valley",
          "canonical_path": "/cities/us/spokane-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5104907",
          "name": "Spotswood",
          "country_code": "US",
          "slug": "spotswood",
          "canonical_path": "/cities/us/spotswood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3469810",
          "name": "Spotswood borough",
          "country_code": "US",
          "slug": "spotswood-borough",
          "canonical_path": "/cities/us/spotswood-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4733624",
          "name": "Spring",
          "country_code": "US",
          "slug": "spring",
          "canonical_path": "/cities/us/spring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5708894",
          "name": "Spring Creek",
          "country_code": "US",
          "slug": "spring-creek",
          "canonical_path": "/cities/us/spring-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1772052",
          "name": "Spring Grove",
          "country_code": "US",
          "slug": "spring-grove",
          "canonical_path": "/cities/us/spring-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4173838",
          "name": "Spring Hill",
          "country_code": "US",
          "slug": "spring-hill",
          "canonical_path": "/cities/us/spring-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2067625",
          "name": "Spring Hill",
          "country_code": "US",
          "slug": "spring-hill-ks",
          "canonical_path": "/cities/us/spring-hill-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4770580",
          "name": "Spring Hill",
          "country_code": "US",
          "slug": "spring-hill-tn",
          "canonical_path": "/cities/us/spring-hill-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3764180",
          "name": "Spring Lake",
          "country_code": "US",
          "slug": "spring-lake",
          "canonical_path": "/cities/us/spring-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2761996",
          "name": "Spring Lake Park",
          "country_code": "US",
          "slug": "spring-lake-park",
          "canonical_path": "/cities/us/spring-lake-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4370201",
          "name": "Spring Ridge",
          "country_code": "US",
          "slug": "spring-ridge",
          "canonical_path": "/cities/us/spring-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5398277",
          "name": "Spring Valley",
          "country_code": "US",
          "slug": "spring-valley",
          "canonical_path": "/cities/us/spring-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5512909",
          "name": "Spring Valley",
          "country_code": "US",
          "slug": "spring-valley-nv-003",
          "canonical_path": "/cities/us/spring-valley-nv-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1772156",
          "name": "Spring Valley",
          "country_code": "US",
          "slug": "spring-valley-il",
          "canonical_path": "/cities/us/spring-valley-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3670420",
          "name": "Spring Valley",
          "country_code": "US",
          "slug": "spring-valley-ny",
          "canonical_path": "/cities/us/spring-valley-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8481842",
          "name": "Spring Valley Lake",
          "country_code": "US",
          "slug": "spring-valley-lake",
          "canonical_path": "/cities/us/spring-valley-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3974076",
          "name": "Springboro",
          "country_code": "US",
          "slug": "springboro",
          "canonical_path": "/cities/us/springboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504250",
          "name": "Springdale",
          "country_code": "US",
          "slug": "springdale",
          "canonical_path": "/cities/us/springdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0566080",
          "name": "Springdale",
          "country_code": "US",
          "slug": "springdale-ar",
          "canonical_path": "/cities/us/springdale-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3974104",
          "name": "Springdale",
          "country_code": "US",
          "slug": "springdale-oh",
          "canonical_path": "/cities/us/springdale-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4787117",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-va-059",
          "canonical_path": "/cities/us/springfield-va-059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5104952",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-nj-039",
          "canonical_path": "/cities/us/springfield-nj-039/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1268275",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-fl",
          "canonical_path": "/cities/us/springfield-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1772000",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-il",
          "canonical_path": "/cities/us/springfield-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2567000",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-ma",
          "canonical_path": "/cities/us/springfield-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2675700",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-mi",
          "canonical_path": "/cities/us/springfield-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2970000",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-mo",
          "canonical_path": "/cities/us/springfield-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3974118",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-oh",
          "canonical_path": "/cities/us/springfield-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4169600",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-or",
          "canonical_path": "/cities/us/springfield-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4770500",
          "name": "Springfield",
          "country_code": "US",
          "slug": "springfield-tn",
          "canonical_path": "/cities/us/springfield-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4342429",
          "name": "Springhill",
          "country_code": "US",
          "slug": "springhill",
          "canonical_path": "/cities/us/springhill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5139294",
          "name": "Springs",
          "country_code": "US",
          "slug": "springs",
          "canonical_path": "/cities/us/springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4869800",
          "name": "Springtown",
          "country_code": "US",
          "slug": "springtown",
          "canonical_path": "/cities/us/springtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0172600",
          "name": "Springville",
          "country_code": "US",
          "slug": "springville-al",
          "canonical_path": "/cities/us/springville-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4972280",
          "name": "Springville",
          "country_code": "US",
          "slug": "springville-ut",
          "canonical_path": "/cities/us/springville-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:6424355",
          "name": "St Johnsbury",
          "country_code": "US",
          "slug": "st-johnsbury",
          "canonical_path": "/cities/us/st-johnsbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5061675",
          "name": "St. Albans",
          "country_code": "US",
          "slug": "st-albans-vt",
          "canonical_path": "/cities/us/st-albans-vt/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5471212",
          "name": "St. Albans",
          "country_code": "US",
          "slug": "st-albans-wv",
          "canonical_path": "/cities/us/st-albans-wv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2963956",
          "name": "St. Ann",
          "country_code": "US",
          "slug": "st-ann",
          "canonical_path": "/cities/us/st-ann/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2756680",
          "name": "St. Anthony",
          "country_code": "US",
          "slug": "st-anthony",
          "canonical_path": "/cities/us/st-anthony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1262500",
          "name": "St. Augustine",
          "country_code": "US",
          "slug": "st-augustine",
          "canonical_path": "/cities/us/st-augustine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1262525",
          "name": "St. Augustine Beach",
          "country_code": "US",
          "slug": "st-augustine-beach",
          "canonical_path": "/cities/us/st-augustine-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259034",
          "name": "St. Charles",
          "country_code": "US",
          "slug": "st-charles",
          "canonical_path": "/cities/us/st-charles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1766703",
          "name": "St. Charles",
          "country_code": "US",
          "slug": "st-charles-il",
          "canonical_path": "/cities/us/st-charles-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2964082",
          "name": "St. Charles",
          "country_code": "US",
          "slug": "st-charles-mo",
          "canonical_path": "/cities/us/st-charles-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2670680",
          "name": "St. Clair",
          "country_code": "US",
          "slug": "st-clair",
          "canonical_path": "/cities/us/st-clair/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2670760",
          "name": "St. Clair Shores",
          "country_code": "US",
          "slug": "st-clair-shores",
          "canonical_path": "/cities/us/st-clair-shores/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1262625",
          "name": "St. Cloud",
          "country_code": "US",
          "slug": "st-cloud-fl",
          "canonical_path": "/cities/us/st-cloud-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2756896",
          "name": "St. Cloud",
          "country_code": "US",
          "slug": "st-cloud-mn",
          "canonical_path": "/cities/us/st-cloud-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2756950",
          "name": "St. Francis",
          "country_code": "US",
          "slug": "st-francis-mn",
          "canonical_path": "/cities/us/st-francis-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5570650",
          "name": "St. Francis",
          "country_code": "US",
          "slug": "st-francis-wi",
          "canonical_path": "/cities/us/st-francis-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2267250",
          "name": "St. Gabriel",
          "country_code": "US",
          "slug": "st-gabriel",
          "canonical_path": "/cities/us/st-gabriel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4965330",
          "name": "St. George",
          "country_code": "US",
          "slug": "st-george",
          "canonical_path": "/cities/us/st-george/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0664140",
          "name": "St. Helena",
          "country_code": "US",
          "slug": "st-helena",
          "canonical_path": "/cities/us/st-helena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4164600",
          "name": "St. Helens",
          "country_code": "US",
          "slug": "st-helens",
          "canonical_path": "/cities/us/st-helens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3758630",
          "name": "St. James",
          "country_code": "US",
          "slug": "st-james",
          "canonical_path": "/cities/us/st-james/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1866852",
          "name": "St. John",
          "country_code": "US",
          "slug": "st-john-in",
          "canonical_path": "/cities/us/st-john-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2964478",
          "name": "St. John",
          "country_code": "US",
          "slug": "st-john-mo",
          "canonical_path": "/cities/us/st-john-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2670940",
          "name": "St. Johns",
          "country_code": "US",
          "slug": "st-johns",
          "canonical_path": "/cities/us/st-johns/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2670960",
          "name": "St. Joseph",
          "country_code": "US",
          "slug": "st-joseph-mi",
          "canonical_path": "/cities/us/st-joseph-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2757130",
          "name": "St. Joseph",
          "country_code": "US",
          "slug": "st-joseph-mn",
          "canonical_path": "/cities/us/st-joseph-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2964550",
          "name": "St. Joseph",
          "country_code": "US",
          "slug": "st-joseph-mo",
          "canonical_path": "/cities/us/st-joseph-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2671000",
          "name": "St. Louis",
          "country_code": "US",
          "slug": "st-louis-mi",
          "canonical_path": "/cities/us/st-louis-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2965000",
          "name": "St. Louis",
          "country_code": "US",
          "slug": "st-louis-mo",
          "canonical_path": "/cities/us/st-louis-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2757220",
          "name": "St. Louis Park",
          "country_code": "US",
          "slug": "st-louis-park",
          "canonical_path": "/cities/us/st-louis-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2267600",
          "name": "St. Martinville",
          "country_code": "US",
          "slug": "st-martinville",
          "canonical_path": "/cities/us/st-martinville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1367984",
          "name": "St. Marys",
          "country_code": "US",
          "slug": "st-marys-ga",
          "canonical_path": "/cities/us/st-marys-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3969680",
          "name": "St. Marys",
          "country_code": "US",
          "slug": "st-marys-oh",
          "canonical_path": "/cities/us/st-marys-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4267344",
          "name": "St. Marys",
          "country_code": "US",
          "slug": "st-marys-pa",
          "canonical_path": "/cities/us/st-marys-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2167944",
          "name": "St. Matthews",
          "country_code": "US",
          "slug": "st-matthews",
          "canonical_path": "/cities/us/st-matthews/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2757346",
          "name": "St. Michael",
          "country_code": "US",
          "slug": "st-michael",
          "canonical_path": "/cities/us/st-michael/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2758000",
          "name": "St. Paul",
          "country_code": "US",
          "slug": "st-paul",
          "canonical_path": "/cities/us/st-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2758018",
          "name": "St. Paul Park",
          "country_code": "US",
          "slug": "st-paul-park",
          "canonical_path": "/cities/us/st-paul-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1262885",
          "name": "St. Pete Beach",
          "country_code": "US",
          "slug": "st-pete-beach",
          "canonical_path": "/cities/us/st-pete-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2758036",
          "name": "St. Peter",
          "country_code": "US",
          "slug": "st-peter",
          "canonical_path": "/cities/us/st-peter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2965126",
          "name": "St. Peters",
          "country_code": "US",
          "slug": "st-peters",
          "canonical_path": "/cities/us/st-peters/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1263000",
          "name": "St. Petersburg",
          "country_code": "US",
          "slug": "st-petersburg",
          "canonical_path": "/cities/us/st-petersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2965144",
          "name": "St. Robert",
          "country_code": "US",
          "slug": "st-robert",
          "canonical_path": "/cities/us/st-robert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4869908",
          "name": "Stafford",
          "country_code": "US",
          "slug": "stafford",
          "canonical_path": "/cities/us/stafford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3764420",
          "name": "Stallings",
          "country_code": "US",
          "slug": "stallings",
          "canonical_path": "/cities/us/stallings/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0973000",
          "name": "Stamford",
          "country_code": "US",
          "slug": "stamford",
          "canonical_path": "/cities/us/stamford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5398563",
          "name": "Stanford",
          "country_code": "US",
          "slug": "stanford",
          "canonical_path": "/cities/us/stanford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5782055",
          "name": "Stansbury park",
          "country_code": "US",
          "slug": "stansbury-park",
          "canonical_path": "/cities/us/stansbury-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0673962",
          "name": "Stanton",
          "country_code": "US",
          "slug": "stanton",
          "canonical_path": "/cities/us/stanton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5367455",
          "name": "Stanwood",
          "country_code": "US",
          "slug": "stanwood",
          "canonical_path": "/cities/us/stanwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1676870",
          "name": "Star",
          "country_code": "US",
          "slug": "star",
          "canonical_path": "/cities/us/star/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1268525",
          "name": "Starke",
          "country_code": "US",
          "slug": "starke",
          "canonical_path": "/cities/us/starke/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2870240",
          "name": "Starkville",
          "country_code": "US",
          "slug": "starkville",
          "canonical_path": "/cities/us/starkville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5213681",
          "name": "State College",
          "country_code": "US",
          "slug": "state-college",
          "canonical_path": "/cities/us/state-college/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4273808",
          "name": "State College borough",
          "country_code": "US",
          "slug": "state-college-borough",
          "canonical_path": "/cities/us/state-college-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1373256",
          "name": "Statesboro",
          "country_code": "US",
          "slug": "statesboro",
          "canonical_path": "/cities/us/statesboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3764740",
          "name": "Statesville",
          "country_code": "US",
          "slug": "statesville",
          "canonical_path": "/cities/us/statesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5175216",
          "name": "Staunton",
          "country_code": "US",
          "slug": "staunton",
          "canonical_path": "/cities/us/staunton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4170200",
          "name": "Stayton",
          "country_code": "US",
          "slug": "stayton",
          "canonical_path": "/cities/us/stayton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2964180",
          "name": "Ste. Genevieve",
          "country_code": "US",
          "slug": "ste-genevieve",
          "canonical_path": "/cities/us/ste-genevieve/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0873825",
          "name": "Steamboat Springs",
          "country_code": "US",
          "slug": "steamboat-springs",
          "canonical_path": "/cities/us/steamboat-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5214040",
          "name": "Steelton",
          "country_code": "US",
          "slug": "steelton",
          "canonical_path": "/cities/us/steelton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4273888",
          "name": "Steelton borough",
          "country_code": "US",
          "slug": "steelton-borough",
          "canonical_path": "/cities/us/steelton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1772520",
          "name": "Steger",
          "country_code": "US",
          "slug": "steger",
          "canonical_path": "/cities/us/steger/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5367770",
          "name": "Steilacoom",
          "country_code": "US",
          "slug": "steilacoom",
          "canonical_path": "/cities/us/steilacoom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4870208",
          "name": "Stephenville",
          "country_code": "US",
          "slug": "stephenville",
          "canonical_path": "/cities/us/stephenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4787534",
          "name": "Sterling",
          "country_code": "US",
          "slug": "sterling",
          "canonical_path": "/cities/us/sterling/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4952005",
          "name": "Sterling",
          "country_code": "US",
          "slug": "sterling-ma-027",
          "canonical_path": "/cities/us/sterling-ma-027/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5875173",
          "name": "Sterling",
          "country_code": "US",
          "slug": "sterling-ak-122",
          "canonical_path": "/cities/us/sterling-ak-122/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0873935",
          "name": "Sterling",
          "country_code": "US",
          "slug": "sterling-co",
          "canonical_path": "/cities/us/sterling-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1772546",
          "name": "Sterling",
          "country_code": "US",
          "slug": "sterling-il",
          "canonical_path": "/cities/us/sterling-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2676460",
          "name": "Sterling Heights",
          "country_code": "US",
          "slug": "sterling-heights",
          "canonical_path": "/cities/us/sterling-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3974608",
          "name": "Steubenville",
          "country_code": "US",
          "slug": "steubenville",
          "canonical_path": "/cities/us/steubenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5577200",
          "name": "Stevens Point",
          "country_code": "US",
          "slug": "stevens-point",
          "canonical_path": "/cities/us/stevens-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:6690773",
          "name": "Stevenson Ranch",
          "country_code": "US",
          "slug": "stevenson-ranch",
          "canonical_path": "/cities/us/stevenson-ranch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4370366",
          "name": "Stevensville",
          "country_code": "US",
          "slug": "stevensville",
          "canonical_path": "/cities/us/stevensville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2762806",
          "name": "Stewartville",
          "country_code": "US",
          "slug": "stewartville",
          "canonical_path": "/cities/us/stewartville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1772676",
          "name": "Stickney",
          "country_code": "US",
          "slug": "stickney",
          "canonical_path": "/cities/us/stickney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2762824",
          "name": "Stillwater",
          "country_code": "US",
          "slug": "stillwater-mn",
          "canonical_path": "/cities/us/stillwater-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4070300",
          "name": "Stillwater",
          "country_code": "US",
          "slug": "stillwater-ok",
          "canonical_path": "/cities/us/stillwater-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1373704",
          "name": "Stockbridge",
          "country_code": "US",
          "slug": "stockbridge",
          "canonical_path": "/cities/us/stockbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0675000",
          "name": "Stockton",
          "country_code": "US",
          "slug": "stockton",
          "canonical_path": "/cities/us/stockton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3765040",
          "name": "Stokesdale",
          "country_code": "US",
          "slug": "stokesdale",
          "canonical_path": "/cities/us/stokesdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1373816",
          "name": "Stone Mountain",
          "country_code": "US",
          "slug": "stone-mountain",
          "canonical_path": "/cities/us/stone-mountain/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1373784",
          "name": "Stonecrest",
          "country_code": "US",
          "slug": "stonecrest",
          "canonical_path": "/cities/us/stonecrest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5440437",
          "name": "Stonegate",
          "country_code": "US",
          "slug": "stonegate",
          "canonical_path": "/cities/us/stonegate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4952121",
          "name": "Stoneham",
          "country_code": "US",
          "slug": "stoneham",
          "canonical_path": "/cities/us/stoneham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5139865",
          "name": "Stony Brook",
          "country_code": "US",
          "slug": "stony-brook",
          "canonical_path": "/cities/us/stony-brook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5139927",
          "name": "Stony Point",
          "country_code": "US",
          "slug": "stony-point",
          "canonical_path": "/cities/us/stony-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1975630",
          "name": "Storm Lake",
          "country_code": "US",
          "slug": "storm-lake",
          "canonical_path": "/cities/us/storm-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4843786",
          "name": "Storrs",
          "country_code": "US",
          "slug": "storrs",
          "canonical_path": "/cities/us/storrs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5577675",
          "name": "Stoughton",
          "country_code": "US",
          "slug": "stoughton",
          "canonical_path": "/cities/us/stoughton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3974944",
          "name": "Stow",
          "country_code": "US",
          "slug": "stow",
          "canonical_path": "/cities/us/stow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5176000",
          "name": "Strasburg",
          "country_code": "US",
          "slug": "strasburg",
          "canonical_path": "/cities/us/strasburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504336",
          "name": "Stratford",
          "country_code": "US",
          "slug": "stratford",
          "canonical_path": "/cities/us/stratford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4843811",
          "name": "Stratford",
          "country_code": "US",
          "slug": "stratford-ct-120",
          "canonical_path": "/cities/us/stratford-ct-120/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3471220",
          "name": "Stratford borough",
          "country_code": "US",
          "slug": "stratford-borough",
          "canonical_path": "/cities/us/stratford-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105095",
          "name": "Strathmore",
          "country_code": "US",
          "slug": "strathmore",
          "canonical_path": "/cities/us/strathmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5440520",
          "name": "Stratmoor",
          "country_code": "US",
          "slug": "stratmoor",
          "canonical_path": "/cities/us/stratmoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5399319",
          "name": "Strawberry",
          "country_code": "US",
          "slug": "strawberry",
          "canonical_path": "/cities/us/strawberry/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1773157",
          "name": "Streamwood",
          "country_code": "US",
          "slug": "streamwood",
          "canonical_path": "/cities/us/streamwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1773170",
          "name": "Streator",
          "country_code": "US",
          "slug": "streator",
          "canonical_path": "/cities/us/streator/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3975014",
          "name": "Streetsboro",
          "country_code": "US",
          "slug": "streetsboro",
          "canonical_path": "/cities/us/streetsboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3975098",
          "name": "Strongsville",
          "country_code": "US",
          "slug": "strongsville",
          "canonical_path": "/cities/us/strongsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5214543",
          "name": "Stroudsburg",
          "country_code": "US",
          "slug": "stroudsburg",
          "canonical_path": "/cities/us/stroudsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4274888",
          "name": "Stroudsburg borough",
          "country_code": "US",
          "slug": "stroudsburg-borough",
          "canonical_path": "/cities/us/stroudsburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3975126",
          "name": "Struthers",
          "country_code": "US",
          "slug": "struthers",
          "canonical_path": "/cities/us/struthers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1268875",
          "name": "Stuart",
          "country_code": "US",
          "slug": "stuart",
          "canonical_path": "/cities/us/stuart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4788070",
          "name": "Stuarts Draft",
          "country_code": "US",
          "slug": "stuarts-draft",
          "canonical_path": "/cities/us/stuarts-draft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5577875",
          "name": "Sturgeon Bay",
          "country_code": "US",
          "slug": "sturgeon-bay",
          "canonical_path": "/cities/us/sturgeon-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2676960",
          "name": "Sturgis",
          "country_code": "US",
          "slug": "sturgis-mi",
          "canonical_path": "/cities/us/sturgis-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4662100",
          "name": "Sturgis",
          "country_code": "US",
          "slug": "sturgis-sd",
          "canonical_path": "/cities/us/sturgis-sd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5577925",
          "name": "Sturtevant",
          "country_code": "US",
          "slug": "sturtevant",
          "canonical_path": "/cities/us/sturtevant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0567490",
          "name": "Stuttgart",
          "country_code": "US",
          "slug": "stuttgart",
          "canonical_path": "/cities/us/stuttgart/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5577975",
          "name": "Suamico",
          "country_code": "US",
          "slug": "suamico",
          "canonical_path": "/cities/us/suamico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105113",
          "name": "Succasunna",
          "country_code": "US",
          "slug": "succasunna",
          "canonical_path": "/cities/us/succasunna/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4952320",
          "name": "Sudbury",
          "country_code": "US",
          "slug": "sudbury",
          "canonical_path": "/cities/us/sudbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5812434",
          "name": "Sudden Valley",
          "country_code": "US",
          "slug": "sudden-valley",
          "canonical_path": "/cities/us/sudden-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4788145",
          "name": "Sudley",
          "country_code": "US",
          "slug": "sudley",
          "canonical_path": "/cities/us/sudley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3671894",
          "name": "Suffern",
          "country_code": "US",
          "slug": "suffern",
          "canonical_path": "/cities/us/suffern/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5176432",
          "name": "Suffolk",
          "country_code": "US",
          "slug": "suffolk",
          "canonical_path": "/cities/us/suffolk/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1773391",
          "name": "Sugar Grove",
          "country_code": "US",
          "slug": "sugar-grove",
          "canonical_path": "/cities/us/sugar-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1374180",
          "name": "Sugar Hill",
          "country_code": "US",
          "slug": "sugar-hill",
          "canonical_path": "/cities/us/sugar-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4870808",
          "name": "Sugar Land",
          "country_code": "US",
          "slug": "sugar-land",
          "canonical_path": "/cities/us/sugar-land/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5214696",
          "name": "Sugarcreek",
          "country_code": "US",
          "slug": "sugarcreek",
          "canonical_path": "/cities/us/sugarcreek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4788216",
          "name": "Sugarland Run",
          "country_code": "US",
          "slug": "sugarland-run",
          "canonical_path": "/cities/us/sugarland-run/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4174252",
          "name": "Sugarmill Woods",
          "country_code": "US",
          "slug": "sugarmill-woods",
          "canonical_path": "/cities/us/sugarmill-woods/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5399629",
          "name": "Suisun",
          "country_code": "US",
          "slug": "suisun",
          "canonical_path": "/cities/us/suisun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0675630",
          "name": "Suisun City",
          "country_code": "US",
          "slug": "suisun-city",
          "canonical_path": "/cities/us/suisun-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4370616",
          "name": "Suitland",
          "country_code": "US",
          "slug": "suitland",
          "canonical_path": "/cities/us/suitland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259061",
          "name": "Suitland-Silver Hill",
          "country_code": "US",
          "slug": "suitland-silver-hill",
          "canonical_path": "/cities/us/suitland-silver-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2971440",
          "name": "Sullivan",
          "country_code": "US",
          "slug": "sullivan",
          "canonical_path": "/cities/us/sullivan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2273640",
          "name": "Sulphur",
          "country_code": "US",
          "slug": "sulphur",
          "canonical_path": "/cities/us/sulphur/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4870904",
          "name": "Sulphur Springs",
          "country_code": "US",
          "slug": "sulphur-springs",
          "canonical_path": "/cities/us/sulphur-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5368260",
          "name": "Sultan",
          "country_code": "US",
          "slug": "sultan",
          "canonical_path": "/cities/us/sultan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3765580",
          "name": "Summerfield",
          "country_code": "US",
          "slug": "summerfield",
          "canonical_path": "/cities/us/summerfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262622",
          "name": "Summerlin South",
          "country_code": "US",
          "slug": "summerlin-south",
          "canonical_path": "/cities/us/summerlin-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4525829",
          "name": "Summerside",
          "country_code": "US",
          "slug": "summerside",
          "canonical_path": "/cities/us/summerside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4570270",
          "name": "Summerville",
          "country_code": "US",
          "slug": "summerville",
          "canonical_path": "/cities/us/summerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5316172",
          "name": "Summit",
          "country_code": "US",
          "slug": "summit",
          "canonical_path": "/cities/us/summit/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5812505",
          "name": "Summit",
          "country_code": "US",
          "slug": "summit-wa-053",
          "canonical_path": "/cities/us/summit-wa-053/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1773638",
          "name": "Summit",
          "country_code": "US",
          "slug": "summit-il",
          "canonical_path": "/cities/us/summit-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3471430",
          "name": "Summit",
          "country_code": "US",
          "slug": "summit-nj",
          "canonical_path": "/cities/us/summit-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5578375",
          "name": "Summit",
          "country_code": "US",
          "slug": "summit-wi",
          "canonical_path": "/cities/us/summit-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5782272",
          "name": "Summit Park",
          "country_code": "US",
          "slug": "summit-park",
          "canonical_path": "/cities/us/summit-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315426",
          "name": "Summit View",
          "country_code": "US",
          "slug": "summit-view",
          "canonical_path": "/cities/us/summit-view/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5368435",
          "name": "Sumner",
          "country_code": "US",
          "slug": "sumner",
          "canonical_path": "/cities/us/sumner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4570405",
          "name": "Sumter",
          "country_code": "US",
          "slug": "sumter",
          "canonical_path": "/cities/us/sumter/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5316201",
          "name": "Sun City",
          "country_code": "US",
          "slug": "sun-city",
          "canonical_path": "/cities/us/sun-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4174317",
          "name": "Sun City Center",
          "country_code": "US",
          "slug": "sun-city-center",
          "canonical_path": "/cities/us/sun-city-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5316205",
          "name": "Sun City West",
          "country_code": "US",
          "slug": "sun-city-west",
          "canonical_path": "/cities/us/sun-city-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5316209",
          "name": "Sun Lakes",
          "country_code": "US",
          "slug": "sun-lakes",
          "canonical_path": "/cities/us/sun-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5578600",
          "name": "Sun Prairie",
          "country_code": "US",
          "slug": "sun-prairie",
          "canonical_path": "/cities/us/sun-prairie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5513307",
          "name": "Sun Valley",
          "country_code": "US",
          "slug": "sun-valley",
          "canonical_path": "/cities/us/sun-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315210",
          "name": "Sun Village",
          "country_code": "US",
          "slug": "sun-village",
          "canonical_path": "/cities/us/sun-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3975602",
          "name": "Sunbury",
          "country_code": "US",
          "slug": "sunbury-oh",
          "canonical_path": "/cities/us/sunbury-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4275304",
          "name": "Sunbury",
          "country_code": "US",
          "slug": "sunbury-pa",
          "canonical_path": "/cities/us/sunbury-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5093360",
          "name": "Suncook",
          "country_code": "US",
          "slug": "suncook",
          "canonical_path": "/cities/us/suncook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3575640",
          "name": "Sunland Park",
          "country_code": "US",
          "slug": "sunland-park",
          "canonical_path": "/cities/us/sunland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1269555",
          "name": "Sunny Isles Beach",
          "country_code": "US",
          "slug": "sunny-isles-beach",
          "canonical_path": "/cities/us/sunny-isles-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5368750",
          "name": "Sunnyside",
          "country_code": "US",
          "slug": "sunnyside",
          "canonical_path": "/cities/us/sunnyside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0677000",
          "name": "Sunnyvale",
          "country_code": "US",
          "slug": "sunnyvale-ca",
          "canonical_path": "/cities/us/sunnyvale-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4871156",
          "name": "Sunnyvale",
          "country_code": "US",
          "slug": "sunnyvale-tx",
          "canonical_path": "/cities/us/sunnyvale-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1269700",
          "name": "Sunrise",
          "country_code": "US",
          "slug": "sunrise",
          "canonical_path": "/cities/us/sunrise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5513343",
          "name": "Sunrise Manor",
          "country_code": "US",
          "slug": "sunrise-manor",
          "canonical_path": "/cities/us/sunrise-manor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4974480",
          "name": "Sunset",
          "country_code": "US",
          "slug": "sunset",
          "canonical_path": "/cities/us/sunset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13645948",
          "name": "Sunset Beach-Pūpūkea",
          "country_code": "US",
          "slug": "sunset-beach-pupukea",
          "canonical_path": "/cities/us/sunset-beach-pupukea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2971746",
          "name": "Sunset Hills",
          "country_code": "US",
          "slug": "sunset-hills",
          "canonical_path": "/cities/us/sunset-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0875640",
          "name": "Superior",
          "country_code": "US",
          "slug": "superior-co",
          "canonical_path": "/cities/us/superior-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5578650",
          "name": "Superior",
          "country_code": "US",
          "slug": "superior-wi",
          "canonical_path": "/cities/us/superior-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3766040",
          "name": "Surf City",
          "country_code": "US",
          "slug": "surf-city",
          "canonical_path": "/cities/us/surf-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1270075",
          "name": "Surfside",
          "country_code": "US",
          "slug": "surfside",
          "canonical_path": "/cities/us/surfside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0471510",
          "name": "Surprise",
          "country_code": "US",
          "slug": "surprise",
          "canonical_path": "/cities/us/surprise/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0677364",
          "name": "Susanville",
          "country_code": "US",
          "slug": "susanville",
          "canonical_path": "/cities/us/susanville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5578750",
          "name": "Sussex",
          "country_code": "US",
          "slug": "sussex",
          "canonical_path": "/cities/us/sussex/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4171650",
          "name": "Sutherlin",
          "country_code": "US",
          "slug": "sutherlin",
          "canonical_path": "/cities/us/sutherlin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4952444",
          "name": "Sutton",
          "country_code": "US",
          "slug": "sutton",
          "canonical_path": "/cities/us/sutton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1374936",
          "name": "Suwanee",
          "country_code": "US",
          "slug": "suwanee",
          "canonical_path": "/cities/us/suwanee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1374964",
          "name": "Swainsboro",
          "country_code": "US",
          "slug": "swainsboro",
          "canonical_path": "/cities/us/swainsboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4952468",
          "name": "Swampscott",
          "country_code": "US",
          "slug": "swampscott",
          "canonical_path": "/cities/us/swampscott/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1774119",
          "name": "Swansea",
          "country_code": "US",
          "slug": "swansea",
          "canonical_path": "/cities/us/swansea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5093422",
          "name": "Swanzey",
          "country_code": "US",
          "slug": "swanzey",
          "canonical_path": "/cities/us/swanzey/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4561628",
          "name": "Swarthmore",
          "country_code": "US",
          "slug": "swarthmore",
          "canonical_path": "/cities/us/swarthmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4275648",
          "name": "Swarthmore borough",
          "country_code": "US",
          "slug": "swarthmore-borough",
          "canonical_path": "/cities/us/swarthmore-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2677700",
          "name": "Swartz Creek",
          "country_code": "US",
          "slug": "swartz-creek",
          "canonical_path": "/cities/us/swartz-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4171950",
          "name": "Sweet Home",
          "country_code": "US",
          "slug": "sweet-home",
          "canonical_path": "/cities/us/sweet-home/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1270345",
          "name": "Sweetwater",
          "country_code": "US",
          "slug": "sweetwater-fl",
          "canonical_path": "/cities/us/sweetwater-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4772540",
          "name": "Sweetwater",
          "country_code": "US",
          "slug": "sweetwater-tn",
          "canonical_path": "/cities/us/sweetwater-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4871540",
          "name": "Sweetwater",
          "country_code": "US",
          "slug": "sweetwater-tx",
          "canonical_path": "/cities/us/sweetwater-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5215064",
          "name": "Swissvale",
          "country_code": "US",
          "slug": "swissvale",
          "canonical_path": "/cities/us/swissvale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4275816",
          "name": "Swissvale borough",
          "country_code": "US",
          "slug": "swissvale-borough",
          "canonical_path": "/cities/us/swissvale-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4275832",
          "name": "Swoyersville borough",
          "country_code": "US",
          "slug": "swoyersville-borough",
          "canonical_path": "/cities/us/swoyersville-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1774223",
          "name": "Sycamore",
          "country_code": "US",
          "slug": "sycamore",
          "canonical_path": "/cities/us/sycamore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0174352",
          "name": "Sylacauga",
          "country_code": "US",
          "slug": "sylacauga",
          "canonical_path": "/cities/us/sylacauga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3976022",
          "name": "Sylvania",
          "country_code": "US",
          "slug": "sylvania",
          "canonical_path": "/cities/us/sylvania/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1375188",
          "name": "Sylvester",
          "country_code": "US",
          "slug": "sylvester",
          "canonical_path": "/cities/us/sylvester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5140402",
          "name": "Syosset",
          "country_code": "US",
          "slug": "syosset",
          "canonical_path": "/cities/us/syosset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3673000",
          "name": "Syracuse",
          "country_code": "US",
          "slug": "syracuse-ny",
          "canonical_path": "/cities/us/syracuse-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4974810",
          "name": "Syracuse",
          "country_code": "US",
          "slug": "syracuse-ut",
          "canonical_path": "/cities/us/syracuse-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5370000",
          "name": "Tacoma",
          "country_code": "US",
          "slug": "tacoma",
          "canonical_path": "/cities/us/tacoma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0677574",
          "name": "Taft",
          "country_code": "US",
          "slug": "taft",
          "canonical_path": "/cities/us/taft/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4072100",
          "name": "Tahlequah",
          "country_code": "US",
          "slug": "tahlequah",
          "canonical_path": "/cities/us/tahlequah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2476650",
          "name": "Takoma Park",
          "country_code": "US",
          "slug": "takoma-park",
          "canonical_path": "/cities/us/takoma-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4172500",
          "name": "Talent",
          "country_code": "US",
          "slug": "talent",
          "canonical_path": "/cities/us/talent/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0174592",
          "name": "Talladega",
          "country_code": "US",
          "slug": "talladega",
          "canonical_path": "/cities/us/talladega/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1270600",
          "name": "Tallahassee",
          "country_code": "US",
          "slug": "tallahassee",
          "canonical_path": "/cities/us/tallahassee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3976106",
          "name": "Tallmadge",
          "country_code": "US",
          "slug": "tallmadge",
          "canonical_path": "/cities/us/tallmadge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2274690",
          "name": "Tallulah",
          "country_code": "US",
          "slug": "tallulah",
          "canonical_path": "/cities/us/tallulah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5401017",
          "name": "Tamalpais Valley",
          "country_code": "US",
          "slug": "tamalpais-valley",
          "canonical_path": "/cities/us/tamalpais-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262659",
          "name": "Tamalpais-Homestead Valley",
          "country_code": "US",
          "slug": "tamalpais-homestead-valley",
          "canonical_path": "/cities/us/tamalpais-homestead-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5215142",
          "name": "Tamaqua",
          "country_code": "US",
          "slug": "tamaqua",
          "canonical_path": "/cities/us/tamaqua/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4276032",
          "name": "Tamaqua borough",
          "country_code": "US",
          "slug": "tamaqua-borough",
          "canonical_path": "/cities/us/tamaqua-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1270675",
          "name": "Tamarac",
          "country_code": "US",
          "slug": "tamarac",
          "canonical_path": "/cities/us/tamarac/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4174744",
          "name": "Tamiami",
          "country_code": "US",
          "slug": "tamiami",
          "canonical_path": "/cities/us/tamiami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1271000",
          "name": "Tampa",
          "country_code": "US",
          "slug": "tampa",
          "canonical_path": "/cities/us/tampa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5875796",
          "name": "Tanaina",
          "country_code": "US",
          "slug": "tanaina",
          "canonical_path": "/cities/us/tanaina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2476725",
          "name": "Taneytown",
          "country_code": "US",
          "slug": "taneytown",
          "canonical_path": "/cities/us/taneytown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8479430",
          "name": "Tanglewilde",
          "country_code": "US",
          "slug": "tanglewilde",
          "canonical_path": "/cities/us/tanglewilde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262660",
          "name": "Tanglewilde-Thompson Place",
          "country_code": "US",
          "slug": "tanglewilde-thompson-place",
          "canonical_path": "/cities/us/tanglewilde-thompson-place/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5316890",
          "name": "Tanque Verde",
          "country_code": "US",
          "slug": "tanque-verde",
          "canonical_path": "/cities/us/tanque-verde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3576200",
          "name": "Taos",
          "country_code": "US",
          "slug": "taos",
          "canonical_path": "/cities/us/taos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5140532",
          "name": "Tappan",
          "country_code": "US",
          "slug": "tappan",
          "canonical_path": "/cities/us/tappan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5401121",
          "name": "Tara Hills",
          "country_code": "US",
          "slug": "tara-hills",
          "canonical_path": "/cities/us/tara-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3766700",
          "name": "Tarboro",
          "country_code": "US",
          "slug": "tarboro",
          "canonical_path": "/cities/us/tarboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1271150",
          "name": "Tarpon Springs",
          "country_code": "US",
          "slug": "tarpon-springs",
          "canonical_path": "/cities/us/tarpon-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0174976",
          "name": "Tarrant",
          "country_code": "US",
          "slug": "tarrant",
          "canonical_path": "/cities/us/tarrant/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3673176",
          "name": "Tarrytown",
          "country_code": "US",
          "slug": "tarrytown",
          "canonical_path": "/cities/us/tarrytown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2569170",
          "name": "Taunton",
          "country_code": "US",
          "slug": "taunton",
          "canonical_path": "/cities/us/taunton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1271225",
          "name": "Tavares",
          "country_code": "US",
          "slug": "tavares",
          "canonical_path": "/cities/us/tavares/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5215247",
          "name": "Taylor",
          "country_code": "US",
          "slug": "taylor",
          "canonical_path": "/cities/us/taylor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2679000",
          "name": "Taylor",
          "country_code": "US",
          "slug": "taylor-mi",
          "canonical_path": "/cities/us/taylor-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4871948",
          "name": "Taylor",
          "country_code": "US",
          "slug": "taylor-tx",
          "canonical_path": "/cities/us/taylor-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4276184",
          "name": "Taylor borough",
          "country_code": "US",
          "slug": "taylor-borough",
          "canonical_path": "/cities/us/taylor-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2175738",
          "name": "Taylor Mill",
          "country_code": "US",
          "slug": "taylor-mill",
          "canonical_path": "/cities/us/taylor-mill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4598353",
          "name": "Taylors",
          "country_code": "US",
          "slug": "taylors",
          "canonical_path": "/cities/us/taylors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4975360",
          "name": "Taylorsville",
          "country_code": "US",
          "slug": "taylorsville",
          "canonical_path": "/cities/us/taylorsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1774574",
          "name": "Taylorville",
          "country_code": "US",
          "slug": "taylorville",
          "canonical_path": "/cities/us/taylorville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4663100",
          "name": "Tea",
          "country_code": "US",
          "slug": "tea",
          "canonical_path": "/cities/us/tea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4824469",
          "name": "Teays Valley",
          "country_code": "US",
          "slug": "teays-valley",
          "canonical_path": "/cities/us/teays-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2679120",
          "name": "Tecumseh",
          "country_code": "US",
          "slug": "tecumseh-mi",
          "canonical_path": "/cities/us/tecumseh-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4072650",
          "name": "Tecumseh",
          "country_code": "US",
          "slug": "tecumseh-ok",
          "canonical_path": "/cities/us/tecumseh-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4571417",
          "name": "Tega Cay",
          "country_code": "US",
          "slug": "tega-cay",
          "canonical_path": "/cities/us/tega-cay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0678092",
          "name": "Tehachapi",
          "country_code": "US",
          "slug": "tehachapi",
          "canonical_path": "/cities/us/tehachapi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1875248",
          "name": "Tell City",
          "country_code": "US",
          "slug": "tell-city",
          "canonical_path": "/cities/us/tell-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315352",
          "name": "Tellico Village",
          "country_code": "US",
          "slug": "tellico-village",
          "canonical_path": "/cities/us/tellico-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0678120",
          "name": "Temecula",
          "country_code": "US",
          "slug": "temecula",
          "canonical_path": "/cities/us/temecula/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0473000",
          "name": "Tempe",
          "country_code": "US",
          "slug": "tempe",
          "canonical_path": "/cities/us/tempe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5011989",
          "name": "Temperance",
          "country_code": "US",
          "slug": "temperance",
          "canonical_path": "/cities/us/temperance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1375832",
          "name": "Temple",
          "country_code": "US",
          "slug": "temple-ga",
          "canonical_path": "/cities/us/temple-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4872176",
          "name": "Temple",
          "country_code": "US",
          "slug": "temple-tx",
          "canonical_path": "/cities/us/temple-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0678148",
          "name": "Temple City",
          "country_code": "US",
          "slug": "temple-city",
          "canonical_path": "/cities/us/temple-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4371053",
          "name": "Temple Hills",
          "country_code": "US",
          "slug": "temple-hills",
          "canonical_path": "/cities/us/temple-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1271400",
          "name": "Temple Terrace",
          "country_code": "US",
          "slug": "temple-terrace",
          "canonical_path": "/cities/us/temple-terrace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5401516",
          "name": "Templeton",
          "country_code": "US",
          "slug": "templeton-ca-079",
          "canonical_path": "/cities/us/templeton-ca-079/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105300",
          "name": "Tenafly",
          "country_code": "US",
          "slug": "tenafly",
          "canonical_path": "/cities/us/tenafly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3472420",
          "name": "Tenafly borough",
          "country_code": "US",
          "slug": "tenafly-borough",
          "canonical_path": "/cities/us/tenafly-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4140642",
          "name": "Tenleytown",
          "country_code": "US",
          "slug": "tenleytown",
          "canonical_path": "/cities/us/tenleytown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1271525",
          "name": "Tequesta",
          "country_code": "US",
          "slug": "tequesta",
          "canonical_path": "/cities/us/tequesta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5813249",
          "name": "Terrace Heights",
          "country_code": "US",
          "slug": "terrace-heights",
          "canonical_path": "/cities/us/terrace-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1875428",
          "name": "Terre Haute",
          "country_code": "US",
          "slug": "terre-haute",
          "canonical_path": "/cities/us/terre-haute/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4872284",
          "name": "Terrell",
          "country_code": "US",
          "slug": "terrell",
          "canonical_path": "/cities/us/terrell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4872296",
          "name": "Terrell Hills",
          "country_code": "US",
          "slug": "terrell-hills",
          "canonical_path": "/cities/us/terrell-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4343327",
          "name": "Terrytown",
          "country_code": "US",
          "slug": "terrytown",
          "canonical_path": "/cities/us/terrytown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4844084",
          "name": "Terryville",
          "country_code": "US",
          "slug": "terryville",
          "canonical_path": "/cities/us/terryville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5140694",
          "name": "Terryville",
          "country_code": "US",
          "slug": "terryville-ny-103",
          "canonical_path": "/cities/us/terryville-ny-103/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4952762",
          "name": "Tewksbury",
          "country_code": "US",
          "slug": "tewksbury",
          "canonical_path": "/cities/us/tewksbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0568810",
          "name": "Texarkana",
          "country_code": "US",
          "slug": "texarkana-ar",
          "canonical_path": "/cities/us/texarkana-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4872368",
          "name": "Texarkana",
          "country_code": "US",
          "slug": "texarkana-tx",
          "canonical_path": "/cities/us/texarkana-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4872392",
          "name": "Texas City",
          "country_code": "US",
          "slug": "texas-city",
          "canonical_path": "/cities/us/texas-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0473420",
          "name": "Thatcher",
          "country_code": "US",
          "slug": "thatcher",
          "canonical_path": "/cities/us/thatcher/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8096113",
          "name": "The Acreage",
          "country_code": "US",
          "slug": "the-acreage",
          "canonical_path": "/cities/us/the-acreage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5110266",
          "name": "The Bronx",
          "country_code": "US",
          "slug": "the-bronx",
          "canonical_path": "/cities/us/the-bronx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4872530",
          "name": "The Colony",
          "country_code": "US",
          "slug": "the-colony",
          "canonical_path": "/cities/us/the-colony/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4175091",
          "name": "The Crossings",
          "country_code": "US",
          "slug": "the-crossings",
          "canonical_path": "/cities/us/the-crossings/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4172950",
          "name": "The Dalles",
          "country_code": "US",
          "slug": "the-dalles",
          "canonical_path": "/cities/us/the-dalles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4175117",
          "name": "The Hammocks",
          "country_code": "US",
          "slug": "the-hammocks",
          "canonical_path": "/cities/us/the-hammocks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526899",
          "name": "The Parks At Walter Reed",
          "country_code": "US",
          "slug": "the-parks-at-walter-reed",
          "canonical_path": "/cities/us/the-parks-at-walter-reed/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5441384",
          "name": "The Pinery",
          "country_code": "US",
          "slug": "the-pinery",
          "canonical_path": "/cities/us/the-pinery/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4073250",
          "name": "The Village",
          "country_code": "US",
          "slug": "the-village",
          "canonical_path": "/cities/us/the-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3976582",
          "name": "The Village of Indian Hill",
          "country_code": "US",
          "slug": "the-village-of-indian-hill",
          "canonical_path": "/cities/us/the-village-of-indian-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4175179",
          "name": "The Villages",
          "country_code": "US",
          "slug": "the-villages",
          "canonical_path": "/cities/us/the-villages/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526903",
          "name": "The Wharf",
          "country_code": "US",
          "slug": "the-wharf",
          "canonical_path": "/cities/us/the-wharf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4736476",
          "name": "The Woodlands",
          "country_code": "US",
          "slug": "the-woodlands",
          "canonical_path": "/cities/us/the-woodlands/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4093399",
          "name": "Theodore",
          "country_code": "US",
          "slug": "theodore",
          "canonical_path": "/cities/us/theodore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5402159",
          "name": "Thermalito",
          "country_code": "US",
          "slug": "thermalito",
          "canonical_path": "/cities/us/thermalito/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2275425",
          "name": "Thibodaux",
          "country_code": "US",
          "slug": "thibodaux",
          "canonical_path": "/cities/us/thibodaux/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2764570",
          "name": "Thief River Falls",
          "country_code": "US",
          "slug": "thief-river-falls",
          "canonical_path": "/cities/us/thief-river-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5140789",
          "name": "Thiells",
          "country_code": "US",
          "slug": "thiells",
          "canonical_path": "/cities/us/thiells/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1376168",
          "name": "Thomaston",
          "country_code": "US",
          "slug": "thomaston",
          "canonical_path": "/cities/us/thomaston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1376224",
          "name": "Thomasville",
          "country_code": "US",
          "slug": "thomasville-ga",
          "canonical_path": "/cities/us/thomasville-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3767420",
          "name": "Thomasville",
          "country_code": "US",
          "slug": "thomasville-nc",
          "canonical_path": "/cities/us/thomasville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4773900",
          "name": "Thompson's Station",
          "country_code": "US",
          "slug": "thompson-s-station",
          "canonical_path": "/cities/us/thompson-s-station/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4844200",
          "name": "Thompsonville",
          "country_code": "US",
          "slug": "thompsonville",
          "canonical_path": "/cities/us/thompsonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1376280",
          "name": "Thomson",
          "country_code": "US",
          "slug": "thomson",
          "canonical_path": "/cities/us/thomson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4175269",
          "name": "Thonotosassa",
          "country_code": "US",
          "slug": "thonotosassa",
          "canonical_path": "/cities/us/thonotosassa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0877290",
          "name": "Thornton",
          "country_code": "US",
          "slug": "thornton",
          "canonical_path": "/cities/us/thornton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0678582",
          "name": "Thousand Oaks",
          "country_code": "US",
          "slug": "thousand-oaks",
          "canonical_path": "/cities/us/thousand-oaks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5402415",
          "name": "Thousand Palms",
          "country_code": "US",
          "slug": "thousand-palms",
          "canonical_path": "/cities/us/thousand-palms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4175296",
          "name": "Three Lakes",
          "country_code": "US",
          "slug": "three-lakes",
          "canonical_path": "/cities/us/three-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5317377",
          "name": "Three Points",
          "country_code": "US",
          "slug": "three-points",
          "canonical_path": "/cities/us/three-points/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2679760",
          "name": "Three Rivers",
          "country_code": "US",
          "slug": "three-rivers",
          "canonical_path": "/cities/us/three-rivers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2477825",
          "name": "Thurmont",
          "country_code": "US",
          "slug": "thurmont",
          "canonical_path": "/cities/us/thurmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0678666",
          "name": "Tiburon",
          "country_code": "US",
          "slug": "tiburon",
          "canonical_path": "/cities/us/tiburon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5275760",
          "name": "Tichigan",
          "country_code": "US",
          "slug": "tichigan",
          "canonical_path": "/cities/us/tichigan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1978060",
          "name": "Tiffin",
          "country_code": "US",
          "slug": "tiffin-ia",
          "canonical_path": "/cities/us/tiffin-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3976778",
          "name": "Tiffin",
          "country_code": "US",
          "slug": "tiffin-oh",
          "canonical_path": "/cities/us/tiffin-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1376476",
          "name": "Tifton",
          "country_code": "US",
          "slug": "tifton",
          "canonical_path": "/cities/us/tifton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4173650",
          "name": "Tigard",
          "country_code": "US",
          "slug": "tigard",
          "canonical_path": "/cities/us/tigard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4173700",
          "name": "Tillamook",
          "country_code": "US",
          "slug": "tillamook",
          "canonical_path": "/cities/us/tillamook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4093753",
          "name": "Tillmans Corner",
          "country_code": "US",
          "slug": "tillmans-corner",
          "canonical_path": "/cities/us/tillmans-corner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4175391",
          "name": "Timber Pines",
          "country_code": "US",
          "slug": "timber-pines",
          "canonical_path": "/cities/us/timber-pines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4789648",
          "name": "Timberlake",
          "country_code": "US",
          "slug": "timberlake",
          "canonical_path": "/cities/us/timberlake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4343659",
          "name": "Timberlane",
          "country_code": "US",
          "slug": "timberlane",
          "canonical_path": "/cities/us/timberlane/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4736922",
          "name": "Timberwood Park",
          "country_code": "US",
          "slug": "timberwood-park",
          "canonical_path": "/cities/us/timberwood-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0877510",
          "name": "Timnath",
          "country_code": "US",
          "slug": "timnath",
          "canonical_path": "/cities/us/timnath/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4371420",
          "name": "Timonium",
          "country_code": "US",
          "slug": "timonium",
          "canonical_path": "/cities/us/timonium/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1775484",
          "name": "Tinley Park",
          "country_code": "US",
          "slug": "tinley-park",
          "canonical_path": "/cities/us/tinley-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105433",
          "name": "Tinton Falls",
          "country_code": "US",
          "slug": "tinton-falls",
          "canonical_path": "/cities/us/tinton-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3473020",
          "name": "Tinton Falls borough",
          "country_code": "US",
          "slug": "tinton-falls-borough",
          "canonical_path": "/cities/us/tinton-falls-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3976876",
          "name": "Tipp City",
          "country_code": "US",
          "slug": "tipp-city",
          "canonical_path": "/cities/us/tipp-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1875986",
          "name": "Tipton",
          "country_code": "US",
          "slug": "tipton",
          "canonical_path": "/cities/us/tipton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1271900",
          "name": "Titusville",
          "country_code": "US",
          "slug": "titusville-fl",
          "canonical_path": "/cities/us/titusville-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4276904",
          "name": "Titusville",
          "country_code": "US",
          "slug": "titusville-pa",
          "canonical_path": "/cities/us/titusville-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5225245",
          "name": "Tiverton",
          "country_code": "US",
          "slug": "tiverton",
          "canonical_path": "/cities/us/tiverton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1376756",
          "name": "Toccoa",
          "country_code": "US",
          "slug": "toccoa",
          "canonical_path": "/cities/us/toccoa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3977000",
          "name": "Toledo",
          "country_code": "US",
          "slug": "toledo",
          "canonical_path": "/cities/us/toledo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0474190",
          "name": "Tolleson",
          "country_code": "US",
          "slug": "tolleson",
          "canonical_path": "/cities/us/tolleson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5580075",
          "name": "Tomah",
          "country_code": "US",
          "slug": "tomah",
          "canonical_path": "/cities/us/tomah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4873316",
          "name": "Tomball",
          "country_code": "US",
          "slug": "tomball",
          "canonical_path": "/cities/us/tomball/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504476",
          "name": "Toms River",
          "country_code": "US",
          "slug": "toms-river",
          "canonical_path": "/cities/us/toms-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3674166",
          "name": "Tonawanda",
          "country_code": "US",
          "slug": "tonawanda",
          "canonical_path": "/cities/us/tonawanda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2070800",
          "name": "Tonganoxie",
          "country_code": "US",
          "slug": "tonganoxie",
          "canonical_path": "/cities/us/tonganoxie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0569740",
          "name": "Tontitown",
          "country_code": "US",
          "slug": "tontitown",
          "canonical_path": "/cities/us/tontitown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4976680",
          "name": "Tooele",
          "country_code": "US",
          "slug": "tooele",
          "canonical_path": "/cities/us/tooele/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5402961",
          "name": "Topanga",
          "country_code": "US",
          "slug": "topanga",
          "canonical_path": "/cities/us/topanga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2071000",
          "name": "Topeka",
          "country_code": "US",
          "slug": "topeka",
          "canonical_path": "/cities/us/topeka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5371960",
          "name": "Toppenish",
          "country_code": "US",
          "slug": "toppenish",
          "canonical_path": "/cities/us/toppenish/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4980927",
          "name": "Topsham",
          "country_code": "US",
          "slug": "topsham",
          "canonical_path": "/cities/us/topsham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3977112",
          "name": "Toronto",
          "country_code": "US",
          "slug": "toronto",
          "canonical_path": "/cities/us/toronto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0680000",
          "name": "Torrance",
          "country_code": "US",
          "slug": "torrance",
          "canonical_path": "/cities/us/torrance/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0976500",
          "name": "Torrington",
          "country_code": "US",
          "slug": "torrington-ct",
          "canonical_path": "/cities/us/torrington-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5677530",
          "name": "Torrington",
          "country_code": "US",
          "slug": "torrington-wy",
          "canonical_path": "/cities/us/torrington-wy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105455",
          "name": "Totowa",
          "country_code": "US",
          "slug": "totowa",
          "canonical_path": "/cities/us/totowa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3473140",
          "name": "Totowa borough",
          "country_code": "US",
          "slug": "totowa-borough",
          "canonical_path": "/cities/us/totowa-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4175538",
          "name": "Town 'n' Country",
          "country_code": "US",
          "slug": "town-n-country",
          "canonical_path": "/cities/us/town-n-country/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2973618",
          "name": "Town and Country",
          "country_code": "US",
          "slug": "town-and-country",
          "canonical_path": "/cities/us/town-and-country/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4873493",
          "name": "Town of Pecos",
          "country_code": "US",
          "slug": "town-of-pecos",
          "canonical_path": "/cities/us/town-of-pecos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4371582",
          "name": "Towson",
          "country_code": "US",
          "slug": "towson",
          "canonical_path": "/cities/us/towson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0680238",
          "name": "Tracy",
          "country_code": "US",
          "slug": "tracy",
          "canonical_path": "/cities/us/tracy/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5813832",
          "name": "Tracyton",
          "country_code": "US",
          "slug": "tracyton",
          "canonical_path": "/cities/us/tracyton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4572430",
          "name": "Travelers Rest",
          "country_code": "US",
          "slug": "travelers-rest",
          "canonical_path": "/cities/us/travelers-rest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2680340",
          "name": "Traverse City",
          "country_code": "US",
          "slug": "traverse-city",
          "canonical_path": "/cities/us/traverse-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4371635",
          "name": "Travilah",
          "country_code": "US",
          "slug": "travilah",
          "canonical_path": "/cities/us/travilah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1272325",
          "name": "Treasure Island",
          "country_code": "US",
          "slug": "treasure-island",
          "canonical_path": "/cities/us/treasure-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4977120",
          "name": "Tremonton",
          "country_code": "US",
          "slug": "tremonton",
          "canonical_path": "/cities/us/tremonton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2680420",
          "name": "Trenton",
          "country_code": "US",
          "slug": "trenton-mi",
          "canonical_path": "/cities/us/trenton-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2973816",
          "name": "Trenton",
          "country_code": "US",
          "slug": "trenton-mo",
          "canonical_path": "/cities/us/trenton-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3474000",
          "name": "Trenton",
          "country_code": "US",
          "slug": "trenton-nj",
          "canonical_path": "/cities/us/trenton-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3977322",
          "name": "Trenton",
          "country_code": "US",
          "slug": "trenton-oh",
          "canonical_path": "/cities/us/trenton-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0176824",
          "name": "Triana",
          "country_code": "US",
          "slug": "triana",
          "canonical_path": "/cities/us/triana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4790025",
          "name": "Triangle",
          "country_code": "US",
          "slug": "triangle",
          "canonical_path": "/cities/us/triangle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0878610",
          "name": "Trinidad",
          "country_code": "US",
          "slug": "trinidad",
          "canonical_path": "/cities/us/trinidad/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3768400",
          "name": "Trinity",
          "country_code": "US",
          "slug": "trinity",
          "canonical_path": "/cities/us/trinity/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5216092",
          "name": "Trooper",
          "country_code": "US",
          "slug": "trooper",
          "canonical_path": "/cities/us/trooper/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4873710",
          "name": "Trophy Club",
          "country_code": "US",
          "slug": "trophy-club",
          "canonical_path": "/cities/us/trophy-club/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3977504",
          "name": "Trotwood",
          "country_code": "US",
          "slug": "trotwood",
          "canonical_path": "/cities/us/trotwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4174850",
          "name": "Troutdale",
          "country_code": "US",
          "slug": "troutdale",
          "canonical_path": "/cities/us/troutdale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0176920",
          "name": "Troy",
          "country_code": "US",
          "slug": "troy-al",
          "canonical_path": "/cities/us/troy-al/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1776199",
          "name": "Troy",
          "country_code": "US",
          "slug": "troy-il",
          "canonical_path": "/cities/us/troy-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2680700",
          "name": "Troy",
          "country_code": "US",
          "slug": "troy-mi",
          "canonical_path": "/cities/us/troy-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2973942",
          "name": "Troy",
          "country_code": "US",
          "slug": "troy-mo",
          "canonical_path": "/cities/us/troy-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3675484",
          "name": "Troy",
          "country_code": "US",
          "slug": "troy-ny",
          "canonical_path": "/cities/us/troy-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3977588",
          "name": "Troy",
          "country_code": "US",
          "slug": "troy-oh",
          "canonical_path": "/cities/us/troy-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0680588",
          "name": "Truckee",
          "country_code": "US",
          "slug": "truckee",
          "canonical_path": "/cities/us/truckee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0570010",
          "name": "Trumann",
          "country_code": "US",
          "slug": "trumann",
          "canonical_path": "/cities/us/trumann/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4844459",
          "name": "Trumbull",
          "country_code": "US",
          "slug": "trumbull",
          "canonical_path": "/cities/us/trumbull/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0176944",
          "name": "Trussville",
          "country_code": "US",
          "slug": "trussville",
          "canonical_path": "/cities/us/trussville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3579840",
          "name": "Truth or Consequences",
          "country_code": "US",
          "slug": "truth-or-consequences",
          "canonical_path": "/cities/us/truth-or-consequences/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4174950",
          "name": "Tualatin",
          "country_code": "US",
          "slug": "tualatin",
          "canonical_path": "/cities/us/tualatin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5318279",
          "name": "Tuba City",
          "country_code": "US",
          "slug": "tuba-city",
          "canonical_path": "/cities/us/tuba-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3675583",
          "name": "Tuckahoe",
          "country_code": "US",
          "slug": "tuckahoe",
          "canonical_path": "/cities/us/tuckahoe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1377652",
          "name": "Tucker",
          "country_code": "US",
          "slug": "tucker",
          "canonical_path": "/cities/us/tucker/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0477000",
          "name": "Tucson",
          "country_code": "US",
          "slug": "tucson",
          "canonical_path": "/cities/us/tucson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5318320",
          "name": "Tucson Estates",
          "country_code": "US",
          "slug": "tucson-estates",
          "canonical_path": "/cities/us/tucson-estates/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3579910",
          "name": "Tucumcari",
          "country_code": "US",
          "slug": "tucumcari",
          "canonical_path": "/cities/us/tucumcari/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5372625",
          "name": "Tukwila",
          "country_code": "US",
          "slug": "tukwila",
          "canonical_path": "/cities/us/tukwila/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0680644",
          "name": "Tulare",
          "country_code": "US",
          "slug": "tulare",
          "canonical_path": "/cities/us/tulare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4775320",
          "name": "Tullahoma",
          "country_code": "US",
          "slug": "tullahoma",
          "canonical_path": "/cities/us/tullahoma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4075000",
          "name": "Tulsa",
          "country_code": "US",
          "slug": "tulsa",
          "canonical_path": "/cities/us/tulsa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5372905",
          "name": "Tumwater",
          "country_code": "US",
          "slug": "tumwater",
          "canonical_path": "/cities/us/tumwater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2874840",
          "name": "Tupelo",
          "country_code": "US",
          "slug": "tupelo",
          "canonical_path": "/cities/us/tupelo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0680812",
          "name": "Turlock",
          "country_code": "US",
          "slug": "turlock",
          "canonical_path": "/cities/us/turlock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4981250",
          "name": "Turner",
          "country_code": "US",
          "slug": "turner",
          "canonical_path": "/cities/us/turner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4050118",
          "name": "Turpin Hills",
          "country_code": "US",
          "slug": "turpin-hills",
          "canonical_path": "/cities/us/turpin-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5216343",
          "name": "Turtle Creek",
          "country_code": "US",
          "slug": "turtle-creek",
          "canonical_path": "/cities/us/turtle-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0177256",
          "name": "Tuscaloosa",
          "country_code": "US",
          "slug": "tuscaloosa",
          "canonical_path": "/cities/us/tuscaloosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0177280",
          "name": "Tuscumbia",
          "country_code": "US",
          "slug": "tuscumbia",
          "canonical_path": "/cities/us/tuscumbia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0177304",
          "name": "Tuskegee",
          "country_code": "US",
          "slug": "tuskegee",
          "canonical_path": "/cities/us/tuskegee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0680854",
          "name": "Tustin",
          "country_code": "US",
          "slug": "tustin",
          "canonical_path": "/cities/us/tustin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4075450",
          "name": "Tuttle",
          "country_code": "US",
          "slug": "tuttle",
          "canonical_path": "/cities/us/tuttle/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0680994",
          "name": "Twentynine Palms",
          "country_code": "US",
          "slug": "twentynine-palms",
          "canonical_path": "/cities/us/twentynine-palms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1682810",
          "name": "Twin Falls",
          "country_code": "US",
          "slug": "twin-falls",
          "canonical_path": "/cities/us/twin-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5581250",
          "name": "Twin Lakes",
          "country_code": "US",
          "slug": "twin-lakes",
          "canonical_path": "/cities/us/twin-lakes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105594",
          "name": "Twin Rivers",
          "country_code": "US",
          "slug": "twin-rivers",
          "canonical_path": "/cities/us/twin-rivers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3978050",
          "name": "Twinsburg",
          "country_code": "US",
          "slug": "twinsburg",
          "canonical_path": "/cities/us/twinsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5581325",
          "name": "Two Rivers",
          "country_code": "US",
          "slug": "two-rivers",
          "canonical_path": "/cities/us/two-rivers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4874144",
          "name": "Tyler",
          "country_code": "US",
          "slug": "tyler",
          "canonical_path": "/cities/us/tyler/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4953542",
          "name": "Tyngsboro",
          "country_code": "US",
          "slug": "tyngsboro",
          "canonical_path": "/cities/us/tyngsboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1378044",
          "name": "Tyrone",
          "country_code": "US",
          "slug": "tyrone",
          "canonical_path": "/cities/us/tyrone/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4278168",
          "name": "Tyrone borough",
          "country_code": "US",
          "slug": "tyrone-borough",
          "canonical_path": "/cities/us/tyrone-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4790534",
          "name": "Tysons",
          "country_code": "US",
          "slug": "tysons",
          "canonical_path": "/cities/us/tysons/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3978176",
          "name": "Uhrichsville",
          "country_code": "US",
          "slug": "uhrichsville",
          "canonical_path": "/cities/us/uhrichsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0681134",
          "name": "Ukiah",
          "country_code": "US",
          "slug": "ukiah",
          "canonical_path": "/cities/us/ukiah/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2071975",
          "name": "Ulysses",
          "country_code": "US",
          "slug": "ulysses",
          "canonical_path": "/cities/us/ulysses/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4175650",
          "name": "Umatilla",
          "country_code": "US",
          "slug": "umatilla",
          "canonical_path": "/cities/us/umatilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105608",
          "name": "Union",
          "country_code": "US",
          "slug": "union",
          "canonical_path": "/cities/us/union/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2178384",
          "name": "Union",
          "country_code": "US",
          "slug": "union-ky",
          "canonical_path": "/cities/us/union-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2974626",
          "name": "Union",
          "country_code": "US",
          "slug": "union-mo",
          "canonical_path": "/cities/us/union-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3978470",
          "name": "Union",
          "country_code": "US",
          "slug": "union-oh",
          "canonical_path": "/cities/us/union-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4573105",
          "name": "Union",
          "country_code": "US",
          "slug": "union-sc",
          "canonical_path": "/cities/us/union-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105615",
          "name": "Union Beach",
          "country_code": "US",
          "slug": "union-beach",
          "canonical_path": "/cities/us/union-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3474540",
          "name": "Union Beach borough",
          "country_code": "US",
          "slug": "union-beach-borough",
          "canonical_path": "/cities/us/union-beach-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0681204",
          "name": "Union City",
          "country_code": "US",
          "slug": "union-city-ca",
          "canonical_path": "/cities/us/union-city-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1378324",
          "name": "Union City",
          "country_code": "US",
          "slug": "union-city-ga",
          "canonical_path": "/cities/us/union-city-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3474630",
          "name": "Union City",
          "country_code": "US",
          "slug": "union-city-nj",
          "canonical_path": "/cities/us/union-city-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4775940",
          "name": "Union City",
          "country_code": "US",
          "slug": "union-city-tn",
          "canonical_path": "/cities/us/union-city-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5373290",
          "name": "Union Gap",
          "country_code": "US",
          "slug": "union-gap",
          "canonical_path": "/cities/us/union-gap/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5581775",
          "name": "Union Grove",
          "country_code": "US",
          "slug": "union-grove",
          "canonical_path": "/cities/us/union-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262428",
          "name": "Union Hill-Novelty Hill",
          "country_code": "US",
          "slug": "union-hill-novelty-hill",
          "canonical_path": "/cities/us/union-hill-novelty-hill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526901",
          "name": "Union Market",
          "country_code": "US",
          "slug": "union-market",
          "canonical_path": "/cities/us/union-market/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4176109",
          "name": "Union Park",
          "country_code": "US",
          "slug": "union-park",
          "canonical_path": "/cities/us/union-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5141927",
          "name": "Uniondale",
          "country_code": "US",
          "slug": "uniondale",
          "canonical_path": "/cities/us/uniondale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4278528",
          "name": "Uniontown",
          "country_code": "US",
          "slug": "uniontown",
          "canonical_path": "/cities/us/uniontown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3769260",
          "name": "Unionville",
          "country_code": "US",
          "slug": "unionville",
          "canonical_path": "/cities/us/unionville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4874408",
          "name": "Universal City",
          "country_code": "US",
          "slug": "universal-city",
          "canonical_path": "/cities/us/universal-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260219",
          "name": "University",
          "country_code": "US",
          "slug": "university",
          "canonical_path": "/cities/us/university/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2975220",
          "name": "University City",
          "country_code": "US",
          "slug": "university-city",
          "canonical_path": "/cities/us/university-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3978932",
          "name": "University Heights",
          "country_code": "US",
          "slug": "university-heights",
          "canonical_path": "/cities/us/university-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4176217",
          "name": "University Park",
          "country_code": "US",
          "slug": "university-park",
          "canonical_path": "/cities/us/university-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1776935",
          "name": "University Park",
          "country_code": "US",
          "slug": "university-park-il",
          "canonical_path": "/cities/us/university-park-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4874492",
          "name": "University Park",
          "country_code": "US",
          "slug": "university-park-tx",
          "canonical_path": "/cities/us/university-park-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5373465",
          "name": "University Place",
          "country_code": "US",
          "slug": "university-place",
          "canonical_path": "/cities/us/university-place/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0681344",
          "name": "Upland",
          "country_code": "US",
          "slug": "upland",
          "canonical_path": "/cities/us/upland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3979002",
          "name": "Upper Arlington",
          "country_code": "US",
          "slug": "upper-arlington",
          "canonical_path": "/cities/us/upper-arlington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4176277",
          "name": "Upper Grand Lagoon",
          "country_code": "US",
          "slug": "upper-grand-lagoon",
          "canonical_path": "/cities/us/upper-grand-lagoon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105722",
          "name": "Upper Montclair",
          "country_code": "US",
          "slug": "upper-montclair",
          "canonical_path": "/cities/us/upper-montclair/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105733",
          "name": "Upper Saddle River",
          "country_code": "US",
          "slug": "upper-saddle-river",
          "canonical_path": "/cities/us/upper-saddle-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3475140",
          "name": "Upper Saddle River borough",
          "country_code": "US",
          "slug": "upper-saddle-river-borough",
          "canonical_path": "/cities/us/upper-saddle-river-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3979044",
          "name": "Upper Sandusky",
          "country_code": "US",
          "slug": "upper-sandusky",
          "canonical_path": "/cities/us/upper-sandusky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1571550",
          "name": "Urban Honolulu",
          "country_code": "US",
          "slug": "urban-honolulu",
          "canonical_path": "/cities/us/urban-honolulu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4372201",
          "name": "Urbana",
          "country_code": "US",
          "slug": "urbana",
          "canonical_path": "/cities/us/urbana/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1777005",
          "name": "Urbana",
          "country_code": "US",
          "slug": "urbana-il",
          "canonical_path": "/cities/us/urbana-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3979072",
          "name": "Urbana",
          "country_code": "US",
          "slug": "urbana-oh",
          "canonical_path": "/cities/us/urbana-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1979950",
          "name": "Urbandale",
          "country_code": "US",
          "slug": "urbandale",
          "canonical_path": "/cities/us/urbandale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2681540",
          "name": "Utica",
          "country_code": "US",
          "slug": "utica-mi",
          "canonical_path": "/cities/us/utica-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3676540",
          "name": "Utica",
          "country_code": "US",
          "slug": "utica-ny",
          "canonical_path": "/cities/us/utica-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4874588",
          "name": "Uvalde",
          "country_code": "US",
          "slug": "uvalde",
          "canonical_path": "/cities/us/uvalde/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4953804",
          "name": "Uxbridge",
          "country_code": "US",
          "slug": "uxbridge",
          "canonical_path": "/cities/us/uxbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0681554",
          "name": "Vacaville",
          "country_code": "US",
          "slug": "vacaville",
          "canonical_path": "/cities/us/vacaville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2766460",
          "name": "Vadnais Heights",
          "country_code": "US",
          "slug": "vadnais-heights",
          "canonical_path": "/cities/us/vadnais-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5319311",
          "name": "Vail",
          "country_code": "US",
          "slug": "vail",
          "canonical_path": "/cities/us/vail/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5442727",
          "name": "Vail",
          "country_code": "US",
          "slug": "vail-co-037",
          "canonical_path": "/cities/us/vail-co-037/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1378800",
          "name": "Valdosta",
          "country_code": "US",
          "slug": "valdosta",
          "canonical_path": "/cities/us/valdosta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262440",
          "name": "Valencia West",
          "country_code": "US",
          "slug": "valencia-west",
          "canonical_path": "/cities/us/valencia-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5405326",
          "name": "Valinda",
          "country_code": "US",
          "slug": "valinda",
          "canonical_path": "/cities/us/valinda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5405346",
          "name": "Valle Vista",
          "country_code": "US",
          "slug": "valle-vista",
          "canonical_path": "/cities/us/valle-vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0681666",
          "name": "Vallejo",
          "country_code": "US",
          "slug": "vallejo",
          "canonical_path": "/cities/us/vallejo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0178204",
          "name": "Valley",
          "country_code": "US",
          "slug": "valley",
          "canonical_path": "/cities/us/valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2073250",
          "name": "Valley Center",
          "country_code": "US",
          "slug": "valley-center",
          "canonical_path": "/cities/us/valley-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3881180",
          "name": "Valley City",
          "country_code": "US",
          "slug": "valley-city",
          "canonical_path": "/cities/us/valley-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5142101",
          "name": "Valley Cottage",
          "country_code": "US",
          "slug": "valley-cottage",
          "canonical_path": "/cities/us/valley-cottage/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4599455",
          "name": "Valley Falls",
          "country_code": "US",
          "slug": "valley-falls",
          "canonical_path": "/cities/us/valley-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5225388",
          "name": "Valley Falls",
          "country_code": "US",
          "slug": "valley-falls-ri-007",
          "canonical_path": "/cities/us/valley-falls-ri-007/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2975472",
          "name": "Valley Park",
          "country_code": "US",
          "slug": "valley-park",
          "canonical_path": "/cities/us/valley-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3676705",
          "name": "Valley Stream",
          "country_code": "US",
          "slug": "valley-stream",
          "canonical_path": "/cities/us/valley-stream/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1878326",
          "name": "Valparaiso",
          "country_code": "US",
          "slug": "valparaiso",
          "canonical_path": "/cities/us/valparaiso/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4176318",
          "name": "Valrico",
          "country_code": "US",
          "slug": "valrico",
          "canonical_path": "/cities/us/valrico/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4874924",
          "name": "Van Alstyne",
          "country_code": "US",
          "slug": "van-alstyne",
          "canonical_path": "/cities/us/van-alstyne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0571480",
          "name": "Van Buren",
          "country_code": "US",
          "slug": "van-buren",
          "canonical_path": "/cities/us/van-buren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13526902",
          "name": "Van Ness",
          "country_code": "US",
          "slug": "van-ness",
          "canonical_path": "/cities/us/van-ness/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3979562",
          "name": "Van Wert",
          "country_code": "US",
          "slug": "van-wert",
          "canonical_path": "/cities/us/van-wert/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4449532",
          "name": "Vancleave",
          "country_code": "US",
          "slug": "vancleave",
          "canonical_path": "/cities/us/vancleave/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5374060",
          "name": "Vancouver",
          "country_code": "US",
          "slug": "vancouver",
          "canonical_path": "/cities/us/vancouver/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1777317",
          "name": "Vandalia",
          "country_code": "US",
          "slug": "vandalia-il",
          "canonical_path": "/cities/us/vandalia-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3979492",
          "name": "Vandalia",
          "country_code": "US",
          "slug": "vandalia-oh",
          "canonical_path": "/cities/us/vandalia-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5405737",
          "name": "Vandenberg Village",
          "country_code": "US",
          "slug": "vandenberg-village",
          "canonical_path": "/cities/us/vandenberg-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5217103",
          "name": "Vandergrift",
          "country_code": "US",
          "slug": "vandergrift",
          "canonical_path": "/cities/us/vandergrift/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5814647",
          "name": "Vashon",
          "country_code": "US",
          "slug": "vashon",
          "canonical_path": "/cities/us/vashon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4177050",
          "name": "Veneta",
          "country_code": "US",
          "slug": "veneta",
          "canonical_path": "/cities/us/veneta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1273900",
          "name": "Venice",
          "country_code": "US",
          "slug": "venice",
          "canonical_path": "/cities/us/venice/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4176387",
          "name": "Venice Gardens",
          "country_code": "US",
          "slug": "venice-gardens",
          "canonical_path": "/cities/us/venice-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3475620",
          "name": "Ventnor City",
          "country_code": "US",
          "slug": "ventnor-city",
          "canonical_path": "/cities/us/ventnor-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5405878",
          "name": "Ventura",
          "country_code": "US",
          "slug": "ventura",
          "canonical_path": "/cities/us/ventura/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4875236",
          "name": "Venus",
          "country_code": "US",
          "slug": "venus",
          "canonical_path": "/cities/us/venus/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7176038",
          "name": "Verde Village",
          "country_code": "US",
          "slug": "verde-village",
          "canonical_path": "/cities/us/verde-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4077050",
          "name": "Verdigris",
          "country_code": "US",
          "slug": "verdigris",
          "canonical_path": "/cities/us/verdigris/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3979716",
          "name": "Vermilion",
          "country_code": "US",
          "slug": "vermilion",
          "canonical_path": "/cities/us/vermilion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4666700",
          "name": "Vermillion",
          "country_code": "US",
          "slug": "vermillion",
          "canonical_path": "/cities/us/vermillion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4980090",
          "name": "Vernal",
          "country_code": "US",
          "slug": "vernal",
          "canonical_path": "/cities/us/vernal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4875308",
          "name": "Vernon",
          "country_code": "US",
          "slug": "vernon-tx",
          "canonical_path": "/cities/us/vernon-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5582575",
          "name": "Vernon",
          "country_code": "US",
          "slug": "vernon-wi",
          "canonical_path": "/cities/us/vernon-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1777694",
          "name": "Vernon Hills",
          "country_code": "US",
          "slug": "vernon-hills",
          "canonical_path": "/cities/us/vernon-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1274150",
          "name": "Vero Beach",
          "country_code": "US",
          "slug": "vero-beach",
          "canonical_path": "/cities/us/vero-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260233",
          "name": "Vero Beach South",
          "country_code": "US",
          "slug": "vero-beach-south",
          "canonical_path": "/cities/us/vero-beach-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5582600",
          "name": "Verona",
          "country_code": "US",
          "slug": "verona",
          "canonical_path": "/cities/us/verona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2179482",
          "name": "Versailles",
          "country_code": "US",
          "slug": "versailles",
          "canonical_path": "/cities/us/versailles/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0178552",
          "name": "Vestavia Hills",
          "country_code": "US",
          "slug": "vestavia-hills",
          "canonical_path": "/cities/us/vestavia-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2876720",
          "name": "Vicksburg",
          "country_code": "US",
          "slug": "vicksburg",
          "canonical_path": "/cities/us/vicksburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2767036",
          "name": "Victoria",
          "country_code": "US",
          "slug": "victoria-mn",
          "canonical_path": "/cities/us/victoria-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4875428",
          "name": "Victoria",
          "country_code": "US",
          "slug": "victoria-tx",
          "canonical_path": "/cities/us/victoria-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0682590",
          "name": "Victorville",
          "country_code": "US",
          "slug": "victorville",
          "canonical_path": "/cities/us/victorville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1379388",
          "name": "Vidalia",
          "country_code": "US",
          "slug": "vidalia",
          "canonical_path": "/cities/us/vidalia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4875476",
          "name": "Vidor",
          "country_code": "US",
          "slug": "vidor",
          "canonical_path": "/cities/us/vidor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5181072",
          "name": "Vienna",
          "country_code": "US",
          "slug": "vienna-va",
          "canonical_path": "/cities/us/vienna-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5483500",
          "name": "Vienna",
          "country_code": "US",
          "slug": "vienna-wv",
          "canonical_path": "/cities/us/vienna-wv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315241",
          "name": "Viera East",
          "country_code": "US",
          "slug": "viera-east",
          "canonical_path": "/cities/us/viera-east/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7315242",
          "name": "Viera West",
          "country_code": "US",
          "slug": "viera-west",
          "canonical_path": "/cities/us/viera-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2179698",
          "name": "Villa Hills",
          "country_code": "US",
          "slug": "villa-hills",
          "canonical_path": "/cities/us/villa-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0682744",
          "name": "Villa Park",
          "country_code": "US",
          "slug": "villa-park-ca",
          "canonical_path": "/cities/us/villa-park-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1777993",
          "name": "Villa Park",
          "country_code": "US",
          "slug": "villa-park-il",
          "canonical_path": "/cities/us/villa-park-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1379528",
          "name": "Villa Rica",
          "country_code": "US",
          "slug": "villa-rica",
          "canonical_path": "/cities/us/villa-rica/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259124",
          "name": "Village Green-Green Ridge",
          "country_code": "US",
          "slug": "village-green-green-ridge",
          "canonical_path": "/cities/us/village-green-green-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260892",
          "name": "Village of Oak Creek (Big Park)",
          "country_code": "US",
          "slug": "village-of-oak-creek-big-park",
          "canonical_path": "/cities/us/village-of-oak-creek-big-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5853965",
          "name": "Village Park",
          "country_code": "US",
          "slug": "village-park",
          "canonical_path": "/cities/us/village-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4047914",
          "name": "Villas",
          "country_code": "US",
          "slug": "villas",
          "canonical_path": "/cities/us/villas/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504616",
          "name": "Villas",
          "country_code": "US",
          "slug": "villas-nj-009",
          "canonical_path": "/cities/us/villas-nj-009/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2278715",
          "name": "Ville Platte",
          "country_code": "US",
          "slug": "ville-platte",
          "canonical_path": "/cities/us/ville-platte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1879208",
          "name": "Vincennes",
          "country_code": "US",
          "slug": "vincennes",
          "canonical_path": "/cities/us/vincennes/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262464",
          "name": "Vincent",
          "country_code": "US",
          "slug": "vincent-ca-037",
          "canonical_path": "/cities/us/vincent-ca-037/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504618",
          "name": "Vincentown",
          "country_code": "US",
          "slug": "vincentown",
          "canonical_path": "/cities/us/vincentown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2179734",
          "name": "Vine Grove",
          "country_code": "US",
          "slug": "vine-grove",
          "canonical_path": "/cities/us/vine-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3476070",
          "name": "Vineland",
          "country_code": "US",
          "slug": "vineland",
          "canonical_path": "/cities/us/vineland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4980420",
          "name": "Vineyard",
          "country_code": "US",
          "slug": "vineyard",
          "canonical_path": "/cities/us/vineyard/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4228518",
          "name": "Vinings",
          "country_code": "US",
          "slug": "vinings",
          "canonical_path": "/cities/us/vinings/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4077550",
          "name": "Vinita",
          "country_code": "US",
          "slug": "vinita",
          "canonical_path": "/cities/us/vinita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1981210",
          "name": "Vinton",
          "country_code": "US",
          "slug": "vinton-ia",
          "canonical_path": "/cities/us/vinton-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5181280",
          "name": "Vinton",
          "country_code": "US",
          "slug": "vinton-va",
          "canonical_path": "/cities/us/vinton-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5142362",
          "name": "Viola",
          "country_code": "US",
          "slug": "viola",
          "canonical_path": "/cities/us/viola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2767288",
          "name": "Virginia",
          "country_code": "US",
          "slug": "virginia",
          "canonical_path": "/cities/us/virginia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5182000",
          "name": "Virginia Beach",
          "country_code": "US",
          "slug": "virginia-beach",
          "canonical_path": "/cities/us/virginia-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0682954",
          "name": "Visalia",
          "country_code": "US",
          "slug": "visalia",
          "canonical_path": "/cities/us/visalia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0682996",
          "name": "Vista",
          "country_code": "US",
          "slug": "vista",
          "canonical_path": "/cities/us/vista/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1778227",
          "name": "Volo",
          "country_code": "US",
          "slug": "volo",
          "canonical_path": "/cities/us/volo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1879370",
          "name": "Wabash",
          "country_code": "US",
          "slug": "wabash",
          "canonical_path": "/cities/us/wabash/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4876000",
          "name": "Waco",
          "country_code": "US",
          "slug": "waco",
          "canonical_path": "/cities/us/waco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2767432",
          "name": "Waconia",
          "country_code": "US",
          "slug": "waconia",
          "canonical_path": "/cities/us/waconia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4599937",
          "name": "Wade Hampton",
          "country_code": "US",
          "slug": "wade-hampton",
          "canonical_path": "/cities/us/wade-hampton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3770380",
          "name": "Wadesboro",
          "country_code": "US",
          "slug": "wadesboro",
          "canonical_path": "/cities/us/wadesboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143022",
          "name": "Wading River",
          "country_code": "US",
          "slug": "wading-river",
          "canonical_path": "/cities/us/wading-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3980304",
          "name": "Wadsworth",
          "country_code": "US",
          "slug": "wadsworth",
          "canonical_path": "/cities/us/wadsworth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4344819",
          "name": "Waggaman",
          "country_code": "US",
          "slug": "waggaman",
          "canonical_path": "/cities/us/waggaman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4077850",
          "name": "Wagoner",
          "country_code": "US",
          "slug": "wagoner",
          "canonical_path": "/cities/us/wagoner/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5853992",
          "name": "Wahiawā",
          "country_code": "US",
          "slug": "wahiawa",
          "canonical_path": "/cities/us/wahiawa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13645943",
          "name": "Wahiawā-Whitmore",
          "country_code": "US",
          "slug": "wahiawa-whitmore",
          "canonical_path": "/cities/us/wahiawa-whitmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177308",
          "name": "Wahneta",
          "country_code": "US",
          "slug": "wahneta",
          "canonical_path": "/cities/us/wahneta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3150965",
          "name": "Wahoo",
          "country_code": "US",
          "slug": "wahoo",
          "canonical_path": "/cities/us/wahoo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3882660",
          "name": "Wahpeton",
          "country_code": "US",
          "slug": "wahpeton",
          "canonical_path": "/cities/us/wahpeton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5854189",
          "name": "Waianae",
          "country_code": "US",
          "slug": "waianae",
          "canonical_path": "/cities/us/waianae/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262796",
          "name": "Waihee-Waiehu",
          "country_code": "US",
          "slug": "waihee-waiehu",
          "canonical_path": "/cities/us/waihee-waiehu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5854450",
          "name": "Wailea",
          "country_code": "US",
          "slug": "wailea",
          "canonical_path": "/cities/us/wailea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262800",
          "name": "Wailea-Makena",
          "country_code": "US",
          "slug": "wailea-makena",
          "canonical_path": "/cities/us/wailea-makena/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262802",
          "name": "Wailua Homesteads",
          "country_code": "US",
          "slug": "wailua-homesteads",
          "canonical_path": "/cities/us/wailua-homesteads/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5854496",
          "name": "Wailuku",
          "country_code": "US",
          "slug": "wailuku",
          "canonical_path": "/cities/us/wailuku/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5854530",
          "name": "Waimalu",
          "country_code": "US",
          "slug": "waimalu",
          "canonical_path": "/cities/us/waimalu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5854532",
          "name": "Waimanalo",
          "country_code": "US",
          "slug": "waimanalo",
          "canonical_path": "/cities/us/waimanalo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5854571",
          "name": "Waimea",
          "country_code": "US",
          "slug": "waimea",
          "canonical_path": "/cities/us/waimea/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5854686",
          "name": "Waipahu",
          "country_code": "US",
          "slug": "waipahu",
          "canonical_path": "/cities/us/waipahu/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5854718",
          "name": "Waipi‘o Acres",
          "country_code": "US",
          "slug": "waipi-o-acres",
          "canonical_path": "/cities/us/waipi-o-acres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5854717",
          "name": "Waipio",
          "country_code": "US",
          "slug": "waipio",
          "canonical_path": "/cities/us/waipio/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2767612",
          "name": "Waite Park",
          "country_code": "US",
          "slug": "waite-park",
          "canonical_path": "/cities/us/waite-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3770540",
          "name": "Wake Forest",
          "country_code": "US",
          "slug": "wake-forest",
          "canonical_path": "/cities/us/wake-forest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4876096",
          "name": "Wake Village",
          "country_code": "US",
          "slug": "wake-village",
          "canonical_path": "/cities/us/wake-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954265",
          "name": "Wakefield",
          "country_code": "US",
          "slug": "wakefield",
          "canonical_path": "/cities/us/wakefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257663",
          "name": "Wakefield-Peacedale",
          "country_code": "US",
          "slug": "wakefield-peacedale",
          "canonical_path": "/cities/us/wakefield-peacedale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3677849",
          "name": "Walden",
          "country_code": "US",
          "slug": "walden",
          "canonical_path": "/cities/us/walden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5406879",
          "name": "Waldon",
          "country_code": "US",
          "slug": "waldon",
          "canonical_path": "/cities/us/waldon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4372599",
          "name": "Waldorf",
          "country_code": "US",
          "slug": "waldorf",
          "canonical_path": "/cities/us/waldorf/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105957",
          "name": "Waldwick",
          "country_code": "US",
          "slug": "waldwick",
          "canonical_path": "/cities/us/waldwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3476400",
          "name": "Waldwick borough",
          "country_code": "US",
          "slug": "waldwick-borough",
          "canonical_path": "/cities/us/waldwick-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2279240",
          "name": "Walker",
          "country_code": "US",
          "slug": "walker-la",
          "canonical_path": "/cities/us/walker-la/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2682960",
          "name": "Walker",
          "country_code": "US",
          "slug": "walker-mi",
          "canonical_path": "/cities/us/walker-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4372623",
          "name": "Walker Mill",
          "country_code": "US",
          "slug": "walker-mill",
          "canonical_path": "/cities/us/walker-mill/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2481275",
          "name": "Walkersville",
          "country_code": "US",
          "slug": "walkersville",
          "canonical_path": "/cities/us/walkersville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3770660",
          "name": "Walkertown",
          "country_code": "US",
          "slug": "walkertown",
          "canonical_path": "/cities/us/walkertown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5375775",
          "name": "Walla Walla",
          "country_code": "US",
          "slug": "walla-walla",
          "canonical_path": "/cities/us/walla-walla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2683060",
          "name": "Walled Lake",
          "country_code": "US",
          "slug": "walled-lake",
          "canonical_path": "/cities/us/walled-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4876228",
          "name": "Waller",
          "country_code": "US",
          "slug": "waller",
          "canonical_path": "/cities/us/waller/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845056",
          "name": "Wallingford",
          "country_code": "US",
          "slug": "wallingford",
          "canonical_path": "/cities/us/wallingford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7257422",
          "name": "Wallingford Center",
          "country_code": "US",
          "slug": "wallingford-center",
          "canonical_path": "/cities/us/wallingford-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5105974",
          "name": "Wallington",
          "country_code": "US",
          "slug": "wallington",
          "canonical_path": "/cities/us/wallington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3476490",
          "name": "Wallington borough",
          "country_code": "US",
          "slug": "wallington-borough",
          "canonical_path": "/cities/us/wallington-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0683332",
          "name": "Walnut",
          "country_code": "US",
          "slug": "walnut",
          "canonical_path": "/cities/us/walnut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0683346",
          "name": "Walnut Creek",
          "country_code": "US",
          "slug": "walnut-creek",
          "canonical_path": "/cities/us/walnut-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5407030",
          "name": "Walnut Park",
          "country_code": "US",
          "slug": "walnut-park",
          "canonical_path": "/cities/us/walnut-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0572890",
          "name": "Walnut Ridge",
          "country_code": "US",
          "slug": "walnut-ridge",
          "canonical_path": "/cities/us/walnut-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954364",
          "name": "Walpole",
          "country_code": "US",
          "slug": "walpole",
          "canonical_path": "/cities/us/walpole/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4574275",
          "name": "Walterboro",
          "country_code": "US",
          "slug": "walterboro",
          "canonical_path": "/cities/us/walterboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2572600",
          "name": "Waltham",
          "country_code": "US",
          "slug": "waltham",
          "canonical_path": "/cities/us/waltham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2180490",
          "name": "Walton",
          "country_code": "US",
          "slug": "walton",
          "canonical_path": "/cities/us/walton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106014",
          "name": "Wanaque",
          "country_code": "US",
          "slug": "wanaque",
          "canonical_path": "/cities/us/wanaque/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3476730",
          "name": "Wanaque borough",
          "country_code": "US",
          "slug": "wanaque-borough",
          "canonical_path": "/cities/us/wanaque-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143198",
          "name": "Wantagh",
          "country_code": "US",
          "slug": "wantagh",
          "canonical_path": "/cities/us/wantagh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3980766",
          "name": "Wapakoneta",
          "country_code": "US",
          "slug": "wapakoneta",
          "canonical_path": "/cities/us/wapakoneta/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5814992",
          "name": "Wapato",
          "country_code": "US",
          "slug": "wapato",
          "canonical_path": "/cities/us/wapato/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3678168",
          "name": "Wappingers Falls",
          "country_code": "US",
          "slug": "wappingers-falls",
          "canonical_path": "/cities/us/wappingers-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0573130",
          "name": "Ward",
          "country_code": "US",
          "slug": "ward",
          "canonical_path": "/cities/us/ward/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954477",
          "name": "Ware",
          "country_code": "US",
          "slug": "ware",
          "canonical_path": "/cities/us/ware/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177450",
          "name": "Warm Mineral Springs",
          "country_code": "US",
          "slug": "warm-mineral-springs",
          "canonical_path": "/cities/us/warm-mineral-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1380508",
          "name": "Warner Robins",
          "country_code": "US",
          "slug": "warner-robins",
          "canonical_path": "/cities/us/warner-robins/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4078500",
          "name": "Warr Acres",
          "country_code": "US",
          "slug": "warr-acres",
          "canonical_path": "/cities/us/warr-acres/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5225502",
          "name": "Warren",
          "country_code": "US",
          "slug": "warren",
          "canonical_path": "/cities/us/warren/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0573310",
          "name": "Warren",
          "country_code": "US",
          "slug": "warren-ar",
          "canonical_path": "/cities/us/warren-ar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2684000",
          "name": "Warren",
          "country_code": "US",
          "slug": "warren-mi",
          "canonical_path": "/cities/us/warren-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3980892",
          "name": "Warren",
          "country_code": "US",
          "slug": "warren-oh",
          "canonical_path": "/cities/us/warren-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4281000",
          "name": "Warren",
          "country_code": "US",
          "slug": "warren-pa",
          "canonical_path": "/cities/us/warren-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8299577",
          "name": "Warren Township",
          "country_code": "US",
          "slug": "warren-township",
          "canonical_path": "/cities/us/warren-township/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2977092",
          "name": "Warrensburg",
          "country_code": "US",
          "slug": "warrensburg",
          "canonical_path": "/cities/us/warrensburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3980990",
          "name": "Warrensville Heights",
          "country_code": "US",
          "slug": "warrensville-heights",
          "canonical_path": "/cities/us/warrensville-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2977128",
          "name": "Warrenton",
          "country_code": "US",
          "slug": "warrenton-mo",
          "canonical_path": "/cities/us/warrenton-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4178900",
          "name": "Warrenton",
          "country_code": "US",
          "slug": "warrenton-or",
          "canonical_path": "/cities/us/warrenton-or/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5183136",
          "name": "Warrenton",
          "country_code": "US",
          "slug": "warrenton-va",
          "canonical_path": "/cities/us/warrenton-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1778929",
          "name": "Warrenville",
          "country_code": "US",
          "slug": "warrenville",
          "canonical_path": "/cities/us/warrenville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177465",
          "name": "Warrington",
          "country_code": "US",
          "slug": "warrington",
          "canonical_path": "/cities/us/warrington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1880306",
          "name": "Warsaw",
          "country_code": "US",
          "slug": "warsaw",
          "canonical_path": "/cities/us/warsaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3678355",
          "name": "Warwick",
          "country_code": "US",
          "slug": "warwick-ny",
          "canonical_path": "/cities/us/warwick-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4474300",
          "name": "Warwick",
          "country_code": "US",
          "slug": "warwick-ri",
          "canonical_path": "/cities/us/warwick-ri/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0683542",
          "name": "Wasco",
          "country_code": "US",
          "slug": "wasco",
          "canonical_path": "/cities/us/wasco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2768296",
          "name": "Waseca",
          "country_code": "US",
          "slug": "waseca",
          "canonical_path": "/cities/us/waseca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106057",
          "name": "Washington",
          "country_code": "US",
          "slug": "washington",
          "canonical_path": "/cities/us/washington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1150000",
          "name": "Washington",
          "country_code": "US",
          "slug": "washington-dc",
          "canonical_path": "/cities/us/washington-dc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1779033",
          "name": "Washington",
          "country_code": "US",
          "slug": "washington-il",
          "canonical_path": "/cities/us/washington-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1880504",
          "name": "Washington",
          "country_code": "US",
          "slug": "washington-in",
          "canonical_path": "/cities/us/washington-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1982335",
          "name": "Washington",
          "country_code": "US",
          "slug": "washington-ia",
          "canonical_path": "/cities/us/washington-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2977416",
          "name": "Washington",
          "country_code": "US",
          "slug": "washington-mo",
          "canonical_path": "/cities/us/washington-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3771220",
          "name": "Washington",
          "country_code": "US",
          "slug": "washington-nc",
          "canonical_path": "/cities/us/washington-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4281328",
          "name": "Washington",
          "country_code": "US",
          "slug": "washington-pa",
          "canonical_path": "/cities/us/washington-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4981960",
          "name": "Washington",
          "country_code": "US",
          "slug": "washington-ut",
          "canonical_path": "/cities/us/washington-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3477270",
          "name": "Washington borough",
          "country_code": "US",
          "slug": "washington-borough",
          "canonical_path": "/cities/us/washington-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3981718",
          "name": "Washington Court House",
          "country_code": "US",
          "slug": "washington-court-house",
          "canonical_path": "/cities/us/washington-court-house/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4982070",
          "name": "Washington Terrace",
          "country_code": "US",
          "slug": "washington-terrace",
          "canonical_path": "/cities/us/washington-terrace/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:wikidata:Q61",
          "name": "Washington, D.C.",
          "country_code": "US",
          "slug": "washington-d-c",
          "canonical_path": "/cities/us/washington-d-c/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3678465",
          "name": "Washingtonville",
          "country_code": "US",
          "slug": "washingtonville",
          "canonical_path": "/cities/us/washingtonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5376405",
          "name": "Washougal",
          "country_code": "US",
          "slug": "washougal",
          "canonical_path": "/cities/us/washougal/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0283080",
          "name": "Wasilla",
          "country_code": "US",
          "slug": "wasilla",
          "canonical_path": "/cities/us/wasilla/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4876672",
          "name": "Watauga",
          "country_code": "US",
          "slug": "watauga",
          "canonical_path": "/cities/us/watauga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106129",
          "name": "Watchung",
          "country_code": "US",
          "slug": "watchung",
          "canonical_path": "/cities/us/watchung/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3477600",
          "name": "Watchung borough",
          "country_code": "US",
          "slug": "watchung-borough",
          "canonical_path": "/cities/us/watchung-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0980000",
          "name": "Waterbury",
          "country_code": "US",
          "slug": "waterbury",
          "canonical_path": "/cities/us/waterbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8480031",
          "name": "Waterford",
          "country_code": "US",
          "slug": "waterford-ct-180",
          "canonical_path": "/cities/us/waterford-ct-180/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0683612",
          "name": "Waterford",
          "country_code": "US",
          "slug": "waterford-ca",
          "canonical_path": "/cities/us/waterford-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5583825",
          "name": "Waterford",
          "country_code": "US",
          "slug": "waterford-wi",
          "canonical_path": "/cities/us/waterford-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143380",
          "name": "Waterloo",
          "country_code": "US",
          "slug": "waterloo",
          "canonical_path": "/cities/us/waterloo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1779150",
          "name": "Waterloo",
          "country_code": "US",
          "slug": "waterloo-il",
          "canonical_path": "/cities/us/waterloo-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1982425",
          "name": "Waterloo",
          "country_code": "US",
          "slug": "waterloo-ia",
          "canonical_path": "/cities/us/waterloo-ia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954611",
          "name": "Watertown",
          "country_code": "US",
          "slug": "watertown",
          "canonical_path": "/cities/us/watertown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3678608",
          "name": "Watertown",
          "country_code": "US",
          "slug": "watertown-ny",
          "canonical_path": "/cities/us/watertown-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4669300",
          "name": "Watertown",
          "country_code": "US",
          "slug": "watertown-sd",
          "canonical_path": "/cities/us/watertown-sd/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5583975",
          "name": "Watertown",
          "country_code": "US",
          "slug": "watertown-wi",
          "canonical_path": "/cities/us/watertown-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:13308080",
          "name": "Watertown Square",
          "country_code": "US",
          "slug": "watertown-square",
          "canonical_path": "/cities/us/watertown-square/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2380740",
          "name": "Waterville",
          "country_code": "US",
          "slug": "waterville-me",
          "canonical_path": "/cities/us/waterville-me/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3981858",
          "name": "Waterville",
          "country_code": "US",
          "slug": "waterville-oh",
          "canonical_path": "/cities/us/waterville-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3678674",
          "name": "Watervliet",
          "country_code": "US",
          "slug": "watervliet",
          "canonical_path": "/cities/us/watervliet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3883860",
          "name": "Watford City",
          "country_code": "US",
          "slug": "watford-city",
          "canonical_path": "/cities/us/watford-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4915703",
          "name": "Watseka",
          "country_code": "US",
          "slug": "watseka",
          "canonical_path": "/cities/us/watseka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0683668",
          "name": "Watsonville",
          "country_code": "US",
          "slug": "watsonville",
          "canonical_path": "/cities/us/watsonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1779267",
          "name": "Wauconda",
          "country_code": "US",
          "slug": "wauconda",
          "canonical_path": "/cities/us/wauconda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1982695",
          "name": "Waukee",
          "country_code": "US",
          "slug": "waukee",
          "canonical_path": "/cities/us/waukee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1779293",
          "name": "Waukegan",
          "country_code": "US",
          "slug": "waukegan",
          "canonical_path": "/cities/us/waukegan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5584250",
          "name": "Waukesha",
          "country_code": "US",
          "slug": "waukesha",
          "canonical_path": "/cities/us/waukesha/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5584275",
          "name": "Waukesha",
          "country_code": "US",
          "slug": "waukesha-wi-5584275",
          "canonical_path": "/cities/us/waukesha-wi-5584275/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5584350",
          "name": "Waunakee",
          "country_code": "US",
          "slug": "waunakee",
          "canonical_path": "/cities/us/waunakee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5584375",
          "name": "Waupaca",
          "country_code": "US",
          "slug": "waupaca",
          "canonical_path": "/cities/us/waupaca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5584425",
          "name": "Waupun",
          "country_code": "US",
          "slug": "waupun",
          "canonical_path": "/cities/us/waupun/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5584475",
          "name": "Wausau",
          "country_code": "US",
          "slug": "wausau",
          "canonical_path": "/cities/us/wausau/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3981928",
          "name": "Wauseon",
          "country_code": "US",
          "slug": "wauseon",
          "canonical_path": "/cities/us/wauseon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5584675",
          "name": "Wauwatosa",
          "country_code": "US",
          "slug": "wauwatosa",
          "canonical_path": "/cities/us/wauwatosa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2878200",
          "name": "Waveland",
          "country_code": "US",
          "slug": "waveland",
          "canonical_path": "/cities/us/waveland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1982875",
          "name": "Waverly",
          "country_code": "US",
          "slug": "waverly",
          "canonical_path": "/cities/us/waverly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4876816",
          "name": "Waxahachie",
          "country_code": "US",
          "slug": "waxahachie",
          "canonical_path": "/cities/us/waxahachie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3771460",
          "name": "Waxhaw",
          "country_code": "US",
          "slug": "waxhaw",
          "canonical_path": "/cities/us/waxhaw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1380956",
          "name": "Waycross",
          "country_code": "US",
          "slug": "waycross",
          "canonical_path": "/cities/us/waycross/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954654",
          "name": "Wayland",
          "country_code": "US",
          "slug": "wayland",
          "canonical_path": "/cities/us/wayland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5218270",
          "name": "Wayne",
          "country_code": "US",
          "slug": "wayne-pa-045",
          "canonical_path": "/cities/us/wayne-pa-045/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2684940",
          "name": "Wayne",
          "country_code": "US",
          "slug": "wayne-mi",
          "canonical_path": "/cities/us/wayne-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3151840",
          "name": "Wayne",
          "country_code": "US",
          "slug": "wayne-ne",
          "canonical_path": "/cities/us/wayne-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4562070",
          "name": "Waynesboro",
          "country_code": "US",
          "slug": "waynesboro",
          "canonical_path": "/cities/us/waynesboro/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1380984",
          "name": "Waynesboro",
          "country_code": "US",
          "slug": "waynesboro-ga",
          "canonical_path": "/cities/us/waynesboro-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5183680",
          "name": "Waynesboro",
          "country_code": "US",
          "slug": "waynesboro-va",
          "canonical_path": "/cities/us/waynesboro-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4281824",
          "name": "Waynesboro borough",
          "country_code": "US",
          "slug": "waynesboro-borough",
          "canonical_path": "/cities/us/waynesboro-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2977992",
          "name": "Waynesville",
          "country_code": "US",
          "slug": "waynesville-mo",
          "canonical_path": "/cities/us/waynesville-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3771500",
          "name": "Waynesville",
          "country_code": "US",
          "slug": "waynesville-nc",
          "canonical_path": "/cities/us/waynesville-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5094329",
          "name": "Weare",
          "country_code": "US",
          "slug": "weare",
          "canonical_path": "/cities/us/weare/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4079450",
          "name": "Weatherford",
          "country_code": "US",
          "slug": "weatherford-ok",
          "canonical_path": "/cities/us/weatherford-ok/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4876864",
          "name": "Weatherford",
          "country_code": "US",
          "slug": "weatherford-tx",
          "canonical_path": "/cities/us/weatherford-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2978118",
          "name": "Webb City",
          "country_code": "US",
          "slug": "webb-city",
          "canonical_path": "/cities/us/webb-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954677",
          "name": "Webster",
          "country_code": "US",
          "slug": "webster",
          "canonical_path": "/cities/us/webster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3678960",
          "name": "Webster",
          "country_code": "US",
          "slug": "webster-ny",
          "canonical_path": "/cities/us/webster-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4876948",
          "name": "Webster",
          "country_code": "US",
          "slug": "webster-tx",
          "canonical_path": "/cities/us/webster-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1983145",
          "name": "Webster City",
          "country_code": "US",
          "slug": "webster-city",
          "canonical_path": "/cities/us/webster-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2978154",
          "name": "Webster Groves",
          "country_code": "US",
          "slug": "webster-groves",
          "canonical_path": "/cities/us/webster-groves/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3771680",
          "name": "Weddington",
          "country_code": "US",
          "slug": "weddington",
          "canonical_path": "/cities/us/weddington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177617",
          "name": "Wedgefield",
          "country_code": "US",
          "slug": "wedgefield",
          "canonical_path": "/cities/us/wedgefield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4562088",
          "name": "Weigelstown",
          "country_code": "US",
          "slug": "weigelstown",
          "canonical_path": "/cities/us/weigelstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5485156",
          "name": "Weirton",
          "country_code": "US",
          "slug": "weirton",
          "canonical_path": "/cities/us/weirton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1686140",
          "name": "Weiser",
          "country_code": "US",
          "slug": "weiser",
          "canonical_path": "/cities/us/weiser/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177671",
          "name": "Wekiwa Springs",
          "country_code": "US",
          "slug": "wekiwa-springs",
          "canonical_path": "/cities/us/wekiwa-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5443482",
          "name": "Welby",
          "country_code": "US",
          "slug": "welby",
          "canonical_path": "/cities/us/welby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4600413",
          "name": "Welcome",
          "country_code": "US",
          "slug": "welcome",
          "canonical_path": "/cities/us/welcome/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2978314",
          "name": "Weldon Spring",
          "country_code": "US",
          "slug": "weldon-spring",
          "canonical_path": "/cities/us/weldon-spring/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954738",
          "name": "Wellesley",
          "country_code": "US",
          "slug": "wellesley",
          "canonical_path": "/cities/us/wellesley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0883230",
          "name": "Wellington",
          "country_code": "US",
          "slug": "wellington-co",
          "canonical_path": "/cities/us/wellington-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1275812",
          "name": "Wellington",
          "country_code": "US",
          "slug": "wellington-fl",
          "canonical_path": "/cities/us/wellington-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2076475",
          "name": "Wellington",
          "country_code": "US",
          "slug": "wellington-ks",
          "canonical_path": "/cities/us/wellington-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4740584",
          "name": "Wells Branch",
          "country_code": "US",
          "slug": "wells-branch",
          "canonical_path": "/cities/us/wells-branch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3982712",
          "name": "Wellston",
          "country_code": "US",
          "slug": "wellston",
          "canonical_path": "/cities/us/wellston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5377105",
          "name": "Wenatchee",
          "country_code": "US",
          "slug": "wenatchee",
          "canonical_path": "/cities/us/wenatchee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3771860",
          "name": "Wendell",
          "country_code": "US",
          "slug": "wendell",
          "canonical_path": "/cities/us/wendell/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2978442",
          "name": "Wentzville",
          "country_code": "US",
          "slug": "wentzville",
          "canonical_path": "/cities/us/wentzville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5218505",
          "name": "Wescosville",
          "country_code": "US",
          "slug": "wescosville",
          "canonical_path": "/cities/us/wescosville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4877272",
          "name": "Weslaco",
          "country_code": "US",
          "slug": "weslaco",
          "canonical_path": "/cities/us/weslaco/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3771940",
          "name": "Wesley Chapel",
          "country_code": "US",
          "slug": "wesley-chapel",
          "canonical_path": "/cities/us/wesley-chapel/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3679174",
          "name": "Wesley Hills",
          "country_code": "US",
          "slug": "wesley-hills",
          "canonical_path": "/cities/us/wesley-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5585300",
          "name": "West Allis",
          "country_code": "US",
          "slug": "west-allis",
          "canonical_path": "/cities/us/west-allis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5407841",
          "name": "West Athens",
          "country_code": "US",
          "slug": "west-athens",
          "canonical_path": "/cities/us/west-athens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143630",
          "name": "West Babylon",
          "country_code": "US",
          "slug": "west-babylon",
          "canonical_path": "/cities/us/west-babylon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5585350",
          "name": "West Bend",
          "country_code": "US",
          "slug": "west-bend",
          "canonical_path": "/cities/us/west-bend/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7259621",
          "name": "West Bloomfield Township",
          "country_code": "US",
          "slug": "west-bloomfield-township",
          "canonical_path": "/cities/us/west-bloomfield-township/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4982840",
          "name": "West Bountiful",
          "country_code": "US",
          "slug": "west-bountiful",
          "canonical_path": "/cities/us/west-bountiful/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954850",
          "name": "West Boylston",
          "country_code": "US",
          "slug": "west-boylston",
          "canonical_path": "/cities/us/west-boylston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954886",
          "name": "West Bridgewater",
          "country_code": "US",
          "slug": "west-bridgewater",
          "canonical_path": "/cities/us/west-bridgewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3983090",
          "name": "West Carrollton",
          "country_code": "US",
          "slug": "west-carrollton",
          "canonical_path": "/cities/us/west-carrollton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4527963",
          "name": "West Carrollton City",
          "country_code": "US",
          "slug": "west-carrollton-city",
          "canonical_path": "/cities/us/west-carrollton-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5407908",
          "name": "West Carson",
          "country_code": "US",
          "slug": "west-carson",
          "canonical_path": "/cities/us/west-carson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4282704",
          "name": "West Chester borough",
          "country_code": "US",
          "slug": "west-chester-borough",
          "canonical_path": "/cities/us/west-chester-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1780060",
          "name": "West Chicago",
          "country_code": "US",
          "slug": "west-chicago",
          "canonical_path": "/cities/us/west-chicago/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262495",
          "name": "West Clarkston-Highland",
          "country_code": "US",
          "slug": "west-clarkston-highland",
          "canonical_path": "/cities/us/west-clarkston-highland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4575850",
          "name": "West Columbia",
          "country_code": "US",
          "slug": "west-columbia",
          "canonical_path": "/cities/us/west-columbia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4954923",
          "name": "West Concord",
          "country_code": "US",
          "slug": "west-concord",
          "canonical_path": "/cities/us/west-concord/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0684200",
          "name": "West Covina",
          "country_code": "US",
          "slug": "west-covina",
          "canonical_path": "/cities/us/west-covina/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1983910",
          "name": "West Des Moines",
          "country_code": "US",
          "slug": "west-des-moines",
          "canonical_path": "/cities/us/west-des-moines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1780125",
          "name": "West Dundee",
          "country_code": "US",
          "slug": "west-dundee",
          "canonical_path": "/cities/us/west-dundee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4373104",
          "name": "West Elkridge",
          "country_code": "US",
          "slug": "west-elkridge",
          "canonical_path": "/cities/us/west-elkridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7258780",
          "name": "West Falls Church",
          "country_code": "US",
          "slug": "west-falls-church",
          "canonical_path": "/cities/us/west-falls-church/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3884780",
          "name": "West Fargo",
          "country_code": "US",
          "slug": "west-fargo",
          "canonical_path": "/cities/us/west-fargo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1780333",
          "name": "West Frankfort",
          "country_code": "US",
          "slug": "west-frankfort",
          "canonical_path": "/cities/us/west-frankfort/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106262",
          "name": "West Freehold",
          "country_code": "US",
          "slug": "west-freehold",
          "canonical_path": "/cities/us/west-freehold/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177816",
          "name": "West Gate",
          "country_code": "US",
          "slug": "west-gate",
          "canonical_path": "/cities/us/west-gate/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4792829",
          "name": "West Gate",
          "country_code": "US",
          "slug": "west-gate-va-153",
          "canonical_path": "/cities/us/west-gate-va-153/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143817",
          "name": "West Glens Falls",
          "country_code": "US",
          "slug": "west-glens-falls",
          "canonical_path": "/cities/us/west-glens-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:8260172",
          "name": "West Greenwich",
          "country_code": "US",
          "slug": "west-greenwich",
          "canonical_path": "/cities/us/west-greenwich/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845411",
          "name": "West Hartford",
          "country_code": "US",
          "slug": "west-hartford",
          "canonical_path": "/cities/us/west-hartford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4450695",
          "name": "West Hattiesburg",
          "country_code": "US",
          "slug": "west-hattiesburg",
          "canonical_path": "/cities/us/west-hattiesburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0982800",
          "name": "West Haven",
          "country_code": "US",
          "slug": "west-haven-ct",
          "canonical_path": "/cities/us/west-haven-ct/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4982930",
          "name": "West Haven",
          "country_code": "US",
          "slug": "west-haven-ut",
          "canonical_path": "/cities/us/west-haven-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262498",
          "name": "West Haven-Sylvan",
          "country_code": "US",
          "slug": "west-haven-sylvan",
          "canonical_path": "/cities/us/west-haven-sylvan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3680203",
          "name": "West Haverstraw",
          "country_code": "US",
          "slug": "west-haverstraw",
          "canonical_path": "/cities/us/west-haverstraw/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4283136",
          "name": "West Hazleton borough",
          "country_code": "US",
          "slug": "west-hazleton-borough",
          "canonical_path": "/cities/us/west-hazleton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143832",
          "name": "West Hempstead",
          "country_code": "US",
          "slug": "west-hempstead",
          "canonical_path": "/cities/us/west-hempstead/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143857",
          "name": "West Hills",
          "country_code": "US",
          "slug": "west-hills",
          "canonical_path": "/cities/us/west-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0684410",
          "name": "West Hollywood",
          "country_code": "US",
          "slug": "west-hollywood",
          "canonical_path": "/cities/us/west-hollywood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143866",
          "name": "West Islip",
          "country_code": "US",
          "slug": "west-islip",
          "canonical_path": "/cities/us/west-islip/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3983580",
          "name": "West Jefferson",
          "country_code": "US",
          "slug": "west-jefferson",
          "canonical_path": "/cities/us/west-jefferson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4982950",
          "name": "West Jordan",
          "country_code": "US",
          "slug": "west-jordan",
          "canonical_path": "/cities/us/west-jordan/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1882862",
          "name": "West Lafayette",
          "country_code": "US",
          "slug": "west-lafayette",
          "canonical_path": "/cities/us/west-lafayette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4180150",
          "name": "West Linn",
          "country_code": "US",
          "slug": "west-linn",
          "canonical_path": "/cities/us/west-linn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177865",
          "name": "West Little River",
          "country_code": "US",
          "slug": "west-little-river",
          "canonical_path": "/cities/us/west-little-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4740941",
          "name": "West Livingston",
          "country_code": "US",
          "slug": "west-livingston",
          "canonical_path": "/cities/us/west-livingston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106275",
          "name": "West Long Branch",
          "country_code": "US",
          "slug": "west-long-branch",
          "canonical_path": "/cities/us/west-long-branch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3479310",
          "name": "West Long Branch borough",
          "country_code": "US",
          "slug": "west-long-branch-borough",
          "canonical_path": "/cities/us/west-long-branch-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1276500",
          "name": "West Melbourne",
          "country_code": "US",
          "slug": "west-melbourne",
          "canonical_path": "/cities/us/west-melbourne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0574540",
          "name": "West Memphis",
          "country_code": "US",
          "slug": "west-memphis",
          "canonical_path": "/cities/us/west-memphis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1276525",
          "name": "West Miami",
          "country_code": "US",
          "slug": "west-miami",
          "canonical_path": "/cities/us/west-miami/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5218802",
          "name": "West Mifflin",
          "country_code": "US",
          "slug": "west-mifflin",
          "canonical_path": "/cities/us/west-mifflin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4283512",
          "name": "West Mifflin borough",
          "country_code": "US",
          "slug": "west-mifflin-borough",
          "canonical_path": "/cities/us/west-mifflin-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106279",
          "name": "West Milford",
          "country_code": "US",
          "slug": "west-milford",
          "canonical_path": "/cities/us/west-milford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262504",
          "name": "West Modesto",
          "country_code": "US",
          "slug": "west-modesto",
          "canonical_path": "/cities/us/west-modesto/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2280955",
          "name": "West Monroe",
          "country_code": "US",
          "slug": "west-monroe",
          "canonical_path": "/cities/us/west-monroe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3479610",
          "name": "West New York",
          "country_code": "US",
          "slug": "west-new-york",
          "canonical_path": "/cities/us/west-new-york/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5533366",
          "name": "West Odessa",
          "country_code": "US",
          "slug": "west-odessa",
          "canonical_path": "/cities/us/west-odessa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106298",
          "name": "West Orange",
          "country_code": "US",
          "slug": "west-orange",
          "canonical_path": "/cities/us/west-orange/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1276600",
          "name": "West Palm Beach",
          "country_code": "US",
          "slug": "west-palm-beach",
          "canonical_path": "/cities/us/west-palm-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1276658",
          "name": "West Park",
          "country_code": "US",
          "slug": "west-park",
          "canonical_path": "/cities/us/west-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177908",
          "name": "West Pensacola",
          "country_code": "US",
          "slug": "west-pensacola",
          "canonical_path": "/cities/us/west-pensacola/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177917",
          "name": "West Perrine",
          "country_code": "US",
          "slug": "west-perrine",
          "canonical_path": "/cities/us/west-perrine/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2978928",
          "name": "West Plains",
          "country_code": "US",
          "slug": "west-plains",
          "canonical_path": "/cities/us/west-plains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143966",
          "name": "West Point",
          "country_code": "US",
          "slug": "west-point",
          "canonical_path": "/cities/us/west-point/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2879120",
          "name": "West Point",
          "country_code": "US",
          "slug": "west-point-ms",
          "canonical_path": "/cities/us/west-point-ms/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4983390",
          "name": "West Point",
          "country_code": "US",
          "slug": "west-point-ut",
          "canonical_path": "/cities/us/west-point-ut/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5408191",
          "name": "West Puente Valley",
          "country_code": "US",
          "slug": "west-puente-valley",
          "canonical_path": "/cities/us/west-puente-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5407927",
          "name": "West Rancho Dominguez",
          "country_code": "US",
          "slug": "west-rancho-dominguez",
          "canonical_path": "/cities/us/west-rancho-dominguez/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5377665",
          "name": "West Richland",
          "country_code": "US",
          "slug": "west-richland",
          "canonical_path": "/cities/us/west-richland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0684816",
          "name": "West Sacramento",
          "country_code": "US",
          "slug": "west-sacramento",
          "canonical_path": "/cities/us/west-sacramento/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5052467",
          "name": "West Saint Paul",
          "country_code": "US",
          "slug": "west-saint-paul",
          "canonical_path": "/cities/us/west-saint-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5586275",
          "name": "West Salem",
          "country_code": "US",
          "slug": "west-salem",
          "canonical_path": "/cities/us/west-salem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177930",
          "name": "West Samoset",
          "country_code": "US",
          "slug": "west-samoset",
          "canonical_path": "/cities/us/west-samoset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143988",
          "name": "West Sayville",
          "country_code": "US",
          "slug": "west-sayville",
          "canonical_path": "/cities/us/west-sayville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4982720",
          "name": "West Scarborough",
          "country_code": "US",
          "slug": "west-scarborough",
          "canonical_path": "/cities/us/west-scarborough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5143992",
          "name": "West Seneca",
          "country_code": "US",
          "slug": "west-seneca",
          "canonical_path": "/cities/us/west-seneca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262515",
          "name": "West Side Highway",
          "country_code": "US",
          "slug": "west-side-highway",
          "canonical_path": "/cities/us/west-side-highway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4792901",
          "name": "West Springfield",
          "country_code": "US",
          "slug": "west-springfield",
          "canonical_path": "/cities/us/west-springfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955089",
          "name": "West Springfield",
          "country_code": "US",
          "slug": "west-springfield-ma-013",
          "canonical_path": "/cities/us/west-springfield-ma-013/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2577890",
          "name": "West Springfield Town",
          "country_code": "US",
          "slug": "west-springfield-town",
          "canonical_path": "/cities/us/west-springfield-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2769700",
          "name": "West St. Paul",
          "country_code": "US",
          "slug": "west-st-paul",
          "canonical_path": "/cities/us/west-st-paul/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4877956",
          "name": "West University Place",
          "country_code": "US",
          "slug": "west-university-place",
          "canonical_path": "/cities/us/west-university-place/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5815605",
          "name": "West Valley",
          "country_code": "US",
          "slug": "west-valley",
          "canonical_path": "/cities/us/west-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4983470",
          "name": "West Valley City",
          "country_code": "US",
          "slug": "west-valley-city",
          "canonical_path": "/cities/us/west-valley-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177950",
          "name": "West Vero Corridor",
          "country_code": "US",
          "slug": "west-vero-corridor",
          "canonical_path": "/cities/us/west-vero-corridor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5218918",
          "name": "West View",
          "country_code": "US",
          "slug": "west-view",
          "canonical_path": "/cities/us/west-view/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4284144",
          "name": "West View borough",
          "country_code": "US",
          "slug": "west-view-borough",
          "canonical_path": "/cities/us/west-view-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5225627",
          "name": "West Warwick",
          "country_code": "US",
          "slug": "west-warwick",
          "canonical_path": "/cities/us/west-warwick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7262518",
          "name": "West Whittier-Los Nietos",
          "country_code": "US",
          "slug": "west-whittier-los-nietos",
          "canonical_path": "/cities/us/west-whittier-los-nietos/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955143",
          "name": "West Yarmouth",
          "country_code": "US",
          "slug": "west-yarmouth",
          "canonical_path": "/cities/us/west-yarmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4284288",
          "name": "West York borough",
          "country_code": "US",
          "slug": "west-york-borough",
          "canonical_path": "/cities/us/west-york-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2382105",
          "name": "Westbrook",
          "country_code": "US",
          "slug": "westbrook",
          "canonical_path": "/cities/us/westbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3679444",
          "name": "Westbury",
          "country_code": "US",
          "slug": "westbury",
          "canonical_path": "/cities/us/westbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4177779",
          "name": "Westchase",
          "country_code": "US",
          "slug": "westchase",
          "canonical_path": "/cities/us/westchase/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1780047",
          "name": "Westchester",
          "country_code": "US",
          "slug": "westchester",
          "canonical_path": "/cities/us/westchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5225631",
          "name": "Westerly",
          "country_code": "US",
          "slug": "westerly",
          "canonical_path": "/cities/us/westerly/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1780242",
          "name": "Western Springs",
          "country_code": "US",
          "slug": "western-springs",
          "canonical_path": "/cities/us/western-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3983342",
          "name": "Westerville",
          "country_code": "US",
          "slug": "westerville",
          "canonical_path": "/cities/us/westerville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1882700",
          "name": "Westfield",
          "country_code": "US",
          "slug": "westfield-in",
          "canonical_path": "/cities/us/westfield-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2576030",
          "name": "Westfield",
          "country_code": "US",
          "slug": "westfield-ma",
          "canonical_path": "/cities/us/westfield-ma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3479040",
          "name": "Westfield",
          "country_code": "US",
          "slug": "westfield-nj",
          "canonical_path": "/cities/us/westfield-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955219",
          "name": "Westford",
          "country_code": "US",
          "slug": "westford",
          "canonical_path": "/cities/us/westford/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1276417",
          "name": "Westlake",
          "country_code": "US",
          "slug": "westlake-fl",
          "canonical_path": "/cities/us/westlake-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3983622",
          "name": "Westlake",
          "country_code": "US",
          "slug": "westlake-oh",
          "canonical_path": "/cities/us/westlake-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0684438",
          "name": "Westlake Village",
          "country_code": "US",
          "slug": "westlake-village",
          "canonical_path": "/cities/us/westlake-village/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2686000",
          "name": "Westland",
          "country_code": "US",
          "slug": "westland",
          "canonical_path": "/cities/us/westland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5144097",
          "name": "Westmere",
          "country_code": "US",
          "slug": "westmere",
          "canonical_path": "/cities/us/westmere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0684550",
          "name": "Westminster",
          "country_code": "US",
          "slug": "westminster-ca",
          "canonical_path": "/cities/us/westminster-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0883835",
          "name": "Westminster",
          "country_code": "US",
          "slug": "westminster-co",
          "canonical_path": "/cities/us/westminster-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2483100",
          "name": "Westminster",
          "country_code": "US",
          "slug": "westminster-md",
          "canonical_path": "/cities/us/westminster-md/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1780645",
          "name": "Westmont",
          "country_code": "US",
          "slug": "westmont",
          "canonical_path": "/cities/us/westmont/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955259",
          "name": "Weston",
          "country_code": "US",
          "slug": "weston",
          "canonical_path": "/cities/us/weston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1276582",
          "name": "Weston",
          "country_code": "US",
          "slug": "weston-fl",
          "canonical_path": "/cities/us/weston-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5586025",
          "name": "Weston",
          "country_code": "US",
          "slug": "weston-wi",
          "canonical_path": "/cities/us/weston-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4373275",
          "name": "Westphalia",
          "country_code": "US",
          "slug": "westphalia",
          "canonical_path": "/cities/us/westphalia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845585",
          "name": "Westport",
          "country_code": "US",
          "slug": "westport",
          "canonical_path": "/cities/us/westport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4178032",
          "name": "Westview",
          "country_code": "US",
          "slug": "westview",
          "canonical_path": "/cities/us/westview/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1883420",
          "name": "Westville",
          "country_code": "US",
          "slug": "westville",
          "canonical_path": "/cities/us/westville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2281165",
          "name": "Westwego",
          "country_code": "US",
          "slug": "westwego",
          "canonical_path": "/cities/us/westwego/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955317",
          "name": "Westwood",
          "country_code": "US",
          "slug": "westwood",
          "canonical_path": "/cities/us/westwood/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5014706",
          "name": "Westwood",
          "country_code": "US",
          "slug": "westwood-mi-077",
          "canonical_path": "/cities/us/westwood-mi-077/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106351",
          "name": "Westwood",
          "country_code": "US",
          "slug": "westwood-nj-003",
          "canonical_path": "/cities/us/westwood-nj-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3480270",
          "name": "Westwood borough",
          "country_code": "US",
          "slug": "westwood-borough",
          "canonical_path": "/cities/us/westwood-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4178053",
          "name": "Westwood Lake",
          "country_code": "US",
          "slug": "westwood-lake",
          "canonical_path": "/cities/us/westwood-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845612",
          "name": "Wethersfield",
          "country_code": "US",
          "slug": "wethersfield",
          "canonical_path": "/cities/us/wethersfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0181720",
          "name": "Wetumpka",
          "country_code": "US",
          "slug": "wetumpka",
          "canonical_path": "/cities/us/wetumpka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955336",
          "name": "Weymouth",
          "country_code": "US",
          "slug": "weymouth",
          "canonical_path": "/cities/us/weymouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2578972",
          "name": "Weymouth Town",
          "country_code": "US",
          "slug": "weymouth-town",
          "canonical_path": "/cities/us/weymouth-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4878136",
          "name": "Wharton",
          "country_code": "US",
          "slug": "wharton",
          "canonical_path": "/cities/us/wharton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3480390",
          "name": "Wharton borough",
          "country_code": "US",
          "slug": "wharton-borough",
          "canonical_path": "/cities/us/wharton-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0884440",
          "name": "Wheat Ridge",
          "country_code": "US",
          "slug": "wheat-ridge",
          "canonical_path": "/cities/us/wheat-ridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5144182",
          "name": "Wheatley Heights",
          "country_code": "US",
          "slug": "wheatley-heights",
          "canonical_path": "/cities/us/wheatley-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1781048",
          "name": "Wheaton",
          "country_code": "US",
          "slug": "wheaton",
          "canonical_path": "/cities/us/wheaton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4528203",
          "name": "Wheelersburg",
          "country_code": "US",
          "slug": "wheelersburg",
          "canonical_path": "/cities/us/wheelersburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1781087",
          "name": "Wheeling",
          "country_code": "US",
          "slug": "wheeling-il",
          "canonical_path": "/cities/us/wheeling-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5486452",
          "name": "Wheeling",
          "country_code": "US",
          "slug": "wheeling-wv",
          "canonical_path": "/cities/us/wheeling-wv/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106365",
          "name": "Whippany",
          "country_code": "US",
          "slug": "whippany",
          "canonical_path": "/cities/us/whippany/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3773140",
          "name": "Whispering Pines",
          "country_code": "US",
          "slug": "whispering-pines",
          "canonical_path": "/cities/us/whispering-pines/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2769970",
          "name": "White Bear Lake",
          "country_code": "US",
          "slug": "white-bear-lake",
          "canonical_path": "/cities/us/white-bear-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5815759",
          "name": "White Center",
          "country_code": "US",
          "slug": "white-center",
          "canonical_path": "/cities/us/white-center/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5760396",
          "name": "White City",
          "country_code": "US",
          "slug": "white-city",
          "canonical_path": "/cities/us/white-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5784731",
          "name": "White City",
          "country_code": "US",
          "slug": "white-city-ut-035",
          "canonical_path": "/cities/us/white-city-ut-035/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4984050",
          "name": "White City metroship",
          "country_code": "US",
          "slug": "white-city-metroship",
          "canonical_path": "/cities/us/white-city-metroship/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0575170",
          "name": "White Hall",
          "country_code": "US",
          "slug": "white-hall",
          "canonical_path": "/cities/us/white-hall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106378",
          "name": "White Horse",
          "country_code": "US",
          "slug": "white-horse",
          "canonical_path": "/cities/us/white-horse/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4780200",
          "name": "White House",
          "country_code": "US",
          "slug": "white-house",
          "canonical_path": "/cities/us/white-house/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4373426",
          "name": "White Marsh",
          "country_code": "US",
          "slug": "white-marsh",
          "canonical_path": "/cities/us/white-marsh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106379",
          "name": "White Meadow Lake",
          "country_code": "US",
          "slug": "white-meadow-lake",
          "canonical_path": "/cities/us/white-meadow-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4878436",
          "name": "White Oak",
          "country_code": "US",
          "slug": "white-oak",
          "canonical_path": "/cities/us/white-oak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4284704",
          "name": "White Oak borough",
          "country_code": "US",
          "slug": "white-oak-borough",
          "canonical_path": "/cities/us/white-oak-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3681677",
          "name": "White Plains",
          "country_code": "US",
          "slug": "white-plains",
          "canonical_path": "/cities/us/white-plains/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5497876",
          "name": "White Rock",
          "country_code": "US",
          "slug": "white-rock",
          "canonical_path": "/cities/us/white-rock/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4878544",
          "name": "White Settlement",
          "country_code": "US",
          "slug": "white-settlement",
          "canonical_path": "/cities/us/white-settlement/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3079825",
          "name": "Whitefish",
          "country_code": "US",
          "slug": "whitefish",
          "canonical_path": "/cities/us/whitefish/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5586700",
          "name": "Whitefish Bay",
          "country_code": "US",
          "slug": "whitefish-bay",
          "canonical_path": "/cities/us/whitefish-bay/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5219271",
          "name": "Whitehall",
          "country_code": "US",
          "slug": "whitehall-pa-003",
          "canonical_path": "/cities/us/whitehall-pa-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3984742",
          "name": "Whitehall",
          "country_code": "US",
          "slug": "whitehall",
          "canonical_path": "/cities/us/whitehall/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4284512",
          "name": "Whitehall borough",
          "country_code": "US",
          "slug": "whitehall-borough",
          "canonical_path": "/cities/us/whitehall-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5219287",
          "name": "Whitehall Township",
          "country_code": "US",
          "slug": "whitehall-township",
          "canonical_path": "/cities/us/whitehall-township/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3984770",
          "name": "Whitehouse",
          "country_code": "US",
          "slug": "whitehouse-oh",
          "canonical_path": "/cities/us/whitehouse-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4878388",
          "name": "Whitehouse",
          "country_code": "US",
          "slug": "whitehouse-tx",
          "canonical_path": "/cities/us/whitehouse-tx/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1883816",
          "name": "Whiteland",
          "country_code": "US",
          "slug": "whiteland",
          "canonical_path": "/cities/us/whiteland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4230760",
          "name": "Whitemarsh Island",
          "country_code": "US",
          "slug": "whitemarsh-island",
          "canonical_path": "/cities/us/whitemarsh-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1884014",
          "name": "Whitestown",
          "country_code": "US",
          "slug": "whitestown",
          "canonical_path": "/cities/us/whitestown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4498899",
          "name": "Whiteville",
          "country_code": "US",
          "slug": "whiteville",
          "canonical_path": "/cities/us/whiteville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5586925",
          "name": "Whitewater",
          "country_code": "US",
          "slug": "whitewater",
          "canonical_path": "/cities/us/whitewater/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955539",
          "name": "Whitinsville",
          "country_code": "US",
          "slug": "whitinsville",
          "canonical_path": "/cities/us/whitinsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955544",
          "name": "Whitman",
          "country_code": "US",
          "slug": "whitman",
          "canonical_path": "/cities/us/whitman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5014946",
          "name": "Whitmore Lake",
          "country_code": "US",
          "slug": "whitmore-lake",
          "canonical_path": "/cities/us/whitmore-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5515110",
          "name": "Whitney",
          "country_code": "US",
          "slug": "whitney",
          "canonical_path": "/cities/us/whitney/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0685292",
          "name": "Whittier",
          "country_code": "US",
          "slug": "whittier",
          "canonical_path": "/cities/us/whittier/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2079000",
          "name": "Wichita",
          "country_code": "US",
          "slug": "wichita",
          "canonical_path": "/cities/us/wichita/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4879000",
          "name": "Wichita Falls",
          "country_code": "US",
          "slug": "wichita-falls",
          "canonical_path": "/cities/us/wichita-falls/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0482740",
          "name": "Wickenburg",
          "country_code": "US",
          "slug": "wickenburg",
          "canonical_path": "/cities/us/wickenburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3985036",
          "name": "Wickliffe",
          "country_code": "US",
          "slug": "wickliffe",
          "canonical_path": "/cities/us/wickliffe/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0685446",
          "name": "Wildomar",
          "country_code": "US",
          "slug": "wildomar",
          "canonical_path": "/cities/us/wildomar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1277675",
          "name": "Wildwood",
          "country_code": "US",
          "slug": "wildwood-fl",
          "canonical_path": "/cities/us/wildwood-fl/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2979820",
          "name": "Wildwood",
          "country_code": "US",
          "slug": "wildwood-mo",
          "canonical_path": "/cities/us/wildwood-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3481170",
          "name": "Wildwood",
          "country_code": "US",
          "slug": "wildwood-nj",
          "canonical_path": "/cities/us/wildwood-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4285152",
          "name": "Wilkes-Barre",
          "country_code": "US",
          "slug": "wilkes-barre",
          "canonical_path": "/cities/us/wilkes-barre/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5219501",
          "name": "Wilkinsburg",
          "country_code": "US",
          "slug": "wilkinsburg",
          "canonical_path": "/cities/us/wilkinsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4285188",
          "name": "Wilkinsburg borough",
          "country_code": "US",
          "slug": "wilkinsburg-borough",
          "canonical_path": "/cities/us/wilkinsburg-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2979882",
          "name": "Willard",
          "country_code": "US",
          "slug": "willard-mo",
          "canonical_path": "/cities/us/willard-mo/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3985232",
          "name": "Willard",
          "country_code": "US",
          "slug": "willard-oh",
          "canonical_path": "/cities/us/willard-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0685586",
          "name": "Williams",
          "country_code": "US",
          "slug": "williams",
          "canonical_path": "/cities/us/williams/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4178397",
          "name": "Williamsburg",
          "country_code": "US",
          "slug": "williamsburg",
          "canonical_path": "/cities/us/williamsburg/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2183334",
          "name": "Williamsburg",
          "country_code": "US",
          "slug": "williamsburg-ky",
          "canonical_path": "/cities/us/williamsburg-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5186160",
          "name": "Williamsburg",
          "country_code": "US",
          "slug": "williamsburg-va",
          "canonical_path": "/cities/us/williamsburg-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5321135",
          "name": "Williamson",
          "country_code": "US",
          "slug": "williamson",
          "canonical_path": "/cities/us/williamson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4285312",
          "name": "Williamsport",
          "country_code": "US",
          "slug": "williamsport",
          "canonical_path": "/cities/us/williamsport/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3774220",
          "name": "Williamston",
          "country_code": "US",
          "slug": "williamston",
          "canonical_path": "/cities/us/williamston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4504871",
          "name": "Williamstown",
          "country_code": "US",
          "slug": "williamstown",
          "canonical_path": "/cities/us/williamstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3682084",
          "name": "Williamsville",
          "country_code": "US",
          "slug": "williamsville",
          "canonical_path": "/cities/us/williamsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845823",
          "name": "Willimantic",
          "country_code": "US",
          "slug": "willimantic",
          "canonical_path": "/cities/us/willimantic/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4879408",
          "name": "Willis",
          "country_code": "US",
          "slug": "willis",
          "canonical_path": "/cities/us/willis/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3886220",
          "name": "Williston",
          "country_code": "US",
          "slug": "williston",
          "canonical_path": "/cities/us/williston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3682117",
          "name": "Williston Park",
          "country_code": "US",
          "slug": "williston-park",
          "canonical_path": "/cities/us/williston-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2770420",
          "name": "Willmar",
          "country_code": "US",
          "slug": "willmar",
          "canonical_path": "/cities/us/willmar/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3985484",
          "name": "Willoughby",
          "country_code": "US",
          "slug": "willoughby",
          "canonical_path": "/cities/us/willoughby/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3985512",
          "name": "Willoughby Hills",
          "country_code": "US",
          "slug": "willoughby-hills",
          "canonical_path": "/cities/us/willoughby-hills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5219619",
          "name": "Willow Grove",
          "country_code": "US",
          "slug": "willow-grove",
          "canonical_path": "/cities/us/willow-grove/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4178449",
          "name": "Willow Oak",
          "country_code": "US",
          "slug": "willow-oak",
          "canonical_path": "/cities/us/willow-oak/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4879492",
          "name": "Willow Park",
          "country_code": "US",
          "slug": "willow-park",
          "canonical_path": "/cities/us/willow-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1782049",
          "name": "Willow Springs",
          "country_code": "US",
          "slug": "willow-springs",
          "canonical_path": "/cities/us/willow-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4562275",
          "name": "Willow Street",
          "country_code": "US",
          "slug": "willow-street",
          "canonical_path": "/cities/us/willow-street/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1781919",
          "name": "Willowbrook",
          "country_code": "US",
          "slug": "willowbrook",
          "canonical_path": "/cities/us/willowbrook/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3985638",
          "name": "Willowick",
          "country_code": "US",
          "slug": "willowick",
          "canonical_path": "/cities/us/willowick/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0685684",
          "name": "Willows",
          "country_code": "US",
          "slug": "willows",
          "canonical_path": "/cities/us/willows/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4879576",
          "name": "Wilmer",
          "country_code": "US",
          "slug": "wilmer",
          "canonical_path": "/cities/us/wilmer/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1782075",
          "name": "Wilmette",
          "country_code": "US",
          "slug": "wilmette",
          "canonical_path": "/cities/us/wilmette/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955840",
          "name": "Wilmington",
          "country_code": "US",
          "slug": "wilmington",
          "canonical_path": "/cities/us/wilmington/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1077580",
          "name": "Wilmington",
          "country_code": "US",
          "slug": "wilmington-de",
          "canonical_path": "/cities/us/wilmington-de/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1782101",
          "name": "Wilmington",
          "country_code": "US",
          "slug": "wilmington-il",
          "canonical_path": "/cities/us/wilmington-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3774440",
          "name": "Wilmington",
          "country_code": "US",
          "slug": "wilmington-nc",
          "canonical_path": "/cities/us/wilmington-nc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3985792",
          "name": "Wilmington",
          "country_code": "US",
          "slug": "wilmington-oh",
          "canonical_path": "/cities/us/wilmington-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4231354",
          "name": "Wilmington Island",
          "country_code": "US",
          "slug": "wilmington-island",
          "canonical_path": "/cities/us/wilmington-island/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4145395",
          "name": "Wilmington Manor",
          "country_code": "US",
          "slug": "wilmington-manor",
          "canonical_path": "/cities/us/wilmington-manor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2183550",
          "name": "Wilmore",
          "country_code": "US",
          "slug": "wilmore",
          "canonical_path": "/cities/us/wilmore/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3774540",
          "name": "Wilson",
          "country_code": "US",
          "slug": "wilson",
          "canonical_path": "/cities/us/wilson/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4285592",
          "name": "Wilson borough",
          "country_code": "US",
          "slug": "wilson-borough",
          "canonical_path": "/cities/us/wilson-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4182800",
          "name": "Wilsonville",
          "country_code": "US",
          "slug": "wilsonville",
          "canonical_path": "/cities/us/wilsonville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845871",
          "name": "Wilton",
          "country_code": "US",
          "slug": "wilton",
          "canonical_path": "/cities/us/wilton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5409941",
          "name": "Wilton",
          "country_code": "US",
          "slug": "wilton-ca-067",
          "canonical_path": "/cities/us/wilton-ca-067/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1278000",
          "name": "Wilton Manors",
          "country_code": "US",
          "slug": "wilton-manors",
          "canonical_path": "/cities/us/wilton-manors/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4178488",
          "name": "Wimauma",
          "country_code": "US",
          "slug": "wimauma",
          "canonical_path": "/cities/us/wimauma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955884",
          "name": "Winchester",
          "country_code": "US",
          "slug": "winchester",
          "canonical_path": "/cities/us/winchester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5515345",
          "name": "Winchester",
          "country_code": "US",
          "slug": "winchester-nv-003",
          "canonical_path": "/cities/us/winchester-nv-003/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2183676",
          "name": "Winchester",
          "country_code": "US",
          "slug": "winchester-ky",
          "canonical_path": "/cities/us/winchester-ky/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4781080",
          "name": "Winchester",
          "country_code": "US",
          "slug": "winchester-tn",
          "canonical_path": "/cities/us/winchester-tn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5186720",
          "name": "Winchester",
          "country_code": "US",
          "slug": "winchester-va",
          "canonical_path": "/cities/us/winchester-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5279285",
          "name": "Wind Lake",
          "country_code": "US",
          "slug": "wind-lake",
          "canonical_path": "/cities/us/wind-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4879672",
          "name": "Windcrest",
          "country_code": "US",
          "slug": "windcrest",
          "canonical_path": "/cities/us/windcrest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1383420",
          "name": "Winder",
          "country_code": "US",
          "slug": "winder",
          "canonical_path": "/cities/us/winder/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5094817",
          "name": "Windham",
          "country_code": "US",
          "slug": "windham-nh-015",
          "canonical_path": "/cities/us/windham-nh-015/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845920",
          "name": "Windsor",
          "country_code": "US",
          "slug": "windsor",
          "canonical_path": "/cities/us/windsor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0685922",
          "name": "Windsor",
          "country_code": "US",
          "slug": "windsor-ca",
          "canonical_path": "/cities/us/windsor-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0885485",
          "name": "Windsor",
          "country_code": "US",
          "slug": "windsor-co",
          "canonical_path": "/cities/us/windsor-co/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5587725",
          "name": "Windsor",
          "country_code": "US",
          "slug": "windsor-wi",
          "canonical_path": "/cities/us/windsor-wi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1986250",
          "name": "Windsor Heights",
          "country_code": "US",
          "slug": "windsor-heights",
          "canonical_path": "/cities/us/windsor-heights/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845926",
          "name": "Windsor Locks",
          "country_code": "US",
          "slug": "windsor-locks",
          "canonical_path": "/cities/us/windsor-locks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1782400",
          "name": "Winfield",
          "country_code": "US",
          "slug": "winfield-il",
          "canonical_path": "/cities/us/winfield-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1884878",
          "name": "Winfield",
          "country_code": "US",
          "slug": "winfield-in",
          "canonical_path": "/cities/us/winfield-in/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2079950",
          "name": "Winfield",
          "country_code": "US",
          "slug": "winfield-ks",
          "canonical_path": "/cities/us/winfield-ks/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3284800",
          "name": "Winnemucca",
          "country_code": "US",
          "slug": "winnemucca",
          "canonical_path": "/cities/us/winnemucca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1782530",
          "name": "Winnetka",
          "country_code": "US",
          "slug": "winnetka",
          "canonical_path": "/cities/us/winnetka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2771032",
          "name": "Winona",
          "country_code": "US",
          "slug": "winona",
          "canonical_path": "/cities/us/winona/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1884950",
          "name": "Winona Lake",
          "country_code": "US",
          "slug": "winona-lake",
          "canonical_path": "/cities/us/winona-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5085150",
          "name": "Winooski",
          "country_code": "US",
          "slug": "winooski",
          "canonical_path": "/cities/us/winooski/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0483930",
          "name": "Winslow",
          "country_code": "US",
          "slug": "winslow",
          "canonical_path": "/cities/us/winslow/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845953",
          "name": "Winsted",
          "country_code": "US",
          "slug": "winsted",
          "canonical_path": "/cities/us/winsted/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4183400",
          "name": "Winston",
          "country_code": "US",
          "slug": "winston",
          "canonical_path": "/cities/us/winston/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3775000",
          "name": "Winston-Salem",
          "country_code": "US",
          "slug": "winston-salem",
          "canonical_path": "/cities/us/winston-salem/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1278250",
          "name": "Winter Garden",
          "country_code": "US",
          "slug": "winter-garden",
          "canonical_path": "/cities/us/winter-garden/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5410129",
          "name": "Winter Gardens",
          "country_code": "US",
          "slug": "winter-gardens",
          "canonical_path": "/cities/us/winter-gardens/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1278275",
          "name": "Winter Haven",
          "country_code": "US",
          "slug": "winter-haven",
          "canonical_path": "/cities/us/winter-haven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1278300",
          "name": "Winter Park",
          "country_code": "US",
          "slug": "winter-park",
          "canonical_path": "/cities/us/winter-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1278325",
          "name": "Winter Springs",
          "country_code": "US",
          "slug": "winter-springs",
          "canonical_path": "/cities/us/winter-springs/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0686034",
          "name": "Winters",
          "country_code": "US",
          "slug": "winters",
          "canonical_path": "/cities/us/winters/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1986520",
          "name": "Winterset",
          "country_code": "US",
          "slug": "winterset",
          "canonical_path": "/cities/us/winterset/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3775060",
          "name": "Winterville",
          "country_code": "US",
          "slug": "winterville",
          "canonical_path": "/cities/us/winterville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4955993",
          "name": "Winthrop",
          "country_code": "US",
          "slug": "winthrop",
          "canonical_path": "/cities/us/winthrop/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1782686",
          "name": "Winthrop Harbor",
          "country_code": "US",
          "slug": "winthrop-harbor",
          "canonical_path": "/cities/us/winthrop-harbor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2581005",
          "name": "Winthrop Town",
          "country_code": "US",
          "slug": "winthrop-town",
          "canonical_path": "/cities/us/winthrop-town/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5410144",
          "name": "Winton",
          "country_code": "US",
          "slug": "winton",
          "canonical_path": "/cities/us/winton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5588200",
          "name": "Wisconsin Rapids",
          "country_code": "US",
          "slug": "wisconsin-rapids",
          "canonical_path": "/cities/us/wisconsin-rapids/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4528596",
          "name": "Withamsville",
          "country_code": "US",
          "slug": "withamsville",
          "canonical_path": "/cities/us/withamsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2688140",
          "name": "Wixom",
          "country_code": "US",
          "slug": "wixom",
          "canonical_path": "/cities/us/wixom/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2581035",
          "name": "Woburn",
          "country_code": "US",
          "slug": "woburn",
          "canonical_path": "/cities/us/woburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4845984",
          "name": "Wolcott",
          "country_code": "US",
          "slug": "wolcott",
          "canonical_path": "/cities/us/wolcott/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4794350",
          "name": "Wolf Trap",
          "country_code": "US",
          "slug": "wolf-trap",
          "canonical_path": "/cities/us/wolf-trap/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4879972",
          "name": "Wolfforth",
          "country_code": "US",
          "slug": "wolfforth",
          "canonical_path": "/cities/us/wolfforth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5816413",
          "name": "Wollochet",
          "country_code": "US",
          "slug": "wollochet",
          "canonical_path": "/cities/us/wollochet/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1782855",
          "name": "Wonder Lake",
          "country_code": "US",
          "slug": "wonder-lake",
          "canonical_path": "/cities/us/wonder-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1782985",
          "name": "Wood Dale",
          "country_code": "US",
          "slug": "wood-dale",
          "canonical_path": "/cities/us/wood-dale/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1783271",
          "name": "Wood River",
          "country_code": "US",
          "slug": "wood-river",
          "canonical_path": "/cities/us/wood-river/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3482570",
          "name": "Wood-Ridge borough",
          "country_code": "US",
          "slug": "wood-ridge-borough",
          "canonical_path": "/cities/us/wood-ridge-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4846022",
          "name": "Woodbridge",
          "country_code": "US",
          "slug": "woodbridge",
          "canonical_path": "/cities/us/woodbridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106529",
          "name": "Woodbridge",
          "country_code": "US",
          "slug": "woodbridge-nj-023",
          "canonical_path": "/cities/us/woodbridge-nj-023/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4183750",
          "name": "Woodburn",
          "country_code": "US",
          "slug": "woodburn",
          "canonical_path": "/cities/us/woodburn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4846028",
          "name": "Woodbury",
          "country_code": "US",
          "slug": "woodbury",
          "canonical_path": "/cities/us/woodbury/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2771428",
          "name": "Woodbury",
          "country_code": "US",
          "slug": "woodbury-mn",
          "canonical_path": "/cities/us/woodbury-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3482120",
          "name": "Woodbury",
          "country_code": "US",
          "slug": "woodbury-nj",
          "canonical_path": "/cities/us/woodbury-nj/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3682750",
          "name": "Woodbury",
          "country_code": "US",
          "slug": "woodbury-ny",
          "canonical_path": "/cities/us/woodbury-ny/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106548",
          "name": "Woodcliff Lake",
          "country_code": "US",
          "slug": "woodcliff-lake",
          "canonical_path": "/cities/us/woodcliff-lake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3482300",
          "name": "Woodcliff Lake borough",
          "country_code": "US",
          "slug": "woodcliff-lake-borough",
          "canonical_path": "/cities/us/woodcliff-lake-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5410382",
          "name": "Woodcrest",
          "country_code": "US",
          "slug": "woodcrest",
          "canonical_path": "/cities/us/woodcrest/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4601475",
          "name": "Woodfield",
          "country_code": "US",
          "slug": "woodfield",
          "canonical_path": "/cities/us/woodfield/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3775280",
          "name": "Woodfin",
          "country_code": "US",
          "slug": "woodfin",
          "canonical_path": "/cities/us/woodfin/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2688380",
          "name": "Woodhaven",
          "country_code": "US",
          "slug": "woodhaven",
          "canonical_path": "/cities/us/woodhaven/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5379590",
          "name": "Woodinville",
          "country_code": "US",
          "slug": "woodinville",
          "canonical_path": "/cities/us/woodinville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0686300",
          "name": "Woodlake",
          "country_code": "US",
          "slug": "woodlake",
          "canonical_path": "/cities/us/woodlake/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0686328",
          "name": "Woodland",
          "country_code": "US",
          "slug": "woodland-ca",
          "canonical_path": "/cities/us/woodland-ca/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5379625",
          "name": "Woodland",
          "country_code": "US",
          "slug": "woodland-wa",
          "canonical_path": "/cities/us/woodland-wa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0886090",
          "name": "Woodland Park",
          "country_code": "US",
          "slug": "woodland-park",
          "canonical_path": "/cities/us/woodland-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3482423",
          "name": "Woodland Park borough",
          "country_code": "US",
          "slug": "woodland-park-borough",
          "canonical_path": "/cities/us/woodland-park-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4374054",
          "name": "Woodlawn",
          "country_code": "US",
          "slug": "woodlawn",
          "canonical_path": "/cities/us/woodlawn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4374056",
          "name": "Woodlawn",
          "country_code": "US",
          "slug": "woodlawn-md-033",
          "canonical_path": "/cities/us/woodlawn-md-033/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4794531",
          "name": "Woodlawn",
          "country_code": "US",
          "slug": "woodlawn-va-059",
          "canonical_path": "/cities/us/woodlawn-va-059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4141122",
          "name": "Woodley Park",
          "country_code": "US",
          "slug": "woodley-park",
          "canonical_path": "/cities/us/woodley-park/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4562366",
          "name": "Woodlyn",
          "country_code": "US",
          "slug": "woodlyn",
          "canonical_path": "/cities/us/woodlyn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4346615",
          "name": "Woodmere",
          "country_code": "US",
          "slug": "woodmere",
          "canonical_path": "/cities/us/woodmere/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5145028",
          "name": "Woodmere",
          "country_code": "US",
          "slug": "woodmere-ny-059",
          "canonical_path": "/cities/us/woodmere-ny-059/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5444707",
          "name": "Woodmoor",
          "country_code": "US",
          "slug": "woodmoor",
          "canonical_path": "/cities/us/woodmoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1783245",
          "name": "Woodridge",
          "country_code": "US",
          "slug": "woodridge",
          "canonical_path": "/cities/us/woodridge/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4579090",
          "name": "Woodruff",
          "country_code": "US",
          "slug": "woodruff",
          "canonical_path": "/cities/us/woodruff/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5816494",
          "name": "Woods Creek",
          "country_code": "US",
          "slug": "woods-creek",
          "canonical_path": "/cities/us/woods-creek/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4985370",
          "name": "Woods Cross",
          "country_code": "US",
          "slug": "woods-cross",
          "canonical_path": "/cities/us/woods-cross/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0686440",
          "name": "Woodside",
          "country_code": "US",
          "slug": "woodside",
          "canonical_path": "/cities/us/woodside/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1384176",
          "name": "Woodstock",
          "country_code": "US",
          "slug": "woodstock-ga",
          "canonical_path": "/cities/us/woodstock-ga/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1783349",
          "name": "Woodstock",
          "country_code": "US",
          "slug": "woodstock-il",
          "canonical_path": "/cities/us/woodstock-il/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5187712",
          "name": "Woodstock",
          "country_code": "US",
          "slug": "woodstock-va",
          "canonical_path": "/cities/us/woodstock-va/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4082150",
          "name": "Woodward",
          "country_code": "US",
          "slug": "woodward",
          "canonical_path": "/cities/us/woodward/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4880224",
          "name": "Woodway",
          "country_code": "US",
          "slug": "woodway",
          "canonical_path": "/cities/us/woodway/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4480780",
          "name": "Woonsocket",
          "country_code": "US",
          "slug": "woonsocket",
          "canonical_path": "/cities/us/woonsocket/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3986548",
          "name": "Wooster",
          "country_code": "US",
          "slug": "wooster",
          "canonical_path": "/cities/us/wooster/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2582000",
          "name": "Worcester",
          "country_code": "US",
          "slug": "worcester",
          "canonical_path": "/cities/us/worcester/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5843495",
          "name": "Worland",
          "country_code": "US",
          "slug": "worland",
          "canonical_path": "/cities/us/worland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1783518",
          "name": "Worth",
          "country_code": "US",
          "slug": "worth",
          "canonical_path": "/cities/us/worth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2771734",
          "name": "Worthington",
          "country_code": "US",
          "slug": "worthington-mn",
          "canonical_path": "/cities/us/worthington-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3986604",
          "name": "Worthington",
          "country_code": "US",
          "slug": "worthington-oh",
          "canonical_path": "/cities/us/worthington-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4956266",
          "name": "Wrentham",
          "country_code": "US",
          "slug": "wrentham",
          "canonical_path": "/cities/us/wrentham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4178775",
          "name": "Wright",
          "country_code": "US",
          "slug": "wright",
          "canonical_path": "/cities/us/wright/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2981124",
          "name": "Wright City",
          "country_code": "US",
          "slug": "wright-city",
          "canonical_path": "/cities/us/wright-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5145135",
          "name": "Wyandanch",
          "country_code": "US",
          "slug": "wyandanch",
          "canonical_path": "/cities/us/wyandanch/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2688900",
          "name": "Wyandotte",
          "country_code": "US",
          "slug": "wyandotte",
          "canonical_path": "/cities/us/wyandotte/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4880356",
          "name": "Wylie",
          "country_code": "US",
          "slug": "wylie",
          "canonical_path": "/cities/us/wylie/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4794814",
          "name": "Wyndham",
          "country_code": "US",
          "slug": "wyndham",
          "canonical_path": "/cities/us/wyndham/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5220221",
          "name": "Wyndmoor",
          "country_code": "US",
          "slug": "wyndmoor",
          "canonical_path": "/cities/us/wyndmoor/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0577090",
          "name": "Wynne",
          "country_code": "US",
          "slug": "wynne",
          "canonical_path": "/cities/us/wynne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2688940",
          "name": "Wyoming",
          "country_code": "US",
          "slug": "wyoming-mi",
          "canonical_path": "/cities/us/wyoming-mi/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2772022",
          "name": "Wyoming",
          "country_code": "US",
          "slug": "wyoming-mn",
          "canonical_path": "/cities/us/wyoming-mn/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3986730",
          "name": "Wyoming",
          "country_code": "US",
          "slug": "wyoming-oh",
          "canonical_path": "/cities/us/wyoming-oh/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5220248",
          "name": "Wyomissing",
          "country_code": "US",
          "slug": "wyomissing",
          "canonical_path": "/cities/us/wyomissing/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4286880",
          "name": "Wyomissing borough",
          "country_code": "US",
          "slug": "wyomissing-borough",
          "canonical_path": "/cities/us/wyomissing-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5188000",
          "name": "Wytheville",
          "country_code": "US",
          "slug": "wytheville",
          "canonical_path": "/cities/us/wytheville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3986772",
          "name": "Xenia",
          "country_code": "US",
          "slug": "xenia",
          "canonical_path": "/cities/us/xenia/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5380010",
          "name": "Yakima",
          "country_code": "US",
          "slug": "yakima",
          "canonical_path": "/cities/us/yakima/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4673060",
          "name": "Yankton",
          "country_code": "US",
          "slug": "yankton",
          "canonical_path": "/cities/us/yankton/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5145197",
          "name": "Yaphank",
          "country_code": "US",
          "slug": "yaphank",
          "canonical_path": "/cities/us/yaphank/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4833084",
          "name": "Yardville",
          "country_code": "US",
          "slug": "yardville",
          "canonical_path": "/cities/us/yardville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4956335",
          "name": "Yarmouth",
          "country_code": "US",
          "slug": "yarmouth",
          "canonical_path": "/cities/us/yarmouth/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4983572",
          "name": "Yarmouth",
          "country_code": "US",
          "slug": "yarmouth-me-005",
          "canonical_path": "/cities/us/yarmouth-me-005/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4956338",
          "name": "Yarmouth Port",
          "country_code": "US",
          "slug": "yarmouth-port",
          "canonical_path": "/cities/us/yarmouth-port/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2881520",
          "name": "Yazoo City",
          "country_code": "US",
          "slug": "yazoo-city",
          "canonical_path": "/cities/us/yazoo-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4562430",
          "name": "Yeadon",
          "country_code": "US",
          "slug": "yeadon",
          "canonical_path": "/cities/us/yeadon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4286968",
          "name": "Yeadon borough",
          "country_code": "US",
          "slug": "yeadon-borough",
          "canonical_path": "/cities/us/yeadon-borough/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-5380220",
          "name": "Yelm",
          "country_code": "US",
          "slug": "yelm",
          "canonical_path": "/cities/us/yelm/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4880560",
          "name": "Yoakum",
          "country_code": "US",
          "slug": "yoakum",
          "canonical_path": "/cities/us/yoakum/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3684000",
          "name": "Yonkers",
          "country_code": "US",
          "slug": "yonkers",
          "canonical_path": "/cities/us/yonkers/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0686832",
          "name": "Yorba Linda",
          "country_code": "US",
          "slug": "yorba-linda",
          "canonical_path": "/cities/us/yorba-linda/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3154045",
          "name": "York",
          "country_code": "US",
          "slug": "york-ne",
          "canonical_path": "/cities/us/york-ne/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4287048",
          "name": "York",
          "country_code": "US",
          "slug": "york-pa",
          "canonical_path": "/cities/us/york-pa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4579630",
          "name": "York",
          "country_code": "US",
          "slug": "york-sc",
          "canonical_path": "/cities/us/york-sc/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4983611",
          "name": "York Beach",
          "country_code": "US",
          "slug": "york-beach",
          "canonical_path": "/cities/us/york-beach/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5106645",
          "name": "Yorketown",
          "country_code": "US",
          "slug": "yorketown",
          "canonical_path": "/cities/us/yorketown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4794966",
          "name": "Yorkshire",
          "country_code": "US",
          "slug": "yorkshire",
          "canonical_path": "/cities/us/yorkshire/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1886084",
          "name": "Yorktown",
          "country_code": "US",
          "slug": "yorktown",
          "canonical_path": "/cities/us/yorktown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1784038",
          "name": "Yorkville",
          "country_code": "US",
          "slug": "yorkville",
          "canonical_path": "/cities/us/yorkville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3988000",
          "name": "Youngstown",
          "country_code": "US",
          "slug": "youngstown",
          "canonical_path": "/cities/us/youngstown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2283335",
          "name": "Youngsville",
          "country_code": "US",
          "slug": "youngsville",
          "canonical_path": "/cities/us/youngsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0485400",
          "name": "Youngtown",
          "country_code": "US",
          "slug": "youngtown",
          "canonical_path": "/cities/us/youngtown/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2689140",
          "name": "Ypsilanti",
          "country_code": "US",
          "slug": "ypsilanti",
          "canonical_path": "/cities/us/ypsilanti/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0686944",
          "name": "Yreka",
          "country_code": "US",
          "slug": "yreka",
          "canonical_path": "/cities/us/yreka/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0686972",
          "name": "Yuba City",
          "country_code": "US",
          "slug": "yuba-city",
          "canonical_path": "/cities/us/yuba-city/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0687042",
          "name": "Yucaipa",
          "country_code": "US",
          "slug": "yucaipa",
          "canonical_path": "/cities/us/yucaipa/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0687056",
          "name": "Yucca Valley",
          "country_code": "US",
          "slug": "yucca-valley",
          "canonical_path": "/cities/us/yucca-valley/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-4082950",
          "name": "Yukon",
          "country_code": "US",
          "slug": "yukon",
          "canonical_path": "/cities/us/yukon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4178919",
          "name": "Yulee",
          "country_code": "US",
          "slug": "yulee",
          "canonical_path": "/cities/us/yulee/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-0485540",
          "name": "Yuma",
          "country_code": "US",
          "slug": "yuma",
          "canonical_path": "/cities/us/yuma/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2283405",
          "name": "Zachary",
          "country_code": "US",
          "slug": "zachary",
          "canonical_path": "/cities/us/zachary/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3988084",
          "name": "Zanesville",
          "country_code": "US",
          "slug": "zanesville",
          "canonical_path": "/cities/us/zanesville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:4743575",
          "name": "Zapata",
          "country_code": "US",
          "slug": "zapata",
          "canonical_path": "/cities/us/zapata/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-3776220",
          "name": "Zebulon",
          "country_code": "US",
          "slug": "zebulon",
          "canonical_path": "/cities/us/zebulon/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2689260",
          "name": "Zeeland",
          "country_code": "US",
          "slug": "zeeland",
          "canonical_path": "/cities/us/zeeland/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1279225",
          "name": "Zephyrhills",
          "country_code": "US",
          "slug": "zephyrhills",
          "canonical_path": "/cities/us/zephyrhills/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260319",
          "name": "Zephyrhills South",
          "country_code": "US",
          "slug": "zephyrhills-south",
          "canonical_path": "/cities/us/zephyrhills-south/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:7260320",
          "name": "Zephyrhills West",
          "country_code": "US",
          "slug": "zephyrhills-west",
          "canonical_path": "/cities/us/zephyrhills-west/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-2772238",
          "name": "Zimmerman",
          "country_code": "US",
          "slug": "zimmerman",
          "canonical_path": "/cities/us/zimmerman/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1784220",
          "name": "Zion",
          "country_code": "US",
          "slug": "zion",
          "canonical_path": "/cities/us/zion/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "us-place-1886372",
          "name": "Zionsville",
          "country_code": "US",
          "slug": "zionsville",
          "canonical_path": "/cities/us/zionsville/",
          "publication_state": "published",
          "review_state": null
        },
        {
          "entity_id": "city:us:geonames:5499004",
          "name": "Zuni Pueblo",
          "country_code": "US",
          "slug": "zuni-pueblo",
          "canonical_path": "/cities/us/zuni-pueblo/",
          "publication_state": "published",
          "review_state": null
        }
      ]
    }
  ],
  "query_index": {
    "path": "/mcp/query/index.json",
    "facts_path": "/mcp/query/facts.ndjson",
    "country_template": "/mcp/query/countries/{country}.json",
    "metric_template": "/mcp/query/metrics/{metric_id}.json",
    "city_count": 27086,
    "fact_count": 753982,
    "limits": {
      "max_country_index_bytes": 134217728,
      "max_metric_index_bytes": 134217728,
      "max_country_cache_entries": 4,
      "max_metric_cache_entries": 2
    }
  }
}
